yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 1 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2 | /* |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3 | * SSL/TLS transport layer over SOCK_STREAM sockets |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | * |
Willy Tarreau | 69845df | 2012-09-10 09:43:09 +0200 | [diff] [blame] | 12 | * Acknowledgement: |
| 13 | * We'd like to specially thank the Stud project authors for a very clean |
| 14 | * and well documented code which helped us understand how the OpenSSL API |
| 15 | * ought to be used in non-blocking mode. This is one difficult part which |
| 16 | * is not easy to get from the OpenSSL doc, and reading the Stud code made |
| 17 | * it much more obvious than the examples in the OpenSSL package. Keep up |
| 18 | * the good works, guys ! |
| 19 | * |
| 20 | * Stud is an extremely efficient and scalable SSL/TLS proxy which combines |
| 21 | * particularly well with haproxy. For more info about this project, visit : |
| 22 | * https://github.com/bumptech/stud |
| 23 | * |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #define _GNU_SOURCE |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 27 | #include <ctype.h> |
| 28 | #include <dirent.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 29 | #include <errno.h> |
| 30 | #include <fcntl.h> |
| 31 | #include <stdio.h> |
| 32 | #include <stdlib.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 33 | #include <string.h> |
| 34 | #include <unistd.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 35 | |
| 36 | #include <sys/socket.h> |
| 37 | #include <sys/stat.h> |
| 38 | #include <sys/types.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 39 | #include <netdb.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 40 | #include <netinet/tcp.h> |
| 41 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 42 | #include <openssl/crypto.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 43 | #include <openssl/ssl.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 44 | #include <openssl/x509.h> |
| 45 | #include <openssl/x509v3.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 46 | #include <openssl/err.h> |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 47 | #include <openssl/rand.h> |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 48 | #include <openssl/hmac.h> |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 49 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 50 | #include <openssl/ocsp.h> |
| 51 | #endif |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 52 | #ifndef OPENSSL_NO_DH |
| 53 | #include <openssl/dh.h> |
| 54 | #endif |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 55 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 56 | #include <openssl/engine.h> |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 57 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 58 | |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 59 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 60 | #include <openssl/async.h> |
| 61 | #endif |
| 62 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 63 | #include <import/lru.h> |
| 64 | #include <import/xxhash.h> |
| 65 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 66 | #include <common/buffer.h> |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 67 | #include <common/chunk.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 68 | #include <common/compat.h> |
| 69 | #include <common/config.h> |
| 70 | #include <common/debug.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 71 | #include <common/errors.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 72 | #include <common/standard.h> |
| 73 | #include <common/ticks.h> |
| 74 | #include <common/time.h> |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 75 | #include <common/cfgparse.h> |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 76 | #include <common/base64.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 77 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 78 | #include <ebsttree.h> |
| 79 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 80 | #include <types/applet.h> |
| 81 | #include <types/cli.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 82 | #include <types/global.h> |
| 83 | #include <types/ssl_sock.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 84 | #include <types/stats.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 85 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 86 | #include <proto/acl.h> |
| 87 | #include <proto/arg.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 88 | #include <proto/channel.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 89 | #include <proto/connection.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 90 | #include <proto/cli.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 91 | #include <proto/fd.h> |
| 92 | #include <proto/freq_ctr.h> |
| 93 | #include <proto/frontend.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 94 | #include <proto/listener.h> |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 95 | #include <proto/openssl-compat.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 96 | #include <proto/pattern.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 97 | #include <proto/proto_tcp.h> |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 98 | #include <proto/proto_http.h> |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 99 | #include <proto/server.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 100 | #include <proto/stream_interface.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 101 | #include <proto/log.h> |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 102 | #include <proto/proxy.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 103 | #include <proto/shctx.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 104 | #include <proto/ssl_sock.h> |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 105 | #include <proto/stream.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 106 | #include <proto/task.h> |
| 107 | |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 108 | /* Warning, these are bits, not integers! */ |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 109 | #define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001 |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 110 | #define SSL_SOCK_ST_FL_16K_WBFSIZE 0x00000002 |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 111 | #define SSL_SOCK_SEND_UNLIMITED 0x00000004 |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 112 | #define SSL_SOCK_RECV_HEARTBEAT 0x00000008 |
| 113 | |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 114 | /* bits 0xFFFF0000 are reserved to store verify errors */ |
| 115 | |
| 116 | /* Verify errors macros */ |
| 117 | #define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16)) |
| 118 | #define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16)) |
| 119 | #define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16)) |
| 120 | |
| 121 | #define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63) |
| 122 | #define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15) |
| 123 | #define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 124 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 125 | /* Supported hash function for TLS tickets */ |
| 126 | #ifdef OPENSSL_NO_SHA256 |
| 127 | #define HASH_FUNCT EVP_sha1 |
| 128 | #else |
| 129 | #define HASH_FUNCT EVP_sha256 |
| 130 | #endif /* OPENSSL_NO_SHA256 */ |
| 131 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 132 | /* ssl_methods flags for ssl options */ |
| 133 | #define MC_SSL_O_ALL 0x0000 |
| 134 | #define MC_SSL_O_NO_SSLV3 0x0001 /* disable SSLv3 */ |
| 135 | #define MC_SSL_O_NO_TLSV10 0x0002 /* disable TLSv10 */ |
| 136 | #define MC_SSL_O_NO_TLSV11 0x0004 /* disable TLSv11 */ |
| 137 | #define MC_SSL_O_NO_TLSV12 0x0008 /* disable TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 138 | #define MC_SSL_O_NO_TLSV13 0x0010 /* disable TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 139 | |
| 140 | /* ssl_methods versions */ |
| 141 | enum { |
| 142 | CONF_TLSV_NONE = 0, |
| 143 | CONF_TLSV_MIN = 1, |
| 144 | CONF_SSLV3 = 1, |
| 145 | CONF_TLSV10 = 2, |
| 146 | CONF_TLSV11 = 3, |
| 147 | CONF_TLSV12 = 4, |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 148 | CONF_TLSV13 = 5, |
| 149 | CONF_TLSV_MAX = 5, |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 150 | }; |
| 151 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 152 | /* server and bind verify method, it uses a global value as default */ |
| 153 | enum { |
| 154 | SSL_SOCK_VERIFY_DEFAULT = 0, |
| 155 | SSL_SOCK_VERIFY_REQUIRED = 1, |
| 156 | SSL_SOCK_VERIFY_OPTIONAL = 2, |
| 157 | SSL_SOCK_VERIFY_NONE = 3, |
| 158 | }; |
| 159 | |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 160 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 161 | int sslconns = 0; |
| 162 | int totalsslconns = 0; |
Willy Tarreau | d9f5cca | 2016-12-22 21:08:52 +0100 | [diff] [blame] | 163 | static struct xprt_ops ssl_sock; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 164 | int nb_engines = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 165 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 166 | static struct { |
| 167 | char *crt_base; /* base directory path for certificates */ |
| 168 | char *ca_base; /* base directory path for CAs and CRLs */ |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 169 | int async; /* whether we use ssl async mode */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 170 | |
| 171 | char *listen_default_ciphers; |
| 172 | char *connect_default_ciphers; |
| 173 | int listen_default_ssloptions; |
| 174 | int connect_default_ssloptions; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 175 | struct tls_version_filter listen_default_sslmethods; |
| 176 | struct tls_version_filter connect_default_sslmethods; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 177 | |
| 178 | int private_cache; /* Force to use a private session cache even if nbproc > 1 */ |
| 179 | unsigned int life_time; /* SSL session lifetime in seconds */ |
| 180 | unsigned int max_record; /* SSL max record size */ |
| 181 | unsigned int default_dh_param; /* SSL maximum DH parameter size */ |
| 182 | int ctx_cache; /* max number of entries in the ssl_ctx cache. */ |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 183 | int capture_cipherlist; /* Size of the cipherlist buffer. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 184 | } global_ssl = { |
| 185 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 186 | .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS, |
| 187 | #endif |
| 188 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 189 | .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS, |
| 190 | #endif |
| 191 | .listen_default_ssloptions = BC_SSL_O_NONE, |
| 192 | .connect_default_ssloptions = SRV_SSL_O_NONE, |
| 193 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 194 | .listen_default_sslmethods.flags = MC_SSL_O_ALL, |
| 195 | .listen_default_sslmethods.min = CONF_TLSV_NONE, |
| 196 | .listen_default_sslmethods.max = CONF_TLSV_NONE, |
| 197 | .connect_default_sslmethods.flags = MC_SSL_O_ALL, |
| 198 | .connect_default_sslmethods.min = CONF_TLSV_NONE, |
| 199 | .connect_default_sslmethods.max = CONF_TLSV_NONE, |
| 200 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 201 | #ifdef DEFAULT_SSL_MAX_RECORD |
| 202 | .max_record = DEFAULT_SSL_MAX_RECORD, |
| 203 | #endif |
| 204 | .default_dh_param = SSL_DEFAULT_DH_PARAM, |
| 205 | .ctx_cache = DEFAULT_SSL_CTX_CACHE, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 206 | .capture_cipherlist = 0, |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 207 | }; |
| 208 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 209 | #ifdef USE_THREAD |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 210 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 211 | static HA_RWLOCK_T *ssl_rwlocks; |
| 212 | |
| 213 | |
| 214 | unsigned long ssl_id_function(void) |
| 215 | { |
| 216 | return (unsigned long)tid; |
| 217 | } |
| 218 | |
| 219 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 220 | { |
| 221 | if (mode & CRYPTO_LOCK) { |
| 222 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 223 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 224 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 225 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 226 | } |
| 227 | else { |
| 228 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 229 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 230 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 231 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 232 | } |
| 233 | } |
| 234 | |
| 235 | static int ssl_locking_init(void) |
| 236 | { |
| 237 | int i; |
| 238 | |
| 239 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 240 | if (!ssl_rwlocks) |
| 241 | return -1; |
| 242 | |
| 243 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 244 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 245 | |
| 246 | CRYPTO_set_id_callback(ssl_id_function); |
| 247 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 248 | |
| 249 | return 0; |
| 250 | } |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 251 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 252 | #endif |
| 253 | |
| 254 | |
| 255 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 256 | /* This memory pool is used for capturing clienthello parameters. */ |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 257 | struct ssl_capture { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 258 | unsigned long long int xxh64; |
| 259 | unsigned char ciphersuite_len; |
| 260 | char ciphersuite[0]; |
| 261 | }; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 262 | struct pool_head *pool_head_ssl_capture = NULL; |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 263 | static int ssl_capture_ptr_index = -1; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 264 | static int ssl_app_data_index = -1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 265 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 266 | static int ssl_pkey_info_index = -1; |
| 267 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 268 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 269 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 270 | #endif |
| 271 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 272 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 273 | static unsigned int openssl_engines_initialized; |
| 274 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 275 | struct ssl_engine_list { |
| 276 | struct list list; |
| 277 | ENGINE *e; |
| 278 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 279 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 280 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 281 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 282 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 283 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 284 | static DH *local_dh_1024 = NULL; |
| 285 | static DH *local_dh_2048 = NULL; |
| 286 | static DH *local_dh_4096 = NULL; |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 287 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 288 | #endif /* OPENSSL_NO_DH */ |
| 289 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 290 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 291 | /* X509V3 Extensions that will be added on generated certificates */ |
| 292 | #define X509V3_EXT_SIZE 5 |
| 293 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 294 | "basicConstraints", |
| 295 | "nsComment", |
| 296 | "subjectKeyIdentifier", |
| 297 | "authorityKeyIdentifier", |
| 298 | "keyUsage", |
| 299 | }; |
| 300 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 301 | "CA:FALSE", |
| 302 | "\"OpenSSL Generated Certificate\"", |
| 303 | "hash", |
| 304 | "keyid,issuer:always", |
| 305 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 306 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 307 | /* LRU cache to store generated certificate */ |
| 308 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 309 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 310 | static unsigned int ssl_ctx_serial; |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 311 | __decl_hathreads(static HA_RWLOCK_T ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 312 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 313 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 314 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 315 | static struct ssl_bind_kw ssl_bind_kws[]; |
| 316 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 317 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 318 | /* The order here matters for picking a default context, |
| 319 | * keep the most common keytype at the bottom of the list |
| 320 | */ |
| 321 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 322 | "dsa", |
| 323 | "ecdsa", |
| 324 | "rsa" |
| 325 | }; |
| 326 | #define SSL_SOCK_NUM_KEYTYPES 3 |
Willy Tarreau | 30da7ad | 2015-12-14 11:28:33 +0100 | [diff] [blame] | 327 | #else |
| 328 | #define SSL_SOCK_NUM_KEYTYPES 1 |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 329 | #endif |
| 330 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 331 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 332 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 333 | |
| 334 | #define sh_ssl_sess_tree_delete(s) ebmb_delete(&(s)->key); |
| 335 | |
| 336 | #define sh_ssl_sess_tree_insert(s) (struct sh_ssl_sess_hdr *)ebmb_insert(sh_ssl_sess_tree, \ |
| 337 | &(s)->key, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 338 | |
| 339 | #define sh_ssl_sess_tree_lookup(k) (struct sh_ssl_sess_hdr *)ebmb_lookup(sh_ssl_sess_tree, \ |
| 340 | (k), SSL_MAX_SSL_SESSION_ID_LENGTH); |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 341 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 342 | /* |
| 343 | * This function gives the detail of the SSL error. It is used only |
| 344 | * if the debug mode and the verbose mode are activated. It dump all |
| 345 | * the SSL error until the stack was empty. |
| 346 | */ |
| 347 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 348 | { |
| 349 | unsigned long ret; |
| 350 | |
| 351 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 352 | while(1) { |
| 353 | ret = ERR_get_error(); |
| 354 | if (ret == 0) |
| 355 | return; |
| 356 | fprintf(stderr, "fd[%04x] OpenSSL error[0x%lx] %s: %s\n", |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 357 | (unsigned short)conn->handle.fd, ret, |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 358 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 359 | } |
| 360 | } |
| 361 | } |
| 362 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 363 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 364 | /* |
| 365 | * struct alignment works here such that the key.key is the same as key_data |
| 366 | * Do not change the placement of key_data |
| 367 | */ |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 368 | struct certificate_ocsp { |
| 369 | struct ebmb_node key; |
| 370 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 371 | struct buffer response; |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 372 | long expire; |
| 373 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 374 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 375 | struct ocsp_cbk_arg { |
| 376 | int is_single; |
| 377 | int single_kt; |
| 378 | union { |
| 379 | struct certificate_ocsp *s_ocsp; |
| 380 | /* |
| 381 | * m_ocsp will have multiple entries dependent on key type |
| 382 | * Entry 0 - DSA |
| 383 | * Entry 1 - ECDSA |
| 384 | * Entry 2 - RSA |
| 385 | */ |
| 386 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 387 | }; |
| 388 | }; |
| 389 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 390 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 391 | static int ssl_init_single_engine(const char *engine_id, const char *def_algorithms) |
| 392 | { |
| 393 | int err_code = ERR_ABORT; |
| 394 | ENGINE *engine; |
| 395 | struct ssl_engine_list *el; |
| 396 | |
| 397 | /* grab the structural reference to the engine */ |
| 398 | engine = ENGINE_by_id(engine_id); |
| 399 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 400 | ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 401 | goto fail_get; |
| 402 | } |
| 403 | |
| 404 | if (!ENGINE_init(engine)) { |
| 405 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 406 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 407 | goto fail_init; |
| 408 | } |
| 409 | |
| 410 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 411 | ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 412 | goto fail_set_method; |
| 413 | } |
| 414 | |
| 415 | el = calloc(1, sizeof(*el)); |
| 416 | el->e = engine; |
| 417 | LIST_ADD(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 418 | nb_engines++; |
| 419 | if (global_ssl.async) |
| 420 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 421 | return 0; |
| 422 | |
| 423 | fail_set_method: |
| 424 | /* release the functional reference from ENGINE_init() */ |
| 425 | ENGINE_finish(engine); |
| 426 | |
| 427 | fail_init: |
| 428 | /* release the structural reference from ENGINE_by_id() */ |
| 429 | ENGINE_free(engine); |
| 430 | |
| 431 | fail_get: |
| 432 | return err_code; |
| 433 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 434 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 435 | |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 436 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 437 | /* |
| 438 | * openssl async fd handler |
| 439 | */ |
| 440 | static void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 441 | { |
| 442 | struct connection *conn = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 443 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 444 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 445 | * to poll this fd until it is requested |
| 446 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 447 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 448 | fd_cant_recv(fd); |
| 449 | |
| 450 | /* crypto engine is available, let's notify the associated |
| 451 | * connection that it can pursue its processing. |
| 452 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 453 | __conn_sock_want_recv(conn); |
| 454 | __conn_sock_want_send(conn); |
| 455 | conn_update_sock_polling(conn); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 456 | } |
| 457 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 458 | /* |
| 459 | * openssl async delayed SSL_free handler |
| 460 | */ |
| 461 | static void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 462 | { |
| 463 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 464 | OSSL_ASYNC_FD all_fd[32]; |
| 465 | size_t num_all_fds = 0; |
| 466 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 467 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 468 | /* We suppose that the async job for a same SSL * |
| 469 | * are serialized. So if we are awake it is |
| 470 | * because the running job has just finished |
| 471 | * and we can remove all async fds safely |
| 472 | */ |
| 473 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 474 | if (num_all_fds > 32) { |
| 475 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 476 | return; |
| 477 | } |
| 478 | |
| 479 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
| 480 | for (i=0 ; i < num_all_fds ; i++) |
| 481 | fd_remove(all_fd[i]); |
| 482 | |
| 483 | /* Now we can safely call SSL_free, no more pending job in engines */ |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 484 | SSL_free(ssl); |
| 485 | sslconns--; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 486 | HA_ATOMIC_SUB(&jobs, 1); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 487 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 488 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 489 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 490 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 491 | */ |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 492 | static void inline ssl_async_process_fds(struct connection *conn, SSL *ssl) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 493 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 494 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 495 | OSSL_ASYNC_FD del_fd[32]; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 496 | size_t num_add_fds = 0; |
| 497 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 498 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 499 | |
| 500 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 501 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 502 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 503 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 504 | return; |
| 505 | } |
| 506 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 507 | SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 508 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 509 | /* We remove unused fds from the fdtab */ |
| 510 | for (i=0 ; i < num_del_fds ; i++) |
| 511 | fd_remove(del_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 512 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 513 | /* We add new fds to the fdtab */ |
| 514 | for (i=0 ; i < num_add_fds ; i++) { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 515 | fd_insert(add_fd[i], conn, ssl_async_fd_handler, tid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 516 | } |
| 517 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 518 | num_add_fds = 0; |
| 519 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 520 | if (num_add_fds > 32) { |
| 521 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 522 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 523 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 524 | |
| 525 | /* We activate the polling for all known async fds */ |
| 526 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 527 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 528 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 529 | /* To ensure that the fd cache won't be used |
| 530 | * We'll prefer to catch a real RD event |
| 531 | * because handling an EAGAIN on this fd will |
| 532 | * result in a context switch and also |
| 533 | * some engines uses a fd in blocking mode. |
| 534 | */ |
| 535 | fd_cant_recv(add_fd[i]); |
| 536 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 537 | |
| 538 | /* We must also prevent the conn_handler |
| 539 | * to be called until a read event was |
| 540 | * polled on an async fd |
| 541 | */ |
| 542 | __conn_sock_stop_both(conn); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 543 | } |
| 544 | #endif |
| 545 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 546 | /* |
| 547 | * This function returns the number of seconds elapsed |
| 548 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 549 | * date presented un ASN1_GENERALIZEDTIME. |
| 550 | * |
| 551 | * In parsing error case, it returns -1. |
| 552 | */ |
| 553 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 554 | { |
| 555 | long epoch; |
| 556 | char *p, *end; |
| 557 | const unsigned short month_offset[12] = { |
| 558 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 559 | }; |
| 560 | int year, month; |
| 561 | |
| 562 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 563 | |
| 564 | p = (char *)d->data; |
| 565 | end = p + d->length; |
| 566 | |
| 567 | if (end - p < 4) return -1; |
| 568 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 569 | p += 4; |
| 570 | if (end - p < 2) return -1; |
| 571 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 572 | if (month < 1 || month > 12) return -1; |
| 573 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 574 | We consider leap years and the current month (<marsh or not) */ |
| 575 | epoch = ( ((year - 1970) * 365) |
| 576 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 577 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 578 | + month_offset[month-1] |
| 579 | ) * 24 * 60 * 60; |
| 580 | p += 2; |
| 581 | if (end - p < 2) return -1; |
| 582 | /* Add the number of seconds of completed days of current month */ |
| 583 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 584 | p += 2; |
| 585 | if (end - p < 2) return -1; |
| 586 | /* Add the completed hours of the current day */ |
| 587 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 588 | p += 2; |
| 589 | if (end - p < 2) return -1; |
| 590 | /* Add the completed minutes of the current hour */ |
| 591 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 592 | p += 2; |
| 593 | if (p == end) return -1; |
| 594 | /* Test if there is available seconds */ |
| 595 | if (p[0] < '0' || p[0] > '9') |
| 596 | goto nosec; |
| 597 | if (end - p < 2) return -1; |
| 598 | /* Add the seconds of the current minute */ |
| 599 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 600 | p += 2; |
| 601 | if (p == end) return -1; |
| 602 | /* Ignore seconds float part if present */ |
| 603 | if (p[0] == '.') { |
| 604 | do { |
| 605 | if (++p == end) return -1; |
| 606 | } while (p[0] >= '0' && p[0] <= '9'); |
| 607 | } |
| 608 | |
| 609 | nosec: |
| 610 | if (p[0] == 'Z') { |
| 611 | if (end - p != 1) return -1; |
| 612 | return epoch; |
| 613 | } |
| 614 | else if (p[0] == '+') { |
| 615 | if (end - p != 5) return -1; |
| 616 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 617 | return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 618 | } |
| 619 | else if (p[0] == '-') { |
| 620 | if (end - p != 5) return -1; |
| 621 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 622 | return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 623 | } |
| 624 | |
| 625 | return -1; |
| 626 | } |
| 627 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 628 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 629 | |
| 630 | /* This function starts to check if the OCSP response (in DER format) contained |
| 631 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 632 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 633 | * contained in the OCSP Response and exits on error if no match. |
| 634 | * If it's a valid OCSP Response: |
| 635 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 636 | * pointed by 'ocsp'. |
| 637 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 638 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 639 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 640 | * already present in the container, it will be overwritten. |
| 641 | * |
| 642 | * Note: OCSP response containing more than one OCSP Single response is not |
| 643 | * considered valid. |
| 644 | * |
| 645 | * Returns 0 on success, 1 in error case. |
| 646 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 647 | static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response, |
| 648 | struct certificate_ocsp *ocsp, |
| 649 | OCSP_CERTID *cid, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 650 | { |
| 651 | OCSP_RESPONSE *resp; |
| 652 | OCSP_BASICRESP *bs = NULL; |
| 653 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 654 | OCSP_CERTID *id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 655 | unsigned char *p = (unsigned char *) ocsp_response->area; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 656 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 657 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 658 | int reason; |
| 659 | int ret = 1; |
| 660 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 661 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, |
| 662 | ocsp_response->data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 663 | if (!resp) { |
| 664 | memprintf(err, "Unable to parse OCSP response"); |
| 665 | goto out; |
| 666 | } |
| 667 | |
| 668 | rc = OCSP_response_status(resp); |
| 669 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 670 | memprintf(err, "OCSP response status not successful"); |
| 671 | goto out; |
| 672 | } |
| 673 | |
| 674 | bs = OCSP_response_get1_basic(resp); |
| 675 | if (!bs) { |
| 676 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 677 | goto out; |
| 678 | } |
| 679 | |
| 680 | count_sr = OCSP_resp_count(bs); |
| 681 | if (count_sr > 1) { |
| 682 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 683 | goto out; |
| 684 | } |
| 685 | |
| 686 | sr = OCSP_resp_get0(bs, 0); |
| 687 | if (!sr) { |
| 688 | memprintf(err, "Failed to get OCSP single response"); |
| 689 | goto out; |
| 690 | } |
| 691 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 692 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 693 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 694 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
Emmanuel Hocdet | ef60705 | 2017-10-24 14:57:16 +0200 | [diff] [blame] | 695 | if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) { |
Emmanuel Hocdet | 872085c | 2017-10-10 15:18:52 +0200 | [diff] [blame] | 696 | memprintf(err, "OCSP single response: certificate status is unknown"); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 697 | goto out; |
| 698 | } |
| 699 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 700 | if (!nextupd) { |
| 701 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 702 | goto out; |
| 703 | } |
| 704 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 705 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 706 | if (!rc) { |
| 707 | memprintf(err, "OCSP single response: no longer valid."); |
| 708 | goto out; |
| 709 | } |
| 710 | |
| 711 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 712 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 713 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 714 | goto out; |
| 715 | } |
| 716 | } |
| 717 | |
| 718 | if (!ocsp) { |
| 719 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 720 | unsigned char *p; |
| 721 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 722 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 723 | if (!rc) { |
| 724 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 725 | goto out; |
| 726 | } |
| 727 | |
| 728 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 729 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 730 | goto out; |
| 731 | } |
| 732 | |
| 733 | p = key; |
| 734 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 735 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 736 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 737 | if (!ocsp) { |
| 738 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 739 | goto out; |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | /* According to comments on "chunk_dup", the |
| 744 | previous chunk buffer will be freed */ |
| 745 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 746 | memprintf(err, "OCSP response: Memory allocation error"); |
| 747 | goto out; |
| 748 | } |
| 749 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 750 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 751 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 752 | ret = 0; |
| 753 | out: |
Janusz Dziemidowicz | 8d71049 | 2017-03-08 16:59:41 +0100 | [diff] [blame] | 754 | ERR_clear_error(); |
| 755 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 756 | if (bs) |
| 757 | OCSP_BASICRESP_free(bs); |
| 758 | |
| 759 | if (resp) |
| 760 | OCSP_RESPONSE_free(resp); |
| 761 | |
| 762 | return ret; |
| 763 | } |
| 764 | /* |
| 765 | * External function use to update the OCSP response in the OCSP response's |
| 766 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 767 | * to update in DER format. |
| 768 | * |
| 769 | * Returns 0 on success, 1 in error case. |
| 770 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 771 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 772 | { |
| 773 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 774 | } |
| 775 | |
| 776 | /* |
| 777 | * This function load the OCSP Resonse in DER format contained in file at |
| 778 | * path 'ocsp_path' and call 'ssl_sock_load_ocsp_response' |
| 779 | * |
| 780 | * Returns 0 on success, 1 in error case. |
| 781 | */ |
| 782 | static int ssl_sock_load_ocsp_response_from_file(const char *ocsp_path, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err) |
| 783 | { |
| 784 | int fd = -1; |
| 785 | int r = 0; |
| 786 | int ret = 1; |
| 787 | |
| 788 | fd = open(ocsp_path, O_RDONLY); |
| 789 | if (fd == -1) { |
| 790 | memprintf(err, "Error opening OCSP response file"); |
| 791 | goto end; |
| 792 | } |
| 793 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 794 | trash.data = 0; |
| 795 | while (trash.data < trash.size) { |
| 796 | r = read(fd, trash.area + trash.data, trash.size - trash.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 797 | if (r < 0) { |
| 798 | if (errno == EINTR) |
| 799 | continue; |
| 800 | |
| 801 | memprintf(err, "Error reading OCSP response from file"); |
| 802 | goto end; |
| 803 | } |
| 804 | else if (r == 0) { |
| 805 | break; |
| 806 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 807 | trash.data += r; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 808 | } |
| 809 | |
| 810 | close(fd); |
| 811 | fd = -1; |
| 812 | |
| 813 | ret = ssl_sock_load_ocsp_response(&trash, ocsp, cid, err); |
| 814 | end: |
| 815 | if (fd != -1) |
| 816 | close(fd); |
| 817 | |
| 818 | return ret; |
| 819 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 820 | #endif |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 821 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 822 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 823 | static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc) |
| 824 | { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 825 | struct tls_keys_ref *ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 826 | struct tls_sess_key *keys; |
| 827 | struct connection *conn; |
| 828 | int head; |
| 829 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 830 | int ret = -1; /* error by default */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 831 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 832 | conn = SSL_get_ex_data(s, ssl_app_data_index); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 833 | ref = objt_listener(conn->target)->bind_conf->keys_ref; |
| 834 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 835 | |
| 836 | keys = ref->tlskeys; |
| 837 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 838 | |
| 839 | if (enc) { |
| 840 | memcpy(key_name, keys[head].name, 16); |
| 841 | |
| 842 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 843 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 844 | |
| 845 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].aes_key, iv)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 846 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 847 | |
| 848 | HMAC_Init_ex(hctx, keys[head].hmac_key, 16, HASH_FUNCT(), NULL); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 849 | ret = 1; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 850 | } else { |
| 851 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 852 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 853 | goto found; |
| 854 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 855 | ret = 0; |
| 856 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 857 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 858 | found: |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 859 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].hmac_key, 16, HASH_FUNCT(), NULL); |
| 860 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].aes_key, iv)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 861 | goto end; |
| 862 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 863 | /* 2 for key renewal, 1 if current key is still valid */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 864 | ret = i ? 2 : 1; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 865 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 866 | end: |
| 867 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 868 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 869 | } |
| 870 | |
| 871 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 872 | { |
| 873 | struct tls_keys_ref *ref; |
| 874 | |
| 875 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 876 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 877 | return ref; |
| 878 | return NULL; |
| 879 | } |
| 880 | |
| 881 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 882 | { |
| 883 | struct tls_keys_ref *ref; |
| 884 | |
| 885 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 886 | if (ref->unique_id == unique_id) |
| 887 | return ref; |
| 888 | return NULL; |
| 889 | } |
| 890 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 891 | void ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
| 892 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 893 | { |
| 894 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 895 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 896 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 897 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 898 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 899 | } |
| 900 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 901 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 902 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 903 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 904 | |
| 905 | if(!ref) { |
| 906 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 907 | return 1; |
| 908 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 909 | ssl_sock_update_tlskey_ref(ref, tlskey); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 910 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 911 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 912 | |
| 913 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 914 | * automatic ids. It's called just after the basic checks. It returns |
| 915 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 916 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 917 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 918 | { |
| 919 | int i = 0; |
| 920 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 921 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 922 | |
| 923 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 924 | if (ref->unique_id == -1) { |
| 925 | /* Look for the first free id. */ |
| 926 | while (1) { |
| 927 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 928 | if (ref2->unique_id == i) { |
| 929 | i++; |
| 930 | break; |
| 931 | } |
| 932 | } |
| 933 | if (&ref2->list == &tlskeys_reference) |
| 934 | break; |
| 935 | } |
| 936 | |
| 937 | /* Uses the unique id and increment it for the next entry. */ |
| 938 | ref->unique_id = i; |
| 939 | i++; |
| 940 | } |
| 941 | } |
| 942 | |
| 943 | /* This sort the reference list by id. */ |
| 944 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
| 945 | LIST_DEL(&ref->list); |
| 946 | list_for_each_entry(ref3, &tkr, list) { |
| 947 | if (ref->unique_id < ref3->unique_id) { |
| 948 | LIST_ADDQ(&ref3->list, &ref->list); |
| 949 | break; |
| 950 | } |
| 951 | } |
| 952 | if (&ref3->list == &tkr) |
| 953 | LIST_ADDQ(&tkr, &ref->list); |
| 954 | } |
| 955 | |
| 956 | /* swap root */ |
| 957 | LIST_ADD(&tkr, &tlskeys_reference); |
| 958 | LIST_DEL(&tkr); |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 959 | return 0; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 960 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 961 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 962 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 963 | #ifndef OPENSSL_NO_OCSP |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 964 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 965 | { |
| 966 | switch (evp_keytype) { |
| 967 | case EVP_PKEY_RSA: |
| 968 | return 2; |
| 969 | case EVP_PKEY_DSA: |
| 970 | return 0; |
| 971 | case EVP_PKEY_EC: |
| 972 | return 1; |
| 973 | } |
| 974 | |
| 975 | return -1; |
| 976 | } |
| 977 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 978 | /* |
| 979 | * Callback used to set OCSP status extension content in server hello. |
| 980 | */ |
| 981 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 982 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 983 | struct certificate_ocsp *ocsp; |
| 984 | struct ocsp_cbk_arg *ocsp_arg; |
| 985 | char *ssl_buf; |
| 986 | EVP_PKEY *ssl_pkey; |
| 987 | int key_type; |
| 988 | int index; |
| 989 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 990 | ocsp_arg = arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 991 | |
| 992 | ssl_pkey = SSL_get_privatekey(ssl); |
| 993 | if (!ssl_pkey) |
| 994 | return SSL_TLSEXT_ERR_NOACK; |
| 995 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 996 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 997 | |
| 998 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 999 | ocsp = ocsp_arg->s_ocsp; |
| 1000 | else { |
| 1001 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 1002 | * the certificate type |
| 1003 | */ |
| 1004 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 1005 | |
| 1006 | if (index < 0) |
| 1007 | return SSL_TLSEXT_ERR_NOACK; |
| 1008 | |
| 1009 | ocsp = ocsp_arg->m_ocsp[index]; |
| 1010 | |
| 1011 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1012 | |
| 1013 | if (!ocsp || |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1014 | !ocsp->response.area || |
| 1015 | !ocsp->response.data || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1016 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1017 | return SSL_TLSEXT_ERR_NOACK; |
| 1018 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1019 | ssl_buf = OPENSSL_malloc(ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1020 | if (!ssl_buf) |
| 1021 | return SSL_TLSEXT_ERR_NOACK; |
| 1022 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1023 | memcpy(ssl_buf, ocsp->response.area, ocsp->response.data); |
| 1024 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1025 | |
| 1026 | return SSL_TLSEXT_ERR_OK; |
| 1027 | } |
| 1028 | |
| 1029 | /* |
| 1030 | * This function enables the handling of OCSP status extension on 'ctx' if a |
| 1031 | * file name 'cert_path' suffixed using ".ocsp" is present. |
| 1032 | * To enable OCSP status extension, the issuer's certificate is mandatory. |
| 1033 | * It should be present in the certificate's extra chain builded from file |
| 1034 | * 'cert_path'. If not found, the issuer certificate is loaded from a file |
| 1035 | * named 'cert_path' suffixed using '.issuer'. |
| 1036 | * |
| 1037 | * In addition, ".ocsp" file content is loaded as a DER format of an OCSP |
| 1038 | * response. If file is empty or content is not a valid OCSP response, |
| 1039 | * OCSP status extension is enabled but OCSP response is ignored (a warning |
| 1040 | * is displayed). |
| 1041 | * |
| 1042 | * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is |
| 1043 | * succesfully enabled, or -1 in other error case. |
| 1044 | */ |
| 1045 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const char *cert_path) |
| 1046 | { |
| 1047 | |
| 1048 | BIO *in = NULL; |
| 1049 | X509 *x, *xi = NULL, *issuer = NULL; |
| 1050 | STACK_OF(X509) *chain = NULL; |
| 1051 | OCSP_CERTID *cid = NULL; |
| 1052 | SSL *ssl; |
| 1053 | char ocsp_path[MAXPATHLEN+1]; |
| 1054 | int i, ret = -1; |
| 1055 | struct stat st; |
| 1056 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1057 | char *warn = NULL; |
| 1058 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1059 | pem_password_cb *passwd_cb; |
| 1060 | void *passwd_cb_userdata; |
| 1061 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1062 | |
| 1063 | snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path); |
| 1064 | |
| 1065 | if (stat(ocsp_path, &st)) |
| 1066 | return 1; |
| 1067 | |
| 1068 | ssl = SSL_new(ctx); |
| 1069 | if (!ssl) |
| 1070 | goto out; |
| 1071 | |
| 1072 | x = SSL_get_certificate(ssl); |
| 1073 | if (!x) |
| 1074 | goto out; |
| 1075 | |
| 1076 | /* Try to lookup for issuer in certificate extra chain */ |
| 1077 | #ifdef SSL_CTRL_GET_EXTRA_CHAIN_CERTS |
| 1078 | SSL_CTX_get_extra_chain_certs(ctx, &chain); |
| 1079 | #else |
| 1080 | chain = ctx->extra_certs; |
| 1081 | #endif |
| 1082 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1083 | issuer = sk_X509_value(chain, i); |
| 1084 | if (X509_check_issued(issuer, x) == X509_V_OK) |
| 1085 | break; |
| 1086 | else |
| 1087 | issuer = NULL; |
| 1088 | } |
| 1089 | |
| 1090 | /* If not found try to load issuer from a suffixed file */ |
| 1091 | if (!issuer) { |
| 1092 | char issuer_path[MAXPATHLEN+1]; |
| 1093 | |
| 1094 | in = BIO_new(BIO_s_file()); |
| 1095 | if (!in) |
| 1096 | goto out; |
| 1097 | |
| 1098 | snprintf(issuer_path, MAXPATHLEN+1, "%s.issuer", cert_path); |
| 1099 | if (BIO_read_filename(in, issuer_path) <= 0) |
| 1100 | goto out; |
| 1101 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1102 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 1103 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 1104 | |
| 1105 | xi = PEM_read_bio_X509_AUX(in, NULL, passwd_cb, passwd_cb_userdata); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1106 | if (!xi) |
| 1107 | goto out; |
| 1108 | |
| 1109 | if (X509_check_issued(xi, x) != X509_V_OK) |
| 1110 | goto out; |
| 1111 | |
| 1112 | issuer = xi; |
| 1113 | } |
| 1114 | |
| 1115 | cid = OCSP_cert_to_id(0, x, issuer); |
| 1116 | if (!cid) |
| 1117 | goto out; |
| 1118 | |
| 1119 | i = i2d_OCSP_CERTID(cid, NULL); |
| 1120 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1121 | goto out; |
| 1122 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1123 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1124 | if (!ocsp) |
| 1125 | goto out; |
| 1126 | |
| 1127 | p = ocsp->key_data; |
| 1128 | i2d_OCSP_CERTID(cid, &p); |
| 1129 | |
| 1130 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1131 | if (iocsp == ocsp) |
| 1132 | ocsp = NULL; |
| 1133 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1134 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1135 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1136 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1137 | #endif |
| 1138 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1139 | |
| 1140 | if (!callback) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1141 | struct ocsp_cbk_arg *cb_arg = calloc(1, sizeof(*cb_arg)); |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1142 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1143 | |
| 1144 | cb_arg->is_single = 1; |
| 1145 | cb_arg->s_ocsp = iocsp; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1146 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1147 | pkey = X509_get_pubkey(x); |
| 1148 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1149 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1150 | |
| 1151 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
| 1152 | SSL_CTX_set_tlsext_status_arg(ctx, cb_arg); |
| 1153 | } else { |
| 1154 | /* |
| 1155 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1156 | * Update that cb_arg with the new cert's staple |
| 1157 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1158 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1159 | struct certificate_ocsp *tmp_ocsp; |
| 1160 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1161 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1162 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1163 | |
| 1164 | #ifdef SSL_CTX_get_tlsext_status_arg |
| 1165 | SSL_CTX_ctrl(ctx, SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG, 0, &cb_arg); |
| 1166 | #else |
| 1167 | cb_arg = ctx->tlsext_status_arg; |
| 1168 | #endif |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1169 | |
| 1170 | /* |
| 1171 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1172 | * the order of operations below matter, take care when changing it |
| 1173 | */ |
| 1174 | tmp_ocsp = cb_arg->s_ocsp; |
| 1175 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1176 | cb_arg->s_ocsp = NULL; |
| 1177 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1178 | cb_arg->is_single = 0; |
| 1179 | cb_arg->single_kt = 0; |
| 1180 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1181 | pkey = X509_get_pubkey(x); |
| 1182 | key_type = EVP_PKEY_base_id(pkey); |
| 1183 | EVP_PKEY_free(pkey); |
| 1184 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1185 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1186 | if (index >= 0 && !cb_arg->m_ocsp[index]) |
| 1187 | cb_arg->m_ocsp[index] = iocsp; |
| 1188 | |
| 1189 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1190 | |
| 1191 | ret = 0; |
| 1192 | |
| 1193 | warn = NULL; |
| 1194 | if (ssl_sock_load_ocsp_response_from_file(ocsp_path, iocsp, cid, &warn)) { |
| 1195 | memprintf(&warn, "Loading '%s': %s. Content will be ignored", ocsp_path, warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1196 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1197 | } |
| 1198 | |
| 1199 | out: |
| 1200 | if (ssl) |
| 1201 | SSL_free(ssl); |
| 1202 | |
| 1203 | if (in) |
| 1204 | BIO_free(in); |
| 1205 | |
| 1206 | if (xi) |
| 1207 | X509_free(xi); |
| 1208 | |
| 1209 | if (cid) |
| 1210 | OCSP_CERTID_free(cid); |
| 1211 | |
| 1212 | if (ocsp) |
| 1213 | free(ocsp); |
| 1214 | |
| 1215 | if (warn) |
| 1216 | free(warn); |
| 1217 | |
| 1218 | |
| 1219 | return ret; |
| 1220 | } |
| 1221 | |
| 1222 | #endif |
| 1223 | |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1224 | #ifdef OPENSSL_IS_BORINGSSL |
| 1225 | static int ssl_sock_set_ocsp_response_from_file(SSL_CTX *ctx, const char *cert_path) |
| 1226 | { |
| 1227 | char ocsp_path[MAXPATHLEN+1]; |
| 1228 | struct stat st; |
| 1229 | int fd = -1, r = 0; |
| 1230 | |
| 1231 | snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path); |
| 1232 | if (stat(ocsp_path, &st)) |
| 1233 | return 0; |
| 1234 | |
| 1235 | fd = open(ocsp_path, O_RDONLY); |
| 1236 | if (fd == -1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1237 | ha_warning("Error opening OCSP response file %s.\n", ocsp_path); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1238 | return -1; |
| 1239 | } |
| 1240 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1241 | trash.data = 0; |
| 1242 | while (trash.data < trash.size) { |
| 1243 | r = read(fd, trash.area + trash.data, trash.size - trash.data); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1244 | if (r < 0) { |
| 1245 | if (errno == EINTR) |
| 1246 | continue; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1247 | ha_warning("Error reading OCSP response from file %s.\n", ocsp_path); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1248 | close(fd); |
| 1249 | return -1; |
| 1250 | } |
| 1251 | else if (r == 0) { |
| 1252 | break; |
| 1253 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1254 | trash.data += r; |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1255 | } |
| 1256 | close(fd); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1257 | return SSL_CTX_set_ocsp_response(ctx, (const uint8_t *) trash.area, |
| 1258 | trash.data); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1259 | } |
| 1260 | #endif |
| 1261 | |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 1262 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL && !defined LIBRESSL_VERSION_NUMBER) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1263 | |
| 1264 | #define CT_EXTENSION_TYPE 18 |
| 1265 | |
| 1266 | static int sctl_ex_index = -1; |
| 1267 | |
| 1268 | /* |
| 1269 | * Try to parse Signed Certificate Timestamp List structure. This function |
| 1270 | * makes only basic test if the data seems like SCTL. No signature validation |
| 1271 | * is performed. |
| 1272 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1273 | static int ssl_sock_parse_sctl(struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1274 | { |
| 1275 | int ret = 1; |
| 1276 | int len, pos, sct_len; |
| 1277 | unsigned char *data; |
| 1278 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1279 | if (sctl->data < 2) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1280 | goto out; |
| 1281 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1282 | data = (unsigned char *) sctl->area; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1283 | len = (data[0] << 8) | data[1]; |
| 1284 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1285 | if (len + 2 != sctl->data) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1286 | goto out; |
| 1287 | |
| 1288 | data = data + 2; |
| 1289 | pos = 0; |
| 1290 | while (pos < len) { |
| 1291 | if (len - pos < 2) |
| 1292 | goto out; |
| 1293 | |
| 1294 | sct_len = (data[pos] << 8) | data[pos + 1]; |
| 1295 | if (pos + sct_len + 2 > len) |
| 1296 | goto out; |
| 1297 | |
| 1298 | pos += sct_len + 2; |
| 1299 | } |
| 1300 | |
| 1301 | ret = 0; |
| 1302 | |
| 1303 | out: |
| 1304 | return ret; |
| 1305 | } |
| 1306 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1307 | static int ssl_sock_load_sctl_from_file(const char *sctl_path, |
| 1308 | struct buffer **sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1309 | { |
| 1310 | int fd = -1; |
| 1311 | int r = 0; |
| 1312 | int ret = 1; |
| 1313 | |
| 1314 | *sctl = NULL; |
| 1315 | |
| 1316 | fd = open(sctl_path, O_RDONLY); |
| 1317 | if (fd == -1) |
| 1318 | goto end; |
| 1319 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1320 | trash.data = 0; |
| 1321 | while (trash.data < trash.size) { |
| 1322 | r = read(fd, trash.area + trash.data, trash.size - trash.data); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1323 | if (r < 0) { |
| 1324 | if (errno == EINTR) |
| 1325 | continue; |
| 1326 | |
| 1327 | goto end; |
| 1328 | } |
| 1329 | else if (r == 0) { |
| 1330 | break; |
| 1331 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1332 | trash.data += r; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1333 | } |
| 1334 | |
| 1335 | ret = ssl_sock_parse_sctl(&trash); |
| 1336 | if (ret) |
| 1337 | goto end; |
| 1338 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1339 | *sctl = calloc(1, sizeof(**sctl)); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1340 | if (!chunk_dup(*sctl, &trash)) { |
| 1341 | free(*sctl); |
| 1342 | *sctl = NULL; |
| 1343 | goto end; |
| 1344 | } |
| 1345 | |
| 1346 | end: |
| 1347 | if (fd != -1) |
| 1348 | close(fd); |
| 1349 | |
| 1350 | return ret; |
| 1351 | } |
| 1352 | |
| 1353 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1354 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1355 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1356 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1357 | *out = (unsigned char *) sctl->area; |
| 1358 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1359 | |
| 1360 | return 1; |
| 1361 | } |
| 1362 | |
| 1363 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1364 | { |
| 1365 | return 1; |
| 1366 | } |
| 1367 | |
| 1368 | static int ssl_sock_load_sctl(SSL_CTX *ctx, const char *cert_path) |
| 1369 | { |
| 1370 | char sctl_path[MAXPATHLEN+1]; |
| 1371 | int ret = -1; |
| 1372 | struct stat st; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1373 | struct buffer *sctl = NULL; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1374 | |
| 1375 | snprintf(sctl_path, MAXPATHLEN+1, "%s.sctl", cert_path); |
| 1376 | |
| 1377 | if (stat(sctl_path, &st)) |
| 1378 | return 1; |
| 1379 | |
| 1380 | if (ssl_sock_load_sctl_from_file(sctl_path, &sctl)) |
| 1381 | goto out; |
| 1382 | |
| 1383 | if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) { |
| 1384 | free(sctl); |
| 1385 | goto out; |
| 1386 | } |
| 1387 | |
| 1388 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1389 | |
| 1390 | ret = 0; |
| 1391 | |
| 1392 | out: |
| 1393 | return ret; |
| 1394 | } |
| 1395 | |
| 1396 | #endif |
| 1397 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1398 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1399 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1400 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1401 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1402 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1403 | |
| 1404 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1405 | /* Disable renegotiation (CVE-2009-3555) */ |
Olivier Houchard | 90084a1 | 2017-11-23 18:21:29 +0100 | [diff] [blame] | 1406 | if ((conn->flags & (CO_FL_CONNECTED | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == CO_FL_CONNECTED) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1407 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1408 | conn->err_code = CO_ER_SSL_RENEG; |
| 1409 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1410 | } |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1411 | |
| 1412 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
| 1413 | if (!(conn->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
| 1414 | /* Long certificate chains optimz |
| 1415 | If write and read bios are differents, we |
| 1416 | consider that the buffering was activated, |
| 1417 | so we rise the output buffer size from 4k |
| 1418 | to 16k */ |
| 1419 | write_bio = SSL_get_wbio(ssl); |
| 1420 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1421 | BIO_set_write_buffer_size(write_bio, 16384); |
| 1422 | conn->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
| 1423 | } |
| 1424 | } |
| 1425 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1426 | } |
| 1427 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1428 | /* Callback is called for each certificate of the chain during a verify |
| 1429 | ok is set to 1 if preverify detect no error on current certificate. |
| 1430 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1431 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1432 | { |
| 1433 | SSL *ssl; |
| 1434 | struct connection *conn; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1435 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1436 | |
| 1437 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1438 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1439 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1440 | conn->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1441 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1442 | if (ok) /* no errors */ |
| 1443 | return ok; |
| 1444 | |
| 1445 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1446 | err = X509_STORE_CTX_get_error(x_store); |
| 1447 | |
| 1448 | /* check if CA error needs to be ignored */ |
| 1449 | if (depth > 0) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1450 | if (!SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st)) { |
| 1451 | conn->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1452 | conn->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1453 | } |
| 1454 | |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1455 | if (objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) { |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 1456 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1457 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1458 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1459 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1460 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1461 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1462 | return 0; |
| 1463 | } |
| 1464 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1465 | if (!SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st)) |
| 1466 | conn->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1467 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1468 | /* check if certificate error needs to be ignored */ |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1469 | if (objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) { |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 1470 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1471 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1472 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1473 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1474 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1475 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1476 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1477 | } |
| 1478 | |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1479 | static inline |
| 1480 | void ssl_sock_parse_clienthello(int write_p, int version, int content_type, |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1481 | const void *buf, size_t len, SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1482 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1483 | struct ssl_capture *capture; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1484 | unsigned char *msg; |
| 1485 | unsigned char *end; |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1486 | size_t rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1487 | |
| 1488 | /* This function is called for "from client" and "to server" |
| 1489 | * connections. The combination of write_p == 0 and content_type == 22 |
| 1490 | * is only avalaible during "from client" connection. |
| 1491 | */ |
| 1492 | |
| 1493 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1494 | * otherwise it is set to 1. |
| 1495 | */ |
| 1496 | if (write_p != 0) |
| 1497 | return; |
| 1498 | |
| 1499 | /* content_type contains the type of message received or sent |
| 1500 | * according with the SSL/TLS protocol spec. This message is |
| 1501 | * encoded with one byte. The value 256 (two bytes) is used |
| 1502 | * for designing the SSL/TLS record layer. According with the |
| 1503 | * rfc6101, the expected message (other than 256) are: |
| 1504 | * - change_cipher_spec(20) |
| 1505 | * - alert(21) |
| 1506 | * - handshake(22) |
| 1507 | * - application_data(23) |
| 1508 | * - (255) |
| 1509 | * We are interessed by the handshake and specially the client |
| 1510 | * hello. |
| 1511 | */ |
| 1512 | if (content_type != 22) |
| 1513 | return; |
| 1514 | |
| 1515 | /* The message length is at least 4 bytes, containing the |
| 1516 | * message type and the message length. |
| 1517 | */ |
| 1518 | if (len < 4) |
| 1519 | return; |
| 1520 | |
| 1521 | /* First byte of the handshake message id the type of |
| 1522 | * message. The konwn types are: |
| 1523 | * - hello_request(0) |
| 1524 | * - client_hello(1) |
| 1525 | * - server_hello(2) |
| 1526 | * - certificate(11) |
| 1527 | * - server_key_exchange (12) |
| 1528 | * - certificate_request(13) |
| 1529 | * - server_hello_done(14) |
| 1530 | * We are interested by the client hello. |
| 1531 | */ |
| 1532 | msg = (unsigned char *)buf; |
| 1533 | if (msg[0] != 1) |
| 1534 | return; |
| 1535 | |
| 1536 | /* Next three bytes are the length of the message. The total length |
| 1537 | * must be this decoded length + 4. If the length given as argument |
| 1538 | * is not the same, we abort the protocol dissector. |
| 1539 | */ |
| 1540 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1541 | if (len < rec_len + 4) |
| 1542 | return; |
| 1543 | msg += 4; |
| 1544 | end = msg + rec_len; |
| 1545 | if (end < msg) |
| 1546 | return; |
| 1547 | |
| 1548 | /* Expect 2 bytes for protocol version (1 byte for major and 1 byte |
| 1549 | * for minor, the random, composed by 4 bytes for the unix time and |
| 1550 | * 28 bytes for unix payload, and them 1 byte for the session id. So |
| 1551 | * we jump 1 + 1 + 4 + 28 + 1 bytes. |
| 1552 | */ |
| 1553 | msg += 1 + 1 + 4 + 28 + 1; |
| 1554 | if (msg > end) |
| 1555 | return; |
| 1556 | |
| 1557 | /* Next two bytes are the ciphersuite length. */ |
| 1558 | if (msg + 2 > end) |
| 1559 | return; |
| 1560 | rec_len = (msg[0] << 8) + msg[1]; |
| 1561 | msg += 2; |
| 1562 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1563 | return; |
| 1564 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1565 | capture = pool_alloc_dirty(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1566 | if (!capture) |
| 1567 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1568 | /* Compute the xxh64 of the ciphersuite. */ |
| 1569 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1570 | |
| 1571 | /* Capture the ciphersuite. */ |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1572 | capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ? |
| 1573 | global_ssl.capture_cipherlist : rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1574 | memcpy(capture->ciphersuite, msg, capture->ciphersuite_len); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1575 | |
| 1576 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1577 | } |
| 1578 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1579 | /* Callback is called for ssl protocol analyse */ |
| 1580 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1581 | { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1582 | #ifdef TLS1_RT_HEARTBEAT |
| 1583 | /* test heartbeat received (write_p is set to 0 |
| 1584 | for a received record) */ |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1585 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1586 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1587 | const unsigned char *p = buf; |
| 1588 | unsigned int payload; |
| 1589 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1590 | conn->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1591 | |
| 1592 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1593 | if (*p != TLS1_HB_REQUEST) |
| 1594 | return; |
| 1595 | |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 1596 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1597 | goto kill_it; |
| 1598 | |
| 1599 | payload = (p[1] * 256) + p[2]; |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1600 | if (3 + payload + 16 <= len) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1601 | return; /* OK no problem */ |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 1602 | kill_it: |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1603 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1604 | * advertised payload is larger than the advertised packet |
| 1605 | * length, so we have garbage in the buffer between the |
| 1606 | * payload and the end of the buffer (p+len). We can't know |
| 1607 | * if the SSL stack is patched, and we don't know if we can |
| 1608 | * safely wipe out the area between p+3+len and payload. |
| 1609 | * So instead, we prevent the response from being sent by |
| 1610 | * setting the max_send_fragment to 0 and we report an SSL |
| 1611 | * error, which will kill this connection. It will be reported |
| 1612 | * above as SSL_ERROR_SSL while an other handshake failure with |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1613 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1614 | */ |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1615 | ssl->max_send_fragment = 0; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1616 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1617 | return; |
| 1618 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1619 | #endif |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1620 | if (global_ssl.capture_cipherlist > 0) |
| 1621 | ssl_sock_parse_clienthello(write_p, version, content_type, buf, len, ssl); |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1622 | } |
| 1623 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1624 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1625 | /* This callback is used so that the server advertises the list of |
| 1626 | * negociable protocols for NPN. |
| 1627 | */ |
| 1628 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1629 | unsigned int *len, void *arg) |
| 1630 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1631 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1632 | |
| 1633 | *data = (const unsigned char *)conf->npn_str; |
| 1634 | *len = conf->npn_len; |
| 1635 | return SSL_TLSEXT_ERR_OK; |
| 1636 | } |
| 1637 | #endif |
| 1638 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1639 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1640 | /* This callback is used so that the server advertises the list of |
| 1641 | * negociable protocols for ALPN. |
| 1642 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1643 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1644 | unsigned char *outlen, |
| 1645 | const unsigned char *server, |
| 1646 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1647 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1648 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1649 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1650 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1651 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1652 | return SSL_TLSEXT_ERR_NOACK; |
| 1653 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1654 | return SSL_TLSEXT_ERR_OK; |
| 1655 | } |
| 1656 | #endif |
| 1657 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1658 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1659 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1660 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1661 | /* Create a X509 certificate with the specified servername and serial. This |
| 1662 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1663 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1664 | ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1665 | { |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1666 | X509 *cacert = bind_conf->ca_sign_cert; |
| 1667 | EVP_PKEY *capkey = bind_conf->ca_sign_pkey; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1668 | SSL_CTX *ssl_ctx = NULL; |
| 1669 | X509 *newcrt = NULL; |
| 1670 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1671 | SSL *tmp_ssl = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1672 | X509_NAME *name; |
| 1673 | const EVP_MD *digest; |
| 1674 | X509V3_CTX ctx; |
| 1675 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1676 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1677 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 1678 | /* Get the private key of the default certificate and use it */ |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1679 | #if (OPENSSL_VERSION_NUMBER >= 0x10002000L && !defined LIBRESSL_VERSION_NUMBER) |
| 1680 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 1681 | #else |
| 1682 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 1683 | if (tmp_ssl) |
| 1684 | pkey = SSL_get_privatekey(tmp_ssl); |
| 1685 | #endif |
| 1686 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1687 | goto mkcert_error; |
| 1688 | |
| 1689 | /* Create the certificate */ |
| 1690 | if (!(newcrt = X509_new())) |
| 1691 | goto mkcert_error; |
| 1692 | |
| 1693 | /* Set version number for the certificate (X509v3) and the serial |
| 1694 | * number */ |
| 1695 | if (X509_set_version(newcrt, 2L) != 1) |
| 1696 | goto mkcert_error; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1697 | ASN1_INTEGER_set(X509_get_serialNumber(newcrt), HA_ATOMIC_ADD(&ssl_ctx_serial, 1)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1698 | |
| 1699 | /* Set duration for the certificate */ |
| 1700 | if (!X509_gmtime_adj(X509_get_notBefore(newcrt), (long)-60*60*24) || |
| 1701 | !X509_gmtime_adj(X509_get_notAfter(newcrt),(long)60*60*24*365)) |
| 1702 | goto mkcert_error; |
| 1703 | |
| 1704 | /* set public key in the certificate */ |
| 1705 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1706 | goto mkcert_error; |
| 1707 | |
| 1708 | /* Set issuer name from the CA */ |
| 1709 | if (!(name = X509_get_subject_name(cacert))) |
| 1710 | goto mkcert_error; |
| 1711 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 1712 | goto mkcert_error; |
| 1713 | |
| 1714 | /* Set the subject name using the same, but the CN */ |
| 1715 | name = X509_NAME_dup(name); |
| 1716 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 1717 | (const unsigned char *)servername, |
| 1718 | -1, -1, 0) != 1) { |
| 1719 | X509_NAME_free(name); |
| 1720 | goto mkcert_error; |
| 1721 | } |
| 1722 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 1723 | X509_NAME_free(name); |
| 1724 | goto mkcert_error; |
| 1725 | } |
| 1726 | X509_NAME_free(name); |
| 1727 | |
| 1728 | /* Add x509v3 extensions as specified */ |
| 1729 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 1730 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 1731 | X509_EXTENSION *ext; |
| 1732 | |
| 1733 | if (!(ext = X509V3_EXT_conf(NULL, &ctx, x509v3_ext_names[i], x509v3_ext_values[i]))) |
| 1734 | goto mkcert_error; |
| 1735 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 1736 | X509_EXTENSION_free(ext); |
| 1737 | goto mkcert_error; |
| 1738 | } |
| 1739 | X509_EXTENSION_free(ext); |
| 1740 | } |
| 1741 | |
| 1742 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1743 | |
| 1744 | key_type = EVP_PKEY_base_id(capkey); |
| 1745 | |
| 1746 | if (key_type == EVP_PKEY_DSA) |
| 1747 | digest = EVP_sha1(); |
| 1748 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1749 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1750 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1751 | digest = EVP_sha256(); |
| 1752 | else { |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 1753 | #if (OPENSSL_VERSION_NUMBER >= 0x1000000fL) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1754 | int nid; |
| 1755 | |
| 1756 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 1757 | goto mkcert_error; |
| 1758 | if (!(digest = EVP_get_digestbynid(nid))) |
| 1759 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 1760 | #else |
| 1761 | goto mkcert_error; |
| 1762 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1763 | } |
| 1764 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1765 | if (!(X509_sign(newcrt, capkey, digest))) |
| 1766 | goto mkcert_error; |
| 1767 | |
| 1768 | /* Create and set the new SSL_CTX */ |
| 1769 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 1770 | goto mkcert_error; |
| 1771 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 1772 | goto mkcert_error; |
| 1773 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 1774 | goto mkcert_error; |
| 1775 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 1776 | goto mkcert_error; |
| 1777 | |
| 1778 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1779 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 1780 | #ifndef OPENSSL_NO_DH |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1781 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 1782 | #endif |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1783 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 1784 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1785 | const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE); |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1786 | EC_KEY *ecc; |
| 1787 | int nid; |
| 1788 | |
| 1789 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 1790 | goto end; |
| 1791 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 1792 | goto end; |
| 1793 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 1794 | EC_KEY_free(ecc); |
| 1795 | } |
| 1796 | #endif |
| 1797 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1798 | return ssl_ctx; |
| 1799 | |
| 1800 | mkcert_error: |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1801 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1802 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 1803 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1804 | return NULL; |
| 1805 | } |
| 1806 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1807 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1808 | ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1809 | { |
| 1810 | struct bind_conf *bind_conf = objt_listener(conn->target)->bind_conf; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1811 | |
| 1812 | return ssl_sock_do_create_cert(servername, bind_conf, conn->xprt_ctx); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1813 | } |
| 1814 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1815 | /* Do a lookup for a certificate in the LRU cache used to store generated |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1816 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1817 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1818 | ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1819 | { |
| 1820 | struct lru64 *lru = NULL; |
| 1821 | |
| 1822 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 1823 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1824 | lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1825 | if (lru && lru->domain) { |
| 1826 | if (ssl) |
| 1827 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 1828 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1829 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1830 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 1831 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1832 | } |
| 1833 | return NULL; |
| 1834 | } |
| 1835 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1836 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 1837 | * function is not thread-safe, it should only be used to check if a certificate |
| 1838 | * exists in the lru cache (with no warranty it will not be removed by another |
| 1839 | * thread). It is kept for backward compatibility. */ |
| 1840 | SSL_CTX * |
| 1841 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 1842 | { |
| 1843 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 1844 | } |
| 1845 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1846 | /* Set a certificate int the LRU cache used to store generated |
| 1847 | * certificate. Return 0 on success, otherwise -1 */ |
| 1848 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1849 | ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1850 | { |
| 1851 | struct lru64 *lru = NULL; |
| 1852 | |
| 1853 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1854 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1855 | lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1856 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1857 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1858 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1859 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1860 | if (lru->domain && lru->data) |
| 1861 | lru->free((SSL_CTX *)lru->data); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1862 | lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_cert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1863 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1864 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1865 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1866 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1867 | } |
| 1868 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1869 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1870 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1871 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1872 | { |
| 1873 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 1874 | } |
| 1875 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1876 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 1877 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 1878 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1879 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1880 | ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1881 | { |
| 1882 | X509 *cacert = bind_conf->ca_sign_cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1883 | SSL_CTX *ssl_ctx = NULL; |
| 1884 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1885 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1886 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1887 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1888 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1889 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1890 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1891 | if (lru && lru->domain) |
| 1892 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1893 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1894 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1895 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1896 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1897 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 1898 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1899 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1900 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1901 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1902 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1903 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 1904 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 1905 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1906 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1907 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1908 | return 0; |
| 1909 | } |
| 1910 | static int |
| 1911 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 1912 | { |
| 1913 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1914 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1915 | |
| 1916 | conn_get_to_addr(conn); |
| 1917 | if (conn->flags & CO_FL_ADDR_TO_SET) { |
| 1918 | key = ssl_sock_generated_cert_key(&conn->addr.to, get_addr_len(&conn->addr.to)); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1919 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1920 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 1921 | } |
| 1922 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1923 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1924 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1925 | |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1926 | |
| 1927 | #ifndef SSL_OP_CIPHER_SERVER_PREFERENCE /* needs OpenSSL >= 0.9.7 */ |
| 1928 | #define SSL_OP_CIPHER_SERVER_PREFERENCE 0 |
| 1929 | #endif |
| 1930 | |
| 1931 | #ifndef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION /* needs OpenSSL >= 0.9.7 */ |
| 1932 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 |
| 1933 | #define SSL_renegotiate_pending(arg) 0 |
| 1934 | #endif |
| 1935 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 0.9.8 */ |
| 1936 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 1937 | #endif |
| 1938 | #ifndef SSL_OP_NO_TICKET /* needs OpenSSL >= 0.9.8 */ |
| 1939 | #define SSL_OP_NO_TICKET 0 |
| 1940 | #endif |
| 1941 | #ifndef SSL_OP_NO_COMPRESSION /* needs OpenSSL >= 0.9.9 */ |
| 1942 | #define SSL_OP_NO_COMPRESSION 0 |
| 1943 | #endif |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 1944 | #ifdef OPENSSL_NO_SSL3 /* SSLv3 support removed */ |
| 1945 | #undef SSL_OP_NO_SSLv3 |
| 1946 | #define SSL_OP_NO_SSLv3 0 |
| 1947 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1948 | #ifndef SSL_OP_NO_TLSv1_1 /* needs OpenSSL >= 1.0.1 */ |
| 1949 | #define SSL_OP_NO_TLSv1_1 0 |
| 1950 | #endif |
| 1951 | #ifndef SSL_OP_NO_TLSv1_2 /* needs OpenSSL >= 1.0.1 */ |
| 1952 | #define SSL_OP_NO_TLSv1_2 0 |
| 1953 | #endif |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 1954 | #ifndef SSL_OP_NO_TLSv1_3 /* needs OpenSSL >= 1.1.1 */ |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1955 | #define SSL_OP_NO_TLSv1_3 0 |
| 1956 | #endif |
| 1957 | #ifndef SSL_OP_SINGLE_DH_USE /* needs OpenSSL >= 0.9.6 */ |
| 1958 | #define SSL_OP_SINGLE_DH_USE 0 |
| 1959 | #endif |
| 1960 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 1.0.0 */ |
| 1961 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 1962 | #endif |
| 1963 | #ifndef SSL_MODE_RELEASE_BUFFERS /* needs OpenSSL >= 1.0.0 */ |
| 1964 | #define SSL_MODE_RELEASE_BUFFERS 0 |
| 1965 | #endif |
| 1966 | #ifndef SSL_MODE_SMALL_BUFFERS /* needs small_records.patch */ |
| 1967 | #define SSL_MODE_SMALL_BUFFERS 0 |
| 1968 | #endif |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 1969 | #ifndef SSL_OP_PRIORITIZE_CHACHA /* needs OpenSSL >= 1.1.1 */ |
| 1970 | #define SSL_OP_PRIORITIZE_CHACHA 0 |
| 1971 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1972 | |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 1973 | #if (OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1974 | typedef enum { SET_CLIENT, SET_SERVER } set_context_func; |
| 1975 | |
| 1976 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1977 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 1978 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1979 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1980 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 1981 | #endif |
| 1982 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1983 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 1984 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1985 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 1986 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1987 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1988 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1989 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1990 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 1991 | #endif |
| 1992 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1993 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1994 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 1995 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 1996 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 1997 | #endif |
| 1998 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 1999 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2000 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2001 | /* Unusable in this context. */ |
| 2002 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2003 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2004 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2005 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2006 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2007 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2008 | typedef enum { SET_MIN, SET_MAX } set_context_func; |
| 2009 | |
| 2010 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2011 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2012 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2013 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2014 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2015 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2016 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2017 | } |
| 2018 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2019 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2020 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2021 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2022 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2023 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2024 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2025 | } |
| 2026 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2027 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2028 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2029 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2030 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2031 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2032 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2033 | } |
| 2034 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2035 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2036 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2037 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2038 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2039 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2040 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2041 | } |
| 2042 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2043 | #if SSL_OP_NO_TLSv1_3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2044 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2045 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2046 | #endif |
| 2047 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2048 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
| 2049 | #if SSL_OP_NO_TLSv1_3 |
| 2050 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2051 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2052 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2053 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2054 | #endif |
| 2055 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2056 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2057 | |
| 2058 | static struct { |
| 2059 | int option; |
| 2060 | uint16_t flag; |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2061 | void (*ctx_set_version)(SSL_CTX *, set_context_func); |
| 2062 | void (*ssl_set_version)(SSL *, set_context_func); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2063 | const char *name; |
| 2064 | } methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2065 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2066 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2067 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2068 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2069 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2070 | {SSL_OP_NO_TLSv1_3, MC_SSL_O_NO_TLSV13, ctx_set_TLSv13_func, ssl_set_TLSv13_func, "TLSv1.3"}, /* CONF_TLSV13 */ |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2071 | }; |
| 2072 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2073 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2074 | { |
| 2075 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2076 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2077 | SSL_set_SSL_CTX(ssl, ctx); |
| 2078 | } |
| 2079 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2080 | #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(OPENSSL_IS_BORINGSSL) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2081 | |
| 2082 | static int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
| 2083 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2084 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2085 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2086 | |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2087 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs) |
| 2088 | return SSL_TLSEXT_ERR_OK; |
| 2089 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2090 | } |
| 2091 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2092 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2093 | static int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
| 2094 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2095 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2096 | #else |
| 2097 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
| 2098 | { |
| 2099 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2100 | struct connection *conn; |
| 2101 | struct bind_conf *s; |
| 2102 | const uint8_t *extension_data; |
| 2103 | size_t extension_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2104 | int has_rsa = 0, has_ecdsa = 0, has_ecdsa_sig = 0; |
| 2105 | |
| 2106 | char *wildp = NULL; |
| 2107 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2108 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2109 | struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2110 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2111 | int i; |
| 2112 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2113 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2114 | s = objt_listener(conn->target)->bind_conf; |
| 2115 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2116 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2117 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2118 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2119 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2120 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2121 | #else |
| 2122 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2123 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2124 | /* |
| 2125 | * The server_name extension was given too much extensibility when it |
| 2126 | * was written, so parsing the normal case is a bit complex. |
| 2127 | */ |
| 2128 | size_t len; |
| 2129 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2130 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2131 | /* Extract the length of the supplied list of names. */ |
| 2132 | len = (*extension_data++) << 8; |
| 2133 | len |= *extension_data++; |
| 2134 | if (len + 2 != extension_len) |
| 2135 | goto abort; |
| 2136 | /* |
| 2137 | * The list in practice only has a single element, so we only consider |
| 2138 | * the first one. |
| 2139 | */ |
| 2140 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2141 | goto abort; |
| 2142 | extension_len = len - 1; |
| 2143 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2144 | if (extension_len <= 2) |
| 2145 | goto abort; |
| 2146 | len = (*extension_data++) << 8; |
| 2147 | len |= *extension_data++; |
| 2148 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2149 | || memchr(extension_data, 0, len) != NULL) |
| 2150 | goto abort; |
| 2151 | servername = extension_data; |
| 2152 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2153 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2154 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
| 2155 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2156 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2157 | } |
| 2158 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2159 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2160 | if (!s->strict_sni) { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2161 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2162 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2163 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2164 | goto abort; |
| 2165 | } |
| 2166 | |
| 2167 | /* extract/check clientHello informations */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2168 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2169 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2170 | #else |
| 2171 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2172 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2173 | uint8_t sign; |
| 2174 | size_t len; |
| 2175 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2176 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2177 | len = (*extension_data++) << 8; |
| 2178 | len |= *extension_data++; |
| 2179 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2180 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2181 | if (len % 2 != 0) |
| 2182 | goto abort; |
| 2183 | for (; len > 0; len -= 2) { |
| 2184 | extension_data++; /* hash */ |
| 2185 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2186 | switch (sign) { |
| 2187 | case TLSEXT_signature_rsa: |
| 2188 | has_rsa = 1; |
| 2189 | break; |
| 2190 | case TLSEXT_signature_ecdsa: |
| 2191 | has_ecdsa_sig = 1; |
| 2192 | break; |
| 2193 | default: |
| 2194 | continue; |
| 2195 | } |
| 2196 | if (has_ecdsa_sig && has_rsa) |
| 2197 | break; |
| 2198 | } |
| 2199 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2200 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2201 | has_rsa = 1; |
| 2202 | } |
| 2203 | if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */ |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2204 | const SSL_CIPHER *cipher; |
| 2205 | size_t len; |
| 2206 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2207 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2208 | len = ctx->cipher_suites_len; |
| 2209 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2210 | #else |
| 2211 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2212 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2213 | if (len % 2 != 0) |
| 2214 | goto abort; |
| 2215 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2216 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2217 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2218 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2219 | #else |
| 2220 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2221 | #endif |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 2222 | if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2223 | has_ecdsa = 1; |
| 2224 | break; |
| 2225 | } |
| 2226 | } |
| 2227 | } |
| 2228 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2229 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2230 | trash.area[i] = tolower(servername[i]); |
| 2231 | if (!wildp && (trash.area[i] == '.')) |
| 2232 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2233 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2234 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2235 | |
| 2236 | /* lookup in full qualified names */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2237 | node = ebst_lookup(&s->sni_ctx, trash.area); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2238 | |
| 2239 | /* lookup a not neg filter */ |
| 2240 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 2241 | if (!container_of(n, struct sni_ctx, name)->neg) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2242 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2243 | case TLSEXT_signature_ecdsa: |
| 2244 | if (has_ecdsa) { |
| 2245 | node_ecdsa = n; |
| 2246 | goto find_one; |
| 2247 | } |
| 2248 | break; |
| 2249 | case TLSEXT_signature_rsa: |
| 2250 | if (has_rsa && !node_rsa) { |
| 2251 | node_rsa = n; |
| 2252 | if (!has_ecdsa) |
| 2253 | goto find_one; |
| 2254 | } |
| 2255 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2256 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2257 | if (!node_anonymous) |
| 2258 | node_anonymous = n; |
| 2259 | break; |
| 2260 | } |
| 2261 | } |
| 2262 | } |
| 2263 | if (wildp) { |
| 2264 | /* lookup in wildcards names */ |
| 2265 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2266 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 2267 | if (!container_of(n, struct sni_ctx, name)->neg) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2268 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2269 | case TLSEXT_signature_ecdsa: |
| 2270 | if (has_ecdsa) { |
| 2271 | node_ecdsa = n; |
| 2272 | goto find_one; |
| 2273 | } |
| 2274 | break; |
| 2275 | case TLSEXT_signature_rsa: |
| 2276 | if (has_rsa && !node_rsa) { |
| 2277 | node_rsa = n; |
| 2278 | if (!has_ecdsa) |
| 2279 | goto find_one; |
| 2280 | } |
| 2281 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2282 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2283 | if (!node_anonymous) |
| 2284 | node_anonymous = n; |
| 2285 | break; |
| 2286 | } |
| 2287 | } |
| 2288 | } |
| 2289 | } |
| 2290 | find_one: |
| 2291 | /* select by key_signature priority order */ |
| 2292 | node = node_ecdsa ? node_ecdsa : (node_rsa ? node_rsa : node_anonymous); |
| 2293 | |
| 2294 | if (node) { |
| 2295 | /* switch ctx */ |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 2296 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2297 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
Olivier Houchard | 35a63cc | 2017-11-02 19:04:38 +0100 | [diff] [blame] | 2298 | if (conf) { |
| 2299 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2300 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2301 | if (conf->early_data) |
| 2302 | allow_early = 1; |
| 2303 | } |
| 2304 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2305 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2306 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2307 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2308 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2309 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2310 | } |
| 2311 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2312 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2313 | /* no certificate match, is the default_ctx */ |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2314 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2315 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2316 | allow_early: |
| 2317 | #ifdef OPENSSL_IS_BORINGSSL |
| 2318 | if (allow_early) |
| 2319 | SSL_set_early_data_enabled(ssl, 1); |
| 2320 | #else |
| 2321 | if (!allow_early) |
| 2322 | SSL_set_max_early_data(ssl, 0); |
| 2323 | #endif |
| 2324 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2325 | abort: |
| 2326 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2327 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2328 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2329 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2330 | #else |
| 2331 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2332 | return 0; |
| 2333 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2334 | } |
| 2335 | |
| 2336 | #else /* OPENSSL_IS_BORINGSSL */ |
| 2337 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2338 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2339 | * warning when no match is found, which implies the default (first) cert |
| 2340 | * will keep being used. |
| 2341 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2342 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2343 | { |
| 2344 | const char *servername; |
| 2345 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2346 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2347 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2348 | int i; |
| 2349 | (void)al; /* shut gcc stupid warning */ |
| 2350 | |
| 2351 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2352 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2353 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2354 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2355 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2356 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2357 | if (s->strict_sni) |
| 2358 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 2359 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
| 2360 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2361 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2362 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2363 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2364 | if (!servername[i]) |
| 2365 | break; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2366 | trash.area[i] = tolower(servername[i]); |
| 2367 | if (!wildp && (trash.area[i] == '.')) |
| 2368 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2369 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2370 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2371 | |
| 2372 | /* lookup in full qualified names */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2373 | node = ebst_lookup(&s->sni_ctx, trash.area); |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2374 | |
| 2375 | /* lookup a not neg filter */ |
| 2376 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 2377 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2378 | node = n; |
| 2379 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2380 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2381 | } |
| 2382 | if (!node && wildp) { |
| 2383 | /* lookup in wildcards names */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2384 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2385 | } |
| 2386 | if (!node || container_of(node, struct sni_ctx, name)->neg) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2387 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2388 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2389 | /* switch ctx done in ssl_sock_generate_certificate */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2390 | return SSL_TLSEXT_ERR_OK; |
| 2391 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2392 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2393 | if (s->strict_sni) |
| 2394 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 2395 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
| 2396 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2397 | } |
| 2398 | |
| 2399 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2400 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2401 | return SSL_TLSEXT_ERR_OK; |
| 2402 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2403 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2404 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2405 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2406 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2407 | |
| 2408 | static DH * ssl_get_dh_1024(void) |
| 2409 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2410 | static unsigned char dh1024_p[]={ |
| 2411 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2412 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2413 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2414 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2415 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2416 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2417 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2418 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2419 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2420 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2421 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2422 | }; |
| 2423 | static unsigned char dh1024_g[]={ |
| 2424 | 0x02, |
| 2425 | }; |
| 2426 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2427 | BIGNUM *p; |
| 2428 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2429 | DH *dh = DH_new(); |
| 2430 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2431 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2432 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2433 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2434 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2435 | DH_free(dh); |
| 2436 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2437 | } else { |
| 2438 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2439 | } |
| 2440 | } |
| 2441 | return dh; |
| 2442 | } |
| 2443 | |
| 2444 | static DH *ssl_get_dh_2048(void) |
| 2445 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2446 | static unsigned char dh2048_p[]={ |
| 2447 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2448 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2449 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2450 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2451 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2452 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2453 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2454 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2455 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2456 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2457 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2458 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2459 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2460 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2461 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2462 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2463 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2464 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2465 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2466 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2467 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2468 | 0xB7,0x1F,0x77,0xF3, |
| 2469 | }; |
| 2470 | static unsigned char dh2048_g[]={ |
| 2471 | 0x02, |
| 2472 | }; |
| 2473 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2474 | BIGNUM *p; |
| 2475 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2476 | DH *dh = DH_new(); |
| 2477 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2478 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2479 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2480 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2481 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2482 | DH_free(dh); |
| 2483 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2484 | } else { |
| 2485 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2486 | } |
| 2487 | } |
| 2488 | return dh; |
| 2489 | } |
| 2490 | |
| 2491 | static DH *ssl_get_dh_4096(void) |
| 2492 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2493 | static unsigned char dh4096_p[]={ |
| 2494 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2495 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2496 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2497 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2498 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2499 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2500 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2501 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2502 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2503 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2504 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2505 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2506 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2507 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2508 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2509 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2510 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2511 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2512 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2513 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2514 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2515 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2516 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2517 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2518 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2519 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2520 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2521 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2522 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2523 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2524 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2525 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2526 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2527 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2528 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2529 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2530 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2531 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2532 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2533 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2534 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2535 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2536 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2537 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2538 | static unsigned char dh4096_g[]={ |
| 2539 | 0x02, |
| 2540 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2541 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2542 | BIGNUM *p; |
| 2543 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2544 | DH *dh = DH_new(); |
| 2545 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2546 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2547 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2548 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2549 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2550 | DH_free(dh); |
| 2551 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2552 | } else { |
| 2553 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2554 | } |
| 2555 | } |
| 2556 | return dh; |
| 2557 | } |
| 2558 | |
| 2559 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2560 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2561 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2562 | { |
| 2563 | DH *dh = NULL; |
| 2564 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2565 | int type; |
| 2566 | |
| 2567 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2568 | |
| 2569 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2570 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2571 | */ |
| 2572 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 2573 | keylen = EVP_PKEY_bits(pkey); |
| 2574 | } |
| 2575 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2576 | if (keylen > global_ssl.default_dh_param) { |
| 2577 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2578 | } |
| 2579 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2580 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2581 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2582 | } |
| 2583 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2584 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2585 | } |
| 2586 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2587 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2588 | } |
| 2589 | |
| 2590 | return dh; |
| 2591 | } |
| 2592 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2593 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2594 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2595 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2596 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2597 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2598 | if (in == NULL) |
| 2599 | goto end; |
| 2600 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2601 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2602 | goto end; |
| 2603 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2604 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 2605 | |
| 2606 | end: |
| 2607 | if (in) |
| 2608 | BIO_free(in); |
| 2609 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 2610 | ERR_clear_error(); |
| 2611 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2612 | return dh; |
| 2613 | } |
| 2614 | |
| 2615 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 2616 | { |
| 2617 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 2618 | |
| 2619 | if (global_dh) { |
| 2620 | return 0; |
| 2621 | } |
| 2622 | |
| 2623 | return -1; |
| 2624 | } |
| 2625 | |
| 2626 | /* Loads Diffie-Hellman parameter from a file. Returns 1 if loaded, else -1 |
| 2627 | if an error occured, and 0 if parameter not found. */ |
| 2628 | int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file) |
| 2629 | { |
| 2630 | int ret = -1; |
| 2631 | DH *dh = ssl_sock_get_dh_from_file(file); |
| 2632 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2633 | if (dh) { |
| 2634 | ret = 1; |
| 2635 | SSL_CTX_set_tmp_dh(ctx, dh); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2636 | |
| 2637 | if (ssl_dh_ptr_index >= 0) { |
| 2638 | /* store a pointer to the DH params to avoid complaining about |
| 2639 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 2640 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 2641 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2642 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2643 | else if (global_dh) { |
| 2644 | SSL_CTX_set_tmp_dh(ctx, global_dh); |
| 2645 | ret = 0; /* DH params not found */ |
| 2646 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2647 | else { |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 2648 | /* Clear openssl global errors stack */ |
| 2649 | ERR_clear_error(); |
| 2650 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2651 | if (global_ssl.default_dh_param <= 1024) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2652 | /* we are limited to DH parameter of 1024 bits anyway */ |
Remi Gacogne | c7e1263 | 2016-07-02 16:26:10 +0200 | [diff] [blame] | 2653 | if (local_dh_1024 == NULL) |
| 2654 | local_dh_1024 = ssl_get_dh_1024(); |
| 2655 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2656 | if (local_dh_1024 == NULL) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2657 | goto end; |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 2658 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2659 | SSL_CTX_set_tmp_dh(ctx, local_dh_1024); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2660 | } |
| 2661 | else { |
| 2662 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 2663 | } |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 2664 | |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 2665 | ret = 0; /* DH params not found */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2666 | } |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2667 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2668 | end: |
| 2669 | if (dh) |
| 2670 | DH_free(dh); |
| 2671 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2672 | return ret; |
| 2673 | } |
| 2674 | #endif |
| 2675 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2676 | static int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, struct ssl_bind_conf *conf, |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2677 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2678 | { |
| 2679 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2680 | int wild = 0, neg = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2681 | struct ebmb_node *node; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2682 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2683 | if (*name == '!') { |
| 2684 | neg = 1; |
| 2685 | name++; |
| 2686 | } |
| 2687 | if (*name == '*') { |
| 2688 | wild = 1; |
| 2689 | name++; |
| 2690 | } |
| 2691 | /* !* filter is a nop */ |
| 2692 | if (neg && wild) |
| 2693 | return order; |
| 2694 | if (*name) { |
| 2695 | int j, len; |
| 2696 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2697 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2698 | trash.area[j] = tolower(name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2699 | if (j >= trash.size) |
| 2700 | return order; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2701 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2702 | |
| 2703 | /* Check for duplicates. */ |
| 2704 | if (wild) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2705 | node = ebst_lookup(&s->sni_w_ctx, trash.area); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2706 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2707 | node = ebst_lookup(&s->sni_ctx, trash.area); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2708 | for (; node; node = ebmb_next_dup(node)) { |
| 2709 | sc = ebmb_entry(node, struct sni_ctx, name); |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2710 | if (sc->ctx == ctx && sc->conf == conf && sc->neg == neg) |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2711 | return order; |
| 2712 | } |
| 2713 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2714 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 2715 | if (!sc) |
| 2716 | return order; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2717 | memcpy(sc->name.key, trash.area, len + 1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2718 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2719 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2720 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2721 | sc->order = order++; |
| 2722 | sc->neg = neg; |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 2723 | if (kinfo.sig != TLSEXT_signature_anonymous) |
| 2724 | SSL_CTX_set_ex_data(ctx, ssl_pkey_info_index, &sc->kinfo); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2725 | if (wild) |
| 2726 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 2727 | else |
| 2728 | ebst_insert(&s->sni_ctx, &sc->name); |
| 2729 | } |
| 2730 | return order; |
| 2731 | } |
| 2732 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2733 | |
| 2734 | /* The following code is used for loading multiple crt files into |
| 2735 | * SSL_CTX's based on CN/SAN |
| 2736 | */ |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 2737 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined(LIBRESSL_VERSION_NUMBER) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2738 | /* This is used to preload the certifcate, private key |
| 2739 | * and Cert Chain of a file passed in via the crt |
| 2740 | * argument |
| 2741 | * |
| 2742 | * This way, we do not have to read the file multiple times |
| 2743 | */ |
| 2744 | struct cert_key_and_chain { |
| 2745 | X509 *cert; |
| 2746 | EVP_PKEY *key; |
| 2747 | unsigned int num_chain_certs; |
| 2748 | /* This is an array of X509 pointers */ |
| 2749 | X509 **chain_certs; |
| 2750 | }; |
| 2751 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2752 | #define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES)) |
| 2753 | |
| 2754 | struct key_combo_ctx { |
| 2755 | SSL_CTX *ctx; |
| 2756 | int order; |
| 2757 | }; |
| 2758 | |
| 2759 | /* Map used for processing multiple keypairs for a single purpose |
| 2760 | * |
| 2761 | * This maps CN/SNI name to certificate type |
| 2762 | */ |
| 2763 | struct sni_keytype { |
| 2764 | int keytypes; /* BITMASK for keytypes */ |
| 2765 | struct ebmb_node name; /* node holding the servername value */ |
| 2766 | }; |
| 2767 | |
| 2768 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2769 | /* Frees the contents of a cert_key_and_chain |
| 2770 | */ |
| 2771 | static void ssl_sock_free_cert_key_and_chain_contents(struct cert_key_and_chain *ckch) |
| 2772 | { |
| 2773 | int i; |
| 2774 | |
| 2775 | if (!ckch) |
| 2776 | return; |
| 2777 | |
| 2778 | /* Free the certificate and set pointer to NULL */ |
| 2779 | if (ckch->cert) |
| 2780 | X509_free(ckch->cert); |
| 2781 | ckch->cert = NULL; |
| 2782 | |
| 2783 | /* Free the key and set pointer to NULL */ |
| 2784 | if (ckch->key) |
| 2785 | EVP_PKEY_free(ckch->key); |
| 2786 | ckch->key = NULL; |
| 2787 | |
| 2788 | /* Free each certificate in the chain */ |
| 2789 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 2790 | if (ckch->chain_certs[i]) |
| 2791 | X509_free(ckch->chain_certs[i]); |
| 2792 | } |
| 2793 | |
| 2794 | /* Free the chain obj itself and set to NULL */ |
| 2795 | if (ckch->num_chain_certs > 0) { |
| 2796 | free(ckch->chain_certs); |
| 2797 | ckch->num_chain_certs = 0; |
| 2798 | ckch->chain_certs = NULL; |
| 2799 | } |
| 2800 | |
| 2801 | } |
| 2802 | |
| 2803 | /* checks if a key and cert exists in the ckch |
| 2804 | */ |
| 2805 | static int ssl_sock_is_ckch_valid(struct cert_key_and_chain *ckch) |
| 2806 | { |
| 2807 | return (ckch->cert != NULL && ckch->key != NULL); |
| 2808 | } |
| 2809 | |
| 2810 | |
| 2811 | /* Loads the contents of a crt file (path) into a cert_key_and_chain |
| 2812 | * This allows us to carry the contents of the file without having to |
| 2813 | * read the file multiple times. |
| 2814 | * |
| 2815 | * returns: |
| 2816 | * 0 on Success |
| 2817 | * 1 on SSL Failure |
| 2818 | * 2 on file not found |
| 2819 | */ |
| 2820 | static int ssl_sock_load_crt_file_into_ckch(const char *path, struct cert_key_and_chain *ckch, char **err) |
| 2821 | { |
| 2822 | |
| 2823 | BIO *in; |
| 2824 | X509 *ca = NULL; |
| 2825 | int ret = 1; |
| 2826 | |
| 2827 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 2828 | |
| 2829 | in = BIO_new(BIO_s_file()); |
| 2830 | if (in == NULL) |
| 2831 | goto end; |
| 2832 | |
| 2833 | if (BIO_read_filename(in, path) <= 0) |
| 2834 | goto end; |
| 2835 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2836 | /* Read Private Key */ |
| 2837 | ckch->key = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL); |
| 2838 | if (ckch->key == NULL) { |
| 2839 | memprintf(err, "%sunable to load private key from file '%s'.\n", |
| 2840 | err && *err ? *err : "", path); |
| 2841 | goto end; |
| 2842 | } |
| 2843 | |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 2844 | /* Seek back to beginning of file */ |
Thierry FOURNIER / OZON.IO | d44ea3f | 2016-10-14 00:49:21 +0200 | [diff] [blame] | 2845 | if (BIO_reset(in) == -1) { |
| 2846 | memprintf(err, "%san error occurred while reading the file '%s'.\n", |
| 2847 | err && *err ? *err : "", path); |
| 2848 | goto end; |
| 2849 | } |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 2850 | |
| 2851 | /* Read Certificate */ |
| 2852 | ckch->cert = PEM_read_bio_X509_AUX(in, NULL, NULL, NULL); |
| 2853 | if (ckch->cert == NULL) { |
| 2854 | memprintf(err, "%sunable to load certificate from file '%s'.\n", |
| 2855 | err && *err ? *err : "", path); |
| 2856 | goto end; |
| 2857 | } |
| 2858 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2859 | /* Read Certificate Chain */ |
| 2860 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 2861 | /* Grow the chain certs */ |
| 2862 | ckch->num_chain_certs++; |
| 2863 | ckch->chain_certs = realloc(ckch->chain_certs, (ckch->num_chain_certs * sizeof(X509 *))); |
| 2864 | |
| 2865 | /* use - 1 here since we just incremented it above */ |
| 2866 | ckch->chain_certs[ckch->num_chain_certs - 1] = ca; |
| 2867 | } |
| 2868 | ret = ERR_get_error(); |
| 2869 | if (ret && (ERR_GET_LIB(ret) != ERR_LIB_PEM && ERR_GET_REASON(ret) != PEM_R_NO_START_LINE)) { |
| 2870 | memprintf(err, "%sunable to load certificate chain from file '%s'.\n", |
| 2871 | err && *err ? *err : "", path); |
| 2872 | ret = 1; |
| 2873 | goto end; |
| 2874 | } |
| 2875 | |
| 2876 | ret = 0; |
| 2877 | |
| 2878 | end: |
| 2879 | |
| 2880 | ERR_clear_error(); |
| 2881 | if (in) |
| 2882 | BIO_free(in); |
| 2883 | |
| 2884 | /* Something went wrong in one of the reads */ |
| 2885 | if (ret != 0) |
| 2886 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 2887 | |
| 2888 | return ret; |
| 2889 | } |
| 2890 | |
| 2891 | /* Loads the info in ckch into ctx |
| 2892 | * Currently, this does not process any information about ocsp, dhparams or |
| 2893 | * sctl |
| 2894 | * Returns |
| 2895 | * 0 on success |
| 2896 | * 1 on failure |
| 2897 | */ |
| 2898 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 2899 | { |
| 2900 | int i = 0; |
| 2901 | |
| 2902 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 2903 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 2904 | err && *err ? *err : "", path); |
| 2905 | return 1; |
| 2906 | } |
| 2907 | |
| 2908 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 2909 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 2910 | err && *err ? *err : "", path); |
| 2911 | return 1; |
| 2912 | } |
| 2913 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2914 | /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */ |
| 2915 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 2916 | if (!SSL_CTX_add1_chain_cert(ctx, ckch->chain_certs[i])) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2917 | memprintf(err, "%sunable to load chain certificate #%d into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 2918 | err && *err ? *err : "", (i+1), path); |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2919 | return 1; |
| 2920 | } |
| 2921 | } |
| 2922 | |
| 2923 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 2924 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 2925 | err && *err ? *err : "", path); |
| 2926 | return 1; |
| 2927 | } |
| 2928 | |
| 2929 | return 0; |
| 2930 | } |
| 2931 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2932 | |
| 2933 | static void ssl_sock_populate_sni_keytypes_hplr(const char *str, struct eb_root *sni_keytypes, int key_index) |
| 2934 | { |
| 2935 | struct sni_keytype *s_kt = NULL; |
| 2936 | struct ebmb_node *node; |
| 2937 | int i; |
| 2938 | |
| 2939 | for (i = 0; i < trash.size; i++) { |
| 2940 | if (!str[i]) |
| 2941 | break; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2942 | trash.area[i] = tolower(str[i]); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2943 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2944 | trash.area[i] = 0; |
| 2945 | node = ebst_lookup(sni_keytypes, trash.area); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2946 | if (!node) { |
| 2947 | /* CN not found in tree */ |
| 2948 | s_kt = malloc(sizeof(struct sni_keytype) + i + 1); |
| 2949 | /* Using memcpy here instead of strncpy. |
| 2950 | * strncpy will cause sig_abrt errors under certain versions of gcc with -O2 |
| 2951 | * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60792 |
| 2952 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2953 | memcpy(s_kt->name.key, trash.area, i+1); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2954 | s_kt->keytypes = 0; |
| 2955 | ebst_insert(sni_keytypes, &s_kt->name); |
| 2956 | } else { |
| 2957 | /* CN found in tree */ |
| 2958 | s_kt = container_of(node, struct sni_keytype, name); |
| 2959 | } |
| 2960 | |
| 2961 | /* Mark that this CN has the keytype of key_index via keytypes mask */ |
| 2962 | s_kt->keytypes |= 1<<key_index; |
| 2963 | |
| 2964 | } |
| 2965 | |
| 2966 | |
| 2967 | /* Given a path that does not exist, try to check for path.rsa, path.dsa and path.ecdsa files. |
| 2968 | * If any are found, group these files into a set of SSL_CTX* |
| 2969 | * based on shared and unique CN and SAN entries. Add these SSL_CTX* to the SNI tree. |
| 2970 | * |
| 2971 | * This will allow the user to explictly group multiple cert/keys for a single purpose |
| 2972 | * |
| 2973 | * Returns |
| 2974 | * 0 on success |
| 2975 | * 1 on failure |
| 2976 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2977 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 2978 | char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2979 | { |
| 2980 | char fp[MAXPATHLEN+1] = {0}; |
| 2981 | int n = 0; |
| 2982 | int i = 0; |
| 2983 | struct cert_key_and_chain certs_and_keys[SSL_SOCK_NUM_KEYTYPES] = { {0} }; |
| 2984 | struct eb_root sni_keytypes_map = { {0} }; |
| 2985 | struct ebmb_node *node; |
| 2986 | struct ebmb_node *next; |
| 2987 | /* Array of SSL_CTX pointers corresponding to each possible combo |
| 2988 | * of keytypes |
| 2989 | */ |
| 2990 | struct key_combo_ctx key_combos[SSL_SOCK_POSSIBLE_KT_COMBOS] = { {0} }; |
| 2991 | int rv = 0; |
| 2992 | X509_NAME *xname = NULL; |
| 2993 | char *str = NULL; |
| 2994 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2995 | STACK_OF(GENERAL_NAME) *names = NULL; |
| 2996 | #endif |
| 2997 | |
| 2998 | /* Load all possible certs and keys */ |
| 2999 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3000 | struct stat buf; |
| 3001 | |
| 3002 | snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3003 | if (stat(fp, &buf) == 0) { |
| 3004 | if (ssl_sock_load_crt_file_into_ckch(fp, &certs_and_keys[n], err) == 1) { |
| 3005 | rv = 1; |
| 3006 | goto end; |
| 3007 | } |
| 3008 | } |
| 3009 | } |
| 3010 | |
| 3011 | /* Process each ckch and update keytypes for each CN/SAN |
| 3012 | * for example, if CN/SAN www.a.com is associated with |
| 3013 | * certs with keytype 0 and 2, then at the end of the loop, |
| 3014 | * www.a.com will have: |
| 3015 | * keyindex = 0 | 1 | 4 = 5 |
| 3016 | */ |
| 3017 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3018 | |
| 3019 | if (!ssl_sock_is_ckch_valid(&certs_and_keys[n])) |
| 3020 | continue; |
| 3021 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3022 | if (fcount) { |
Willy Tarreau | 24b892f | 2016-06-20 23:01:57 +0200 | [diff] [blame] | 3023 | for (i = 0; i < fcount; i++) |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3024 | ssl_sock_populate_sni_keytypes_hplr(sni_filter[i], &sni_keytypes_map, n); |
| 3025 | } else { |
| 3026 | /* A lot of the following code is OpenSSL boilerplate for processing CN's and SAN's, |
| 3027 | * so the line that contains logic is marked via comments |
| 3028 | */ |
| 3029 | xname = X509_get_subject_name(certs_and_keys[n].cert); |
| 3030 | i = -1; |
| 3031 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3032 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3033 | ASN1_STRING *value; |
| 3034 | value = X509_NAME_ENTRY_get_data(entry); |
| 3035 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3036 | /* Important line is here */ |
| 3037 | ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3038 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3039 | OPENSSL_free(str); |
| 3040 | str = NULL; |
| 3041 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3042 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3043 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3044 | /* Do the above logic for each SAN */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3045 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3046 | names = X509_get_ext_d2i(certs_and_keys[n].cert, NID_subject_alt_name, NULL, NULL); |
| 3047 | if (names) { |
| 3048 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3049 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3050 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3051 | if (name->type == GEN_DNS) { |
| 3052 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
| 3053 | /* Important line is here */ |
| 3054 | ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3055 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3056 | OPENSSL_free(str); |
| 3057 | str = NULL; |
| 3058 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3059 | } |
| 3060 | } |
| 3061 | } |
| 3062 | } |
| 3063 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 3064 | } |
| 3065 | |
| 3066 | /* If no files found, return error */ |
| 3067 | if (eb_is_empty(&sni_keytypes_map)) { |
| 3068 | memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n", |
| 3069 | err && *err ? *err : "", path); |
| 3070 | rv = 1; |
| 3071 | goto end; |
| 3072 | } |
| 3073 | |
| 3074 | /* We now have a map of CN/SAN to keytypes that are loaded in |
| 3075 | * Iterate through the map to create the SSL_CTX's (if needed) |
| 3076 | * and add each CTX to the SNI tree |
| 3077 | * |
| 3078 | * Some math here: |
| 3079 | * There are 2^n - 1 possibile combinations, each unique |
| 3080 | * combination is denoted by the key in the map. Each key |
| 3081 | * has a value between 1 and 2^n - 1. Conveniently, the array |
| 3082 | * of SSL_CTX* is sized 2^n. So, we can simply use the i'th |
| 3083 | * entry in the array to correspond to the unique combo (key) |
| 3084 | * associated with i. This unique key combo (i) will be associated |
| 3085 | * with combos[i-1] |
| 3086 | */ |
| 3087 | |
| 3088 | node = ebmb_first(&sni_keytypes_map); |
| 3089 | while (node) { |
| 3090 | SSL_CTX *cur_ctx; |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3091 | char cur_file[MAXPATHLEN+1]; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3092 | const struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3093 | |
| 3094 | str = (char *)container_of(node, struct sni_keytype, name)->name.key; |
| 3095 | i = container_of(node, struct sni_keytype, name)->keytypes; |
| 3096 | cur_ctx = key_combos[i-1].ctx; |
| 3097 | |
| 3098 | if (cur_ctx == NULL) { |
| 3099 | /* need to create SSL_CTX */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3100 | cur_ctx = SSL_CTX_new(SSLv23_server_method()); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3101 | if (cur_ctx == NULL) { |
| 3102 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3103 | err && *err ? *err : ""); |
| 3104 | rv = 1; |
| 3105 | goto end; |
| 3106 | } |
| 3107 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3108 | /* Load all required certs/keys/chains/OCSPs info into SSL_CTX */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3109 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3110 | if (i & (1<<n)) { |
| 3111 | /* Key combo contains ckch[n] */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3112 | snprintf(cur_file, MAXPATHLEN+1, "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3113 | if (ssl_sock_put_ckch_into_ctx(cur_file, &certs_and_keys[n], cur_ctx, err) != 0) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3114 | SSL_CTX_free(cur_ctx); |
| 3115 | rv = 1; |
| 3116 | goto end; |
| 3117 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3118 | |
| 3119 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 3120 | /* Load OCSP Info into context */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3121 | if (ssl_sock_load_ocsp(cur_ctx, cur_file) < 0) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3122 | if (err) |
| 3123 | memprintf(err, "%s '%s.ocsp' is present and activates OCSP but it is impossible to compute the OCSP certificate ID (maybe the issuer could not be found)'.\n", |
Bertrand Jacquin | 5424ee0 | 2016-11-13 16:37:14 +0000 | [diff] [blame] | 3124 | *err ? *err : "", cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3125 | SSL_CTX_free(cur_ctx); |
| 3126 | rv = 1; |
| 3127 | goto end; |
| 3128 | } |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 3129 | #elif (defined OPENSSL_IS_BORINGSSL) |
| 3130 | ssl_sock_set_ocsp_response_from_file(cur_ctx, cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3131 | #endif |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3132 | } |
| 3133 | } |
| 3134 | |
| 3135 | /* Load DH params into the ctx to support DHE keys */ |
| 3136 | #ifndef OPENSSL_NO_DH |
| 3137 | if (ssl_dh_ptr_index >= 0) |
| 3138 | SSL_CTX_set_ex_data(cur_ctx, ssl_dh_ptr_index, NULL); |
| 3139 | |
| 3140 | rv = ssl_sock_load_dh_params(cur_ctx, NULL); |
| 3141 | if (rv < 0) { |
| 3142 | if (err) |
| 3143 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3144 | *err ? *err : "", path); |
| 3145 | rv = 1; |
| 3146 | goto end; |
| 3147 | } |
| 3148 | #endif |
| 3149 | |
| 3150 | /* Update key_combos */ |
| 3151 | key_combos[i-1].ctx = cur_ctx; |
| 3152 | } |
| 3153 | |
| 3154 | /* Update SNI Tree */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3155 | key_combos[i-1].order = ssl_sock_add_cert_sni(cur_ctx, bind_conf, ssl_conf, |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3156 | kinfo, str, key_combos[i-1].order); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3157 | node = ebmb_next(node); |
| 3158 | } |
| 3159 | |
| 3160 | |
| 3161 | /* Mark a default context if none exists, using the ctx that has the most shared keys */ |
| 3162 | if (!bind_conf->default_ctx) { |
| 3163 | for (i = SSL_SOCK_POSSIBLE_KT_COMBOS - 1; i >= 0; i--) { |
| 3164 | if (key_combos[i].ctx) { |
| 3165 | bind_conf->default_ctx = key_combos[i].ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3166 | bind_conf->default_ssl_conf = ssl_conf; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3167 | break; |
| 3168 | } |
| 3169 | } |
| 3170 | } |
| 3171 | |
| 3172 | end: |
| 3173 | |
| 3174 | if (names) |
| 3175 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
| 3176 | |
| 3177 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) |
| 3178 | ssl_sock_free_cert_key_and_chain_contents(&certs_and_keys[n]); |
| 3179 | |
| 3180 | node = ebmb_first(&sni_keytypes_map); |
| 3181 | while (node) { |
| 3182 | next = ebmb_next(node); |
| 3183 | ebmb_delete(node); |
| 3184 | node = next; |
| 3185 | } |
| 3186 | |
| 3187 | return rv; |
| 3188 | } |
| 3189 | #else |
| 3190 | /* This is a dummy, that just logs an error and returns error */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3191 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3192 | char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3193 | { |
| 3194 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3195 | err && *err ? *err : "", path, strerror(errno)); |
| 3196 | return 1; |
| 3197 | } |
| 3198 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3199 | #endif /* #if OPENSSL_VERSION_NUMBER >= 0x1000200fL: Support for loading multiple certs into a single SSL_CTX */ |
| 3200 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3201 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 3202 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 3203 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3204 | static int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s, |
| 3205 | struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3206 | { |
| 3207 | BIO *in; |
| 3208 | X509 *x = NULL, *ca; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3209 | int i, err; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3210 | int ret = -1; |
| 3211 | int order = 0; |
| 3212 | X509_NAME *xname; |
| 3213 | char *str; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3214 | pem_password_cb *passwd_cb; |
| 3215 | void *passwd_cb_userdata; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3216 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3217 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3218 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3219 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3220 | STACK_OF(GENERAL_NAME) *names; |
| 3221 | #endif |
| 3222 | |
| 3223 | in = BIO_new(BIO_s_file()); |
| 3224 | if (in == NULL) |
| 3225 | goto end; |
| 3226 | |
| 3227 | if (BIO_read_filename(in, file) <= 0) |
| 3228 | goto end; |
| 3229 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3230 | |
| 3231 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 3232 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 3233 | |
| 3234 | x = PEM_read_bio_X509_AUX(in, NULL, passwd_cb, passwd_cb_userdata); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3235 | if (x == NULL) |
| 3236 | goto end; |
| 3237 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3238 | pkey = X509_get_pubkey(x); |
| 3239 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3240 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3241 | switch(EVP_PKEY_base_id(pkey)) { |
| 3242 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3243 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3244 | break; |
| 3245 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3246 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3247 | break; |
| 3248 | case EVP_PKEY_DSA: |
| 3249 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3250 | break; |
| 3251 | } |
| 3252 | EVP_PKEY_free(pkey); |
| 3253 | } |
| 3254 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3255 | if (fcount) { |
| 3256 | while (fcount--) |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3257 | order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, sni_filter[fcount], order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3258 | } |
| 3259 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3260 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3261 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 3262 | if (names) { |
| 3263 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3264 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3265 | if (name->type == GEN_DNS) { |
| 3266 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3267 | order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3268 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3269 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3270 | } |
| 3271 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3272 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3273 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3274 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3275 | xname = X509_get_subject_name(x); |
| 3276 | i = -1; |
| 3277 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3278 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3279 | ASN1_STRING *value; |
| 3280 | |
| 3281 | value = X509_NAME_ENTRY_get_data(entry); |
| 3282 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3283 | order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3284 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3285 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3286 | } |
| 3287 | } |
| 3288 | |
| 3289 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 3290 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 3291 | goto end; |
| 3292 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3293 | #ifdef SSL_CTX_clear_extra_chain_certs |
| 3294 | SSL_CTX_clear_extra_chain_certs(ctx); |
| 3295 | #else |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3296 | if (ctx->extra_certs != NULL) { |
| 3297 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 3298 | ctx->extra_certs = NULL; |
| 3299 | } |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3300 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3301 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3302 | while ((ca = PEM_read_bio_X509(in, NULL, passwd_cb, passwd_cb_userdata))) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3303 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 3304 | X509_free(ca); |
| 3305 | goto end; |
| 3306 | } |
| 3307 | } |
| 3308 | |
| 3309 | err = ERR_get_error(); |
| 3310 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 3311 | /* we successfully reached the last cert in the file */ |
| 3312 | ret = 1; |
| 3313 | } |
| 3314 | ERR_clear_error(); |
| 3315 | |
| 3316 | end: |
| 3317 | if (x) |
| 3318 | X509_free(x); |
| 3319 | |
| 3320 | if (in) |
| 3321 | BIO_free(in); |
| 3322 | |
| 3323 | return ret; |
| 3324 | } |
| 3325 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3326 | static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3327 | char **sni_filter, int fcount, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3328 | { |
| 3329 | int ret; |
| 3330 | SSL_CTX *ctx; |
| 3331 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3332 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3333 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3334 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3335 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3336 | return 1; |
| 3337 | } |
| 3338 | |
| 3339 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3340 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 3341 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3342 | SSL_CTX_free(ctx); |
| 3343 | return 1; |
| 3344 | } |
| 3345 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3346 | ret = ssl_sock_load_cert_chain_file(ctx, path, bind_conf, ssl_conf, sni_filter, fcount); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3347 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3348 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 3349 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3350 | if (ret < 0) /* serious error, must do that ourselves */ |
| 3351 | SSL_CTX_free(ctx); |
| 3352 | return 1; |
| 3353 | } |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 3354 | |
| 3355 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3356 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3357 | err && *err ? *err : "", path); |
| 3358 | return 1; |
| 3359 | } |
| 3360 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3361 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3362 | * the tree, so it will be discovered and cleaned in time. |
| 3363 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3364 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 3365 | /* store a NULL pointer to indicate we have not yet loaded |
| 3366 | a custom DH param file */ |
| 3367 | if (ssl_dh_ptr_index >= 0) { |
| 3368 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3369 | } |
| 3370 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3371 | ret = ssl_sock_load_dh_params(ctx, path); |
| 3372 | if (ret < 0) { |
| 3373 | if (err) |
| 3374 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3375 | *err ? *err : "", path); |
| 3376 | return 1; |
| 3377 | } |
| 3378 | #endif |
| 3379 | |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 3380 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3381 | ret = ssl_sock_load_ocsp(ctx, path); |
| 3382 | if (ret < 0) { |
| 3383 | if (err) |
| 3384 | memprintf(err, "%s '%s.ocsp' is present and activates OCSP but it is impossible to compute the OCSP certificate ID (maybe the issuer could not be found)'.\n", |
| 3385 | *err ? *err : "", path); |
| 3386 | return 1; |
| 3387 | } |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 3388 | #elif (defined OPENSSL_IS_BORINGSSL) |
| 3389 | ssl_sock_set_ocsp_response_from_file(ctx, path); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3390 | #endif |
| 3391 | |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 3392 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL && !defined LIBRESSL_VERSION_NUMBER) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 3393 | if (sctl_ex_index >= 0) { |
| 3394 | ret = ssl_sock_load_sctl(ctx, path); |
| 3395 | if (ret < 0) { |
| 3396 | if (err) |
| 3397 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
| 3398 | *err ? *err : "", path); |
| 3399 | return 1; |
| 3400 | } |
| 3401 | } |
| 3402 | #endif |
| 3403 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3404 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3405 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3406 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3407 | err && *err ? *err : ""); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3408 | return 1; |
| 3409 | } |
| 3410 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3411 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3412 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3413 | bind_conf->default_ssl_conf = ssl_conf; |
| 3414 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3415 | |
| 3416 | return 0; |
| 3417 | } |
| 3418 | |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 3419 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3420 | { |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3421 | struct dirent **de_list; |
| 3422 | int i, n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3423 | DIR *dir; |
| 3424 | struct stat buf; |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 3425 | char *end; |
| 3426 | char fp[MAXPATHLEN+1]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3427 | int cfgerr = 0; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3428 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 3429 | int is_bundle; |
| 3430 | int j; |
| 3431 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3432 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3433 | if (stat(path, &buf) == 0) { |
| 3434 | dir = opendir(path); |
| 3435 | if (!dir) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3436 | return ssl_sock_load_cert_file(path, bind_conf, NULL, NULL, 0, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3437 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3438 | /* strip trailing slashes, including first one */ |
| 3439 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 3440 | *end = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3441 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3442 | n = scandir(path, &de_list, 0, alphasort); |
| 3443 | if (n < 0) { |
| 3444 | memprintf(err, "%sunable to scan directory '%s' : %s.\n", |
| 3445 | err && *err ? *err : "", path, strerror(errno)); |
| 3446 | cfgerr++; |
| 3447 | } |
| 3448 | else { |
| 3449 | for (i = 0; i < n; i++) { |
| 3450 | struct dirent *de = de_list[i]; |
Emeric Brun | 2aab722 | 2014-06-18 18:15:09 +0200 | [diff] [blame] | 3451 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3452 | end = strrchr(de->d_name, '.'); |
| 3453 | if (end && (!strcmp(end, ".issuer") || !strcmp(end, ".ocsp") || !strcmp(end, ".sctl"))) |
| 3454 | goto ignore_entry; |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3455 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3456 | snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name); |
| 3457 | if (stat(fp, &buf) != 0) { |
| 3458 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3459 | err && *err ? *err : "", fp, strerror(errno)); |
| 3460 | cfgerr++; |
| 3461 | goto ignore_entry; |
| 3462 | } |
| 3463 | if (!S_ISREG(buf.st_mode)) |
| 3464 | goto ignore_entry; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3465 | |
| 3466 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 3467 | is_bundle = 0; |
| 3468 | /* Check if current entry in directory is part of a multi-cert bundle */ |
| 3469 | |
| 3470 | if (end) { |
| 3471 | for (j = 0; j < SSL_SOCK_NUM_KEYTYPES; j++) { |
| 3472 | if (!strcmp(end + 1, SSL_SOCK_KEYTYPE_NAMES[j])) { |
| 3473 | is_bundle = 1; |
| 3474 | break; |
| 3475 | } |
| 3476 | } |
| 3477 | |
| 3478 | if (is_bundle) { |
| 3479 | char dp[MAXPATHLEN+1] = {0}; /* this will be the filename w/o the keytype */ |
| 3480 | int dp_len; |
| 3481 | |
| 3482 | dp_len = end - de->d_name; |
| 3483 | snprintf(dp, dp_len + 1, "%s", de->d_name); |
| 3484 | |
| 3485 | /* increment i and free de until we get to a non-bundle cert |
| 3486 | * Note here that we look at de_list[i + 1] before freeing de |
| 3487 | * this is important since ignore_entry will free de |
| 3488 | */ |
| 3489 | while (i + 1 < n && !strncmp(de_list[i + 1]->d_name, dp, dp_len)) { |
| 3490 | free(de); |
| 3491 | i++; |
| 3492 | de = de_list[i]; |
| 3493 | } |
| 3494 | |
| 3495 | snprintf(fp, sizeof(fp), "%s/%s", path, dp); |
Emeric Brun | eb155b6 | 2018-08-16 15:11:12 +0200 | [diff] [blame] | 3496 | cfgerr += ssl_sock_load_multi_cert(fp, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3497 | |
| 3498 | /* Successfully processed the bundle */ |
| 3499 | goto ignore_entry; |
| 3500 | } |
| 3501 | } |
| 3502 | |
| 3503 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3504 | cfgerr += ssl_sock_load_cert_file(fp, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3505 | ignore_entry: |
| 3506 | free(de); |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3507 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3508 | free(de_list); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3509 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3510 | closedir(dir); |
| 3511 | return cfgerr; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3512 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3513 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3514 | cfgerr = ssl_sock_load_multi_cert(path, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3515 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3516 | return cfgerr; |
| 3517 | } |
| 3518 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 3519 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3520 | * done once. Zero is returned if the operation fails. No error is returned |
| 3521 | * if the random is said as not implemented, because we expect that openssl |
| 3522 | * will use another method once needed. |
| 3523 | */ |
| 3524 | static int ssl_initialize_random() |
| 3525 | { |
| 3526 | unsigned char random; |
| 3527 | static int random_initialized = 0; |
| 3528 | |
| 3529 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3530 | random_initialized = 1; |
| 3531 | |
| 3532 | return random_initialized; |
| 3533 | } |
| 3534 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3535 | /* release ssl bind conf */ |
| 3536 | void ssl_sock_free_ssl_conf(struct ssl_bind_conf *conf) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3537 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3538 | if (conf) { |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 3539 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3540 | free(conf->npn_str); |
| 3541 | conf->npn_str = NULL; |
| 3542 | #endif |
| 3543 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 3544 | free(conf->alpn_str); |
| 3545 | conf->alpn_str = NULL; |
| 3546 | #endif |
| 3547 | free(conf->ca_file); |
| 3548 | conf->ca_file = NULL; |
| 3549 | free(conf->crl_file); |
| 3550 | conf->crl_file = NULL; |
| 3551 | free(conf->ciphers); |
| 3552 | conf->ciphers = NULL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 3553 | free(conf->curves); |
| 3554 | conf->curves = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3555 | free(conf->ecdhe); |
| 3556 | conf->ecdhe = NULL; |
| 3557 | } |
| 3558 | } |
| 3559 | |
| 3560 | int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
| 3561 | { |
| 3562 | char thisline[CRT_LINESIZE]; |
| 3563 | char path[MAXPATHLEN+1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3564 | FILE *f; |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3565 | struct stat buf; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3566 | int linenum = 0; |
| 3567 | int cfgerr = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3568 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3569 | if ((f = fopen(file, "r")) == NULL) { |
| 3570 | memprintf(err, "cannot open file '%s' : %s", file, strerror(errno)); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3571 | return 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3572 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3573 | |
| 3574 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3575 | int arg, newarg, cur_arg, i, ssl_b = 0, ssl_e = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3576 | char *end; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3577 | char *args[MAX_CRT_ARGS + 1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3578 | char *line = thisline; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3579 | char *crt_path; |
| 3580 | struct ssl_bind_conf *ssl_conf = NULL; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3581 | |
| 3582 | linenum++; |
| 3583 | end = line + strlen(line); |
| 3584 | if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') { |
| 3585 | /* Check if we reached the limit and the last char is not \n. |
| 3586 | * Watch out for the last line without the terminating '\n'! |
| 3587 | */ |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3588 | memprintf(err, "line %d too long in file '%s', limit is %d characters", |
| 3589 | linenum, file, (int)sizeof(thisline)-1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3590 | cfgerr = 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3591 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3592 | } |
| 3593 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3594 | arg = 0; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3595 | newarg = 1; |
| 3596 | while (*line) { |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3597 | if (*line == '#' || *line == '\n' || *line == '\r') { |
| 3598 | /* end of string, end of loop */ |
| 3599 | *line = 0; |
| 3600 | break; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3601 | } else if (isspace(*line)) { |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3602 | newarg = 1; |
| 3603 | *line = 0; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3604 | } else if (*line == '[') { |
| 3605 | if (ssl_b) { |
| 3606 | memprintf(err, "too many '[' on line %d in file '%s'.", linenum, file); |
| 3607 | cfgerr = 1; |
| 3608 | break; |
| 3609 | } |
| 3610 | if (!arg) { |
| 3611 | memprintf(err, "file must start with a cert on line %d in file '%s'", linenum, file); |
| 3612 | cfgerr = 1; |
| 3613 | break; |
| 3614 | } |
| 3615 | ssl_b = arg; |
| 3616 | newarg = 1; |
| 3617 | *line = 0; |
| 3618 | } else if (*line == ']') { |
| 3619 | if (ssl_e) { |
| 3620 | memprintf(err, "too many ']' on line %d in file '%s'.", linenum, file); |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3621 | cfgerr = 1; |
| 3622 | break; |
| 3623 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3624 | if (!ssl_b) { |
| 3625 | memprintf(err, "missing '[' in line %d in file '%s'.", linenum, file); |
| 3626 | cfgerr = 1; |
| 3627 | break; |
| 3628 | } |
| 3629 | ssl_e = arg; |
| 3630 | newarg = 1; |
| 3631 | *line = 0; |
| 3632 | } else if (newarg) { |
| 3633 | if (arg == MAX_CRT_ARGS) { |
| 3634 | memprintf(err, "too many args on line %d in file '%s'.", linenum, file); |
| 3635 | cfgerr = 1; |
| 3636 | break; |
| 3637 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3638 | newarg = 0; |
| 3639 | args[arg++] = line; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3640 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3641 | line++; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3642 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3643 | if (cfgerr) |
| 3644 | break; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3645 | args[arg++] = line; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3646 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3647 | /* empty line */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3648 | if (!*args[0]) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3649 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3650 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3651 | crt_path = args[0]; |
| 3652 | if (*crt_path != '/' && global_ssl.crt_base) { |
| 3653 | if ((strlen(global_ssl.crt_base) + 1 + strlen(crt_path)) > MAXPATHLEN) { |
| 3654 | memprintf(err, "'%s' : path too long on line %d in file '%s'", |
| 3655 | crt_path, linenum, file); |
| 3656 | cfgerr = 1; |
| 3657 | break; |
| 3658 | } |
| 3659 | snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, crt_path); |
| 3660 | crt_path = path; |
| 3661 | } |
| 3662 | |
| 3663 | ssl_conf = calloc(1, sizeof *ssl_conf); |
| 3664 | cur_arg = ssl_b ? ssl_b : 1; |
| 3665 | while (cur_arg < ssl_e) { |
| 3666 | newarg = 0; |
| 3667 | for (i = 0; ssl_bind_kws[i].kw != NULL; i++) { |
| 3668 | if (strcmp(ssl_bind_kws[i].kw, args[cur_arg]) == 0) { |
| 3669 | newarg = 1; |
| 3670 | cfgerr = ssl_bind_kws[i].parse(args, cur_arg, curproxy, ssl_conf, err); |
| 3671 | if (cur_arg + 1 + ssl_bind_kws[i].skip > ssl_e) { |
| 3672 | memprintf(err, "ssl args out of '[]' for %s on line %d in file '%s'", |
| 3673 | args[cur_arg], linenum, file); |
| 3674 | cfgerr = 1; |
| 3675 | } |
| 3676 | cur_arg += 1 + ssl_bind_kws[i].skip; |
| 3677 | break; |
| 3678 | } |
| 3679 | } |
| 3680 | if (!cfgerr && !newarg) { |
| 3681 | memprintf(err, "unknown ssl keyword %s on line %d in file '%s'.", |
| 3682 | args[cur_arg], linenum, file); |
| 3683 | cfgerr = 1; |
| 3684 | break; |
| 3685 | } |
| 3686 | } |
| 3687 | if (cfgerr) { |
| 3688 | ssl_sock_free_ssl_conf(ssl_conf); |
| 3689 | free(ssl_conf); |
| 3690 | ssl_conf = NULL; |
| 3691 | break; |
| 3692 | } |
| 3693 | |
| 3694 | if (stat(crt_path, &buf) == 0) { |
| 3695 | cfgerr = ssl_sock_load_cert_file(crt_path, bind_conf, ssl_conf, |
| 3696 | &args[cur_arg], arg - cur_arg - 1, err); |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3697 | } else { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3698 | cfgerr = ssl_sock_load_multi_cert(crt_path, bind_conf, ssl_conf, |
| 3699 | &args[cur_arg], arg - cur_arg - 1, err); |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3700 | } |
| 3701 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3702 | if (cfgerr) { |
| 3703 | memprintf(err, "error processing line %d in file '%s' : %s", linenum, file, *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3704 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3705 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3706 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3707 | fclose(f); |
| 3708 | return cfgerr; |
| 3709 | } |
| 3710 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3711 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3712 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3713 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3714 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3715 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3716 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3717 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3718 | SSL_OP_NO_SSLv2 | |
| 3719 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3720 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3721 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3722 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3723 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3724 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3725 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3726 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3727 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3728 | SSL_MODE_RELEASE_BUFFERS | |
| 3729 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3730 | struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3731 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3732 | int flags = MC_SSL_O_ALL; |
| 3733 | int cfgerr = 0; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3734 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3735 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3736 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3737 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3738 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3739 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3740 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3741 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3742 | else |
| 3743 | flags = conf_ssl_methods->flags; |
| 3744 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3745 | min = conf_ssl_methods->min; |
| 3746 | max = conf_ssl_methods->max; |
| 3747 | /* start with TLSv10 to remove SSLv3 per default */ |
| 3748 | if (!min && (!max || max >= CONF_TLSV10)) |
| 3749 | min = CONF_TLSV10; |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3750 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3751 | if (min) |
| 3752 | flags |= (methodVersions[min].flag - 1); |
| 3753 | if (max) |
| 3754 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3755 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3756 | min = max = CONF_TLSV_NONE; |
| 3757 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3758 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3759 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3760 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3761 | if (min) { |
| 3762 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3763 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 3764 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3765 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 3766 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3767 | hole = 0; |
| 3768 | } |
| 3769 | max = i; |
| 3770 | } |
| 3771 | else { |
| 3772 | min = max = i; |
| 3773 | } |
| 3774 | } |
| 3775 | else { |
| 3776 | if (min) |
| 3777 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3778 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3779 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3780 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 3781 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3782 | cfgerr += 1; |
| 3783 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 3784 | /* save real min/max in bind_conf */ |
| 3785 | conf_ssl_methods->min = min; |
| 3786 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3787 | |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 3788 | #if (OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3789 | /* Keep force-xxx implementation as it is in older haproxy. It's a |
| 3790 | precautionary measure to avoid any suprise with older openssl version. */ |
| 3791 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3792 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3793 | else |
| 3794 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 3795 | if (flags & methodVersions[i].flag) |
| 3796 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3797 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3798 | /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3799 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 3800 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 3801 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3802 | |
| 3803 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 3804 | options |= SSL_OP_NO_TICKET; |
| 3805 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 3806 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
| 3807 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 3808 | |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 3809 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 3810 | if (global_ssl.async) |
| 3811 | mode |= SSL_MODE_ASYNC; |
| 3812 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3813 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3814 | if (global_ssl.life_time) |
| 3815 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3816 | |
| 3817 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3818 | #ifdef OPENSSL_IS_BORINGSSL |
| 3819 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 3820 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 3821 | #elif (OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 3822 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 3823 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3824 | #else |
| 3825 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3826 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 3827 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3828 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3829 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3830 | } |
| 3831 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3832 | |
| 3833 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 3834 | { |
| 3835 | if (first == block) { |
| 3836 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 3837 | if (first->len > 0) |
| 3838 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 3839 | } |
| 3840 | } |
| 3841 | |
| 3842 | /* return first block from sh_ssl_sess */ |
| 3843 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 3844 | { |
| 3845 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 3846 | |
| 3847 | } |
| 3848 | |
| 3849 | /* store a session into the cache |
| 3850 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 3851 | * data: asn1 encoded session |
| 3852 | * data_len: asn1 encoded session length |
| 3853 | * Returns 1 id session was stored (else 0) |
| 3854 | */ |
| 3855 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 3856 | { |
| 3857 | struct shared_block *first; |
| 3858 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 3859 | |
| 3860 | first = shctx_row_reserve_hot(ssl_shctx, data_len + sizeof(struct sh_ssl_sess_hdr)); |
| 3861 | if (!first) { |
| 3862 | /* Could not retrieve enough free blocks to store that session */ |
| 3863 | return 0; |
| 3864 | } |
| 3865 | |
| 3866 | /* STORE the key in the first elem */ |
| 3867 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 3868 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 3869 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 3870 | |
| 3871 | /* it returns the already existing node |
| 3872 | or current node if none, never returns null */ |
| 3873 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 3874 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 3875 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 3876 | /* release the reserved row */ |
| 3877 | shctx_row_dec_hot(ssl_shctx, first); |
| 3878 | /* replace the previous session already in the tree */ |
| 3879 | sh_ssl_sess = oldsh_ssl_sess; |
| 3880 | /* ignore the previous session data, only use the header */ |
| 3881 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 3882 | shctx_row_inc_hot(ssl_shctx, first); |
| 3883 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 3884 | } |
| 3885 | |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 3886 | if (shctx_row_data_append(ssl_shctx, first, data, data_len) < 0) { |
| 3887 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3888 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 3889 | } |
| 3890 | |
| 3891 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3892 | |
| 3893 | return 1; |
| 3894 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3895 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3896 | /* SSL callback used when a new session is created while connecting to a server */ |
| 3897 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 3898 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 3899 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3900 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3901 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3902 | s = objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3903 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3904 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 3905 | int len; |
| 3906 | unsigned char *ptr; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3907 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3908 | len = i2d_SSL_SESSION(sess, NULL); |
| 3909 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 3910 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 3911 | } else { |
| 3912 | free(s->ssl_ctx.reused_sess[tid].ptr); |
| 3913 | ptr = s->ssl_ctx.reused_sess[tid].ptr = malloc(len); |
| 3914 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 3915 | } |
| 3916 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 3917 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 3918 | &ptr); |
| 3919 | } |
| 3920 | } else { |
| 3921 | free(s->ssl_ctx.reused_sess[tid].ptr); |
| 3922 | s->ssl_ctx.reused_sess[tid].ptr = NULL; |
| 3923 | } |
| 3924 | |
| 3925 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3926 | } |
| 3927 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3928 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3929 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3930 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3931 | { |
| 3932 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 3933 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 3934 | unsigned char *p; |
| 3935 | int data_len; |
| 3936 | unsigned int sid_length, sid_ctx_length; |
| 3937 | const unsigned char *sid_data; |
| 3938 | const unsigned char *sid_ctx_data; |
| 3939 | |
| 3940 | /* Session id is already stored in to key and session id is known |
| 3941 | * so we dont store it to keep size. |
| 3942 | */ |
| 3943 | |
| 3944 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 3945 | sid_ctx_data = SSL_SESSION_get0_id_context(sess, &sid_ctx_length); |
| 3946 | SSL_SESSION_set1_id(sess, sid_data, 0); |
| 3947 | SSL_SESSION_set1_id_context(sess, sid_ctx_data, 0); |
| 3948 | |
| 3949 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 3950 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 3951 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 3952 | goto err; |
| 3953 | |
| 3954 | p = encsess; |
| 3955 | |
| 3956 | /* process ASN1 session encoding before the lock */ |
| 3957 | i2d_SSL_SESSION(sess, &p); |
| 3958 | |
| 3959 | memcpy(encid, sid_data, sid_length); |
| 3960 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 3961 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 3962 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 3963 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3964 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3965 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 3966 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3967 | err: |
| 3968 | /* reset original length values */ |
| 3969 | SSL_SESSION_set1_id(sess, sid_data, sid_length); |
| 3970 | SSL_SESSION_set1_id_context(sess, sid_ctx_data, sid_ctx_length); |
| 3971 | |
| 3972 | return 0; /* do not increment session reference count */ |
| 3973 | } |
| 3974 | |
| 3975 | /* SSL callback used on lookup an existing session cause none found in internal cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3976 | SSL_SESSION *sh_ssl_sess_get_cb(SSL *ssl, __OPENSSL_110_CONST__ unsigned char *key, int key_len, int *do_copy) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3977 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3978 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3979 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 3980 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3981 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3982 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3983 | |
| 3984 | global.shctx_lookups++; |
| 3985 | |
| 3986 | /* allow the session to be freed automatically by openssl */ |
| 3987 | *do_copy = 0; |
| 3988 | |
| 3989 | /* tree key is zeros padded sessionid */ |
| 3990 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 3991 | memcpy(tmpkey, key, key_len); |
| 3992 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 3993 | key = tmpkey; |
| 3994 | } |
| 3995 | |
| 3996 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 3997 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3998 | |
| 3999 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4000 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4001 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4002 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4003 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4004 | global.shctx_misses++; |
| 4005 | return NULL; |
| 4006 | } |
| 4007 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4008 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4009 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4010 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4011 | shctx_row_data_get(ssl_shctx, first, data, sizeof(struct sh_ssl_sess_hdr), first->len-sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4012 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4013 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4014 | |
| 4015 | /* decode ASN1 session */ |
| 4016 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4017 | sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4018 | /* Reset session id and session id contenxt */ |
| 4019 | if (sess) { |
| 4020 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4021 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4022 | } |
| 4023 | |
| 4024 | return sess; |
| 4025 | } |
| 4026 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4027 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4028 | /* SSL callback used to signal session is no more used in internal cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4029 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4030 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4031 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4032 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4033 | unsigned int sid_length; |
| 4034 | const unsigned char *sid_data; |
| 4035 | (void)ctx; |
| 4036 | |
| 4037 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4038 | /* tree key is zeros padded sessionid */ |
| 4039 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4040 | memcpy(tmpkey, sid_data, sid_length); |
| 4041 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4042 | sid_data = tmpkey; |
| 4043 | } |
| 4044 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4045 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4046 | |
| 4047 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4048 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4049 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4050 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4051 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4052 | } |
| 4053 | |
| 4054 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4055 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4056 | } |
| 4057 | |
| 4058 | /* Set session cache mode to server and disable openssl internal cache. |
| 4059 | * Set shared cache callbacks on an ssl context. |
| 4060 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4061 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4062 | { |
| 4063 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4064 | |
| 4065 | if (!ssl_shctx) { |
| 4066 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4067 | return; |
| 4068 | } |
| 4069 | |
| 4070 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4071 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4072 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4073 | |
| 4074 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4075 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4076 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4077 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4078 | } |
| 4079 | |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4080 | int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx) |
| 4081 | { |
| 4082 | struct proxy *curproxy = bind_conf->frontend; |
| 4083 | int cfgerr = 0; |
| 4084 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4085 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4086 | const char *conf_ciphers; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4087 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4088 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4089 | if (ssl_conf) { |
| 4090 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4091 | int i, min, max; |
| 4092 | int flags = MC_SSL_O_ALL; |
| 4093 | |
| 4094 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 4095 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4096 | max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4097 | if (min) |
| 4098 | flags |= (methodVersions[min].flag - 1); |
| 4099 | if (max) |
| 4100 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4101 | min = max = CONF_TLSV_NONE; |
| 4102 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4103 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4104 | if (min) |
| 4105 | max = i; |
| 4106 | else |
| 4107 | min = max = i; |
| 4108 | } |
| 4109 | /* save real min/max */ |
| 4110 | conf_ssl_methods->min = min; |
| 4111 | conf_ssl_methods->max = max; |
| 4112 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4113 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4114 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4115 | cfgerr += 1; |
| 4116 | } |
| 4117 | } |
| 4118 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4119 | switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) { |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4120 | case SSL_SOCK_VERIFY_NONE: |
| 4121 | verify = SSL_VERIFY_NONE; |
| 4122 | break; |
| 4123 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4124 | verify = SSL_VERIFY_PEER; |
| 4125 | break; |
| 4126 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4127 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4128 | break; |
| 4129 | } |
| 4130 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4131 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4132 | char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file; |
| 4133 | char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file; |
| 4134 | if (ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4135 | /* load CAfile to verify */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4136 | if (!SSL_CTX_load_verify_locations(ctx, ca_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4137 | ha_alert("Proxy '%s': unable to load CA file '%s' for bind '%s' at [%s:%d].\n", |
| 4138 | curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4139 | cfgerr++; |
| 4140 | } |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4141 | if (!((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) { |
| 4142 | /* set CA names for client cert request, function returns void */ |
| 4143 | SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(ca_file)); |
| 4144 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4145 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4146 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4147 | ha_alert("Proxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4148 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4149 | cfgerr++; |
| 4150 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4151 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4152 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4153 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4154 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4155 | if (!store || !X509_STORE_load_locations(store, crl_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4156 | ha_alert("Proxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4157 | curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4158 | cfgerr++; |
| 4159 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4160 | else { |
| 4161 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4162 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4163 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4164 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4165 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4166 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4167 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4168 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4169 | if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4170 | ha_alert("Proxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4171 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4172 | cfgerr++; |
| 4173 | } |
| 4174 | } |
| 4175 | #endif |
| 4176 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4177 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4178 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4179 | if (conf_ciphers && |
| 4180 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4181 | ha_alert("Proxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4182 | curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4183 | cfgerr++; |
| 4184 | } |
| 4185 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4186 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4187 | /* If tune.ssl.default-dh-param has not been set, |
| 4188 | neither has ssl-default-dh-file and no static DH |
| 4189 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4190 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4191 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4192 | (ssl_dh_ptr_index == -1 || |
| 4193 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4194 | STACK_OF(SSL_CIPHER) * ciphers = NULL; |
| 4195 | const SSL_CIPHER * cipher = NULL; |
| 4196 | char cipher_description[128]; |
| 4197 | /* The description of ciphers using an Ephemeral Diffie Hellman key exchange |
| 4198 | contains " Kx=DH " or " Kx=DH(". Beware of " Kx=DH/", |
| 4199 | which is not ephemeral DH. */ |
| 4200 | const char dhe_description[] = " Kx=DH "; |
| 4201 | const char dhe_export_description[] = " Kx=DH("; |
| 4202 | int idx = 0; |
| 4203 | int dhe_found = 0; |
| 4204 | SSL *ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4205 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4206 | ssl = SSL_new(ctx); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4207 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4208 | if (ssl) { |
| 4209 | ciphers = SSL_get_ciphers(ssl); |
| 4210 | |
| 4211 | if (ciphers) { |
| 4212 | for (idx = 0; idx < sk_SSL_CIPHER_num(ciphers); idx++) { |
| 4213 | cipher = sk_SSL_CIPHER_value(ciphers, idx); |
| 4214 | if (SSL_CIPHER_description(cipher, cipher_description, sizeof (cipher_description)) == cipher_description) { |
| 4215 | if (strstr(cipher_description, dhe_description) != NULL || |
| 4216 | strstr(cipher_description, dhe_export_description) != NULL) { |
| 4217 | dhe_found = 1; |
| 4218 | break; |
| 4219 | } |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 4220 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4221 | } |
| 4222 | } |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4223 | SSL_free(ssl); |
| 4224 | ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4225 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4226 | |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4227 | if (dhe_found) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4228 | ha_warning("Setting tune.ssl.default-dh-param to 1024 by default, if your workload permits it you should set it to at least 2048. Please set a value >= 1024 to make this warning disappear.\n"); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4229 | } |
| 4230 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4231 | global_ssl.default_dh_param = 1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4232 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4233 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4234 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4235 | if (local_dh_1024 == NULL) { |
| 4236 | local_dh_1024 = ssl_get_dh_1024(); |
| 4237 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4238 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4239 | if (local_dh_2048 == NULL) { |
| 4240 | local_dh_2048 = ssl_get_dh_2048(); |
| 4241 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4242 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4243 | if (local_dh_4096 == NULL) { |
| 4244 | local_dh_4096 = ssl_get_dh_4096(); |
| 4245 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4246 | } |
| 4247 | } |
| 4248 | } |
| 4249 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4250 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4251 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4252 | #if OPENSSL_VERSION_NUMBER >= 0x00907000L |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4253 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4254 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4255 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4256 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4257 | ssl_conf_cur = NULL; |
| 4258 | if (ssl_conf && ssl_conf->npn_str) |
| 4259 | ssl_conf_cur = ssl_conf; |
| 4260 | else if (bind_conf->ssl_conf.npn_str) |
| 4261 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4262 | if (ssl_conf_cur) |
| 4263 | SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4264 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4265 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4266 | ssl_conf_cur = NULL; |
| 4267 | if (ssl_conf && ssl_conf->alpn_str) |
| 4268 | ssl_conf_cur = ssl_conf; |
| 4269 | else if (bind_conf->ssl_conf.alpn_str) |
| 4270 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4271 | if (ssl_conf_cur) |
| 4272 | SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4273 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4274 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 4275 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4276 | if (conf_curves) { |
| 4277 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4278 | ha_alert("Proxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4279 | curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4280 | cfgerr++; |
| 4281 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4282 | #if defined(SSL_CTX_set_ecdh_auto) |
| 4283 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
| 4284 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4285 | } |
| 4286 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4287 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4288 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4289 | int i; |
| 4290 | EC_KEY *ecdh; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4291 | #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4292 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4293 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4294 | NULL); |
| 4295 | |
| 4296 | if (ecdhe == NULL) { |
| 4297 | SSL_CTX_set_dh_auto(ctx, 1); |
| 4298 | return cfgerr; |
| 4299 | } |
| 4300 | #else |
| 4301 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4302 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4303 | ECDHE_DEFAULT_CURVE); |
| 4304 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4305 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4306 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4307 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4308 | ha_alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4309 | curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4310 | cfgerr++; |
| 4311 | } |
| 4312 | else { |
| 4313 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4314 | EC_KEY_free(ecdh); |
| 4315 | } |
| 4316 | } |
| 4317 | #endif |
| 4318 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4319 | return cfgerr; |
| 4320 | } |
| 4321 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4322 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4323 | { |
| 4324 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4325 | size_t prefixlen, suffixlen; |
| 4326 | |
| 4327 | /* Trivial case */ |
| 4328 | if (strcmp(pattern, hostname) == 0) |
| 4329 | return 1; |
| 4330 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4331 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4332 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4333 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4334 | pattern_wildcard = NULL; |
| 4335 | pattern_left_label_end = pattern; |
| 4336 | while (*pattern_left_label_end != '.') { |
| 4337 | switch (*pattern_left_label_end) { |
| 4338 | case 0: |
| 4339 | /* End of label not found */ |
| 4340 | return 0; |
| 4341 | case '*': |
| 4342 | /* If there is more than one wildcards */ |
| 4343 | if (pattern_wildcard) |
| 4344 | return 0; |
| 4345 | pattern_wildcard = pattern_left_label_end; |
| 4346 | break; |
| 4347 | } |
| 4348 | pattern_left_label_end++; |
| 4349 | } |
| 4350 | |
| 4351 | /* If it's not trivial and there is no wildcard, it can't |
| 4352 | * match */ |
| 4353 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4354 | return 0; |
| 4355 | |
| 4356 | /* Make sure all labels match except the leftmost */ |
| 4357 | hostname_left_label_end = strchr(hostname, '.'); |
| 4358 | if (!hostname_left_label_end |
| 4359 | || strcmp(pattern_left_label_end, hostname_left_label_end) != 0) |
| 4360 | return 0; |
| 4361 | |
| 4362 | /* Make sure the leftmost label of the hostname is long enough |
| 4363 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4364 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4365 | return 0; |
| 4366 | |
| 4367 | /* Finally compare the string on either side of the |
| 4368 | * wildcard */ |
| 4369 | prefixlen = pattern_wildcard - pattern; |
| 4370 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4371 | if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0)) |
| 4372 | || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4373 | return 0; |
| 4374 | |
| 4375 | return 1; |
| 4376 | } |
| 4377 | |
| 4378 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4379 | { |
| 4380 | SSL *ssl; |
| 4381 | struct connection *conn; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4382 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4383 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4384 | |
| 4385 | int depth; |
| 4386 | X509 *cert; |
| 4387 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4388 | int i; |
| 4389 | X509_NAME *cert_subject; |
| 4390 | char *str; |
| 4391 | |
| 4392 | if (ok == 0) |
| 4393 | return ok; |
| 4394 | |
| 4395 | ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4396 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4397 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4398 | /* We're checking if the provided hostnames match the desired one. The |
| 4399 | * desired hostname comes from the SNI we presented if any, or if not |
| 4400 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4401 | * directive. If neither is set, we don't care about the name so the |
| 4402 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4403 | */ |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4404 | servername = SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4405 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4406 | if (!servername) { |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4407 | servername = objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4408 | if (!servername) |
| 4409 | return ok; |
| 4410 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4411 | |
| 4412 | /* We only need to verify the CN on the actual server cert, |
| 4413 | * not the indirect CAs */ |
| 4414 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4415 | if (depth != 0) |
| 4416 | return ok; |
| 4417 | |
| 4418 | /* At this point, the cert is *not* OK unless we can find a |
| 4419 | * hostname match */ |
| 4420 | ok = 0; |
| 4421 | |
| 4422 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4423 | /* It seems like this might happen if verify peer isn't set */ |
| 4424 | if (!cert) |
| 4425 | return ok; |
| 4426 | |
| 4427 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4428 | if (alt_names) { |
| 4429 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4430 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4431 | if (name->type == GEN_DNS) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4432 | #if OPENSSL_VERSION_NUMBER < 0x00907000L |
| 4433 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4434 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4435 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4436 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4437 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4438 | OPENSSL_free(str); |
| 4439 | } |
| 4440 | } |
| 4441 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4442 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4443 | } |
| 4444 | |
| 4445 | cert_subject = X509_get_subject_name(cert); |
| 4446 | i = -1; |
| 4447 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4448 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4449 | ASN1_STRING *value; |
| 4450 | value = X509_NAME_ENTRY_get_data(entry); |
| 4451 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4452 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4453 | OPENSSL_free(str); |
| 4454 | } |
| 4455 | } |
| 4456 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4457 | /* report the mismatch and indicate if SNI was used or not */ |
| 4458 | if (!ok && !conn->err_code) |
| 4459 | conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4460 | return ok; |
| 4461 | } |
| 4462 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4463 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4464 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4465 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4466 | struct proxy *curproxy = srv->proxy; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4467 | int cfgerr = 0; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 4468 | long options = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4469 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4470 | SSL_OP_NO_SSLv2 | |
| 4471 | SSL_OP_NO_COMPRESSION; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 4472 | long mode = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4473 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4474 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 4475 | SSL_MODE_RELEASE_BUFFERS | |
| 4476 | SSL_MODE_SMALL_BUFFERS; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4477 | int verify = SSL_VERIFY_NONE; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4478 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4479 | struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4480 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4481 | int flags = MC_SSL_O_ALL; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4482 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4483 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4484 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4485 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4486 | cfgerr++; |
| 4487 | } |
| 4488 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4489 | /* Automatic memory computations need to know we use SSL there */ |
| 4490 | global.ssl_used_backend = 1; |
| 4491 | |
| 4492 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4493 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4494 | if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4495 | ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n", |
| 4496 | curproxy->id, srv->id, |
| 4497 | srv->conf.file, srv->conf.line); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4498 | cfgerr++; |
| 4499 | return cfgerr; |
| 4500 | } |
| 4501 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4502 | if (srv->use_ssl) |
| 4503 | srv->xprt = &ssl_sock; |
| 4504 | if (srv->check.use_ssl) |
Cyril Bonté | 9ce1311 | 2014-11-15 22:41:27 +0100 | [diff] [blame] | 4505 | srv->check.xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4506 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4507 | ctx = SSL_CTX_new(SSLv23_client_method()); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4508 | if (!ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4509 | ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 4510 | proxy_type_str(curproxy), curproxy->id, |
| 4511 | srv->id); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4512 | cfgerr++; |
| 4513 | return cfgerr; |
| 4514 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4515 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4516 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4517 | ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. " |
| 4518 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4519 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4520 | else |
| 4521 | flags = conf_ssl_methods->flags; |
| 4522 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4523 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4524 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4525 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4526 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4527 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4528 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4529 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4530 | min = max = CONF_TLSV_NONE; |
| 4531 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4532 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4533 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4534 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4535 | if (min) { |
| 4536 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4537 | ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
| 4538 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4539 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4540 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4541 | hole = 0; |
| 4542 | } |
| 4543 | max = i; |
| 4544 | } |
| 4545 | else { |
| 4546 | min = max = i; |
| 4547 | } |
| 4548 | } |
| 4549 | else { |
| 4550 | if (min) |
| 4551 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4552 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4553 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4554 | ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
| 4555 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4556 | cfgerr += 1; |
| 4557 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4558 | |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 4559 | #if (OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4560 | /* Keep force-xxx implementation as it is in older haproxy. It's a |
| 4561 | precautionary measure to avoid any suprise with older openssl version. */ |
| 4562 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4563 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4564 | else |
| 4565 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4566 | if (flags & methodVersions[i].flag) |
| 4567 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4568 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4569 | /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4570 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4571 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4572 | #endif |
| 4573 | |
| 4574 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4575 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4576 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4577 | |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 4578 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4579 | if (global_ssl.async) |
| 4580 | mode |= SSL_MODE_ASYNC; |
| 4581 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4582 | SSL_CTX_set_mode(ctx, mode); |
| 4583 | srv->ssl_ctx.ctx = ctx; |
| 4584 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4585 | if (srv->ssl_ctx.client_crt) { |
| 4586 | if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4587 | ha_alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n", |
| 4588 | proxy_type_str(curproxy), curproxy->id, |
| 4589 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4590 | cfgerr++; |
| 4591 | } |
| 4592 | else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4593 | ha_alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n", |
| 4594 | proxy_type_str(curproxy), curproxy->id, |
| 4595 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4596 | cfgerr++; |
| 4597 | } |
| 4598 | else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4599 | ha_alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 4600 | proxy_type_str(curproxy), curproxy->id, |
| 4601 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4602 | cfgerr++; |
| 4603 | } |
| 4604 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4605 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4606 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 4607 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4608 | switch (srv->ssl_ctx.verify) { |
| 4609 | case SSL_SOCK_VERIFY_NONE: |
| 4610 | verify = SSL_VERIFY_NONE; |
| 4611 | break; |
| 4612 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4613 | verify = SSL_VERIFY_PEER; |
| 4614 | break; |
| 4615 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4616 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4617 | verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4618 | (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4619 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4620 | if (srv->ssl_ctx.ca_file) { |
| 4621 | /* load CAfile to verify */ |
| 4622 | if (!SSL_CTX_load_verify_locations(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4623 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to load CA file '%s'.\n", |
| 4624 | curproxy->id, srv->id, |
| 4625 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4626 | cfgerr++; |
| 4627 | } |
| 4628 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4629 | else { |
| 4630 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4631 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled by default but no CA file specified. If you're running on a LAN where you're certain to trust the server's certificate, please set an explicit 'verify none' statement on the 'server' line, or use 'ssl-server-verify none' in the global section to disable server-side verifications by default.\n", |
| 4632 | curproxy->id, srv->id, |
| 4633 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4634 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4635 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n", |
| 4636 | curproxy->id, srv->id, |
| 4637 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4638 | cfgerr++; |
| 4639 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4640 | #ifdef X509_V_FLAG_CRL_CHECK |
| 4641 | if (srv->ssl_ctx.crl_file) { |
| 4642 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 4643 | |
| 4644 | if (!store || !X509_STORE_load_locations(store, srv->ssl_ctx.crl_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4645 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n", |
| 4646 | curproxy->id, srv->id, |
| 4647 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4648 | cfgerr++; |
| 4649 | } |
| 4650 | else { |
| 4651 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4652 | } |
| 4653 | } |
| 4654 | #endif |
| 4655 | } |
| 4656 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4657 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_CLIENT | |
| 4658 | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 4659 | SSL_CTX_sess_set_new_cb(srv->ssl_ctx.ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4660 | if (srv->ssl_ctx.ciphers && |
| 4661 | !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4662 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 4663 | curproxy->id, srv->id, |
| 4664 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4665 | cfgerr++; |
| 4666 | } |
| 4667 | |
| 4668 | return cfgerr; |
| 4669 | } |
| 4670 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4671 | /* Walks down the two trees in bind_conf and prepares all certs. The pointer may |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4672 | * be NULL, in which case nothing is done. Returns the number of errors |
| 4673 | * encountered. |
| 4674 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4675 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4676 | { |
| 4677 | struct ebmb_node *node; |
| 4678 | struct sni_ctx *sni; |
| 4679 | int err = 0; |
| 4680 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4681 | /* Automatic memory computations need to know we use SSL there */ |
| 4682 | global.ssl_used_frontend = 1; |
| 4683 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4684 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4685 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4686 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4687 | err++; |
| 4688 | } |
| 4689 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 4690 | if (!bind_conf->initial_ctx) { |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4691 | err += ssl_sock_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4692 | /* It should not be necessary to call this function, but it's |
| 4693 | necessary first to check and move all initialisation related |
| 4694 | to initial_ctx in ssl_sock_initial_ctx. */ |
| 4695 | err += ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx); |
| 4696 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4697 | if (bind_conf->default_ctx) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4698 | err += ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4699 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4700 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4701 | while (node) { |
| 4702 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4703 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4704 | /* only initialize the CTX on its first occurrence and |
| 4705 | if it is not the default_ctx */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4706 | err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4707 | node = ebmb_next(node); |
| 4708 | } |
| 4709 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4710 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4711 | while (node) { |
| 4712 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4713 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4714 | /* only initialize the CTX on its first occurrence and |
| 4715 | if it is not the default_ctx */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4716 | err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4717 | node = ebmb_next(node); |
| 4718 | } |
| 4719 | return err; |
| 4720 | } |
| 4721 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4722 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 4723 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 4724 | * alerts are directly emitted since the rest of the stack does it below. |
| 4725 | */ |
| 4726 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 4727 | { |
| 4728 | struct proxy *px = bind_conf->frontend; |
| 4729 | int alloc_ctx; |
| 4730 | int err; |
| 4731 | |
| 4732 | if (!bind_conf->is_ssl) { |
| 4733 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4734 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 4735 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4736 | } |
| 4737 | return 0; |
| 4738 | } |
| 4739 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4740 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4741 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 4742 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4743 | } |
| 4744 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4745 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 4746 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4747 | return -1; |
| 4748 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4749 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 4750 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 4751 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
| 4752 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, |
| 4753 | sizeof(*sh_ssl_sess_tree), |
| 4754 | ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0); |
| 4755 | if (alloc_ctx < 0) { |
| 4756 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 4757 | ha_alert("Unable to initialize the lock for the shared SSL session cache. You can retry using the global statement 'tune.ssl.force-private-cache' but it could increase CPU usage due to renegotiations if nbproc > 1.\n"); |
| 4758 | else |
| 4759 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 4760 | return -1; |
| 4761 | } |
| 4762 | /* free block callback */ |
| 4763 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 4764 | /* init the root tree within the extra space */ |
| 4765 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 4766 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4767 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4768 | err = 0; |
| 4769 | /* initialize all certificate contexts */ |
| 4770 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 4771 | |
| 4772 | /* initialize CA variables if the certificates generation is enabled */ |
| 4773 | err += ssl_sock_load_ca(bind_conf); |
| 4774 | |
| 4775 | return -err; |
| 4776 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 4777 | |
| 4778 | /* release ssl context allocated for servers. */ |
| 4779 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 4780 | { |
| 4781 | if (srv->ssl_ctx.ctx) |
| 4782 | SSL_CTX_free(srv->ssl_ctx.ctx); |
| 4783 | } |
| 4784 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4785 | /* Walks down the two trees in bind_conf and frees all the certs. The pointer may |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4786 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 4787 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4788 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4789 | { |
| 4790 | struct ebmb_node *node, *back; |
| 4791 | struct sni_ctx *sni; |
| 4792 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4793 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4794 | while (node) { |
| 4795 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 4796 | back = ebmb_next(node); |
| 4797 | ebmb_delete(node); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4798 | if (!sni->order) { /* only free the CTX on its first occurrence */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4799 | SSL_CTX_free(sni->ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4800 | ssl_sock_free_ssl_conf(sni->conf); |
| 4801 | free(sni->conf); |
| 4802 | sni->conf = NULL; |
| 4803 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4804 | free(sni); |
| 4805 | node = back; |
| 4806 | } |
| 4807 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4808 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4809 | while (node) { |
| 4810 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 4811 | back = ebmb_next(node); |
| 4812 | ebmb_delete(node); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4813 | if (!sni->order) { /* only free the CTX on its first occurrence */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4814 | SSL_CTX_free(sni->ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4815 | ssl_sock_free_ssl_conf(sni->conf); |
| 4816 | free(sni->conf); |
| 4817 | sni->conf = NULL; |
| 4818 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4819 | free(sni); |
| 4820 | node = back; |
| 4821 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4822 | SSL_CTX_free(bind_conf->initial_ctx); |
| 4823 | bind_conf->initial_ctx = NULL; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4824 | bind_conf->default_ctx = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4825 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 4826 | } |
| 4827 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 4828 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 4829 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 4830 | { |
| 4831 | ssl_sock_free_ca(bind_conf); |
| 4832 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4833 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 4834 | free(bind_conf->ca_sign_file); |
| 4835 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 4836 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 4837 | free(bind_conf->keys_ref->filename); |
| 4838 | free(bind_conf->keys_ref->tlskeys); |
| 4839 | LIST_DEL(&bind_conf->keys_ref->list); |
| 4840 | free(bind_conf->keys_ref); |
| 4841 | } |
| 4842 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 4843 | bind_conf->ca_sign_pass = NULL; |
| 4844 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 4845 | } |
| 4846 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4847 | /* Load CA cert file and private key used to generate certificates */ |
| 4848 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4849 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4850 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4851 | struct proxy *px = bind_conf->frontend; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4852 | FILE *fp; |
| 4853 | X509 *cacert = NULL; |
| 4854 | EVP_PKEY *capkey = NULL; |
| 4855 | int err = 0; |
| 4856 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 4857 | if (!bind_conf->generate_certs) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4858 | return err; |
| 4859 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 4860 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4861 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4862 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 4863 | HA_RWLOCK_INIT(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4864 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 4865 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4866 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 4867 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 4868 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4869 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4870 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 4871 | "no CA certificate File configured at [%s:%d].\n", |
| 4872 | px->id, bind_conf->file, bind_conf->line); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4873 | goto load_error; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4874 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4875 | |
| 4876 | /* read in the CA certificate */ |
| 4877 | if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4878 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 4879 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4880 | goto load_error; |
| 4881 | } |
| 4882 | if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4883 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 4884 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4885 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4886 | } |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4887 | rewind(fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4888 | if (!(capkey = PEM_read_PrivateKey(fp, NULL, NULL, bind_conf->ca_sign_pass))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4889 | ha_alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n", |
| 4890 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4891 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4892 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4893 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4894 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4895 | bind_conf->ca_sign_cert = cacert; |
| 4896 | bind_conf->ca_sign_pkey = capkey; |
| 4897 | return err; |
| 4898 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4899 | read_error: |
| 4900 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4901 | if (capkey) EVP_PKEY_free(capkey); |
| 4902 | if (cacert) X509_free(cacert); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 4903 | load_error: |
| 4904 | bind_conf->generate_certs = 0; |
| 4905 | err++; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4906 | return err; |
| 4907 | } |
| 4908 | |
| 4909 | /* Release CA cert and private key used to generate certificated */ |
| 4910 | void |
| 4911 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 4912 | { |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4913 | if (bind_conf->ca_sign_pkey) |
| 4914 | EVP_PKEY_free(bind_conf->ca_sign_pkey); |
| 4915 | if (bind_conf->ca_sign_cert) |
| 4916 | X509_free(bind_conf->ca_sign_cert); |
Willy Tarreau | 94ff03a | 2016-12-22 17:57:46 +0100 | [diff] [blame] | 4917 | bind_conf->ca_sign_pkey = NULL; |
| 4918 | bind_conf->ca_sign_cert = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4919 | } |
| 4920 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4921 | /* |
| 4922 | * This function is called if SSL * context is not yet allocated. The function |
| 4923 | * is designed to be called before any other data-layer operation and sets the |
| 4924 | * handshake flag on the connection. It is safe to call it multiple times. |
| 4925 | * It returns 0 on success and -1 in error case. |
| 4926 | */ |
| 4927 | static int ssl_sock_init(struct connection *conn) |
| 4928 | { |
| 4929 | /* already initialized */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 4930 | if (conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4931 | return 0; |
| 4932 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 4933 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 4934 | return 0; |
| 4935 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 4936 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 4937 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 4938 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 4939 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 4940 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4941 | /* If it is in client mode initiate SSL session |
| 4942 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4943 | if (objt_server(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4944 | int may_retry = 1; |
| 4945 | |
| 4946 | retry_connect: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4947 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 4948 | conn->xprt_ctx = SSL_new(objt_server(conn->target)->ssl_ctx.ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 4949 | if (!conn->xprt_ctx) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4950 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 4951 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4952 | goto retry_connect; |
| 4953 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 4954 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4955 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 4956 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4957 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4958 | /* set fd on SSL session context */ |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 4959 | if (!SSL_set_fd(conn->xprt_ctx, conn->handle.fd)) { |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 4960 | SSL_free(conn->xprt_ctx); |
| 4961 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4962 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 4963 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4964 | goto retry_connect; |
| 4965 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 4966 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 4967 | return -1; |
| 4968 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4969 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4970 | /* set connection pointer */ |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4971 | if (!SSL_set_ex_data(conn->xprt_ctx, ssl_app_data_index, conn)) { |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 4972 | SSL_free(conn->xprt_ctx); |
| 4973 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4974 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 4975 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 4976 | goto retry_connect; |
| 4977 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 4978 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 4979 | return -1; |
| 4980 | } |
| 4981 | |
| 4982 | SSL_set_connect_state(conn->xprt_ctx); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4983 | if (objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 4984 | const unsigned char *ptr = objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 4985 | SSL_SESSION *sess = d2i_SSL_SESSION(NULL, &ptr, objt_server(conn->target)->ssl_ctx.reused_sess[tid].size); |
| 4986 | if(sess && !SSL_set_session(conn->xprt_ctx, sess)) { |
| 4987 | SSL_SESSION_free(sess); |
| 4988 | free(objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
| 4989 | objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL; |
| 4990 | } else if (sess) { |
| 4991 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 4992 | } |
| 4993 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4994 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4995 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 4996 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 4997 | |
| 4998 | sslconns++; |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 4999 | totalsslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5000 | return 0; |
| 5001 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5002 | else if (objt_listener(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5003 | int may_retry = 1; |
| 5004 | |
| 5005 | retry_accept: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5006 | /* Alloc a new SSL session ctx */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5007 | conn->xprt_ctx = SSL_new(objt_listener(conn->target)->bind_conf->initial_ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5008 | if (!conn->xprt_ctx) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5009 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5010 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5011 | goto retry_accept; |
| 5012 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5013 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5014 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5015 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5016 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5017 | /* set fd on SSL session context */ |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5018 | if (!SSL_set_fd(conn->xprt_ctx, conn->handle.fd)) { |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5019 | SSL_free(conn->xprt_ctx); |
| 5020 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5021 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5022 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5023 | goto retry_accept; |
| 5024 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5025 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5026 | return -1; |
| 5027 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5028 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5029 | /* set connection pointer */ |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 5030 | if (!SSL_set_ex_data(conn->xprt_ctx, ssl_app_data_index, conn)) { |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5031 | SSL_free(conn->xprt_ctx); |
| 5032 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5033 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5034 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5035 | goto retry_accept; |
| 5036 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5037 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5038 | return -1; |
| 5039 | } |
| 5040 | |
| 5041 | SSL_set_accept_state(conn->xprt_ctx); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5042 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5043 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5044 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Emmanuel Hocdet | ca6a957 | 2017-11-23 12:40:07 +0100 | [diff] [blame] | 5045 | #if OPENSSL_VERSION_NUMBER >= 0x10101000L || defined(OPENSSL_IS_BORINGSSL) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5046 | conn->flags |= CO_FL_EARLY_SSL_HS; |
| 5047 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5048 | |
| 5049 | sslconns++; |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 5050 | totalsslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5051 | return 0; |
| 5052 | } |
| 5053 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5054 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5055 | return -1; |
| 5056 | } |
| 5057 | |
| 5058 | |
| 5059 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5060 | * updates the FD status if it wants some polling before being called again. |
| 5061 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5062 | * otherwise it returns non-zero and removes itself from the connection's |
| 5063 | * flags (the bit is provided in <flag> by the caller). |
| 5064 | */ |
| 5065 | int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
| 5066 | { |
| 5067 | int ret; |
| 5068 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5069 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5070 | return 0; |
| 5071 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5072 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5073 | goto out_error; |
| 5074 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5075 | #if OPENSSL_VERSION_NUMBER >= 0x10101000L |
| 5076 | /* |
| 5077 | * Check if we have early data. If we do, we have to read them |
| 5078 | * before SSL_do_handshake() is called, And there's no way to |
| 5079 | * detect early data, except to try to read them |
| 5080 | */ |
| 5081 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
| 5082 | size_t read_data; |
| 5083 | |
| 5084 | ret = SSL_read_early_data(conn->xprt_ctx, &conn->tmp_early_data, |
| 5085 | 1, &read_data); |
| 5086 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5087 | goto check_error; |
| 5088 | if (ret == SSL_READ_EARLY_DATA_SUCCESS) { |
| 5089 | conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN); |
| 5090 | return 1; |
| 5091 | } else |
| 5092 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5093 | } |
| 5094 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5095 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5096 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5097 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5098 | * the reneg handshake. |
| 5099 | * Here we use SSL_peek as a workaround for reneg. |
| 5100 | */ |
| 5101 | if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 5102 | char c; |
| 5103 | |
| 5104 | ret = SSL_peek(conn->xprt_ctx, &c, 1); |
| 5105 | if (ret <= 0) { |
| 5106 | /* handshake may have not been completed, let's find why */ |
| 5107 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5108 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5109 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5110 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 5111 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 5112 | __conn_sock_want_send(conn); |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5113 | fd_cant_send(conn->handle.fd); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5114 | return 0; |
| 5115 | } |
| 5116 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5117 | /* handshake may have been completed but we have |
| 5118 | * no more data to read. |
| 5119 | */ |
| 5120 | if (!SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 5121 | ret = 1; |
| 5122 | goto reneg_ok; |
| 5123 | } |
| 5124 | /* SSL handshake needs to read, L4 connection is ready */ |
| 5125 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 5126 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 5127 | __conn_sock_stop_send(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 5128 | __conn_sock_want_recv(conn); |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5129 | fd_cant_recv(conn->handle.fd); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5130 | return 0; |
| 5131 | } |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5132 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5133 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 5134 | ssl_async_process_fds(conn, conn->xprt_ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5135 | return 0; |
| 5136 | } |
| 5137 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5138 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5139 | /* if errno is null, then connection was successfully established */ |
| 5140 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5141 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5142 | if (!conn->err_code) { |
Emeric Brun | 77e8919 | 2018-08-16 11:36:40 +0200 | [diff] [blame] | 5143 | #ifdef OPENSSL_IS_BORINGSSL /* BoringSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5144 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5145 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5146 | int empty_handshake; |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 5147 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(LIBRESSL_VERSION_NUMBER) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5148 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)conn->xprt_ctx); |
| 5149 | empty_handshake = state == TLS_ST_BEFORE; |
| 5150 | #else |
| 5151 | empty_handshake = !((SSL *)conn->xprt_ctx)->packet_length; |
| 5152 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5153 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5154 | if (!errno) { |
| 5155 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 5156 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5157 | else |
| 5158 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5159 | } |
| 5160 | else { |
| 5161 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 5162 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5163 | else |
| 5164 | conn->err_code = CO_ER_SSL_ABORT; |
| 5165 | } |
| 5166 | } |
| 5167 | else { |
| 5168 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 5169 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5170 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5171 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5172 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5173 | #endif |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5174 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5175 | goto out_error; |
| 5176 | } |
| 5177 | else { |
| 5178 | /* Fail on all other handshake errors */ |
| 5179 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5180 | * buffer, causing an RST to be emitted upon close() on |
| 5181 | * TCP sockets. We first try to drain possibly pending |
| 5182 | * data to avoid this as much as possible. |
| 5183 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 5184 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5185 | if (!conn->err_code) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5186 | conn->err_code = (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
| 5187 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5188 | goto out_error; |
| 5189 | } |
| 5190 | } |
| 5191 | /* read some data: consider handshake completed */ |
| 5192 | goto reneg_ok; |
| 5193 | } |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5194 | ret = SSL_do_handshake(conn->xprt_ctx); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5195 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5196 | if (ret != 1) { |
| 5197 | /* handshake did not complete, let's find why */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5198 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5199 | |
| 5200 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5201 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 5202 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 5203 | __conn_sock_want_send(conn); |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5204 | fd_cant_send(conn->handle.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5205 | return 0; |
| 5206 | } |
| 5207 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5208 | /* SSL handshake needs to read, L4 connection is ready */ |
| 5209 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 5210 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 5211 | __conn_sock_stop_send(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 5212 | __conn_sock_want_recv(conn); |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5213 | fd_cant_recv(conn->handle.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5214 | return 0; |
| 5215 | } |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5216 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5217 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 5218 | ssl_async_process_fds(conn, conn->xprt_ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5219 | return 0; |
| 5220 | } |
| 5221 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5222 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5223 | /* if errno is null, then connection was successfully established */ |
| 5224 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5225 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5226 | if (!conn->err_code) { |
Emeric Brun | 77e8919 | 2018-08-16 11:36:40 +0200 | [diff] [blame] | 5227 | #ifdef OPENSSL_IS_BORINGSSL /* BoringSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5228 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5229 | #else |
| 5230 | int empty_handshake; |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 5231 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(LIBRESSL_VERSION_NUMBER) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5232 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)conn->xprt_ctx); |
| 5233 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5234 | #else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5235 | empty_handshake = !((SSL *)conn->xprt_ctx)->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5236 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5237 | if (empty_handshake) { |
| 5238 | if (!errno) { |
| 5239 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 5240 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5241 | else |
| 5242 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5243 | } |
| 5244 | else { |
| 5245 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 5246 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5247 | else |
| 5248 | conn->err_code = CO_ER_SSL_ABORT; |
| 5249 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5250 | } |
| 5251 | else { |
| 5252 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 5253 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5254 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5255 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5256 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5257 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5258 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5259 | goto out_error; |
| 5260 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5261 | else { |
| 5262 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5263 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5264 | * buffer, causing an RST to be emitted upon close() on |
| 5265 | * TCP sockets. We first try to drain possibly pending |
| 5266 | * data to avoid this as much as possible. |
| 5267 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 5268 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5269 | if (!conn->err_code) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5270 | conn->err_code = (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
| 5271 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5272 | goto out_error; |
| 5273 | } |
| 5274 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5275 | #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5276 | else { |
| 5277 | /* |
| 5278 | * If the server refused the early data, we have to send a |
| 5279 | * 425 to the client, as we no longer have the data to sent |
| 5280 | * them again. |
| 5281 | */ |
| 5282 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
| 5283 | if (SSL_get_early_data_status(conn->xprt_ctx) == SSL_EARLY_DATA_REJECTED) { |
| 5284 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5285 | goto out_error; |
| 5286 | } |
| 5287 | } |
| 5288 | } |
| 5289 | #endif |
| 5290 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5291 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5292 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5293 | |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5294 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5295 | /* ASYNC engine API doesn't support moving read/write |
| 5296 | * buffers. So we disable ASYNC mode right after |
| 5297 | * the handshake to avoid buffer oveflows. |
| 5298 | */ |
| 5299 | if (global_ssl.async) |
| 5300 | SSL_clear_mode(conn->xprt_ctx, SSL_MODE_ASYNC); |
| 5301 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5302 | /* Handshake succeeded */ |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5303 | if (!SSL_session_reused(conn->xprt_ctx)) { |
| 5304 | if (objt_server(conn->target)) { |
| 5305 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5306 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5307 | global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5308 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5309 | else { |
| 5310 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5311 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5312 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5313 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5314 | } |
| 5315 | |
Emmanuel Hocdet | ca6a957 | 2017-11-23 12:40:07 +0100 | [diff] [blame] | 5316 | #ifdef OPENSSL_IS_BORINGSSL |
| 5317 | if ((conn->flags & CO_FL_EARLY_SSL_HS) && !SSL_in_early_data(conn->xprt_ctx)) |
| 5318 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5319 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5320 | /* The connection is now established at both layers, it's time to leave */ |
| 5321 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5322 | return 1; |
| 5323 | |
| 5324 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5325 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5326 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5327 | ERR_clear_error(); |
| 5328 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5329 | /* free resumed session if exists */ |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5330 | if (objt_server(conn->target) && objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5331 | free(objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
| 5332 | objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL; |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5333 | } |
| 5334 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5335 | /* Fail on all other handshake errors */ |
| 5336 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5337 | if (!conn->err_code) |
| 5338 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5339 | return 0; |
| 5340 | } |
| 5341 | |
| 5342 | /* Receive up to <count> bytes from connection <conn>'s socket and store them |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5343 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5344 | * buffer wraps, in which case a second call may be performed. The connection's |
| 5345 | * flags are updated with whatever special event is detected (error, read0, |
| 5346 | * empty). The caller is responsible for taking care of those events and |
| 5347 | * avoiding the call if inappropriate. The function does not call the |
| 5348 | * connection's polling update function, so the caller is responsible for this. |
| 5349 | */ |
Willy Tarreau | 7f3225f | 2018-06-19 06:15:17 +0200 | [diff] [blame] | 5350 | static size_t ssl_sock_to_buf(struct connection *conn, struct buffer *buf, size_t count, int flags) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5351 | { |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 5352 | ssize_t ret; |
| 5353 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5354 | |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5355 | conn_refresh_polling_flags(conn); |
| 5356 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5357 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5358 | goto out_error; |
| 5359 | |
| 5360 | if (conn->flags & CO_FL_HANDSHAKE) |
| 5361 | /* a handshake was requested */ |
| 5362 | return 0; |
| 5363 | |
Willy Tarreau | 0c7ed5d | 2018-07-10 09:53:31 +0200 | [diff] [blame] | 5364 | b_realign_if_empty(buf); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5365 | |
| 5366 | /* read the largest possible block. For this, we perform only one call |
| 5367 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 5368 | * in which case we accept to do it once again. A new attempt is made on |
| 5369 | * EINTR too. |
| 5370 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 5371 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5372 | int need_out = 0; |
| 5373 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5374 | try = b_contig_space(buf); |
| 5375 | if (!try) |
| 5376 | break; |
| 5377 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5378 | if (try > count) |
| 5379 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5380 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5381 | if (((conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == CO_FL_EARLY_SSL_HS) && |
| 5382 | conn->tmp_early_data != -1) { |
Willy Tarreau | 8f9c72d | 2018-06-07 18:46:28 +0200 | [diff] [blame] | 5383 | *b_tail(buf) = conn->tmp_early_data; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5384 | done++; |
| 5385 | try--; |
| 5386 | count--; |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 5387 | b_add(buf, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5388 | conn->tmp_early_data = -1; |
| 5389 | continue; |
| 5390 | } |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5391 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5392 | #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5393 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
| 5394 | size_t read_length; |
| 5395 | |
| 5396 | ret = SSL_read_early_data(conn->xprt_ctx, |
Willy Tarreau | 8f9c72d | 2018-06-07 18:46:28 +0200 | [diff] [blame] | 5397 | b_tail(buf), try, &read_length); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5398 | if (ret == SSL_READ_EARLY_DATA_SUCCESS && |
| 5399 | read_length > 0) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5400 | conn->flags |= CO_FL_EARLY_DATA; |
| 5401 | if (ret == SSL_READ_EARLY_DATA_SUCCESS || |
| 5402 | ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5403 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5404 | /* |
| 5405 | * We're done reading the early data, |
| 5406 | * let's make the handshake |
| 5407 | */ |
| 5408 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5409 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 5410 | need_out = 1; |
| 5411 | if (read_length == 0) |
| 5412 | break; |
| 5413 | } |
| 5414 | ret = read_length; |
| 5415 | } |
| 5416 | } else |
| 5417 | #endif |
Willy Tarreau | 8f9c72d | 2018-06-07 18:46:28 +0200 | [diff] [blame] | 5418 | ret = SSL_read(conn->xprt_ctx, b_tail(buf), try); |
Emmanuel Hocdet | ca6a957 | 2017-11-23 12:40:07 +0100 | [diff] [blame] | 5419 | #ifdef OPENSSL_IS_BORINGSSL |
| 5420 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
| 5421 | if (SSL_in_early_data(conn->xprt_ctx)) { |
| 5422 | if (ret > 0) |
| 5423 | conn->flags |= CO_FL_EARLY_DATA; |
| 5424 | } else { |
Emmanuel Hocdet | cebd796 | 2017-11-27 16:14:40 +0100 | [diff] [blame] | 5425 | conn->flags &= ~(CO_FL_EARLY_SSL_HS); |
Emmanuel Hocdet | ca6a957 | 2017-11-23 12:40:07 +0100 | [diff] [blame] | 5426 | } |
| 5427 | } |
| 5428 | #endif |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5429 | if (conn->flags & CO_FL_ERROR) { |
| 5430 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5431 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5432 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5433 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 5434 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5435 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5436 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5437 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5438 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5439 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5440 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 5441 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5442 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 5443 | __conn_sock_want_send(conn); |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5444 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5445 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5446 | if (global_ssl.async) |
| 5447 | SSL_set_mode(conn->xprt_ctx, SSL_MODE_ASYNC); |
| 5448 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5449 | break; |
| 5450 | } |
| 5451 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5452 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 5453 | /* handshake is running, and it may need to re-enable read */ |
| 5454 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 5455 | __conn_sock_want_recv(conn); |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5456 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5457 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5458 | if (global_ssl.async) |
| 5459 | SSL_set_mode(conn->xprt_ctx, SSL_MODE_ASYNC); |
| 5460 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5461 | break; |
| 5462 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5463 | /* we need to poll for retry a read later */ |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5464 | fd_cant_recv(conn->handle.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5465 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5466 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 5467 | goto read0; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5468 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 5469 | * stack before shutting down the connection for |
| 5470 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 5471 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 5472 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5473 | /* otherwise it's a real error */ |
| 5474 | goto out_error; |
| 5475 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5476 | if (need_out) |
| 5477 | break; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5478 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5479 | leave: |
| 5480 | conn_cond_update_sock_polling(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5481 | return done; |
| 5482 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5483 | clear_ssl_error: |
| 5484 | /* Clear openssl global errors stack */ |
| 5485 | ssl_sock_dump_errors(conn); |
| 5486 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5487 | read0: |
| 5488 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5489 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5490 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5491 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 5492 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5493 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5494 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5495 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5496 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5497 | } |
| 5498 | |
| 5499 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5500 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 5501 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 5502 | * other pending data for example, but this flag is ignored at the moment. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5503 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 5504 | * a second call may be performed. The connection's flags are updated with |
| 5505 | * whatever special event is detected (error, empty). The caller is responsible |
| 5506 | * for taking care of those events and avoiding the call if inappropriate. The |
| 5507 | * function does not call the connection's polling update function, so the caller |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5508 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 5509 | * caller to take care of this. It's up to the caller to update the buffer's |
| 5510 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5511 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5512 | static size_t ssl_sock_from_buf(struct connection *conn, const struct buffer *buf, size_t count, int flags) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5513 | { |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5514 | ssize_t ret; |
| 5515 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5516 | |
| 5517 | done = 0; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5518 | conn_refresh_polling_flags(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5519 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5520 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5521 | goto out_error; |
| 5522 | |
| 5523 | if (conn->flags & CO_FL_HANDSHAKE) |
| 5524 | /* a handshake was requested */ |
| 5525 | return 0; |
| 5526 | |
| 5527 | /* send the largest possible block. For this we perform only one call |
| 5528 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 5529 | * in which case we accept to do it once again. |
| 5530 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5531 | while (count) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5532 | #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5533 | size_t written_data; |
| 5534 | #endif |
| 5535 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5536 | try = b_contig_data(buf, done); |
| 5537 | if (try > count) |
| 5538 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 5539 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 5540 | if (!(flags & CO_SFL_STREAMER) && |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 5541 | !(conn->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5542 | global_ssl.max_record && try > global_ssl.max_record) { |
| 5543 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 5544 | } |
| 5545 | else { |
| 5546 | /* we need to keep the information about the fact that |
| 5547 | * we're not limiting the upcoming send(), because if it |
| 5548 | * fails, we'll have to retry with at least as many data. |
| 5549 | */ |
| 5550 | conn->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
| 5551 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 5552 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5553 | #if (OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5554 | if (!SSL_is_init_finished(conn->xprt_ctx)) { |
| 5555 | unsigned int max_early; |
| 5556 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5557 | if (objt_listener(conn->target)) |
| 5558 | max_early = SSL_get_max_early_data(conn->xprt_ctx); |
| 5559 | else { |
| 5560 | if (SSL_get0_session(conn->xprt_ctx)) |
| 5561 | max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(conn->xprt_ctx)); |
| 5562 | else |
| 5563 | max_early = 0; |
| 5564 | } |
| 5565 | |
Olivier Houchard | 90084a1 | 2017-11-23 18:21:29 +0100 | [diff] [blame] | 5566 | if (try + conn->sent_early_data > max_early) { |
| 5567 | try -= (try + conn->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5568 | if (try <= 0) { |
Olivier Houchard | 90084a1 | 2017-11-23 18:21:29 +0100 | [diff] [blame] | 5569 | if (!(conn->flags & CO_FL_EARLY_SSL_HS)) |
| 5570 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5571 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5572 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5573 | } |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5574 | ret = SSL_write_early_data(conn->xprt_ctx, b_peek(buf, done), try, &written_data); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5575 | if (ret == 1) { |
| 5576 | ret = written_data; |
Olivier Houchard | 90084a1 | 2017-11-23 18:21:29 +0100 | [diff] [blame] | 5577 | conn->sent_early_data += ret; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5578 | if (objt_server(conn->target)) { |
| 5579 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5580 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA; |
| 5581 | } |
| 5582 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5583 | } |
| 5584 | |
| 5585 | } else |
| 5586 | #endif |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5587 | ret = SSL_write(conn->xprt_ctx, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 5588 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5589 | if (conn->flags & CO_FL_ERROR) { |
| 5590 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5591 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5592 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5593 | if (ret > 0) { |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 5594 | conn->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5595 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5596 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5597 | } |
| 5598 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5599 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5600 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5601 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5602 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 5603 | /* handshake is running, and it may need to re-enable write */ |
| 5604 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 5605 | __conn_sock_want_send(conn); |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5606 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5607 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5608 | if (global_ssl.async) |
| 5609 | SSL_set_mode(conn->xprt_ctx, SSL_MODE_ASYNC); |
| 5610 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5611 | break; |
| 5612 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5613 | /* we need to poll to retry a write later */ |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 5614 | fd_cant_send(conn->handle.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5615 | break; |
| 5616 | } |
| 5617 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 5618 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5619 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 5620 | __conn_sock_want_recv(conn); |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5621 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5622 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5623 | if (global_ssl.async) |
| 5624 | SSL_set_mode(conn->xprt_ctx, SSL_MODE_ASYNC); |
| 5625 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5626 | break; |
| 5627 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5628 | goto out_error; |
| 5629 | } |
| 5630 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5631 | leave: |
| 5632 | conn_cond_update_sock_polling(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5633 | return done; |
| 5634 | |
| 5635 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5636 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5637 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5638 | ERR_clear_error(); |
| 5639 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5640 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5641 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5642 | } |
| 5643 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5644 | static void ssl_sock_close(struct connection *conn) { |
| 5645 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5646 | if (conn->xprt_ctx) { |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 5647 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 5648 | if (global_ssl.async) { |
| 5649 | OSSL_ASYNC_FD all_fd[32], afd; |
| 5650 | size_t num_all_fds = 0; |
| 5651 | int i; |
| 5652 | |
| 5653 | SSL_get_all_async_fds(conn->xprt_ctx, NULL, &num_all_fds); |
| 5654 | if (num_all_fds > 32) { |
| 5655 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 5656 | return; |
| 5657 | } |
| 5658 | |
| 5659 | SSL_get_all_async_fds(conn->xprt_ctx, all_fd, &num_all_fds); |
| 5660 | |
| 5661 | /* If an async job is pending, we must try to |
| 5662 | to catch the end using polling before calling |
| 5663 | SSL_free */ |
| 5664 | if (num_all_fds && SSL_waiting_for_async(conn->xprt_ctx)) { |
| 5665 | for (i=0 ; i < num_all_fds ; i++) { |
| 5666 | /* switch on an handler designed to |
| 5667 | * handle the SSL_free |
| 5668 | */ |
| 5669 | afd = all_fd[i]; |
| 5670 | fdtab[afd].iocb = ssl_async_fd_free; |
| 5671 | fdtab[afd].owner = conn->xprt_ctx; |
| 5672 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 5673 | /* To ensure that the fd cache won't be used |
| 5674 | * and we'll catch a real RD event. |
| 5675 | */ |
| 5676 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 5677 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5678 | conn->xprt_ctx = NULL; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 5679 | HA_ATOMIC_ADD(&jobs, 1); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5680 | return; |
| 5681 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 5682 | /* Else we can remove the fds from the fdtab |
| 5683 | * and call SSL_free. |
| 5684 | * note: we do a fd_remove and not a delete |
| 5685 | * because the fd is owned by the engine. |
| 5686 | * the engine is responsible to close |
| 5687 | */ |
| 5688 | for (i=0 ; i < num_all_fds ; i++) |
| 5689 | fd_remove(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5690 | } |
| 5691 | #endif |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5692 | SSL_free(conn->xprt_ctx); |
| 5693 | conn->xprt_ctx = NULL; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5694 | sslconns--; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5695 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5696 | } |
| 5697 | |
| 5698 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 5699 | * any case, flags the connection as reusable if no handshake was in progress. |
| 5700 | */ |
| 5701 | static void ssl_sock_shutw(struct connection *conn, int clean) |
| 5702 | { |
| 5703 | if (conn->flags & CO_FL_HANDSHAKE) |
| 5704 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 5705 | if (!clean) |
| 5706 | /* don't sent notify on SSL_shutdown */ |
Willy Tarreau | e3cc3a3 | 2017-02-13 11:12:29 +0100 | [diff] [blame] | 5707 | SSL_set_quiet_shutdown(conn->xprt_ctx, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5708 | /* no handshake was in progress, try a clean ssl shutdown */ |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 5709 | if (SSL_shutdown(conn->xprt_ctx) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5710 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5711 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5712 | ERR_clear_error(); |
| 5713 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5714 | } |
| 5715 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 5716 | /* used for ppv2 pkey alog (can be used for logging) */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5717 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 5718 | { |
| 5719 | struct pkey_info *pkinfo; |
| 5720 | int bits = 0; |
| 5721 | int sig = TLSEXT_signature_anonymous; |
| 5722 | int len = -1; |
| 5723 | |
| 5724 | if (!ssl_sock_is_ssl(conn)) |
| 5725 | return 0; |
| 5726 | |
Emmanuel Hocdet | 3448c49 | 2018-06-18 12:44:19 +0200 | [diff] [blame] | 5727 | pkinfo = SSL_CTX_get_ex_data(SSL_get_SSL_CTX(conn->xprt_ctx), ssl_pkey_info_index); |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 5728 | if (pkinfo) { |
| 5729 | sig = pkinfo->sig; |
| 5730 | bits = pkinfo->bits; |
| 5731 | } else { |
| 5732 | /* multicert and generated cert have no pkey info */ |
| 5733 | X509 *crt; |
| 5734 | EVP_PKEY *pkey; |
| 5735 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 5736 | if (!crt) |
| 5737 | return 0; |
| 5738 | pkey = X509_get_pubkey(crt); |
| 5739 | if (pkey) { |
| 5740 | bits = EVP_PKEY_bits(pkey); |
| 5741 | switch(EVP_PKEY_base_id(pkey)) { |
| 5742 | case EVP_PKEY_RSA: |
| 5743 | sig = TLSEXT_signature_rsa; |
| 5744 | break; |
| 5745 | case EVP_PKEY_EC: |
| 5746 | sig = TLSEXT_signature_ecdsa; |
| 5747 | break; |
| 5748 | case EVP_PKEY_DSA: |
| 5749 | sig = TLSEXT_signature_dsa; |
| 5750 | break; |
| 5751 | } |
| 5752 | EVP_PKEY_free(pkey); |
| 5753 | } |
| 5754 | } |
| 5755 | |
| 5756 | switch(sig) { |
| 5757 | case TLSEXT_signature_rsa: |
| 5758 | len = chunk_printf(out, "RSA%d", bits); |
| 5759 | break; |
| 5760 | case TLSEXT_signature_ecdsa: |
| 5761 | len = chunk_printf(out, "EC%d", bits); |
| 5762 | break; |
| 5763 | case TLSEXT_signature_dsa: |
| 5764 | len = chunk_printf(out, "DSA%d", bits); |
| 5765 | break; |
| 5766 | default: |
| 5767 | return 0; |
| 5768 | } |
| 5769 | if (len < 0) |
| 5770 | return 0; |
| 5771 | return 1; |
| 5772 | } |
| 5773 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 5774 | /* used for ppv2 cert signature (can be used for logging) */ |
| 5775 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 5776 | { |
| 5777 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 5778 | X509 *crt; |
| 5779 | |
| 5780 | if (!ssl_sock_is_ssl(conn)) |
| 5781 | return NULL; |
| 5782 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 5783 | if (!crt) |
| 5784 | return NULL; |
| 5785 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 5786 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 5787 | } |
| 5788 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 5789 | /* used for ppv2 authority */ |
| 5790 | const char *ssl_sock_get_sni(struct connection *conn) |
| 5791 | { |
| 5792 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5793 | if (!ssl_sock_is_ssl(conn)) |
| 5794 | return NULL; |
| 5795 | return SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name); |
| 5796 | #else |
| 5797 | return 0; |
| 5798 | #endif |
| 5799 | } |
| 5800 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 5801 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 5802 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 5803 | { |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 5804 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 5805 | return NULL; |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 5806 | |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 5807 | return SSL_get_cipher_name(conn->xprt_ctx); |
| 5808 | } |
| 5809 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 5810 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 5811 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 5812 | { |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 5813 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 5814 | return NULL; |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 5815 | |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 5816 | return SSL_get_version(conn->xprt_ctx); |
| 5817 | } |
| 5818 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 5819 | /* Extract a serial from a cert, and copy it to a chunk. |
| 5820 | * Returns 1 if serial is found and copied, 0 if no serial found and |
| 5821 | * -1 if output is not large enough. |
| 5822 | */ |
| 5823 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5824 | ssl_sock_get_serial(X509 *crt, struct buffer *out) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 5825 | { |
| 5826 | ASN1_INTEGER *serial; |
| 5827 | |
| 5828 | serial = X509_get_serialNumber(crt); |
| 5829 | if (!serial) |
| 5830 | return 0; |
| 5831 | |
| 5832 | if (out->size < serial->length) |
| 5833 | return -1; |
| 5834 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5835 | memcpy(out->area, serial->data, serial->length); |
| 5836 | out->data = serial->length; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 5837 | return 1; |
| 5838 | } |
| 5839 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 5840 | /* Extract a cert to der, and copy it to a chunk. |
| 5841 | * Returns 1 if cert is found and copied, 0 on der convertion failure and |
| 5842 | * -1 if output is not large enough. |
| 5843 | */ |
| 5844 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5845 | ssl_sock_crt2der(X509 *crt, struct buffer *out) |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 5846 | { |
| 5847 | int len; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5848 | unsigned char *p = (unsigned char *) out->area;; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 5849 | |
| 5850 | len =i2d_X509(crt, NULL); |
| 5851 | if (len <= 0) |
| 5852 | return 1; |
| 5853 | |
| 5854 | if (out->size < len) |
| 5855 | return -1; |
| 5856 | |
| 5857 | i2d_X509(crt,&p); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5858 | out->data = len; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 5859 | return 1; |
| 5860 | } |
| 5861 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 5862 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5863 | /* Copy Date in ASN1_UTCTIME format in struct buffer out. |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 5864 | * Returns 1 if serial is found and copied, 0 if no valid time found |
| 5865 | * and -1 if output is not large enough. |
| 5866 | */ |
| 5867 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5868 | ssl_sock_get_time(ASN1_TIME *tm, struct buffer *out) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 5869 | { |
| 5870 | if (tm->type == V_ASN1_GENERALIZEDTIME) { |
| 5871 | ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm; |
| 5872 | |
| 5873 | if (gentm->length < 12) |
| 5874 | return 0; |
| 5875 | if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30) |
| 5876 | return 0; |
| 5877 | if (out->size < gentm->length-2) |
| 5878 | return -1; |
| 5879 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5880 | memcpy(out->area, gentm->data+2, gentm->length-2); |
| 5881 | out->data = gentm->length-2; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 5882 | return 1; |
| 5883 | } |
| 5884 | else if (tm->type == V_ASN1_UTCTIME) { |
| 5885 | ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm; |
| 5886 | |
| 5887 | if (utctm->length < 10) |
| 5888 | return 0; |
| 5889 | if (utctm->data[0] >= 0x35) |
| 5890 | return 0; |
| 5891 | if (out->size < utctm->length) |
| 5892 | return -1; |
| 5893 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5894 | memcpy(out->area, utctm->data, utctm->length); |
| 5895 | out->data = utctm->length; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 5896 | return 1; |
| 5897 | } |
| 5898 | |
| 5899 | return 0; |
| 5900 | } |
| 5901 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5902 | /* Extract an entry from a X509_NAME and copy its value to an output chunk. |
| 5903 | * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough. |
| 5904 | */ |
| 5905 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5906 | ssl_sock_get_dn_entry(X509_NAME *a, const struct buffer *entry, int pos, |
| 5907 | struct buffer *out) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5908 | { |
| 5909 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5910 | ASN1_OBJECT *obj; |
| 5911 | ASN1_STRING *data; |
| 5912 | const unsigned char *data_ptr; |
| 5913 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5914 | int i, j, n; |
| 5915 | int cur = 0; |
| 5916 | const char *s; |
| 5917 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5918 | int name_count; |
| 5919 | |
| 5920 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5921 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5922 | out->data = 0; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5923 | for (i = 0; i < name_count; i++) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5924 | if (pos < 0) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5925 | j = (name_count-1) - i; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5926 | else |
| 5927 | j = i; |
| 5928 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5929 | ne = X509_NAME_get_entry(a, j); |
| 5930 | obj = X509_NAME_ENTRY_get_object(ne); |
| 5931 | data = X509_NAME_ENTRY_get_data(ne); |
| 5932 | data_ptr = ASN1_STRING_get0_data(data); |
| 5933 | data_len = ASN1_STRING_length(data); |
| 5934 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5935 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5936 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5937 | s = tmp; |
| 5938 | } |
| 5939 | |
| 5940 | if (chunk_strcasecmp(entry, s) != 0) |
| 5941 | continue; |
| 5942 | |
| 5943 | if (pos < 0) |
| 5944 | cur--; |
| 5945 | else |
| 5946 | cur++; |
| 5947 | |
| 5948 | if (cur != pos) |
| 5949 | continue; |
| 5950 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5951 | if (data_len > out->size) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5952 | return -1; |
| 5953 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5954 | memcpy(out->area, data_ptr, data_len); |
| 5955 | out->data = data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5956 | return 1; |
| 5957 | } |
| 5958 | |
| 5959 | return 0; |
| 5960 | |
| 5961 | } |
| 5962 | |
| 5963 | /* Extract and format full DN from a X509_NAME and copy result into a chunk |
| 5964 | * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough. |
| 5965 | */ |
| 5966 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 5967 | ssl_sock_get_dn_oneline(X509_NAME *a, struct buffer *out) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5968 | { |
| 5969 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5970 | ASN1_OBJECT *obj; |
| 5971 | ASN1_STRING *data; |
| 5972 | const unsigned char *data_ptr; |
| 5973 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5974 | int i, n, ln; |
| 5975 | int l = 0; |
| 5976 | const char *s; |
| 5977 | char *p; |
| 5978 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5979 | int name_count; |
| 5980 | |
| 5981 | |
| 5982 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5983 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 5984 | out->data = 0; |
| 5985 | p = out->area; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5986 | for (i = 0; i < name_count; i++) { |
| 5987 | ne = X509_NAME_get_entry(a, i); |
| 5988 | obj = X509_NAME_ENTRY_get_object(ne); |
| 5989 | data = X509_NAME_ENTRY_get_data(ne); |
| 5990 | data_ptr = ASN1_STRING_get0_data(data); |
| 5991 | data_len = ASN1_STRING_length(data); |
| 5992 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5993 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5994 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 5995 | s = tmp; |
| 5996 | } |
| 5997 | ln = strlen(s); |
| 5998 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5999 | l += 1 + ln + 1 + data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6000 | if (l > out->size) |
| 6001 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6002 | out->data = l; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6003 | |
| 6004 | *(p++)='/'; |
| 6005 | memcpy(p, s, ln); |
| 6006 | p += ln; |
| 6007 | *(p++)='='; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6008 | memcpy(p, data_ptr, data_len); |
| 6009 | p += data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6010 | } |
| 6011 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6012 | if (!out->data) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6013 | return 0; |
| 6014 | |
| 6015 | return 1; |
| 6016 | } |
| 6017 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6018 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6019 | * to disable SNI. |
| 6020 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6021 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6022 | { |
| 6023 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6024 | char *prev_name; |
| 6025 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6026 | if (!ssl_sock_is_ssl(conn)) |
| 6027 | return; |
| 6028 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6029 | /* if the SNI changes, we must destroy the reusable context so that a |
| 6030 | * new connection will present a new SNI. As an optimization we could |
| 6031 | * later imagine having a small cache of ssl_ctx to hold a few SNI per |
| 6032 | * server. |
| 6033 | */ |
| 6034 | prev_name = (char *)SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name); |
| 6035 | if ((!prev_name && hostname) || |
| 6036 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
| 6037 | SSL_set_session(conn->xprt_ctx, NULL); |
| 6038 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6039 | SSL_set_tlsext_host_name(conn->xprt_ctx, hostname); |
| 6040 | #endif |
| 6041 | } |
| 6042 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6043 | /* Extract peer certificate's common name into the chunk dest |
| 6044 | * Returns |
| 6045 | * the len of the extracted common name |
| 6046 | * or 0 if no CN found in DN |
| 6047 | * or -1 on error case (i.e. no peer certificate) |
| 6048 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6049 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6050 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6051 | { |
| 6052 | X509 *crt = NULL; |
| 6053 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6054 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6055 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6056 | .area = (char *)&find_cn, |
| 6057 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6058 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6059 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6060 | |
| 6061 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6062 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6063 | |
| 6064 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6065 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6066 | if (!crt) |
| 6067 | goto out; |
| 6068 | |
| 6069 | name = X509_get_subject_name(crt); |
| 6070 | if (!name) |
| 6071 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6072 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6073 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6074 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6075 | if (crt) |
| 6076 | X509_free(crt); |
| 6077 | |
| 6078 | return result; |
| 6079 | } |
| 6080 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6081 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6082 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6083 | { |
| 6084 | X509 *crt = NULL; |
| 6085 | |
| 6086 | if (!ssl_sock_is_ssl(conn)) |
| 6087 | return 0; |
| 6088 | |
| 6089 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6090 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6091 | if (!crt) |
| 6092 | return 0; |
| 6093 | |
| 6094 | X509_free(crt); |
| 6095 | return 1; |
| 6096 | } |
| 6097 | |
| 6098 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6099 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6100 | { |
| 6101 | if (!ssl_sock_is_ssl(conn)) |
| 6102 | return 0; |
| 6103 | |
| 6104 | return SSL_SOCK_ST_FL_VERIFY_DONE & conn->xprt_st ? 1 : 0; |
| 6105 | } |
| 6106 | |
| 6107 | /* returns result from SSL verify */ |
| 6108 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6109 | { |
| 6110 | if (!ssl_sock_is_ssl(conn)) |
| 6111 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
| 6112 | |
| 6113 | return (unsigned int)SSL_get_verify_result(conn->xprt_ctx); |
| 6114 | } |
| 6115 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6116 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6117 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6118 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6119 | * freed by the caller. NPN is also checked if available since older versions |
| 6120 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6121 | */ |
| 6122 | static int ssl_sock_get_alpn(const struct connection *conn, const char **str, int *len) |
| 6123 | { |
| 6124 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6125 | return 0; |
| 6126 | |
| 6127 | *str = NULL; |
| 6128 | |
| 6129 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 6130 | SSL_get0_alpn_selected(conn->xprt_ctx, (const unsigned char **)str, (unsigned *)len); |
| 6131 | if (*str) |
| 6132 | return 1; |
| 6133 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6134 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6135 | SSL_get0_next_proto_negotiated(conn->xprt_ctx, (const unsigned char **)str, (unsigned *)len); |
| 6136 | if (*str) |
| 6137 | return 1; |
| 6138 | #endif |
| 6139 | return 0; |
| 6140 | } |
| 6141 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6142 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 6143 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6144 | static int |
| 6145 | smp_fetch_ssl_fc_has_early(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6146 | { |
| 6147 | struct connection *conn; |
| 6148 | |
| 6149 | conn = objt_conn(smp->sess->origin); |
| 6150 | if (!conn || conn->xprt != &ssl_sock) |
| 6151 | return 0; |
| 6152 | |
| 6153 | smp->flags = 0; |
| 6154 | smp->data.type = SMP_T_BOOL; |
Olivier Houchard | 25ae45a | 2017-11-29 19:51:19 +0100 | [diff] [blame] | 6155 | smp->data.u.sint = ((conn->flags & CO_FL_EARLY_DATA) && |
| 6156 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE))) ? 1 : 0; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6157 | |
| 6158 | return 1; |
| 6159 | } |
| 6160 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6161 | /* boolean, returns true if client cert was present */ |
| 6162 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6163 | smp_fetch_ssl_fc_has_crt(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6164 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6165 | struct connection *conn; |
| 6166 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6167 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6168 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6169 | return 0; |
| 6170 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6171 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6172 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6173 | return 0; |
| 6174 | } |
| 6175 | |
| 6176 | smp->flags = 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6177 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6178 | smp->data.u.sint = SSL_SOCK_ST_FL_VERIFY_DONE & conn->xprt_st ? 1 : 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6179 | |
| 6180 | return 1; |
| 6181 | } |
| 6182 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6183 | /* binary, returns a certificate in a binary chunk (der/raw). |
| 6184 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6185 | * should be use. |
| 6186 | */ |
| 6187 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6188 | smp_fetch_ssl_x_der(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6189 | { |
| 6190 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
| 6191 | X509 *crt = NULL; |
| 6192 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6193 | struct buffer *smp_trash; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6194 | struct connection *conn; |
| 6195 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6196 | conn = objt_conn(smp->sess->origin); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6197 | if (!conn || conn->xprt != &ssl_sock) |
| 6198 | return 0; |
| 6199 | |
| 6200 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 6201 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6202 | return 0; |
| 6203 | } |
| 6204 | |
| 6205 | if (cert_peer) |
| 6206 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6207 | else |
| 6208 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 6209 | |
| 6210 | if (!crt) |
| 6211 | goto out; |
| 6212 | |
| 6213 | smp_trash = get_trash_chunk(); |
| 6214 | if (ssl_sock_crt2der(crt, smp_trash) <= 0) |
| 6215 | goto out; |
| 6216 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6217 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6218 | smp->data.type = SMP_T_BIN; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6219 | ret = 1; |
| 6220 | out: |
| 6221 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6222 | if (cert_peer && crt) |
| 6223 | X509_free(crt); |
| 6224 | return ret; |
| 6225 | } |
| 6226 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6227 | /* binary, returns serial of certificate in a binary chunk. |
| 6228 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6229 | * should be use. |
| 6230 | */ |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6231 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6232 | smp_fetch_ssl_x_serial(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6233 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6234 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6235 | X509 *crt = NULL; |
| 6236 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6237 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6238 | struct connection *conn; |
| 6239 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6240 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6241 | if (!conn || conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6242 | return 0; |
| 6243 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6244 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6245 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6246 | return 0; |
| 6247 | } |
| 6248 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6249 | if (cert_peer) |
| 6250 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6251 | else |
| 6252 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 6253 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6254 | if (!crt) |
| 6255 | goto out; |
| 6256 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6257 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6258 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 6259 | goto out; |
| 6260 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6261 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6262 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6263 | ret = 1; |
| 6264 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6265 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6266 | if (cert_peer && crt) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6267 | X509_free(crt); |
| 6268 | return ret; |
| 6269 | } |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6270 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6271 | /* binary, returns the client certificate's SHA-1 fingerprint (SHA-1 hash of DER-encoded certificate) in a binary chunk. |
| 6272 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6273 | * should be use. |
| 6274 | */ |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6275 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6276 | smp_fetch_ssl_x_sha1(const struct arg *args, struct sample *smp, const char *kw, void *private) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6277 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6278 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6279 | X509 *crt = NULL; |
| 6280 | const EVP_MD *digest; |
| 6281 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6282 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6283 | struct connection *conn; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6284 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6285 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6286 | if (!conn || conn->xprt != &ssl_sock) |
| 6287 | return 0; |
| 6288 | |
| 6289 | if (!(conn->flags & CO_FL_CONNECTED)) { |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6290 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6291 | return 0; |
| 6292 | } |
| 6293 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6294 | if (cert_peer) |
| 6295 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6296 | else |
| 6297 | crt = SSL_get_certificate(conn->xprt_ctx); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6298 | if (!crt) |
| 6299 | goto out; |
| 6300 | |
| 6301 | smp_trash = get_trash_chunk(); |
| 6302 | digest = EVP_sha1(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6303 | X509_digest(crt, digest, (unsigned char *) smp_trash->area, |
| 6304 | (unsigned int *)&smp_trash->data); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6305 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6306 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6307 | smp->data.type = SMP_T_BIN; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6308 | ret = 1; |
| 6309 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6310 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6311 | if (cert_peer && crt) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6312 | X509_free(crt); |
| 6313 | return ret; |
| 6314 | } |
| 6315 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6316 | /* string, returns certificate's notafter date in ASN1_UTCTIME format. |
| 6317 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6318 | * should be use. |
| 6319 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6320 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6321 | smp_fetch_ssl_x_notafter(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6322 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6323 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6324 | X509 *crt = NULL; |
| 6325 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6326 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6327 | struct connection *conn; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6328 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6329 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6330 | if (!conn || conn->xprt != &ssl_sock) |
| 6331 | return 0; |
| 6332 | |
| 6333 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6334 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6335 | return 0; |
| 6336 | } |
| 6337 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6338 | if (cert_peer) |
| 6339 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6340 | else |
| 6341 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6342 | if (!crt) |
| 6343 | goto out; |
| 6344 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6345 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6346 | if (ssl_sock_get_time(X509_get_notAfter(crt), smp_trash) <= 0) |
| 6347 | goto out; |
| 6348 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6349 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6350 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6351 | ret = 1; |
| 6352 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6353 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6354 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6355 | X509_free(crt); |
| 6356 | return ret; |
| 6357 | } |
| 6358 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6359 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's issuer |
| 6360 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6361 | * should be use. |
| 6362 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6363 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6364 | smp_fetch_ssl_x_i_dn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6365 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6366 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6367 | X509 *crt = NULL; |
| 6368 | X509_NAME *name; |
| 6369 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6370 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6371 | struct connection *conn; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6372 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6373 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6374 | if (!conn || conn->xprt != &ssl_sock) |
| 6375 | return 0; |
| 6376 | |
| 6377 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6378 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6379 | return 0; |
| 6380 | } |
| 6381 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6382 | if (cert_peer) |
| 6383 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6384 | else |
| 6385 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6386 | if (!crt) |
| 6387 | goto out; |
| 6388 | |
| 6389 | name = X509_get_issuer_name(crt); |
| 6390 | if (!name) |
| 6391 | goto out; |
| 6392 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6393 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6394 | if (args && args[0].type == ARGT_STR) { |
| 6395 | int pos = 1; |
| 6396 | |
| 6397 | if (args[1].type == ARGT_SINT) |
| 6398 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6399 | |
| 6400 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 6401 | goto out; |
| 6402 | } |
| 6403 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 6404 | goto out; |
| 6405 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6406 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6407 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6408 | ret = 1; |
| 6409 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6410 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6411 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6412 | X509_free(crt); |
| 6413 | return ret; |
| 6414 | } |
| 6415 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6416 | /* string, returns notbefore date in ASN1_UTCTIME format. |
| 6417 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6418 | * should be use. |
| 6419 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6420 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6421 | smp_fetch_ssl_x_notbefore(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6422 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6423 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6424 | X509 *crt = NULL; |
| 6425 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6426 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6427 | struct connection *conn; |
| 6428 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6429 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6430 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6431 | return 0; |
| 6432 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6433 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6434 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6435 | return 0; |
| 6436 | } |
| 6437 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6438 | if (cert_peer) |
| 6439 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6440 | else |
| 6441 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6442 | if (!crt) |
| 6443 | goto out; |
| 6444 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6445 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6446 | if (ssl_sock_get_time(X509_get_notBefore(crt), smp_trash) <= 0) |
| 6447 | goto out; |
| 6448 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6449 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6450 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6451 | ret = 1; |
| 6452 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6453 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6454 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6455 | X509_free(crt); |
| 6456 | return ret; |
| 6457 | } |
| 6458 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6459 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's subject |
| 6460 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6461 | * should be use. |
| 6462 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6463 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6464 | smp_fetch_ssl_x_s_dn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6465 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6466 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6467 | X509 *crt = NULL; |
| 6468 | X509_NAME *name; |
| 6469 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6470 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6471 | struct connection *conn; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6472 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6473 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6474 | if (!conn || conn->xprt != &ssl_sock) |
| 6475 | return 0; |
| 6476 | |
| 6477 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6478 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6479 | return 0; |
| 6480 | } |
| 6481 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6482 | if (cert_peer) |
| 6483 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6484 | else |
| 6485 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6486 | if (!crt) |
| 6487 | goto out; |
| 6488 | |
| 6489 | name = X509_get_subject_name(crt); |
| 6490 | if (!name) |
| 6491 | goto out; |
| 6492 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6493 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6494 | if (args && args[0].type == ARGT_STR) { |
| 6495 | int pos = 1; |
| 6496 | |
| 6497 | if (args[1].type == ARGT_SINT) |
| 6498 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6499 | |
| 6500 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 6501 | goto out; |
| 6502 | } |
| 6503 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 6504 | goto out; |
| 6505 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6506 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6507 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6508 | ret = 1; |
| 6509 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6510 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6511 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6512 | X509_free(crt); |
| 6513 | return ret; |
| 6514 | } |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 6515 | |
| 6516 | /* integer, returns true if current session use a client certificate */ |
| 6517 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6518 | smp_fetch_ssl_c_used(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 6519 | { |
| 6520 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6521 | struct connection *conn; |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 6522 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6523 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6524 | if (!conn || conn->xprt != &ssl_sock) |
| 6525 | return 0; |
| 6526 | |
| 6527 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 6528 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6529 | return 0; |
| 6530 | } |
| 6531 | |
| 6532 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6533 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 6534 | if (crt) { |
| 6535 | X509_free(crt); |
| 6536 | } |
| 6537 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6538 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6539 | smp->data.u.sint = (crt != NULL); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 6540 | return 1; |
| 6541 | } |
| 6542 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6543 | /* integer, returns the certificate version |
| 6544 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6545 | * should be use. |
| 6546 | */ |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6547 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6548 | smp_fetch_ssl_x_version(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6549 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6550 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6551 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6552 | struct connection *conn; |
| 6553 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6554 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6555 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6556 | return 0; |
| 6557 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6558 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6559 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6560 | return 0; |
| 6561 | } |
| 6562 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6563 | if (cert_peer) |
| 6564 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6565 | else |
| 6566 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6567 | if (!crt) |
| 6568 | return 0; |
| 6569 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6570 | smp->data.u.sint = (unsigned int)(1 + X509_get_version(crt)); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6571 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 6572 | if (cert_peer) |
| 6573 | X509_free(crt); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6574 | smp->data.type = SMP_T_SINT; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 6575 | |
| 6576 | return 1; |
| 6577 | } |
| 6578 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6579 | /* string, returns the certificate's signature algorithm. |
| 6580 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6581 | * should be use. |
| 6582 | */ |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6583 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6584 | smp_fetch_ssl_x_sig_alg(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6585 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6586 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6587 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6588 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6589 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6590 | struct connection *conn; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6591 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6592 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6593 | if (!conn || conn->xprt != &ssl_sock) |
| 6594 | return 0; |
| 6595 | |
| 6596 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6597 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6598 | return 0; |
| 6599 | } |
| 6600 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6601 | if (cert_peer) |
| 6602 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6603 | else |
| 6604 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6605 | if (!crt) |
| 6606 | return 0; |
| 6607 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6608 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6609 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6610 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6611 | smp->data.u.str.area = (char *)OBJ_nid2sn(nid); |
| 6612 | if (!smp->data.u.str.area) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6613 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 6614 | if (cert_peer) |
| 6615 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6616 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 6617 | } |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6618 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6619 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6620 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6621 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6622 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 6623 | if (cert_peer) |
| 6624 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 6625 | |
| 6626 | return 1; |
| 6627 | } |
| 6628 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6629 | /* string, returns the certificate's key algorithm. |
| 6630 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6631 | * should be use. |
| 6632 | */ |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6633 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6634 | smp_fetch_ssl_x_key_alg(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6635 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6636 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6637 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6638 | ASN1_OBJECT *algorithm; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6639 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6640 | struct connection *conn; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6641 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6642 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6643 | if (!conn || conn->xprt != &ssl_sock) |
| 6644 | return 0; |
| 6645 | |
| 6646 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6647 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6648 | return 0; |
| 6649 | } |
| 6650 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6651 | if (cert_peer) |
| 6652 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 6653 | else |
| 6654 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6655 | if (!crt) |
| 6656 | return 0; |
| 6657 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6658 | X509_PUBKEY_get0_param(&algorithm, NULL, NULL, NULL, X509_get_X509_PUBKEY(crt)); |
| 6659 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6660 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6661 | smp->data.u.str.area = (char *)OBJ_nid2sn(nid); |
| 6662 | if (!smp->data.u.str.area) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6663 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 6664 | if (cert_peer) |
| 6665 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6666 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 6667 | } |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6668 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6669 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6670 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6671 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6672 | if (cert_peer) |
| 6673 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 6674 | |
| 6675 | return 1; |
| 6676 | } |
| 6677 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6678 | /* boolean, returns true if front conn. transport layer is SSL. |
| 6679 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6680 | * char is 'b'. |
| 6681 | */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6682 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6683 | smp_fetch_ssl_fc(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6684 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 6685 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6686 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6687 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6688 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6689 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6690 | return 1; |
| 6691 | } |
| 6692 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 6693 | /* boolean, returns true if client present a SNI */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6694 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6695 | smp_fetch_ssl_fc_has_sni(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6696 | { |
| 6697 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6698 | struct connection *conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6699 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6700 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6701 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6702 | conn->xprt_ctx && |
| 6703 | SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name) != NULL; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6704 | return 1; |
| 6705 | #else |
| 6706 | return 0; |
| 6707 | #endif |
| 6708 | } |
| 6709 | |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 6710 | /* boolean, returns true if client session has been resumed. |
| 6711 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6712 | * char is 'b'. |
| 6713 | */ |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 6714 | static int |
| 6715 | smp_fetch_ssl_fc_is_resumed(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6716 | { |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 6717 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6718 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 6719 | |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 6720 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6721 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6722 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 6723 | conn->xprt_ctx && |
| 6724 | SSL_session_reused(conn->xprt_ctx); |
| 6725 | return 1; |
| 6726 | } |
| 6727 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6728 | /* string, returns the used cipher if front conn. transport layer is SSL. |
| 6729 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6730 | * char is 'b'. |
| 6731 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6732 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6733 | smp_fetch_ssl_fc_cipher(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6734 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 6735 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6736 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6737 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6738 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6739 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6740 | return 0; |
| 6741 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6742 | smp->data.u.str.area = (char *)SSL_get_cipher_name(conn->xprt_ctx); |
| 6743 | if (!smp->data.u.str.area) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6744 | return 0; |
| 6745 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6746 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6747 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6748 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6749 | |
| 6750 | return 1; |
| 6751 | } |
| 6752 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6753 | /* integer, returns the algoritm's keysize if front conn. transport layer |
| 6754 | * is SSL. |
| 6755 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6756 | * char is 'b'. |
| 6757 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6758 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6759 | smp_fetch_ssl_fc_alg_keysize(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6760 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 6761 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6762 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 6763 | int sint; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6764 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6765 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6766 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6767 | return 0; |
| 6768 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 6769 | if (!SSL_get_cipher_bits(conn->xprt_ctx, &sint)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6770 | return 0; |
| 6771 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6772 | smp->data.u.sint = sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6773 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6774 | |
| 6775 | return 1; |
| 6776 | } |
| 6777 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6778 | /* integer, returns the used keysize if front conn. transport layer is SSL. |
| 6779 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6780 | * char is 'b'. |
| 6781 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6782 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6783 | smp_fetch_ssl_fc_use_keysize(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6784 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 6785 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6786 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6787 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6788 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6789 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6790 | return 0; |
| 6791 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6792 | smp->data.u.sint = (unsigned int)SSL_get_cipher_bits(conn->xprt_ctx, NULL); |
| 6793 | if (!smp->data.u.sint) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6794 | return 0; |
| 6795 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6796 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6797 | |
| 6798 | return 1; |
| 6799 | } |
| 6800 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6801 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6802 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6803 | smp_fetch_ssl_fc_npn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6804 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6805 | struct connection *conn; |
| 6806 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6807 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6808 | smp->data.type = SMP_T_STR; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6809 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6810 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6811 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6812 | return 0; |
| 6813 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6814 | smp->data.u.str.area = NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6815 | SSL_get0_next_proto_negotiated(conn->xprt_ctx, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6816 | (const unsigned char **)&smp->data.u.str.area, |
| 6817 | (unsigned *)&smp->data.u.str.data); |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6818 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6819 | if (!smp->data.u.str.area) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6820 | return 0; |
| 6821 | |
| 6822 | return 1; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6823 | } |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 6824 | #endif |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6825 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 6826 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 6827 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6828 | smp_fetch_ssl_fc_alpn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 6829 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6830 | struct connection *conn; |
| 6831 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6832 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6833 | smp->data.type = SMP_T_STR; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 6834 | |
Willy Tarreau | e26bf05 | 2015-05-12 10:30:12 +0200 | [diff] [blame] | 6835 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6836 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 6837 | return 0; |
| 6838 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6839 | smp->data.u.str.area = NULL; |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 6840 | SSL_get0_alpn_selected(conn->xprt_ctx, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6841 | (const unsigned char **)&smp->data.u.str.area, |
| 6842 | (unsigned *)&smp->data.u.str.data); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 6843 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6844 | if (!smp->data.u.str.area) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 6845 | return 0; |
| 6846 | |
| 6847 | return 1; |
| 6848 | } |
| 6849 | #endif |
| 6850 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6851 | /* string, returns the used protocol if front conn. transport layer is SSL. |
| 6852 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6853 | * char is 'b'. |
| 6854 | */ |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6855 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6856 | smp_fetch_ssl_fc_protocol(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6857 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 6858 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6859 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6860 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6861 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6862 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6863 | return 0; |
| 6864 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6865 | smp->data.u.str.area = (char *)SSL_get_version(conn->xprt_ctx); |
| 6866 | if (!smp->data.u.str.area) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6867 | return 0; |
| 6868 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6869 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6870 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6871 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6872 | |
| 6873 | return 1; |
| 6874 | } |
| 6875 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 6876 | /* binary, returns the SSL stream id if front conn. transport layer is SSL. |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6877 | * This function is also usable on backend conn if the fetch keyword 5th |
| 6878 | * char is 'b'. |
| 6879 | */ |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 6880 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 6881 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6882 | smp_fetch_ssl_fc_session_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6883 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 6884 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6885 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 6886 | SSL_SESSION *ssl_sess; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 6887 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6888 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6889 | smp->data.type = SMP_T_BIN; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6890 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6891 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6892 | return 0; |
| 6893 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 6894 | ssl_sess = SSL_get_session(conn->xprt_ctx); |
| 6895 | if (!ssl_sess) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6896 | return 0; |
| 6897 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6898 | smp->data.u.str.area = (char *)SSL_SESSION_get_id(ssl_sess, |
| 6899 | (unsigned int *)&smp->data.u.str.data); |
| 6900 | if (!smp->data.u.str.area || !smp->data.u.str.data) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6901 | return 0; |
| 6902 | |
| 6903 | return 1; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6904 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 6905 | #endif |
| 6906 | |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6907 | |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 6908 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL) |
| 6909 | static int |
| 6910 | smp_fetch_ssl_fc_session_key(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6911 | { |
| 6912 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 6913 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 6914 | SSL_SESSION *ssl_sess; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6915 | struct buffer *data; |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 6916 | |
| 6917 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6918 | return 0; |
| 6919 | |
| 6920 | ssl_sess = SSL_get_session(conn->xprt_ctx); |
| 6921 | if (!ssl_sess) |
| 6922 | return 0; |
| 6923 | |
| 6924 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6925 | data->data = SSL_SESSION_get_master_key(ssl_sess, |
| 6926 | (unsigned char *) data->area, |
| 6927 | data->size); |
| 6928 | if (!data->data) |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 6929 | return 0; |
| 6930 | |
| 6931 | smp->flags = 0; |
| 6932 | smp->data.type = SMP_T_BIN; |
| 6933 | smp->data.u.str = *data; |
| 6934 | |
| 6935 | return 1; |
| 6936 | } |
| 6937 | #endif |
| 6938 | |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 6939 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 6940 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6941 | smp_fetch_ssl_fc_sni(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6942 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6943 | struct connection *conn; |
| 6944 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6945 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6946 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6947 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6948 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6949 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6950 | return 0; |
| 6951 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6952 | smp->data.u.str.area = (char *)SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name); |
| 6953 | if (!smp->data.u.str.area) |
Willy Tarreau | 3e394c9 | 2012-09-14 23:56:58 +0200 | [diff] [blame] | 6954 | return 0; |
| 6955 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6956 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6957 | return 1; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6958 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 6959 | #endif |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6960 | |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 6961 | static int |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6962 | smp_fetch_ssl_fc_cl_bin(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6963 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6964 | struct connection *conn; |
| 6965 | struct ssl_capture *capture; |
| 6966 | |
| 6967 | conn = objt_conn(smp->sess->origin); |
| 6968 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 6969 | return 0; |
| 6970 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 6971 | capture = SSL_get_ex_data(conn->xprt_ctx, ssl_capture_ptr_index); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6972 | if (!capture) |
| 6973 | return 0; |
| 6974 | |
| 6975 | smp->flags = SMP_F_CONST; |
| 6976 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6977 | smp->data.u.str.area = capture->ciphersuite; |
| 6978 | smp->data.u.str.data = capture->ciphersuite_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6979 | return 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6980 | } |
| 6981 | |
| 6982 | static int |
| 6983 | smp_fetch_ssl_fc_cl_hex(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6984 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6985 | struct buffer *data; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6986 | |
| 6987 | if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private)) |
| 6988 | return 0; |
| 6989 | |
| 6990 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6991 | dump_binary(data, smp->data.u.str.area, smp->data.u.str.data); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 6992 | smp->data.type = SMP_T_BIN; |
| 6993 | smp->data.u.str = *data; |
| 6994 | return 1; |
| 6995 | } |
| 6996 | |
| 6997 | static int |
| 6998 | smp_fetch_ssl_fc_cl_xxh64(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6999 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7000 | struct connection *conn; |
| 7001 | struct ssl_capture *capture; |
| 7002 | |
| 7003 | conn = objt_conn(smp->sess->origin); |
| 7004 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7005 | return 0; |
| 7006 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7007 | capture = SSL_get_ex_data(conn->xprt_ctx, ssl_capture_ptr_index); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7008 | if (!capture) |
| 7009 | return 0; |
| 7010 | |
| 7011 | smp->data.type = SMP_T_SINT; |
| 7012 | smp->data.u.sint = capture->xxh64; |
| 7013 | return 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7014 | } |
| 7015 | |
| 7016 | static int |
| 7017 | smp_fetch_ssl_fc_cl_str(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7018 | { |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7019 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL) && !defined(LIBRESSL_VERSION_NUMBER) |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7020 | struct buffer *data; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7021 | int i; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7022 | |
| 7023 | if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private)) |
| 7024 | return 0; |
| 7025 | |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7026 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7027 | for (i = 0; i + 1 < smp->data.u.str.data; i += 2) { |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7028 | const char *str; |
| 7029 | const SSL_CIPHER *cipher; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7030 | const unsigned char *bin = (const unsigned char *) smp->data.u.str.area + i; |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7031 | uint16_t id = (bin[0] << 8) | bin[1]; |
| 7032 | #if defined(OPENSSL_IS_BORINGSSL) |
| 7033 | cipher = SSL_get_cipher_by_value(id); |
| 7034 | #else |
| 7035 | struct connection *conn = objt_conn(smp->sess->origin); |
| 7036 | cipher = SSL_CIPHER_find(conn->xprt_ctx, bin); |
| 7037 | #endif |
| 7038 | str = SSL_CIPHER_get_name(cipher); |
| 7039 | if (!str || strcmp(str, "(NONE)") == 0) |
| 7040 | chunk_appendf(data, "%sUNKNOWN(%04x)", i == 0 ? "" : ",", id); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7041 | else |
| 7042 | chunk_appendf(data, "%s%s", i == 0 ? "" : ",", str); |
| 7043 | } |
| 7044 | smp->data.type = SMP_T_STR; |
| 7045 | smp->data.u.str = *data; |
| 7046 | return 1; |
| 7047 | #else |
| 7048 | return smp_fetch_ssl_fc_cl_xxh64(args, smp, kw, private); |
| 7049 | #endif |
| 7050 | } |
| 7051 | |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7052 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7053 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7054 | smp_fetch_ssl_fc_unique_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7055 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7056 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7057 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7058 | int finished_len; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7059 | struct buffer *finished_trash; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7060 | |
| 7061 | smp->flags = 0; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7062 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7063 | return 0; |
| 7064 | |
| 7065 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 7066 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7067 | return 0; |
| 7068 | } |
| 7069 | |
| 7070 | finished_trash = get_trash_chunk(); |
| 7071 | if (!SSL_session_reused(conn->xprt_ctx)) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7072 | finished_len = SSL_get_peer_finished(conn->xprt_ctx, |
| 7073 | finished_trash->area, |
| 7074 | finished_trash->size); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7075 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7076 | finished_len = SSL_get_finished(conn->xprt_ctx, |
| 7077 | finished_trash->area, |
| 7078 | finished_trash->size); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7079 | |
| 7080 | if (!finished_len) |
| 7081 | return 0; |
| 7082 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7083 | finished_trash->data = finished_len; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7084 | smp->data.u.str = *finished_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7085 | smp->data.type = SMP_T_BIN; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7086 | |
| 7087 | return 1; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7088 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7089 | #endif |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7090 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7091 | /* integer, returns the first verify error in CA chain of client certificate chain. */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7092 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7093 | smp_fetch_ssl_c_ca_err(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7094 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7095 | struct connection *conn; |
| 7096 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7097 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7098 | if (!conn || conn->xprt != &ssl_sock) |
| 7099 | return 0; |
| 7100 | |
| 7101 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7102 | smp->flags = SMP_F_MAY_CHANGE; |
| 7103 | return 0; |
| 7104 | } |
| 7105 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7106 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7107 | smp->data.u.sint = (unsigned long long int)SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7108 | smp->flags = 0; |
| 7109 | |
| 7110 | return 1; |
| 7111 | } |
| 7112 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7113 | /* integer, returns the depth of the first verify error in CA chain of client certificate chain. */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7114 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7115 | smp_fetch_ssl_c_ca_err_depth(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7116 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7117 | struct connection *conn; |
| 7118 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7119 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7120 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7121 | return 0; |
| 7122 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7123 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7124 | smp->flags = SMP_F_MAY_CHANGE; |
| 7125 | return 0; |
| 7126 | } |
| 7127 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7128 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7129 | smp->data.u.sint = (long long int)SSL_SOCK_ST_TO_CAEDEPTH(conn->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7130 | smp->flags = 0; |
| 7131 | |
| 7132 | return 1; |
| 7133 | } |
| 7134 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7135 | /* integer, returns the first verify error on client certificate */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7136 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7137 | smp_fetch_ssl_c_err(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7138 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7139 | struct connection *conn; |
| 7140 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7141 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7142 | if (!conn || conn->xprt != &ssl_sock) |
| 7143 | return 0; |
| 7144 | |
| 7145 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7146 | smp->flags = SMP_F_MAY_CHANGE; |
| 7147 | return 0; |
| 7148 | } |
| 7149 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7150 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7151 | smp->data.u.sint = (long long int)SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7152 | smp->flags = 0; |
| 7153 | |
| 7154 | return 1; |
| 7155 | } |
| 7156 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7157 | /* integer, returns the verify result on client cert */ |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7158 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7159 | smp_fetch_ssl_c_verify(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7160 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7161 | struct connection *conn; |
| 7162 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7163 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7164 | if (!conn || conn->xprt != &ssl_sock) |
| 7165 | return 0; |
| 7166 | |
| 7167 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7168 | smp->flags = SMP_F_MAY_CHANGE; |
| 7169 | return 0; |
| 7170 | } |
| 7171 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7172 | if (!conn->xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7173 | return 0; |
| 7174 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7175 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7176 | smp->data.u.sint = (long long int)SSL_get_verify_result(conn->xprt_ctx); |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7177 | smp->flags = 0; |
| 7178 | |
| 7179 | return 1; |
| 7180 | } |
| 7181 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 7182 | /* parse the "ca-file" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7183 | static int ssl_bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7184 | { |
| 7185 | if (!*args[cur_arg + 1]) { |
| 7186 | if (err) |
| 7187 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 7188 | return ERR_ALERT | ERR_FATAL; |
| 7189 | } |
| 7190 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7191 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7192 | memprintf(&conf->ca_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7193 | else |
| 7194 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7195 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7196 | return 0; |
| 7197 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7198 | static int bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7199 | { |
| 7200 | return ssl_bind_parse_ca_file(args, cur_arg, px, &conf->ssl_conf, err); |
| 7201 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7202 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7203 | /* parse the "ca-sign-file" bind keyword */ |
| 7204 | static int bind_parse_ca_sign_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7205 | { |
| 7206 | if (!*args[cur_arg + 1]) { |
| 7207 | if (err) |
| 7208 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 7209 | return ERR_ALERT | ERR_FATAL; |
| 7210 | } |
| 7211 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7212 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7213 | memprintf(&conf->ca_sign_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7214 | else |
| 7215 | memprintf(&conf->ca_sign_file, "%s", args[cur_arg + 1]); |
| 7216 | |
| 7217 | return 0; |
| 7218 | } |
| 7219 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7220 | /* parse the "ca-sign-pass" bind keyword */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7221 | static int bind_parse_ca_sign_pass(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7222 | { |
| 7223 | if (!*args[cur_arg + 1]) { |
| 7224 | if (err) |
| 7225 | memprintf(err, "'%s' : missing CAkey password", args[cur_arg]); |
| 7226 | return ERR_ALERT | ERR_FATAL; |
| 7227 | } |
| 7228 | memprintf(&conf->ca_sign_pass, "%s", args[cur_arg + 1]); |
| 7229 | return 0; |
| 7230 | } |
| 7231 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7232 | /* parse the "ciphers" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7233 | static int ssl_bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7234 | { |
| 7235 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 7236 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7237 | return ERR_ALERT | ERR_FATAL; |
| 7238 | } |
| 7239 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 7240 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7241 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7242 | return 0; |
| 7243 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7244 | static int bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7245 | { |
| 7246 | return ssl_bind_parse_ciphers(args, cur_arg, px, &conf->ssl_conf, err); |
| 7247 | } |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7248 | /* parse the "crt" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7249 | static int bind_parse_crt(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7250 | { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 7251 | char path[MAXPATHLEN]; |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 7252 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7253 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 7254 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7255 | return ERR_ALERT | ERR_FATAL; |
| 7256 | } |
| 7257 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7258 | if ((*args[cur_arg + 1] != '/' ) && global_ssl.crt_base) { |
| 7259 | if ((strlen(global_ssl.crt_base) + 1 + strlen(args[cur_arg + 1]) + 1) > MAXPATHLEN) { |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7260 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 7261 | return ERR_ALERT | ERR_FATAL; |
| 7262 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7263 | snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, args[cur_arg + 1]); |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 7264 | if (ssl_sock_load_cert(path, conf, err) > 0) |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7265 | return ERR_ALERT | ERR_FATAL; |
| 7266 | |
| 7267 | return 0; |
| 7268 | } |
| 7269 | |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 7270 | if (ssl_sock_load_cert(args[cur_arg + 1], conf, err) > 0) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7271 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7272 | |
| 7273 | return 0; |
| 7274 | } |
| 7275 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7276 | /* parse the "crt-list" bind keyword */ |
| 7277 | static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7278 | { |
| 7279 | if (!*args[cur_arg + 1]) { |
| 7280 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
| 7281 | return ERR_ALERT | ERR_FATAL; |
| 7282 | } |
| 7283 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7284 | if (ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err) > 0) { |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 7285 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7286 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 7287 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7288 | |
| 7289 | return 0; |
| 7290 | } |
| 7291 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 7292 | /* parse the "crl-file" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7293 | static int ssl_bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7294 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 7295 | #ifndef X509_V_FLAG_CRL_CHECK |
| 7296 | if (err) |
| 7297 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 7298 | return ERR_ALERT | ERR_FATAL; |
| 7299 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7300 | if (!*args[cur_arg + 1]) { |
| 7301 | if (err) |
| 7302 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 7303 | return ERR_ALERT | ERR_FATAL; |
| 7304 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7305 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7306 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7307 | memprintf(&conf->crl_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7308 | else |
| 7309 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7310 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7311 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 7312 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7313 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7314 | static int bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7315 | { |
| 7316 | return ssl_bind_parse_crl_file(args, cur_arg, px, &conf->ssl_conf, err); |
| 7317 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7318 | |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 7319 | /* parse the "curves" bind keyword keyword */ |
| 7320 | static int ssl_bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7321 | { |
| 7322 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 7323 | if (!*args[cur_arg + 1]) { |
| 7324 | if (err) |
| 7325 | memprintf(err, "'%s' : missing curve suite", args[cur_arg]); |
| 7326 | return ERR_ALERT | ERR_FATAL; |
| 7327 | } |
| 7328 | conf->curves = strdup(args[cur_arg + 1]); |
| 7329 | return 0; |
| 7330 | #else |
| 7331 | if (err) |
| 7332 | memprintf(err, "'%s' : library does not support curve suite", args[cur_arg]); |
| 7333 | return ERR_ALERT | ERR_FATAL; |
| 7334 | #endif |
| 7335 | } |
| 7336 | static int bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7337 | { |
| 7338 | return ssl_bind_parse_curves(args, cur_arg, px, &conf->ssl_conf, err); |
| 7339 | } |
| 7340 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7341 | /* parse the "ecdhe" bind keyword keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7342 | static int ssl_bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7343 | { |
| 7344 | #if OPENSSL_VERSION_NUMBER < 0x0090800fL |
| 7345 | if (err) |
| 7346 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 7347 | return ERR_ALERT | ERR_FATAL; |
| 7348 | #elif defined(OPENSSL_NO_ECDH) |
| 7349 | if (err) |
| 7350 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 7351 | return ERR_ALERT | ERR_FATAL; |
| 7352 | #else |
| 7353 | if (!*args[cur_arg + 1]) { |
| 7354 | if (err) |
| 7355 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 7356 | return ERR_ALERT | ERR_FATAL; |
| 7357 | } |
| 7358 | |
| 7359 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7360 | |
| 7361 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7362 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7363 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7364 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7365 | { |
| 7366 | return ssl_bind_parse_ecdhe(args, cur_arg, px, &conf->ssl_conf, err); |
| 7367 | } |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7368 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7369 | /* parse the "crt-ignore-err" and "ca-ignore-err" bind keywords */ |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 7370 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7371 | { |
| 7372 | int code; |
| 7373 | char *p = args[cur_arg + 1]; |
| 7374 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 7375 | |
| 7376 | if (!*p) { |
| 7377 | if (err) |
| 7378 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 7379 | return ERR_ALERT | ERR_FATAL; |
| 7380 | } |
| 7381 | |
| 7382 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 7383 | ignerr = &conf->ca_ignerr; |
| 7384 | |
| 7385 | if (strcmp(p, "all") == 0) { |
| 7386 | *ignerr = ~0ULL; |
| 7387 | return 0; |
| 7388 | } |
| 7389 | |
| 7390 | while (p) { |
| 7391 | code = atoi(p); |
| 7392 | if ((code <= 0) || (code > 63)) { |
| 7393 | if (err) |
| 7394 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 7395 | args[cur_arg], code, args[cur_arg + 1]); |
| 7396 | return ERR_ALERT | ERR_FATAL; |
| 7397 | } |
| 7398 | *ignerr |= 1ULL << code; |
| 7399 | p = strchr(p, ','); |
| 7400 | if (p) |
| 7401 | p++; |
| 7402 | } |
| 7403 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7404 | return 0; |
| 7405 | } |
| 7406 | |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7407 | /* parse tls_method_options "no-xxx" and "force-xxx" */ |
| 7408 | static int parse_tls_method_options(char *arg, struct tls_version_filter *methods, char **err) |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7409 | { |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7410 | uint16_t v; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7411 | char *p; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7412 | p = strchr(arg, '-'); |
| 7413 | if (!p) |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7414 | goto fail; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7415 | p++; |
| 7416 | if (!strcmp(p, "sslv3")) |
| 7417 | v = CONF_SSLV3; |
| 7418 | else if (!strcmp(p, "tlsv10")) |
| 7419 | v = CONF_TLSV10; |
| 7420 | else if (!strcmp(p, "tlsv11")) |
| 7421 | v = CONF_TLSV11; |
| 7422 | else if (!strcmp(p, "tlsv12")) |
| 7423 | v = CONF_TLSV12; |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 7424 | else if (!strcmp(p, "tlsv13")) |
| 7425 | v = CONF_TLSV13; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7426 | else |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7427 | goto fail; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7428 | if (!strncmp(arg, "no-", 3)) |
| 7429 | methods->flags |= methodVersions[v].flag; |
| 7430 | else if (!strncmp(arg, "force-", 6)) |
| 7431 | methods->min = methods->max = v; |
| 7432 | else |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7433 | goto fail; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 7434 | return 0; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7435 | fail: |
| 7436 | if (err) |
| 7437 | memprintf(err, "'%s' : option not implemented", arg); |
| 7438 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 7439 | } |
| 7440 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7441 | static int bind_parse_tls_method_options(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7442 | { |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 7443 | return parse_tls_method_options(args[cur_arg], &conf->ssl_conf.ssl_methods, err); |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7444 | } |
| 7445 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7446 | static int srv_parse_tls_method_options(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7447 | { |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7448 | return parse_tls_method_options(args[*cur_arg], &newsrv->ssl_ctx.methods, err); |
| 7449 | } |
| 7450 | |
| 7451 | /* parse tls_method min/max: "ssl-min-ver" and "ssl-max-ver" */ |
| 7452 | static int parse_tls_method_minmax(char **args, int cur_arg, struct tls_version_filter *methods, char **err) |
| 7453 | { |
| 7454 | uint16_t i, v = 0; |
| 7455 | char *argv = args[cur_arg + 1]; |
| 7456 | if (!*argv) { |
| 7457 | if (err) |
| 7458 | memprintf(err, "'%s' : missing the ssl/tls version", args[cur_arg]); |
| 7459 | return ERR_ALERT | ERR_FATAL; |
| 7460 | } |
| 7461 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7462 | if (!strcmp(argv, methodVersions[i].name)) |
| 7463 | v = i; |
| 7464 | if (!v) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7465 | if (err) |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7466 | memprintf(err, "'%s' : unknown ssl/tls version", args[cur_arg + 1]); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7467 | return ERR_ALERT | ERR_FATAL; |
| 7468 | } |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7469 | if (!strcmp("ssl-min-ver", args[cur_arg])) |
| 7470 | methods->min = v; |
| 7471 | else if (!strcmp("ssl-max-ver", args[cur_arg])) |
| 7472 | methods->max = v; |
| 7473 | else { |
| 7474 | if (err) |
| 7475 | memprintf(err, "'%s' : option not implemented", args[cur_arg]); |
| 7476 | return ERR_ALERT | ERR_FATAL; |
| 7477 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7478 | return 0; |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7479 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 7480 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 7481 | static int ssl_bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7482 | { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 7483 | #if (OPENSSL_VERSION_NUMBER < 0x10101000L) || !defined(OPENSSL_IS_BORINGSSL) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 7484 | ha_warning("crt-list: ssl-min-ver and ssl-max-ver are not supported with this Openssl version (skipped).\n"); |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 7485 | #endif |
| 7486 | return parse_tls_method_minmax(args, cur_arg, &conf->ssl_methods, err); |
| 7487 | } |
| 7488 | |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7489 | static int bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7490 | { |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 7491 | return parse_tls_method_minmax(args, cur_arg, &conf->ssl_conf.ssl_methods, err); |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 7492 | } |
| 7493 | |
| 7494 | static int srv_parse_tls_method_minmax(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7495 | { |
| 7496 | return parse_tls_method_minmax(args, *cur_arg, &newsrv->ssl_ctx.methods, err); |
| 7497 | } |
| 7498 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 7499 | /* parse the "no-tls-tickets" bind keyword */ |
Emmanuel Hocdet | 4608ed9 | 2017-01-20 13:06:27 +0100 | [diff] [blame] | 7500 | static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 7501 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 7502 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 7503 | return 0; |
| 7504 | } |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 7505 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 7506 | /* parse the "allow-0rtt" bind keyword */ |
| 7507 | static int ssl_bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7508 | { |
| 7509 | conf->early_data = 1; |
| 7510 | return 0; |
| 7511 | } |
| 7512 | |
| 7513 | static int bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7514 | { |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 7515 | conf->ssl_conf.early_data = 1; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 7516 | return 0; |
| 7517 | } |
| 7518 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7519 | /* parse the "npn" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7520 | static int ssl_bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7521 | { |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 7522 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7523 | char *p1, *p2; |
| 7524 | |
| 7525 | if (!*args[cur_arg + 1]) { |
| 7526 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]); |
| 7527 | return ERR_ALERT | ERR_FATAL; |
| 7528 | } |
| 7529 | |
| 7530 | free(conf->npn_str); |
| 7531 | |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 7532 | /* the NPN string is built as a suite of (<len> <name>)*, |
| 7533 | * so we reuse each comma to store the next <len> and need |
| 7534 | * one more for the end of the string. |
| 7535 | */ |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7536 | conf->npn_len = strlen(args[cur_arg + 1]) + 1; |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 7537 | conf->npn_str = calloc(1, conf->npn_len + 1); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7538 | memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len); |
| 7539 | |
| 7540 | /* replace commas with the name length */ |
| 7541 | p1 = conf->npn_str; |
| 7542 | p2 = p1 + 1; |
| 7543 | while (1) { |
| 7544 | p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1)); |
| 7545 | if (!p2) |
| 7546 | p2 = p1 + 1 + strlen(p1 + 1); |
| 7547 | |
| 7548 | if (p2 - (p1 + 1) > 255) { |
| 7549 | *p2 = '\0'; |
| 7550 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 7551 | return ERR_ALERT | ERR_FATAL; |
| 7552 | } |
| 7553 | |
| 7554 | *p1 = p2 - (p1 + 1); |
| 7555 | p1 = p2; |
| 7556 | |
| 7557 | if (!*p2) |
| 7558 | break; |
| 7559 | |
| 7560 | *(p2++) = '\0'; |
| 7561 | } |
| 7562 | return 0; |
| 7563 | #else |
| 7564 | if (err) |
| 7565 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]); |
| 7566 | return ERR_ALERT | ERR_FATAL; |
| 7567 | #endif |
| 7568 | } |
| 7569 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7570 | static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7571 | { |
| 7572 | return ssl_bind_parse_npn(args, cur_arg, px, &conf->ssl_conf, err); |
| 7573 | } |
| 7574 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7575 | /* parse the "alpn" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7576 | static int ssl_bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7577 | { |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 7578 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7579 | char *p1, *p2; |
| 7580 | |
| 7581 | if (!*args[cur_arg + 1]) { |
| 7582 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[cur_arg]); |
| 7583 | return ERR_ALERT | ERR_FATAL; |
| 7584 | } |
| 7585 | |
| 7586 | free(conf->alpn_str); |
| 7587 | |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 7588 | /* the ALPN string is built as a suite of (<len> <name>)*, |
| 7589 | * so we reuse each comma to store the next <len> and need |
| 7590 | * one more for the end of the string. |
| 7591 | */ |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7592 | conf->alpn_len = strlen(args[cur_arg + 1]) + 1; |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 7593 | conf->alpn_str = calloc(1, conf->alpn_len + 1); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7594 | memcpy(conf->alpn_str + 1, args[cur_arg + 1], conf->alpn_len); |
| 7595 | |
| 7596 | /* replace commas with the name length */ |
| 7597 | p1 = conf->alpn_str; |
| 7598 | p2 = p1 + 1; |
| 7599 | while (1) { |
| 7600 | p2 = memchr(p1 + 1, ',', conf->alpn_str + conf->alpn_len - (p1 + 1)); |
| 7601 | if (!p2) |
| 7602 | p2 = p1 + 1 + strlen(p1 + 1); |
| 7603 | |
| 7604 | if (p2 - (p1 + 1) > 255) { |
| 7605 | *p2 = '\0'; |
| 7606 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 7607 | return ERR_ALERT | ERR_FATAL; |
| 7608 | } |
| 7609 | |
| 7610 | *p1 = p2 - (p1 + 1); |
| 7611 | p1 = p2; |
| 7612 | |
| 7613 | if (!*p2) |
| 7614 | break; |
| 7615 | |
| 7616 | *(p2++) = '\0'; |
| 7617 | } |
| 7618 | return 0; |
| 7619 | #else |
| 7620 | if (err) |
| 7621 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[cur_arg]); |
| 7622 | return ERR_ALERT | ERR_FATAL; |
| 7623 | #endif |
| 7624 | } |
| 7625 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7626 | static int bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7627 | { |
| 7628 | return ssl_bind_parse_alpn(args, cur_arg, px, &conf->ssl_conf, err); |
| 7629 | } |
| 7630 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7631 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7632 | static int bind_parse_ssl(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7633 | { |
Willy Tarreau | 71a8c7c | 2016-12-21 22:04:54 +0100 | [diff] [blame] | 7634 | conf->xprt = &ssl_sock; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7635 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 7636 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7637 | if (global_ssl.listen_default_ciphers && !conf->ssl_conf.ciphers) |
| 7638 | conf->ssl_conf.ciphers = strdup(global_ssl.listen_default_ciphers); |
Emmanuel Hocdet | 4608ed9 | 2017-01-20 13:06:27 +0100 | [diff] [blame] | 7639 | conf->ssl_options |= global_ssl.listen_default_ssloptions; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 7640 | conf->ssl_conf.ssl_methods.flags |= global_ssl.listen_default_sslmethods.flags; |
| 7641 | if (!conf->ssl_conf.ssl_methods.min) |
| 7642 | conf->ssl_conf.ssl_methods.min = global_ssl.listen_default_sslmethods.min; |
| 7643 | if (!conf->ssl_conf.ssl_methods.max) |
| 7644 | conf->ssl_conf.ssl_methods.max = global_ssl.listen_default_sslmethods.max; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 7645 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7646 | return 0; |
| 7647 | } |
| 7648 | |
Lukas Tribus | 53ae85c | 2017-05-04 15:45:40 +0000 | [diff] [blame] | 7649 | /* parse the "prefer-client-ciphers" bind keyword */ |
| 7650 | static int bind_parse_pcc(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7651 | { |
| 7652 | conf->ssl_options |= BC_SSL_O_PREF_CLIE_CIPH; |
| 7653 | return 0; |
| 7654 | } |
| 7655 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7656 | /* parse the "generate-certificates" bind keyword */ |
| 7657 | static int bind_parse_generate_certs(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7658 | { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 7659 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7660 | conf->generate_certs = 1; |
| 7661 | #else |
| 7662 | memprintf(err, "%sthis version of openssl cannot generate SSL certificates.\n", |
| 7663 | err && *err ? *err : ""); |
| 7664 | #endif |
| 7665 | return 0; |
| 7666 | } |
| 7667 | |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 7668 | /* parse the "strict-sni" bind keyword */ |
| 7669 | static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7670 | { |
| 7671 | conf->strict_sni = 1; |
| 7672 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7673 | } |
| 7674 | |
| 7675 | /* parse the "tls-ticket-keys" bind keyword */ |
| 7676 | static int bind_parse_tls_ticket_keys(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7677 | { |
| 7678 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7679 | FILE *f; |
| 7680 | int i = 0; |
| 7681 | char thisline[LINESIZE]; |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 7682 | struct tls_keys_ref *keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7683 | |
| 7684 | if (!*args[cur_arg + 1]) { |
| 7685 | if (err) |
| 7686 | memprintf(err, "'%s' : missing TLS ticket keys file path", args[cur_arg]); |
| 7687 | return ERR_ALERT | ERR_FATAL; |
| 7688 | } |
| 7689 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 7690 | keys_ref = tlskeys_ref_lookup(args[cur_arg + 1]); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 7691 | if (keys_ref) { |
| 7692 | keys_ref->refcount++; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 7693 | conf->keys_ref = keys_ref; |
| 7694 | return 0; |
| 7695 | } |
| 7696 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 7697 | keys_ref = malloc(sizeof(*keys_ref)); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 7698 | keys_ref->tlskeys = malloc(TLS_TICKETS_NO * sizeof(struct tls_sess_key)); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7699 | |
| 7700 | if ((f = fopen(args[cur_arg + 1], "r")) == NULL) { |
| 7701 | if (err) |
| 7702 | memprintf(err, "'%s' : unable to load ssl tickets keys file", args[cur_arg+1]); |
| 7703 | return ERR_ALERT | ERR_FATAL; |
| 7704 | } |
| 7705 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 7706 | keys_ref->filename = strdup(args[cur_arg + 1]); |
| 7707 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7708 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 7709 | int len = strlen(thisline); |
| 7710 | /* Strip newline characters from the end */ |
| 7711 | if(thisline[len - 1] == '\n') |
| 7712 | thisline[--len] = 0; |
| 7713 | |
| 7714 | if(thisline[len - 1] == '\r') |
| 7715 | thisline[--len] = 0; |
| 7716 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 7717 | if (base64dec(thisline, len, (char *) (keys_ref->tlskeys + i % TLS_TICKETS_NO), sizeof(struct tls_sess_key)) != sizeof(struct tls_sess_key)) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7718 | if (err) |
| 7719 | memprintf(err, "'%s' : unable to decode base64 key on line %d", args[cur_arg+1], i + 1); |
mildis | 16aa015 | 2016-06-22 17:46:29 +0200 | [diff] [blame] | 7720 | fclose(f); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7721 | return ERR_ALERT | ERR_FATAL; |
| 7722 | } |
| 7723 | i++; |
| 7724 | } |
| 7725 | |
| 7726 | if (i < TLS_TICKETS_NO) { |
| 7727 | if (err) |
| 7728 | memprintf(err, "'%s' : please supply at least %d keys in the tls-tickets-file", args[cur_arg+1], TLS_TICKETS_NO); |
mildis | 16aa015 | 2016-06-22 17:46:29 +0200 | [diff] [blame] | 7729 | fclose(f); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7730 | return ERR_ALERT | ERR_FATAL; |
| 7731 | } |
| 7732 | |
| 7733 | fclose(f); |
| 7734 | |
| 7735 | /* Use penultimate key for encryption, handle when TLS_TICKETS_NO = 1 */ |
Nenad Merdanovic | 1789115 | 2016-03-25 22:16:57 +0100 | [diff] [blame] | 7736 | i -= 2; |
| 7737 | keys_ref->tls_ticket_enc_index = i < 0 ? 0 : i % TLS_TICKETS_NO; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 7738 | keys_ref->unique_id = -1; |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 7739 | keys_ref->refcount = 1; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7740 | HA_RWLOCK_INIT(&keys_ref->lock); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 7741 | conf->keys_ref = keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7742 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 7743 | LIST_ADD(&tlskeys_reference, &keys_ref->list); |
| 7744 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 7745 | return 0; |
| 7746 | #else |
| 7747 | if (err) |
| 7748 | memprintf(err, "'%s' : TLS ticket callback extension not supported", args[cur_arg]); |
| 7749 | return ERR_ALERT | ERR_FATAL; |
| 7750 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 7751 | } |
| 7752 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7753 | /* parse the "verify" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7754 | static int ssl_bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7755 | { |
| 7756 | if (!*args[cur_arg + 1]) { |
| 7757 | if (err) |
| 7758 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 7759 | return ERR_ALERT | ERR_FATAL; |
| 7760 | } |
| 7761 | |
| 7762 | if (strcmp(args[cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 7763 | conf->verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7764 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 7765 | conf->verify = SSL_SOCK_VERIFY_OPTIONAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7766 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 7767 | conf->verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7768 | else { |
| 7769 | if (err) |
| 7770 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 7771 | args[cur_arg], args[cur_arg + 1]); |
| 7772 | return ERR_ALERT | ERR_FATAL; |
| 7773 | } |
| 7774 | |
| 7775 | return 0; |
| 7776 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7777 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7778 | { |
| 7779 | return ssl_bind_parse_verify(args, cur_arg, px, &conf->ssl_conf, err); |
| 7780 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7781 | |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 7782 | /* parse the "no-ca-names" bind keyword */ |
| 7783 | static int ssl_bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7784 | { |
| 7785 | conf->no_ca_names = 1; |
| 7786 | return 0; |
| 7787 | } |
| 7788 | static int bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7789 | { |
| 7790 | return ssl_bind_parse_no_ca_names(args, cur_arg, px, &conf->ssl_conf, err); |
| 7791 | } |
| 7792 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7793 | /************** "server" keywords ****************/ |
| 7794 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7795 | /* parse the "ca-file" server keyword */ |
| 7796 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7797 | { |
| 7798 | if (!*args[*cur_arg + 1]) { |
| 7799 | if (err) |
| 7800 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 7801 | return ERR_ALERT | ERR_FATAL; |
| 7802 | } |
| 7803 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7804 | if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7805 | memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global_ssl.ca_base, args[*cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7806 | else |
| 7807 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 7808 | |
| 7809 | return 0; |
| 7810 | } |
| 7811 | |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 7812 | /* parse the "check-sni" server keyword */ |
| 7813 | static int srv_parse_check_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7814 | { |
| 7815 | if (!*args[*cur_arg + 1]) { |
| 7816 | if (err) |
| 7817 | memprintf(err, "'%s' : missing SNI", args[*cur_arg]); |
| 7818 | return ERR_ALERT | ERR_FATAL; |
| 7819 | } |
| 7820 | |
| 7821 | newsrv->check.sni = strdup(args[*cur_arg + 1]); |
| 7822 | if (!newsrv->check.sni) { |
| 7823 | memprintf(err, "'%s' : failed to allocate memory", args[*cur_arg]); |
| 7824 | return ERR_ALERT | ERR_FATAL; |
| 7825 | } |
| 7826 | return 0; |
| 7827 | |
| 7828 | } |
| 7829 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7830 | /* parse the "check-ssl" server keyword */ |
| 7831 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7832 | { |
| 7833 | newsrv->check.use_ssl = 1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7834 | if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 7835 | newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers); |
| 7836 | newsrv->ssl_ctx.options |= global_ssl.connect_default_ssloptions; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 7837 | newsrv->ssl_ctx.methods.flags |= global_ssl.connect_default_sslmethods.flags; |
| 7838 | if (!newsrv->ssl_ctx.methods.min) |
| 7839 | newsrv->ssl_ctx.methods.min = global_ssl.connect_default_sslmethods.min; |
| 7840 | if (!newsrv->ssl_ctx.methods.max) |
| 7841 | newsrv->ssl_ctx.methods.max = global_ssl.connect_default_sslmethods.max; |
| 7842 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7843 | return 0; |
| 7844 | } |
| 7845 | |
| 7846 | /* parse the "ciphers" server keyword */ |
| 7847 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7848 | { |
| 7849 | if (!*args[*cur_arg + 1]) { |
| 7850 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 7851 | return ERR_ALERT | ERR_FATAL; |
| 7852 | } |
| 7853 | |
| 7854 | free(newsrv->ssl_ctx.ciphers); |
| 7855 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 7856 | return 0; |
| 7857 | } |
| 7858 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7859 | /* parse the "crl-file" server keyword */ |
| 7860 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7861 | { |
| 7862 | #ifndef X509_V_FLAG_CRL_CHECK |
| 7863 | if (err) |
| 7864 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 7865 | return ERR_ALERT | ERR_FATAL; |
| 7866 | #else |
| 7867 | if (!*args[*cur_arg + 1]) { |
| 7868 | if (err) |
| 7869 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 7870 | return ERR_ALERT | ERR_FATAL; |
| 7871 | } |
| 7872 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7873 | if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7874 | memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global_ssl.ca_base, args[*cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7875 | else |
| 7876 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 7877 | |
| 7878 | return 0; |
| 7879 | #endif |
| 7880 | } |
| 7881 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 7882 | /* parse the "crt" server keyword */ |
| 7883 | static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7884 | { |
| 7885 | if (!*args[*cur_arg + 1]) { |
| 7886 | if (err) |
| 7887 | memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]); |
| 7888 | return ERR_ALERT | ERR_FATAL; |
| 7889 | } |
| 7890 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7891 | if ((*args[*cur_arg + 1] != '/') && global_ssl.crt_base) |
Christopher Faulet | ff3a41e | 2017-11-23 09:13:32 +0100 | [diff] [blame] | 7892 | memprintf(&newsrv->ssl_ctx.client_crt, "%s/%s", global_ssl.crt_base, args[*cur_arg + 1]); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 7893 | else |
| 7894 | memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]); |
| 7895 | |
| 7896 | return 0; |
| 7897 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7898 | |
Frédéric Lécaille | 340ae60 | 2017-03-13 10:38:04 +0100 | [diff] [blame] | 7899 | /* parse the "no-check-ssl" server keyword */ |
| 7900 | static int srv_parse_no_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7901 | { |
| 7902 | newsrv->check.use_ssl = 0; |
| 7903 | free(newsrv->ssl_ctx.ciphers); |
| 7904 | newsrv->ssl_ctx.ciphers = NULL; |
| 7905 | newsrv->ssl_ctx.options &= ~global_ssl.connect_default_ssloptions; |
| 7906 | return 0; |
| 7907 | } |
| 7908 | |
Frédéric Lécaille | e892c4c | 2017-03-13 12:08:01 +0100 | [diff] [blame] | 7909 | /* parse the "no-send-proxy-v2-ssl" server keyword */ |
| 7910 | static int srv_parse_no_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7911 | { |
| 7912 | newsrv->pp_opts &= ~SRV_PP_V2; |
| 7913 | newsrv->pp_opts &= ~SRV_PP_V2_SSL; |
| 7914 | return 0; |
| 7915 | } |
| 7916 | |
| 7917 | /* parse the "no-send-proxy-v2-ssl-cn" server keyword */ |
| 7918 | static int srv_parse_no_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7919 | { |
| 7920 | newsrv->pp_opts &= ~SRV_PP_V2; |
| 7921 | newsrv->pp_opts &= ~SRV_PP_V2_SSL; |
| 7922 | newsrv->pp_opts &= ~SRV_PP_V2_SSL_CN; |
| 7923 | return 0; |
| 7924 | } |
| 7925 | |
Frédéric Lécaille | e381d76 | 2017-03-13 11:54:17 +0100 | [diff] [blame] | 7926 | /* parse the "no-ssl" server keyword */ |
| 7927 | static int srv_parse_no_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7928 | { |
| 7929 | newsrv->use_ssl = 0; |
| 7930 | free(newsrv->ssl_ctx.ciphers); |
| 7931 | newsrv->ssl_ctx.ciphers = NULL; |
| 7932 | return 0; |
| 7933 | } |
| 7934 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 7935 | /* parse the "allow-0rtt" server keyword */ |
| 7936 | static int srv_parse_allow_0rtt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7937 | { |
| 7938 | newsrv->ssl_ctx.options |= SRV_SSL_O_EARLY_DATA; |
| 7939 | return 0; |
| 7940 | } |
| 7941 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 7942 | /* parse the "no-ssl-reuse" server keyword */ |
| 7943 | static int srv_parse_no_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7944 | { |
| 7945 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_REUSE; |
| 7946 | return 0; |
| 7947 | } |
| 7948 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 7949 | /* parse the "no-tls-tickets" server keyword */ |
| 7950 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7951 | { |
| 7952 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 7953 | return 0; |
| 7954 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 7955 | /* parse the "send-proxy-v2-ssl" server keyword */ |
| 7956 | static int srv_parse_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7957 | { |
| 7958 | newsrv->pp_opts |= SRV_PP_V2; |
| 7959 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 7960 | return 0; |
| 7961 | } |
| 7962 | |
| 7963 | /* parse the "send-proxy-v2-ssl-cn" server keyword */ |
| 7964 | static int srv_parse_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7965 | { |
| 7966 | newsrv->pp_opts |= SRV_PP_V2; |
| 7967 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 7968 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
| 7969 | return 0; |
| 7970 | } |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 7971 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 7972 | /* parse the "sni" server keyword */ |
| 7973 | static int srv_parse_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7974 | { |
| 7975 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7976 | memprintf(err, "'%s' : the current SSL library doesn't support the SNI TLS extension", args[*cur_arg]); |
| 7977 | return ERR_ALERT | ERR_FATAL; |
| 7978 | #else |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 7979 | char *arg; |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 7980 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 7981 | arg = args[*cur_arg + 1]; |
| 7982 | if (!*arg) { |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 7983 | memprintf(err, "'%s' : missing sni expression", args[*cur_arg]); |
| 7984 | return ERR_ALERT | ERR_FATAL; |
| 7985 | } |
| 7986 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 7987 | free(newsrv->sni_expr); |
| 7988 | newsrv->sni_expr = strdup(arg); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 7989 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 7990 | return 0; |
| 7991 | #endif |
| 7992 | } |
| 7993 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7994 | /* parse the "ssl" server keyword */ |
| 7995 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 7996 | { |
| 7997 | newsrv->use_ssl = 1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7998 | if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 7999 | newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers); |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8000 | return 0; |
| 8001 | } |
| 8002 | |
Frédéric Lécaille | 2cfcdbe | 2017-03-13 11:32:20 +0100 | [diff] [blame] | 8003 | /* parse the "ssl-reuse" server keyword */ |
| 8004 | static int srv_parse_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8005 | { |
| 8006 | newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_REUSE; |
| 8007 | return 0; |
| 8008 | } |
| 8009 | |
Frédéric Lécaille | 2cfcdbe | 2017-03-13 11:32:20 +0100 | [diff] [blame] | 8010 | /* parse the "tls-tickets" server keyword */ |
| 8011 | static int srv_parse_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8012 | { |
| 8013 | newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_TLS_TICKETS; |
| 8014 | return 0; |
| 8015 | } |
| 8016 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8017 | /* parse the "verify" server keyword */ |
| 8018 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8019 | { |
| 8020 | if (!*args[*cur_arg + 1]) { |
| 8021 | if (err) |
| 8022 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 8023 | return ERR_ALERT | ERR_FATAL; |
| 8024 | } |
| 8025 | |
| 8026 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8027 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8028 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8029 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8030 | else { |
| 8031 | if (err) |
| 8032 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 8033 | args[*cur_arg], args[*cur_arg + 1]); |
| 8034 | return ERR_ALERT | ERR_FATAL; |
| 8035 | } |
| 8036 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 8037 | return 0; |
| 8038 | } |
| 8039 | |
| 8040 | /* parse the "verifyhost" server keyword */ |
| 8041 | static int srv_parse_verifyhost(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8042 | { |
| 8043 | if (!*args[*cur_arg + 1]) { |
| 8044 | if (err) |
| 8045 | memprintf(err, "'%s' : missing hostname to verify against", args[*cur_arg]); |
| 8046 | return ERR_ALERT | ERR_FATAL; |
| 8047 | } |
| 8048 | |
Frédéric Lécaille | 273f321 | 2017-03-13 15:52:01 +0100 | [diff] [blame] | 8049 | free(newsrv->ssl_ctx.verify_host); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 8050 | newsrv->ssl_ctx.verify_host = strdup(args[*cur_arg + 1]); |
| 8051 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8052 | return 0; |
| 8053 | } |
| 8054 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8055 | /* parse the "ssl-default-bind-options" keyword in global section */ |
| 8056 | static int ssl_parse_default_bind_options(char **args, int section_type, struct proxy *curpx, |
| 8057 | struct proxy *defpx, const char *file, int line, |
| 8058 | char **err) { |
| 8059 | int i = 1; |
| 8060 | |
| 8061 | if (*(args[i]) == 0) { |
| 8062 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 8063 | return -1; |
| 8064 | } |
| 8065 | while (*(args[i])) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8066 | if (!strcmp(args[i], "no-tls-tickets")) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8067 | global_ssl.listen_default_ssloptions |= BC_SSL_O_NO_TLS_TICKETS; |
Lukas Tribus | 53ae85c | 2017-05-04 15:45:40 +0000 | [diff] [blame] | 8068 | else if (!strcmp(args[i], "prefer-client-ciphers")) |
| 8069 | global_ssl.listen_default_ssloptions |= BC_SSL_O_PREF_CLIE_CIPH; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8070 | else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) { |
| 8071 | if (!parse_tls_method_minmax(args, i, &global_ssl.listen_default_sslmethods, err)) |
| 8072 | i++; |
| 8073 | else { |
| 8074 | memprintf(err, "%s on global statement '%s'.", *err, args[0]); |
| 8075 | return -1; |
| 8076 | } |
| 8077 | } |
| 8078 | else if (parse_tls_method_options(args[i], &global_ssl.listen_default_sslmethods, err)) { |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8079 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 8080 | return -1; |
| 8081 | } |
| 8082 | i++; |
| 8083 | } |
| 8084 | return 0; |
| 8085 | } |
| 8086 | |
| 8087 | /* parse the "ssl-default-server-options" keyword in global section */ |
| 8088 | static int ssl_parse_default_server_options(char **args, int section_type, struct proxy *curpx, |
| 8089 | struct proxy *defpx, const char *file, int line, |
| 8090 | char **err) { |
| 8091 | int i = 1; |
| 8092 | |
| 8093 | if (*(args[i]) == 0) { |
| 8094 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 8095 | return -1; |
| 8096 | } |
| 8097 | while (*(args[i])) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8098 | if (!strcmp(args[i], "no-tls-tickets")) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8099 | global_ssl.connect_default_ssloptions |= SRV_SSL_O_NO_TLS_TICKETS; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8100 | else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) { |
| 8101 | if (!parse_tls_method_minmax(args, i, &global_ssl.connect_default_sslmethods, err)) |
| 8102 | i++; |
| 8103 | else { |
| 8104 | memprintf(err, "%s on global statement '%s'.", *err, args[0]); |
| 8105 | return -1; |
| 8106 | } |
| 8107 | } |
| 8108 | else if (parse_tls_method_options(args[i], &global_ssl.connect_default_sslmethods, err)) { |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8109 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 8110 | return -1; |
| 8111 | } |
| 8112 | i++; |
| 8113 | } |
| 8114 | return 0; |
| 8115 | } |
| 8116 | |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8117 | /* parse the "ca-base" / "crt-base" keywords in global section. |
| 8118 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8119 | */ |
| 8120 | static int ssl_parse_global_ca_crt_base(char **args, int section_type, struct proxy *curpx, |
| 8121 | struct proxy *defpx, const char *file, int line, |
| 8122 | char **err) |
| 8123 | { |
| 8124 | char **target; |
| 8125 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8126 | target = (args[0][1] == 'a') ? &global_ssl.ca_base : &global_ssl.crt_base; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8127 | |
| 8128 | if (too_many_args(1, args, err, NULL)) |
| 8129 | return -1; |
| 8130 | |
| 8131 | if (*target) { |
| 8132 | memprintf(err, "'%s' already specified.", args[0]); |
| 8133 | return -1; |
| 8134 | } |
| 8135 | |
| 8136 | if (*(args[1]) == 0) { |
| 8137 | memprintf(err, "global statement '%s' expects a directory path as an argument.", args[0]); |
| 8138 | return -1; |
| 8139 | } |
| 8140 | *target = strdup(args[1]); |
| 8141 | return 0; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8142 | } |
| 8143 | |
| 8144 | /* parse the "ssl-mode-async" keyword in global section. |
| 8145 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8146 | */ |
| 8147 | static int ssl_parse_global_ssl_async(char **args, int section_type, struct proxy *curpx, |
| 8148 | struct proxy *defpx, const char *file, int line, |
| 8149 | char **err) |
| 8150 | { |
Emmanuel Hocdet | e966e4e | 2017-10-24 18:11:48 +0200 | [diff] [blame] | 8151 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8152 | global_ssl.async = 1; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 8153 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8154 | return 0; |
| 8155 | #else |
| 8156 | memprintf(err, "'%s': openssl library does not support async mode", args[0]); |
| 8157 | return -1; |
| 8158 | #endif |
| 8159 | } |
| 8160 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8161 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8162 | static int ssl_check_async_engine_count(void) { |
| 8163 | int err_code = 0; |
| 8164 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 8165 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 8166 | ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n"); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8167 | err_code = ERR_ABORT; |
| 8168 | } |
| 8169 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8170 | } |
| 8171 | |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 8172 | /* parse the "ssl-engine" keyword in global section. |
| 8173 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8174 | */ |
| 8175 | static int ssl_parse_global_ssl_engine(char **args, int section_type, struct proxy *curpx, |
| 8176 | struct proxy *defpx, const char *file, int line, |
| 8177 | char **err) |
| 8178 | { |
| 8179 | char *algo; |
| 8180 | int ret = -1; |
| 8181 | |
| 8182 | if (*(args[1]) == 0) { |
| 8183 | memprintf(err, "global statement '%s' expects a valid engine name as an argument.", args[0]); |
| 8184 | return ret; |
| 8185 | } |
| 8186 | |
| 8187 | if (*(args[2]) == 0) { |
| 8188 | /* if no list of algorithms is given, it defaults to ALL */ |
| 8189 | algo = strdup("ALL"); |
| 8190 | goto add_engine; |
| 8191 | } |
| 8192 | |
| 8193 | /* otherwise the expected format is ssl-engine <engine_name> algo <list of algo> */ |
| 8194 | if (strcmp(args[2], "algo") != 0) { |
| 8195 | memprintf(err, "global statement '%s' expects to have algo keyword.", args[0]); |
| 8196 | return ret; |
| 8197 | } |
| 8198 | |
| 8199 | if (*(args[3]) == 0) { |
| 8200 | memprintf(err, "global statement '%s' expects algorithm names as an argument.", args[0]); |
| 8201 | return ret; |
| 8202 | } |
| 8203 | algo = strdup(args[3]); |
| 8204 | |
| 8205 | add_engine: |
| 8206 | if (ssl_init_single_engine(args[1], algo)==0) { |
| 8207 | openssl_engines_initialized++; |
| 8208 | ret = 0; |
| 8209 | } |
| 8210 | free(algo); |
| 8211 | return ret; |
| 8212 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8213 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 8214 | |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 8215 | /* parse the "ssl-default-bind-ciphers" / "ssl-default-server-ciphers" keywords |
| 8216 | * in global section. Returns <0 on alert, >0 on warning, 0 on success. |
| 8217 | */ |
| 8218 | static int ssl_parse_global_ciphers(char **args, int section_type, struct proxy *curpx, |
| 8219 | struct proxy *defpx, const char *file, int line, |
| 8220 | char **err) |
| 8221 | { |
| 8222 | char **target; |
| 8223 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8224 | target = (args[0][12] == 'b') ? &global_ssl.listen_default_ciphers : &global_ssl.connect_default_ciphers; |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 8225 | |
| 8226 | if (too_many_args(1, args, err, NULL)) |
| 8227 | return -1; |
| 8228 | |
| 8229 | if (*(args[1]) == 0) { |
| 8230 | memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]); |
| 8231 | return -1; |
| 8232 | } |
| 8233 | |
| 8234 | free(*target); |
| 8235 | *target = strdup(args[1]); |
| 8236 | return 0; |
| 8237 | } |
| 8238 | |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8239 | /* parse various global tune.ssl settings consisting in positive integers. |
| 8240 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8241 | */ |
| 8242 | static int ssl_parse_global_int(char **args, int section_type, struct proxy *curpx, |
| 8243 | struct proxy *defpx, const char *file, int line, |
| 8244 | char **err) |
| 8245 | { |
| 8246 | int *target; |
| 8247 | |
| 8248 | if (strcmp(args[0], "tune.ssl.cachesize") == 0) |
| 8249 | target = &global.tune.sslcachesize; |
| 8250 | else if (strcmp(args[0], "tune.ssl.maxrecord") == 0) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8251 | target = (int *)&global_ssl.max_record; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8252 | else if (strcmp(args[0], "tune.ssl.ssl-ctx-cache-size") == 0) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8253 | target = &global_ssl.ctx_cache; |
Willy Tarreau | 0bea58d | 2016-12-21 23:17:25 +0100 | [diff] [blame] | 8254 | else if (strcmp(args[0], "maxsslconn") == 0) |
| 8255 | target = &global.maxsslconn; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8256 | else if (strcmp(args[0], "tune.ssl.capture-cipherlist-size") == 0) |
| 8257 | target = &global_ssl.capture_cipherlist; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8258 | else { |
| 8259 | memprintf(err, "'%s' keyword not unhandled (please report this bug).", args[0]); |
| 8260 | return -1; |
| 8261 | } |
| 8262 | |
| 8263 | if (too_many_args(1, args, err, NULL)) |
| 8264 | return -1; |
| 8265 | |
| 8266 | if (*(args[1]) == 0) { |
| 8267 | memprintf(err, "'%s' expects an integer argument.", args[0]); |
| 8268 | return -1; |
| 8269 | } |
| 8270 | |
| 8271 | *target = atoi(args[1]); |
| 8272 | if (*target < 0) { |
| 8273 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 8274 | return -1; |
| 8275 | } |
| 8276 | return 0; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8277 | } |
| 8278 | |
| 8279 | static int ssl_parse_global_capture_cipherlist(char **args, int section_type, struct proxy *curpx, |
| 8280 | struct proxy *defpx, const char *file, int line, |
| 8281 | char **err) |
| 8282 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8283 | int ret; |
| 8284 | |
| 8285 | ret = ssl_parse_global_int(args, section_type, curpx, defpx, file, line, err); |
| 8286 | if (ret != 0) |
| 8287 | return ret; |
| 8288 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 8289 | if (pool_head_ssl_capture) { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8290 | memprintf(err, "'%s' is already configured.", args[0]); |
| 8291 | return -1; |
| 8292 | } |
| 8293 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 8294 | pool_head_ssl_capture = create_pool("ssl-capture", sizeof(struct ssl_capture) + global_ssl.capture_cipherlist, MEM_F_SHARED); |
| 8295 | if (!pool_head_ssl_capture) { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8296 | memprintf(err, "Out of memory error."); |
| 8297 | return -1; |
| 8298 | } |
| 8299 | return 0; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8300 | } |
| 8301 | |
| 8302 | /* parse "ssl.force-private-cache". |
| 8303 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8304 | */ |
| 8305 | static int ssl_parse_global_private_cache(char **args, int section_type, struct proxy *curpx, |
| 8306 | struct proxy *defpx, const char *file, int line, |
| 8307 | char **err) |
| 8308 | { |
| 8309 | if (too_many_args(0, args, err, NULL)) |
| 8310 | return -1; |
| 8311 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8312 | global_ssl.private_cache = 1; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8313 | return 0; |
| 8314 | } |
| 8315 | |
| 8316 | /* parse "ssl.lifetime". |
| 8317 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8318 | */ |
| 8319 | static int ssl_parse_global_lifetime(char **args, int section_type, struct proxy *curpx, |
| 8320 | struct proxy *defpx, const char *file, int line, |
| 8321 | char **err) |
| 8322 | { |
| 8323 | const char *res; |
| 8324 | |
| 8325 | if (too_many_args(1, args, err, NULL)) |
| 8326 | return -1; |
| 8327 | |
| 8328 | if (*(args[1]) == 0) { |
| 8329 | memprintf(err, "'%s' expects ssl sessions <lifetime> in seconds as argument.", args[0]); |
| 8330 | return -1; |
| 8331 | } |
| 8332 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8333 | res = parse_time_err(args[1], &global_ssl.life_time, TIME_UNIT_S); |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8334 | if (res) { |
| 8335 | memprintf(err, "unexpected character '%c' in argument to <%s>.", *res, args[0]); |
| 8336 | return -1; |
| 8337 | } |
| 8338 | return 0; |
| 8339 | } |
| 8340 | |
| 8341 | #ifndef OPENSSL_NO_DH |
Willy Tarreau | 14e36a1 | 2016-12-21 23:28:13 +0100 | [diff] [blame] | 8342 | /* parse "ssl-dh-param-file". |
| 8343 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8344 | */ |
| 8345 | static int ssl_parse_global_dh_param_file(char **args, int section_type, struct proxy *curpx, |
| 8346 | struct proxy *defpx, const char *file, int line, |
| 8347 | char **err) |
| 8348 | { |
| 8349 | if (too_many_args(1, args, err, NULL)) |
| 8350 | return -1; |
| 8351 | |
| 8352 | if (*(args[1]) == 0) { |
| 8353 | memprintf(err, "'%s' expects a file path as an argument.", args[0]); |
| 8354 | return -1; |
| 8355 | } |
| 8356 | |
| 8357 | if (ssl_sock_load_global_dh_param_from_file(args[1])) { |
| 8358 | memprintf(err, "'%s': unable to load DH parameters from file <%s>.", args[0], args[1]); |
| 8359 | return -1; |
| 8360 | } |
| 8361 | return 0; |
| 8362 | } |
| 8363 | |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8364 | /* parse "ssl.default-dh-param". |
| 8365 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8366 | */ |
| 8367 | static int ssl_parse_global_default_dh(char **args, int section_type, struct proxy *curpx, |
| 8368 | struct proxy *defpx, const char *file, int line, |
| 8369 | char **err) |
| 8370 | { |
| 8371 | if (too_many_args(1, args, err, NULL)) |
| 8372 | return -1; |
| 8373 | |
| 8374 | if (*(args[1]) == 0) { |
| 8375 | memprintf(err, "'%s' expects an integer argument.", args[0]); |
| 8376 | return -1; |
| 8377 | } |
| 8378 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8379 | global_ssl.default_dh_param = atoi(args[1]); |
| 8380 | if (global_ssl.default_dh_param < 1024) { |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8381 | memprintf(err, "'%s' expects a value >= 1024.", args[0]); |
| 8382 | return -1; |
| 8383 | } |
| 8384 | return 0; |
| 8385 | } |
| 8386 | #endif |
| 8387 | |
| 8388 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8389 | /* This function is used with TLS ticket keys management. It permits to browse |
| 8390 | * each reference. The variable <getnext> must contain the current node, |
| 8391 | * <end> point to the root node. |
| 8392 | */ |
| 8393 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 8394 | static inline |
| 8395 | struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end) |
| 8396 | { |
| 8397 | struct tls_keys_ref *ref = getnext; |
| 8398 | |
| 8399 | while (1) { |
| 8400 | |
| 8401 | /* Get next list entry. */ |
| 8402 | ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list); |
| 8403 | |
| 8404 | /* If the entry is the last of the list, return NULL. */ |
| 8405 | if (&ref->list == end) |
| 8406 | return NULL; |
| 8407 | |
| 8408 | return ref; |
| 8409 | } |
| 8410 | } |
| 8411 | |
| 8412 | static inline |
| 8413 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 8414 | { |
| 8415 | int id; |
| 8416 | char *error; |
| 8417 | |
| 8418 | /* If the reference starts by a '#', this is numeric id. */ |
| 8419 | if (reference[0] == '#') { |
| 8420 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 8421 | id = strtol(reference + 1, &error, 10); |
| 8422 | if (*error != '\0') |
| 8423 | return NULL; |
| 8424 | |
| 8425 | /* Perform the unique id lookup. */ |
| 8426 | return tlskeys_ref_lookupid(id); |
| 8427 | } |
| 8428 | |
| 8429 | /* Perform the string lookup. */ |
| 8430 | return tlskeys_ref_lookup(reference); |
| 8431 | } |
| 8432 | #endif |
| 8433 | |
| 8434 | |
| 8435 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 8436 | |
| 8437 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 8438 | |
| 8439 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 8440 | return cli_io_handler_tlskeys_files(appctx); |
| 8441 | } |
| 8442 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8443 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 8444 | * (next index to be dumped), and cli.p0 (next key reference). |
| 8445 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8446 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 8447 | |
| 8448 | struct stream_interface *si = appctx->owner; |
| 8449 | |
| 8450 | switch (appctx->st2) { |
| 8451 | case STAT_ST_INIT: |
| 8452 | /* Display the column headers. If the message cannot be sent, |
| 8453 | * quit the fucntion with returning 0. The function is called |
| 8454 | * later and restart at the state "STAT_ST_INIT". |
| 8455 | */ |
| 8456 | chunk_reset(&trash); |
| 8457 | |
| 8458 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 8459 | chunk_appendf(&trash, "# id secret\n"); |
| 8460 | else |
| 8461 | chunk_appendf(&trash, "# id (file)\n"); |
| 8462 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 8463 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8464 | si_applet_cant_put(si); |
| 8465 | return 0; |
| 8466 | } |
| 8467 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8468 | /* Now, we start the browsing of the references lists. |
| 8469 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 8470 | * available field of this pointer is <list>. It is used with the function |
| 8471 | * tlskeys_list_get_next() for retruning the first available entry |
| 8472 | */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8473 | if (appctx->ctx.cli.p0 == NULL) { |
| 8474 | appctx->ctx.cli.p0 = LIST_ELEM(&tlskeys_reference, struct tls_keys_ref *, list); |
| 8475 | appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8476 | } |
| 8477 | |
| 8478 | appctx->st2 = STAT_ST_LIST; |
| 8479 | /* fall through */ |
| 8480 | |
| 8481 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8482 | while (appctx->ctx.cli.p0) { |
| 8483 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8484 | |
| 8485 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8486 | if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8487 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8488 | |
| 8489 | if (appctx->ctx.cli.i1 == 0) |
| 8490 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 8491 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8492 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 8493 | int head; |
| 8494 | |
| 8495 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 8496 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8497 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 8498 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8499 | |
| 8500 | chunk_reset(t2); |
| 8501 | /* should never fail here because we dump only a key in the t2 buffer */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 8502 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 8503 | sizeof(struct tls_sess_key), |
| 8504 | t2->area, t2->size); |
| 8505 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 8506 | t2->area); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8507 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 8508 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8509 | /* let's try again later from this stream. We add ourselves into |
| 8510 | * this stream's users so that it can remove us upon termination. |
| 8511 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 8512 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8513 | si_applet_cant_put(si); |
| 8514 | return 0; |
| 8515 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8516 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8517 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 8518 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8519 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8520 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 8521 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8522 | /* let's try again later from this stream. We add ourselves into |
| 8523 | * this stream's users so that it can remove us upon termination. |
| 8524 | */ |
| 8525 | si_applet_cant_put(si); |
| 8526 | return 0; |
| 8527 | } |
| 8528 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8529 | if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8530 | break; |
| 8531 | |
| 8532 | /* get next list entry and check the end of the list */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8533 | appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8534 | } |
| 8535 | |
| 8536 | appctx->st2 = STAT_ST_FIN; |
| 8537 | /* fall through */ |
| 8538 | |
| 8539 | default: |
| 8540 | appctx->st2 = STAT_ST_FIN; |
| 8541 | return 1; |
| 8542 | } |
| 8543 | return 0; |
| 8544 | } |
| 8545 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8546 | /* sets cli.i0 to non-zero if only file lists should be dumped */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 8547 | static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8548 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8549 | /* no parameter, shows only file list */ |
| 8550 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8551 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8552 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 8553 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8554 | } |
| 8555 | |
| 8556 | if (args[2][0] == '*') { |
| 8557 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8558 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8559 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8560 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
| 8561 | if (!appctx->ctx.cli.p0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8562 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8563 | appctx->ctx.cli.msg = "'show tls-keys' unable to locate referenced filename\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8564 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8565 | return 1; |
| 8566 | } |
| 8567 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8568 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 8569 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8570 | } |
| 8571 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 8572 | static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8573 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8574 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 8575 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8576 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8577 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
| 8578 | if (!*args[3] || !*args[4]) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8579 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8580 | appctx->ctx.cli.msg = "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8581 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8582 | return 1; |
| 8583 | } |
| 8584 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 8585 | ref = tlskeys_ref_lookup_ref(args[3]); |
| 8586 | if (!ref) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8587 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8588 | appctx->ctx.cli.msg = "'set ssl tls-key' unable to locate referenced filename\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8589 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8590 | return 1; |
| 8591 | } |
| 8592 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 8593 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
| 8594 | if (ret != sizeof(struct tls_sess_key)) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8595 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8596 | appctx->ctx.cli.msg = "'set ssl tls-key' received invalid base64 encoded TLS key.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8597 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8598 | return 1; |
| 8599 | } |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 8600 | trash.data = ret; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 8601 | ssl_sock_update_tlskey_ref(ref, &trash); |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8602 | appctx->ctx.cli.severity = LOG_INFO; |
Aurélien Nephtali | 6e8a41d | 2018-03-15 21:48:50 +0100 | [diff] [blame] | 8603 | appctx->ctx.cli.msg = "TLS ticket key updated!\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8604 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8605 | return 1; |
| 8606 | |
| 8607 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 8608 | #endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8609 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 8610 | static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8611 | { |
| 8612 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 8613 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 8614 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 8615 | |
| 8616 | if (!payload) |
| 8617 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8618 | |
| 8619 | /* Expect one parameter: the new response in base64 encoding */ |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 8620 | if (!*payload) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8621 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8622 | appctx->ctx.cli.msg = "'set ssl ocsp-response' expects response in base64 encoding.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8623 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8624 | return 1; |
| 8625 | } |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 8626 | |
| 8627 | /* remove \r and \n from the payload */ |
| 8628 | for (i = 0, j = 0; payload[i]; i++) { |
| 8629 | if (payload[i] == '\r' || payload[i] == '\n') |
| 8630 | continue; |
| 8631 | payload[j++] = payload[i]; |
| 8632 | } |
| 8633 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8634 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 8635 | ret = base64dec(payload, j, trash.area, trash.size); |
| 8636 | if (ret < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8637 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8638 | appctx->ctx.cli.msg = "'set ssl ocsp-response' received invalid base64 encoded response.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8639 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8640 | return 1; |
| 8641 | } |
| 8642 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 8643 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8644 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
| 8645 | if (err) { |
| 8646 | memprintf(&err, "%s.\n", err); |
| 8647 | appctx->ctx.cli.err = err; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8648 | appctx->st0 = CLI_ST_PRINT_FREE; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8649 | } |
Aurélien Nephtali | 9a4da68 | 2018-04-16 19:02:42 +0200 | [diff] [blame] | 8650 | else { |
| 8651 | appctx->ctx.cli.severity = LOG_ERR; |
| 8652 | appctx->ctx.cli.msg = "Failed to update OCSP response.\n"; |
| 8653 | appctx->st0 = CLI_ST_PRINT; |
| 8654 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8655 | return 1; |
| 8656 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8657 | appctx->ctx.cli.severity = LOG_INFO; |
Aurélien Nephtali | 6e8a41d | 2018-03-15 21:48:50 +0100 | [diff] [blame] | 8658 | appctx->ctx.cli.msg = "OCSP Response updated!\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8659 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8660 | return 1; |
| 8661 | #else |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 8662 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8663 | appctx->ctx.cli.msg = "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 8664 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8665 | return 1; |
| 8666 | #endif |
| 8667 | |
| 8668 | } |
| 8669 | |
| 8670 | /* register cli keywords */ |
| 8671 | static struct cli_kw_list cli_kws = {{ },{ |
| 8672 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 8673 | { { "show", "tls-keys", NULL }, "show tls-keys [id|*]: show tls keys references or dump tls ticket keys when id specified", cli_parse_show_tlskeys, NULL }, |
Lukas Tribus | f4bbc43 | 2017-10-24 12:26:31 +0200 | [diff] [blame] | 8674 | { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|keyfile] <tlskey>: set the next TLS key for the <id> or <keyfile> listener to <tlskey>", cli_parse_set_tlskeys, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8675 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 8676 | { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8677 | { { NULL }, NULL, NULL, NULL } |
| 8678 | }}; |
| 8679 | |
| 8680 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 8681 | /* Note: must not be declared <const> as its list will be overwritten. |
| 8682 | * Please take care of keeping this list alphabetically sorted. |
| 8683 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 8684 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 8685 | { "ssl_bc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8686 | { "ssl_bc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV }, |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 8687 | { "ssl_bc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 8688 | { "ssl_bc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV }, |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 8689 | { "ssl_bc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 8690 | { "ssl_bc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8691 | { "ssl_bc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8692 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 8693 | { "ssl_bc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8694 | #endif |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 8695 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL) |
| 8696 | { "ssl_bc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
| 8697 | #endif |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8698 | { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 8699 | { "ssl_c_ca_err_depth", smp_fetch_ssl_c_ca_err_depth, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 8700 | { "ssl_c_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8701 | { "ssl_c_err", smp_fetch_ssl_c_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 8702 | { "ssl_c_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8703 | { "ssl_c_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8704 | { "ssl_c_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8705 | { "ssl_c_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8706 | { "ssl_c_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8707 | { "ssl_c_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8708 | { "ssl_c_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 8709 | { "ssl_c_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 8710 | { "ssl_c_used", smp_fetch_ssl_c_used, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8711 | { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 8712 | { "ssl_c_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 8713 | { "ssl_f_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 8714 | { "ssl_f_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8715 | { "ssl_f_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8716 | { "ssl_f_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8717 | { "ssl_f_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8718 | { "ssl_f_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8719 | { "ssl_f_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8720 | { "ssl_f_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Emeric Brun | 55f4fa8 | 2014-04-30 17:11:25 +0200 | [diff] [blame] | 8721 | { "ssl_f_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8722 | { "ssl_f_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 8723 | { "ssl_fc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8724 | { "ssl_fc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 8725 | { "ssl_fc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 8726 | { "ssl_fc_has_crt", smp_fetch_ssl_fc_has_crt, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 8727 | { "ssl_fc_has_early", smp_fetch_ssl_fc_has_early, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 8728 | { "ssl_fc_has_sni", smp_fetch_ssl_fc_has_sni, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 8729 | { "ssl_fc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 8730 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 8731 | { "ssl_fc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 8732 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 8733 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 8734 | { "ssl_fc_alpn", smp_fetch_ssl_fc_alpn, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8735 | #endif |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 8736 | { "ssl_fc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8737 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 8738 | { "ssl_fc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8739 | #endif |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 8740 | { "ssl_fc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8741 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 8742 | { "ssl_fc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8743 | #endif |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 8744 | #if OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL) |
| 8745 | { "ssl_fc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 8746 | #endif |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8747 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 8748 | { "ssl_fc_sni", smp_fetch_ssl_fc_sni, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 8749 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8750 | { "ssl_fc_cipherlist_bin", smp_fetch_ssl_fc_cl_bin, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8751 | { "ssl_fc_cipherlist_hex", smp_fetch_ssl_fc_cl_hex, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 8752 | { "ssl_fc_cipherlist_str", smp_fetch_ssl_fc_cl_str, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 8753 | { "ssl_fc_cipherlist_xxh", smp_fetch_ssl_fc_cl_xxh64, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 8754 | { NULL, NULL, 0, 0, 0 }, |
| 8755 | }}; |
| 8756 | |
| 8757 | /* Note: must not be declared <const> as its list will be overwritten. |
| 8758 | * Please take care of keeping this list alphabetically sorted. |
| 8759 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 8760 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 8761 | { "ssl_fc_sni_end", "ssl_fc_sni", PAT_MATCH_END }, |
| 8762 | { "ssl_fc_sni_reg", "ssl_fc_sni", PAT_MATCH_REG }, |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 8763 | { /* END */ }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 8764 | }}; |
| 8765 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8766 | /* Note: must not be declared <const> as its list will be overwritten. |
| 8767 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 8768 | * all code contributors. |
| 8769 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 8770 | * the config parser can report an appropriate error when a known keyword was |
| 8771 | * not enabled. |
| 8772 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8773 | static struct ssl_bind_kw ssl_bind_kws[] = { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 8774 | { "allow-0rtt", ssl_bind_parse_allow_0rtt, 0 }, /* allow 0-RTT */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8775 | { "alpn", ssl_bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 8776 | { "ca-file", ssl_bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 8777 | { "ciphers", ssl_bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
| 8778 | { "crl-file", ssl_bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 8779 | { "curves", ssl_bind_parse_curves, 1 }, /* set SSL curve suite */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8780 | { "ecdhe", ssl_bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 8781 | { "no-ca-names", ssl_bind_parse_no_ca_names, 0 }, /* do not send ca names to clients (ca_file related) */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8782 | { "npn", ssl_bind_parse_npn, 1 }, /* set NPN supported protocols */ |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 8783 | { "ssl-min-ver", ssl_bind_parse_tls_method_minmax,1 }, /* minimum version */ |
| 8784 | { "ssl-max-ver", ssl_bind_parse_tls_method_minmax,1 }, /* maximum version */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8785 | { "verify", ssl_bind_parse_verify, 1 }, /* set SSL verify method */ |
| 8786 | { NULL, NULL, 0 }, |
| 8787 | }; |
| 8788 | |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 8789 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 8790 | { "allow-0rtt", bind_parse_allow_0rtt, 0 }, /* Allow 0RTT */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8791 | { "alpn", bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 8792 | { "ca-file", bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 8793 | { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */ |
| 8794 | { "ca-sign-file", bind_parse_ca_sign_file, 1 }, /* set CAFile used to generate and sign server certs */ |
| 8795 | { "ca-sign-pass", bind_parse_ca_sign_pass, 1 }, /* set CAKey passphrase */ |
| 8796 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
| 8797 | { "crl-file", bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
| 8798 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 8799 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
| 8800 | { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */ |
| 8801 | { "curves", bind_parse_curves, 1 }, /* set SSL curve suite */ |
| 8802 | { "ecdhe", bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
| 8803 | { "force-sslv3", bind_parse_tls_method_options, 0 }, /* force SSLv3 */ |
| 8804 | { "force-tlsv10", bind_parse_tls_method_options, 0 }, /* force TLSv10 */ |
| 8805 | { "force-tlsv11", bind_parse_tls_method_options, 0 }, /* force TLSv11 */ |
| 8806 | { "force-tlsv12", bind_parse_tls_method_options, 0 }, /* force TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 8807 | { "force-tlsv13", bind_parse_tls_method_options, 0 }, /* force TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8808 | { "generate-certificates", bind_parse_generate_certs, 0 }, /* enable the server certificates generation */ |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 8809 | { "no-ca-names", bind_parse_no_ca_names, 0 }, /* do not send ca names to clients (ca_file related) */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8810 | { "no-sslv3", bind_parse_tls_method_options, 0 }, /* disable SSLv3 */ |
| 8811 | { "no-tlsv10", bind_parse_tls_method_options, 0 }, /* disable TLSv10 */ |
| 8812 | { "no-tlsv11", bind_parse_tls_method_options, 0 }, /* disable TLSv11 */ |
| 8813 | { "no-tlsv12", bind_parse_tls_method_options, 0 }, /* disable TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 8814 | { "no-tlsv13", bind_parse_tls_method_options, 0 }, /* disable TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8815 | { "no-tls-tickets", bind_parse_no_tls_tickets, 0 }, /* disable session resumption tickets */ |
| 8816 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8817 | { "ssl-min-ver", bind_parse_tls_method_minmax, 1 }, /* minimum version */ |
| 8818 | { "ssl-max-ver", bind_parse_tls_method_minmax, 1 }, /* maximum version */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8819 | { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */ |
| 8820 | { "tls-ticket-keys", bind_parse_tls_ticket_keys, 1 }, /* set file to load TLS ticket keys from */ |
| 8821 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
| 8822 | { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */ |
| 8823 | { "prefer-client-ciphers", bind_parse_pcc, 0 }, /* prefer client ciphers */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8824 | { NULL, NULL, 0 }, |
| 8825 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8826 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8827 | /* Note: must not be declared <const> as its list will be overwritten. |
| 8828 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 8829 | * all code contributors. |
| 8830 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 8831 | * the config parser can report an appropriate error when a known keyword was |
| 8832 | * not enabled. |
| 8833 | */ |
| 8834 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 8835 | { "allow-0rtt", srv_parse_allow_0rtt, 0, 1 }, /* Allow using early data on this server */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8836 | { "ca-file", srv_parse_ca_file, 1, 1 }, /* set CAfile to process verify server cert */ |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 8837 | { "check-sni", srv_parse_check_sni, 1, 1 }, /* set SNI */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8838 | { "check-ssl", srv_parse_check_ssl, 0, 1 }, /* enable SSL for health checks */ |
| 8839 | { "ciphers", srv_parse_ciphers, 1, 1 }, /* select the cipher suite */ |
| 8840 | { "crl-file", srv_parse_crl_file, 1, 1 }, /* set certificate revocation list file use on server cert verify */ |
| 8841 | { "crt", srv_parse_crt, 1, 1 }, /* set client certificate */ |
| 8842 | { "force-sslv3", srv_parse_tls_method_options, 0, 1 }, /* force SSLv3 */ |
| 8843 | { "force-tlsv10", srv_parse_tls_method_options, 0, 1 }, /* force TLSv10 */ |
| 8844 | { "force-tlsv11", srv_parse_tls_method_options, 0, 1 }, /* force TLSv11 */ |
| 8845 | { "force-tlsv12", srv_parse_tls_method_options, 0, 1 }, /* force TLSv12 */ |
| 8846 | { "force-tlsv13", srv_parse_tls_method_options, 0, 1 }, /* force TLSv13 */ |
| 8847 | { "no-check-ssl", srv_parse_no_check_ssl, 0, 1 }, /* disable SSL for health checks */ |
| 8848 | { "no-send-proxy-v2-ssl", srv_parse_no_send_proxy_ssl, 0, 1 }, /* do not send PROXY protocol header v2 with SSL info */ |
| 8849 | { "no-send-proxy-v2-ssl-cn", srv_parse_no_send_proxy_cn, 0, 1 }, /* do not send PROXY protocol header v2 with CN */ |
| 8850 | { "no-ssl", srv_parse_no_ssl, 0, 1 }, /* disable SSL processing */ |
| 8851 | { "no-ssl-reuse", srv_parse_no_ssl_reuse, 0, 1 }, /* disable session reuse */ |
| 8852 | { "no-sslv3", srv_parse_tls_method_options, 0, 0 }, /* disable SSLv3 */ |
| 8853 | { "no-tlsv10", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv10 */ |
| 8854 | { "no-tlsv11", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv11 */ |
| 8855 | { "no-tlsv12", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv12 */ |
| 8856 | { "no-tlsv13", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv13 */ |
| 8857 | { "no-tls-tickets", srv_parse_no_tls_tickets, 0, 1 }, /* disable session resumption tickets */ |
| 8858 | { "send-proxy-v2-ssl", srv_parse_send_proxy_ssl, 0, 1 }, /* send PROXY protocol header v2 with SSL info */ |
| 8859 | { "send-proxy-v2-ssl-cn", srv_parse_send_proxy_cn, 0, 1 }, /* send PROXY protocol header v2 with CN */ |
| 8860 | { "sni", srv_parse_sni, 1, 1 }, /* send SNI extension */ |
| 8861 | { "ssl", srv_parse_ssl, 0, 1 }, /* enable SSL processing */ |
| 8862 | { "ssl-min-ver", srv_parse_tls_method_minmax, 1, 1 }, /* minimum version */ |
| 8863 | { "ssl-max-ver", srv_parse_tls_method_minmax, 1, 1 }, /* maximum version */ |
| 8864 | { "ssl-reuse", srv_parse_ssl_reuse, 0, 1 }, /* enable session reuse */ |
| 8865 | { "tls-tickets", srv_parse_tls_tickets, 0, 1 }, /* enable session resumption tickets */ |
| 8866 | { "verify", srv_parse_verify, 1, 1 }, /* set SSL verify method */ |
| 8867 | { "verifyhost", srv_parse_verifyhost, 1, 1 }, /* require that SSL cert verifies for hostname */ |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8868 | { NULL, NULL, 0, 0 }, |
| 8869 | }}; |
| 8870 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8871 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8872 | { CFG_GLOBAL, "ca-base", ssl_parse_global_ca_crt_base }, |
| 8873 | { CFG_GLOBAL, "crt-base", ssl_parse_global_ca_crt_base }, |
Willy Tarreau | 0bea58d | 2016-12-21 23:17:25 +0100 | [diff] [blame] | 8874 | { CFG_GLOBAL, "maxsslconn", ssl_parse_global_int }, |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8875 | { CFG_GLOBAL, "ssl-default-bind-options", ssl_parse_default_bind_options }, |
| 8876 | { CFG_GLOBAL, "ssl-default-server-options", ssl_parse_default_server_options }, |
Willy Tarreau | 14e36a1 | 2016-12-21 23:28:13 +0100 | [diff] [blame] | 8877 | #ifndef OPENSSL_NO_DH |
| 8878 | { CFG_GLOBAL, "ssl-dh-param-file", ssl_parse_global_dh_param_file }, |
| 8879 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8880 | { CFG_GLOBAL, "ssl-mode-async", ssl_parse_global_ssl_async }, |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8881 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 8882 | { CFG_GLOBAL, "ssl-engine", ssl_parse_global_ssl_engine }, |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8883 | #endif |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 8884 | { CFG_GLOBAL, "tune.ssl.cachesize", ssl_parse_global_int }, |
| 8885 | #ifndef OPENSSL_NO_DH |
| 8886 | { CFG_GLOBAL, "tune.ssl.default-dh-param", ssl_parse_global_default_dh }, |
| 8887 | #endif |
| 8888 | { CFG_GLOBAL, "tune.ssl.force-private-cache", ssl_parse_global_private_cache }, |
| 8889 | { CFG_GLOBAL, "tune.ssl.lifetime", ssl_parse_global_lifetime }, |
| 8890 | { CFG_GLOBAL, "tune.ssl.maxrecord", ssl_parse_global_int }, |
| 8891 | { CFG_GLOBAL, "tune.ssl.ssl-ctx-cache-size", ssl_parse_global_int }, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 8892 | { CFG_GLOBAL, "tune.ssl.capture-cipherlist-size", ssl_parse_global_capture_cipherlist }, |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 8893 | { CFG_GLOBAL, "ssl-default-bind-ciphers", ssl_parse_global_ciphers }, |
| 8894 | { CFG_GLOBAL, "ssl-default-server-ciphers", ssl_parse_global_ciphers }, |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8895 | { 0, NULL, NULL }, |
| 8896 | }}; |
| 8897 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 8898 | /* transport-layer operations for SSL sockets */ |
Willy Tarreau | d9f5cca | 2016-12-22 21:08:52 +0100 | [diff] [blame] | 8899 | static struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8900 | .snd_buf = ssl_sock_from_buf, |
| 8901 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | 6ff2039 | 2018-07-17 18:46:31 +0200 | [diff] [blame] | 8902 | .subscribe = conn_subscribe, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8903 | .rcv_pipe = NULL, |
| 8904 | .snd_pipe = NULL, |
| 8905 | .shutr = NULL, |
| 8906 | .shutw = ssl_sock_shutw, |
| 8907 | .close = ssl_sock_close, |
| 8908 | .init = ssl_sock_init, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 8909 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 8910 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 8911 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 8912 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 8913 | .get_alpn = ssl_sock_get_alpn, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 8914 | .name = "SSL", |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8915 | }; |
| 8916 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 8917 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 8918 | struct session *sess, struct stream *s, int flags) |
| 8919 | { |
| 8920 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 8921 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 8922 | |
| 8923 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 8924 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 8925 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 8926 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 8927 | if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 8928 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 8929 | s->req.flags |= CF_READ_NULL; |
| 8930 | return ACT_RET_YIELD; |
| 8931 | } |
| 8932 | } |
| 8933 | return (ACT_RET_CONT); |
| 8934 | } |
| 8935 | |
| 8936 | static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err) |
| 8937 | { |
| 8938 | rule->action_ptr = ssl_action_wait_for_hs; |
| 8939 | |
| 8940 | return ACT_RET_PRS_OK; |
| 8941 | } |
| 8942 | |
| 8943 | static struct action_kw_list http_req_actions = {ILH, { |
| 8944 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 8945 | { /* END */ } |
| 8946 | }}; |
| 8947 | |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 8948 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL && !defined LIBRESSL_VERSION_NUMBER) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 8949 | |
| 8950 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 8951 | { |
| 8952 | if (ptr) { |
| 8953 | chunk_destroy(ptr); |
| 8954 | free(ptr); |
| 8955 | } |
| 8956 | } |
| 8957 | |
| 8958 | #endif |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 8959 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 8960 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 8961 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 8962 | } |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 8963 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8964 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8965 | static void __ssl_sock_init(void) |
| 8966 | { |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 8967 | char *ptr; |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 8968 | int i; |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 8969 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8970 | STACK_OF(SSL_COMP)* cm; |
| 8971 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8972 | if (global_ssl.listen_default_ciphers) |
| 8973 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 8974 | if (global_ssl.connect_default_ciphers) |
| 8975 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 8976 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 8977 | xprt_register(XPRT_SSL, &ssl_sock); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 8978 | SSL_library_init(); |
| 8979 | cm = SSL_COMP_get_compression_methods(); |
| 8980 | sk_SSL_COMP_zero(cm); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 8981 | #ifdef USE_THREAD |
| 8982 | ssl_locking_init(); |
| 8983 | #endif |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 8984 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL && !defined LIBRESSL_VERSION_NUMBER) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 8985 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 8986 | #endif |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 8987 | ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
Thierry FOURNIER | 16ff050 | 2018-06-17 21:33:01 +0200 | [diff] [blame] | 8988 | ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func); |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 8989 | ssl_pkey_info_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 8990 | sample_register_fetches(&sample_fetch_keywords); |
| 8991 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8992 | bind_register_keywords(&bind_kws); |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8993 | srv_register_keywords(&srv_kws); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8994 | cfg_register_keywords(&cfg_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 8995 | cli_register_kw(&cli_kws); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8996 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 8997 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8998 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8999 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 9000 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9001 | hap_register_post_check(tlskeys_finalize_config); |
| 9002 | #endif |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 9003 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 9004 | ptr = NULL; |
| 9005 | memprintf(&ptr, "Built with OpenSSL version : " |
| 9006 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 9007 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 9008 | #else /* OPENSSL_IS_BORINGSSL */ |
| 9009 | OPENSSL_VERSION_TEXT |
| 9010 | "\nRunning on OpenSSL version : %s%s", |
| 9011 | SSLeay_version(SSLEAY_VERSION), |
| 9012 | ((OPENSSL_VERSION_NUMBER ^ SSLeay()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
| 9013 | #endif |
| 9014 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
| 9015 | #if OPENSSL_VERSION_NUMBER < 0x00907000L |
| 9016 | "no (library version too old)" |
| 9017 | #elif defined(OPENSSL_NO_TLSEXT) |
| 9018 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 9019 | #else |
| 9020 | "yes" |
| 9021 | #endif |
| 9022 | "", ptr); |
| 9023 | |
| 9024 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 9025 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 9026 | "yes" |
| 9027 | #else |
| 9028 | #ifdef OPENSSL_NO_TLSEXT |
| 9029 | "no (because of OPENSSL_NO_TLSEXT)" |
| 9030 | #else |
| 9031 | "no (version might be too old, 0.9.8f min needed)" |
| 9032 | #endif |
| 9033 | #endif |
| 9034 | "", ptr); |
| 9035 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 9036 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 9037 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 9038 | if (methodVersions[i].option) |
| 9039 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 9040 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 9041 | hap_register_build_opts(ptr, 1); |
| 9042 | |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 9043 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 9044 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 9045 | |
| 9046 | #ifndef OPENSSL_NO_DH |
| 9047 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9048 | hap_register_post_deinit(ssl_free_dh); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 9049 | #endif |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9050 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9051 | hap_register_post_deinit(ssl_free_engines); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9052 | #endif |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 9053 | /* Load SSL string for the verbose & debug mode. */ |
| 9054 | ERR_load_SSL_strings(); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9055 | |
| 9056 | http_req_keywords_register(&http_req_actions); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9057 | } |
| 9058 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9059 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9060 | void ssl_free_engines(void) { |
| 9061 | struct ssl_engine_list *wl, *wlb; |
| 9062 | /* free up engine list */ |
| 9063 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 9064 | ENGINE_finish(wl->e); |
| 9065 | ENGINE_free(wl->e); |
| 9066 | LIST_DEL(&wl->list); |
| 9067 | free(wl); |
| 9068 | } |
| 9069 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9070 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 9071 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 9072 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9073 | void ssl_free_dh(void) { |
| 9074 | if (local_dh_1024) { |
| 9075 | DH_free(local_dh_1024); |
| 9076 | local_dh_1024 = NULL; |
| 9077 | } |
| 9078 | if (local_dh_2048) { |
| 9079 | DH_free(local_dh_2048); |
| 9080 | local_dh_2048 = NULL; |
| 9081 | } |
| 9082 | if (local_dh_4096) { |
| 9083 | DH_free(local_dh_4096); |
| 9084 | local_dh_4096 = NULL; |
| 9085 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 9086 | if (global_dh) { |
| 9087 | DH_free(global_dh); |
| 9088 | global_dh = NULL; |
| 9089 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9090 | } |
| 9091 | #endif |
| 9092 | |
| 9093 | __attribute__((destructor)) |
| 9094 | static void __ssl_sock_deinit(void) |
| 9095 | { |
| 9096 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 9097 | if (ssl_ctx_lru_tree) { |
| 9098 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 9099 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 9100 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 9101 | #endif |
| 9102 | |
| 9103 | ERR_remove_state(0); |
| 9104 | ERR_free_strings(); |
| 9105 | |
| 9106 | EVP_cleanup(); |
| 9107 | |
| 9108 | #if OPENSSL_VERSION_NUMBER >= 0x00907000L |
| 9109 | CRYPTO_cleanup_all_ex_data(); |
| 9110 | #endif |
| 9111 | } |
| 9112 | |
| 9113 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9114 | /* |
| 9115 | * Local variables: |
| 9116 | * c-indent-level: 8 |
| 9117 | * c-basic-offset: 8 |
| 9118 | * End: |
| 9119 | */ |