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> |
| 46 | #include <openssl/x509.h> |
| 47 | #include <openssl/err.h> |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 48 | #include <openssl/rand.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 |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 55 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 56 | #include <import/lru.h> |
| 57 | #include <import/xxhash.h> |
| 58 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 59 | #include <common/buffer.h> |
| 60 | #include <common/compat.h> |
| 61 | #include <common/config.h> |
| 62 | #include <common/debug.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 63 | #include <common/errors.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 64 | #include <common/standard.h> |
| 65 | #include <common/ticks.h> |
| 66 | #include <common/time.h> |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 67 | #include <common/cfgparse.h> |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 68 | #include <common/base64.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 69 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 70 | #include <ebsttree.h> |
| 71 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 72 | #include <types/applet.h> |
| 73 | #include <types/cli.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 74 | #include <types/global.h> |
| 75 | #include <types/ssl_sock.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 76 | #include <types/stats.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 77 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 78 | #include <proto/acl.h> |
| 79 | #include <proto/arg.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 80 | #include <proto/channel.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 81 | #include <proto/connection.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 82 | #include <proto/cli.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 83 | #include <proto/fd.h> |
| 84 | #include <proto/freq_ctr.h> |
| 85 | #include <proto/frontend.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 86 | #include <proto/listener.h> |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 87 | #include <proto/openssl-compat.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 88 | #include <proto/pattern.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 89 | #include <proto/proto_tcp.h> |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 90 | #include <proto/server.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 91 | #include <proto/stream_interface.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 92 | #include <proto/log.h> |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 93 | #include <proto/proxy.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 94 | #include <proto/shctx.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 95 | #include <proto/ssl_sock.h> |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 96 | #include <proto/stream.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 97 | #include <proto/task.h> |
| 98 | |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 99 | /* Warning, these are bits, not integers! */ |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 100 | #define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001 |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 101 | #define SSL_SOCK_ST_FL_16K_WBFSIZE 0x00000002 |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 102 | #define SSL_SOCK_SEND_UNLIMITED 0x00000004 |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 103 | #define SSL_SOCK_RECV_HEARTBEAT 0x00000008 |
| 104 | |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 105 | /* bits 0xFFFF0000 are reserved to store verify errors */ |
| 106 | |
| 107 | /* Verify errors macros */ |
| 108 | #define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16)) |
| 109 | #define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16)) |
| 110 | #define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16)) |
| 111 | |
| 112 | #define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63) |
| 113 | #define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15) |
| 114 | #define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 115 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 116 | /* Supported hash function for TLS tickets */ |
| 117 | #ifdef OPENSSL_NO_SHA256 |
| 118 | #define HASH_FUNCT EVP_sha1 |
| 119 | #else |
| 120 | #define HASH_FUNCT EVP_sha256 |
| 121 | #endif /* OPENSSL_NO_SHA256 */ |
| 122 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 123 | /* server and bind verify method, it uses a global value as default */ |
| 124 | enum { |
| 125 | SSL_SOCK_VERIFY_DEFAULT = 0, |
| 126 | SSL_SOCK_VERIFY_REQUIRED = 1, |
| 127 | SSL_SOCK_VERIFY_OPTIONAL = 2, |
| 128 | SSL_SOCK_VERIFY_NONE = 3, |
| 129 | }; |
| 130 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 131 | int sslconns = 0; |
| 132 | int totalsslconns = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 133 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 134 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 135 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 136 | #endif |
| 137 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 138 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 139 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 140 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 141 | static DH *local_dh_1024 = NULL; |
| 142 | static DH *local_dh_2048 = NULL; |
| 143 | static DH *local_dh_4096 = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 144 | #endif /* OPENSSL_NO_DH */ |
| 145 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 146 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 147 | /* X509V3 Extensions that will be added on generated certificates */ |
| 148 | #define X509V3_EXT_SIZE 5 |
| 149 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 150 | "basicConstraints", |
| 151 | "nsComment", |
| 152 | "subjectKeyIdentifier", |
| 153 | "authorityKeyIdentifier", |
| 154 | "keyUsage", |
| 155 | }; |
| 156 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 157 | "CA:FALSE", |
| 158 | "\"OpenSSL Generated Certificate\"", |
| 159 | "hash", |
| 160 | "keyid,issuer:always", |
| 161 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 162 | }; |
| 163 | |
| 164 | /* LRU cache to store generated certificate */ |
| 165 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 166 | static unsigned int ssl_ctx_lru_seed = 0; |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 167 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 168 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 169 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 170 | /* The order here matters for picking a default context, |
| 171 | * keep the most common keytype at the bottom of the list |
| 172 | */ |
| 173 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 174 | "dsa", |
| 175 | "ecdsa", |
| 176 | "rsa" |
| 177 | }; |
| 178 | #define SSL_SOCK_NUM_KEYTYPES 3 |
Willy Tarreau | 30da7ad | 2015-12-14 11:28:33 +0100 | [diff] [blame] | 179 | #else |
| 180 | #define SSL_SOCK_NUM_KEYTYPES 1 |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 181 | #endif |
| 182 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 183 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 184 | /* |
| 185 | * struct alignment works here such that the key.key is the same as key_data |
| 186 | * Do not change the placement of key_data |
| 187 | */ |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 188 | struct certificate_ocsp { |
| 189 | struct ebmb_node key; |
| 190 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 191 | struct chunk response; |
| 192 | long expire; |
| 193 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 194 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 195 | struct ocsp_cbk_arg { |
| 196 | int is_single; |
| 197 | int single_kt; |
| 198 | union { |
| 199 | struct certificate_ocsp *s_ocsp; |
| 200 | /* |
| 201 | * m_ocsp will have multiple entries dependent on key type |
| 202 | * Entry 0 - DSA |
| 203 | * Entry 1 - ECDSA |
| 204 | * Entry 2 - RSA |
| 205 | */ |
| 206 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 207 | }; |
| 208 | }; |
| 209 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 210 | /* |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 211 | * This function gives the detail of the SSL error. It is used only |
| 212 | * if the debug mode and the verbose mode are activated. It dump all |
| 213 | * the SSL error until the stack was empty. |
| 214 | */ |
| 215 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 216 | { |
| 217 | unsigned long ret; |
| 218 | |
| 219 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 220 | while(1) { |
| 221 | ret = ERR_get_error(); |
| 222 | if (ret == 0) |
| 223 | return; |
| 224 | fprintf(stderr, "fd[%04x] OpenSSL error[0x%lx] %s: %s\n", |
| 225 | (unsigned short)conn->t.sock.fd, ret, |
| 226 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 227 | } |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | /* |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 232 | * This function returns the number of seconds elapsed |
| 233 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 234 | * date presented un ASN1_GENERALIZEDTIME. |
| 235 | * |
| 236 | * In parsing error case, it returns -1. |
| 237 | */ |
| 238 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 239 | { |
| 240 | long epoch; |
| 241 | char *p, *end; |
| 242 | const unsigned short month_offset[12] = { |
| 243 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 244 | }; |
| 245 | int year, month; |
| 246 | |
| 247 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 248 | |
| 249 | p = (char *)d->data; |
| 250 | end = p + d->length; |
| 251 | |
| 252 | if (end - p < 4) return -1; |
| 253 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 254 | p += 4; |
| 255 | if (end - p < 2) return -1; |
| 256 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 257 | if (month < 1 || month > 12) return -1; |
| 258 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 259 | We consider leap years and the current month (<marsh or not) */ |
| 260 | epoch = ( ((year - 1970) * 365) |
| 261 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 262 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 263 | + month_offset[month-1] |
| 264 | ) * 24 * 60 * 60; |
| 265 | p += 2; |
| 266 | if (end - p < 2) return -1; |
| 267 | /* Add the number of seconds of completed days of current month */ |
| 268 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 269 | p += 2; |
| 270 | if (end - p < 2) return -1; |
| 271 | /* Add the completed hours of the current day */ |
| 272 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 273 | p += 2; |
| 274 | if (end - p < 2) return -1; |
| 275 | /* Add the completed minutes of the current hour */ |
| 276 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 277 | p += 2; |
| 278 | if (p == end) return -1; |
| 279 | /* Test if there is available seconds */ |
| 280 | if (p[0] < '0' || p[0] > '9') |
| 281 | goto nosec; |
| 282 | if (end - p < 2) return -1; |
| 283 | /* Add the seconds of the current minute */ |
| 284 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 285 | p += 2; |
| 286 | if (p == end) return -1; |
| 287 | /* Ignore seconds float part if present */ |
| 288 | if (p[0] == '.') { |
| 289 | do { |
| 290 | if (++p == end) return -1; |
| 291 | } while (p[0] >= '0' && p[0] <= '9'); |
| 292 | } |
| 293 | |
| 294 | nosec: |
| 295 | if (p[0] == 'Z') { |
| 296 | if (end - p != 1) return -1; |
| 297 | return epoch; |
| 298 | } |
| 299 | else if (p[0] == '+') { |
| 300 | if (end - p != 5) return -1; |
| 301 | /* Apply timezone offset */ |
| 302 | return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
| 303 | } |
| 304 | else if (p[0] == '-') { |
| 305 | if (end - p != 5) return -1; |
| 306 | /* Apply timezone offset */ |
| 307 | return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
| 308 | } |
| 309 | |
| 310 | return -1; |
| 311 | } |
| 312 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 313 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 314 | |
| 315 | /* This function starts to check if the OCSP response (in DER format) contained |
| 316 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 317 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 318 | * contained in the OCSP Response and exits on error if no match. |
| 319 | * If it's a valid OCSP Response: |
| 320 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 321 | * pointed by 'ocsp'. |
| 322 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 323 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 324 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 325 | * already present in the container, it will be overwritten. |
| 326 | * |
| 327 | * Note: OCSP response containing more than one OCSP Single response is not |
| 328 | * considered valid. |
| 329 | * |
| 330 | * Returns 0 on success, 1 in error case. |
| 331 | */ |
| 332 | static int ssl_sock_load_ocsp_response(struct chunk *ocsp_response, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err) |
| 333 | { |
| 334 | OCSP_RESPONSE *resp; |
| 335 | OCSP_BASICRESP *bs = NULL; |
| 336 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 337 | OCSP_CERTID *id; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 338 | unsigned char *p = (unsigned char *)ocsp_response->str; |
| 339 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 340 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 341 | int reason; |
| 342 | int ret = 1; |
| 343 | |
| 344 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, ocsp_response->len); |
| 345 | if (!resp) { |
| 346 | memprintf(err, "Unable to parse OCSP response"); |
| 347 | goto out; |
| 348 | } |
| 349 | |
| 350 | rc = OCSP_response_status(resp); |
| 351 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 352 | memprintf(err, "OCSP response status not successful"); |
| 353 | goto out; |
| 354 | } |
| 355 | |
| 356 | bs = OCSP_response_get1_basic(resp); |
| 357 | if (!bs) { |
| 358 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 359 | goto out; |
| 360 | } |
| 361 | |
| 362 | count_sr = OCSP_resp_count(bs); |
| 363 | if (count_sr > 1) { |
| 364 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 365 | goto out; |
| 366 | } |
| 367 | |
| 368 | sr = OCSP_resp_get0(bs, 0); |
| 369 | if (!sr) { |
| 370 | memprintf(err, "Failed to get OCSP single response"); |
| 371 | goto out; |
| 372 | } |
| 373 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 374 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 375 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 376 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
| 377 | if (rc != V_OCSP_CERTSTATUS_GOOD) { |
| 378 | memprintf(err, "OCSP single response: certificate status not good"); |
| 379 | goto out; |
| 380 | } |
| 381 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 382 | if (!nextupd) { |
| 383 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 384 | goto out; |
| 385 | } |
| 386 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 387 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 388 | if (!rc) { |
| 389 | memprintf(err, "OCSP single response: no longer valid."); |
| 390 | goto out; |
| 391 | } |
| 392 | |
| 393 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 394 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 395 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 396 | goto out; |
| 397 | } |
| 398 | } |
| 399 | |
| 400 | if (!ocsp) { |
| 401 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 402 | unsigned char *p; |
| 403 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 404 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 405 | if (!rc) { |
| 406 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 407 | goto out; |
| 408 | } |
| 409 | |
| 410 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 411 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 412 | goto out; |
| 413 | } |
| 414 | |
| 415 | p = key; |
| 416 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 417 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 418 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 419 | if (!ocsp) { |
| 420 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 421 | goto out; |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | /* According to comments on "chunk_dup", the |
| 426 | previous chunk buffer will be freed */ |
| 427 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 428 | memprintf(err, "OCSP response: Memory allocation error"); |
| 429 | goto out; |
| 430 | } |
| 431 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 432 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 433 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 434 | ret = 0; |
| 435 | out: |
| 436 | if (bs) |
| 437 | OCSP_BASICRESP_free(bs); |
| 438 | |
| 439 | if (resp) |
| 440 | OCSP_RESPONSE_free(resp); |
| 441 | |
| 442 | return ret; |
| 443 | } |
| 444 | /* |
| 445 | * External function use to update the OCSP response in the OCSP response's |
| 446 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 447 | * to update in DER format. |
| 448 | * |
| 449 | * Returns 0 on success, 1 in error case. |
| 450 | */ |
| 451 | int ssl_sock_update_ocsp_response(struct chunk *ocsp_response, char **err) |
| 452 | { |
| 453 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 454 | } |
| 455 | |
| 456 | /* |
| 457 | * This function load the OCSP Resonse in DER format contained in file at |
| 458 | * path 'ocsp_path' and call 'ssl_sock_load_ocsp_response' |
| 459 | * |
| 460 | * Returns 0 on success, 1 in error case. |
| 461 | */ |
| 462 | static int ssl_sock_load_ocsp_response_from_file(const char *ocsp_path, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err) |
| 463 | { |
| 464 | int fd = -1; |
| 465 | int r = 0; |
| 466 | int ret = 1; |
| 467 | |
| 468 | fd = open(ocsp_path, O_RDONLY); |
| 469 | if (fd == -1) { |
| 470 | memprintf(err, "Error opening OCSP response file"); |
| 471 | goto end; |
| 472 | } |
| 473 | |
| 474 | trash.len = 0; |
| 475 | while (trash.len < trash.size) { |
| 476 | r = read(fd, trash.str + trash.len, trash.size - trash.len); |
| 477 | if (r < 0) { |
| 478 | if (errno == EINTR) |
| 479 | continue; |
| 480 | |
| 481 | memprintf(err, "Error reading OCSP response from file"); |
| 482 | goto end; |
| 483 | } |
| 484 | else if (r == 0) { |
| 485 | break; |
| 486 | } |
| 487 | trash.len += r; |
| 488 | } |
| 489 | |
| 490 | close(fd); |
| 491 | fd = -1; |
| 492 | |
| 493 | ret = ssl_sock_load_ocsp_response(&trash, ocsp, cid, err); |
| 494 | end: |
| 495 | if (fd != -1) |
| 496 | close(fd); |
| 497 | |
| 498 | return ret; |
| 499 | } |
| 500 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 501 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 502 | 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) |
| 503 | { |
| 504 | struct tls_sess_key *keys; |
| 505 | struct connection *conn; |
| 506 | int head; |
| 507 | int i; |
| 508 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 509 | conn = SSL_get_app_data(s); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 510 | keys = objt_listener(conn->target)->bind_conf->keys_ref->tlskeys; |
| 511 | head = objt_listener(conn->target)->bind_conf->keys_ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 512 | |
| 513 | if (enc) { |
| 514 | memcpy(key_name, keys[head].name, 16); |
| 515 | |
| 516 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
| 517 | return -1; |
| 518 | |
| 519 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].aes_key, iv)) |
| 520 | return -1; |
| 521 | |
| 522 | HMAC_Init_ex(hctx, keys[head].hmac_key, 16, HASH_FUNCT(), NULL); |
| 523 | |
| 524 | return 1; |
| 525 | } else { |
| 526 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 527 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 528 | goto found; |
| 529 | } |
| 530 | return 0; |
| 531 | |
| 532 | found: |
| 533 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].hmac_key, 16, HASH_FUNCT(), NULL); |
| 534 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].aes_key, iv)) |
| 535 | return -1; |
| 536 | /* 2 for key renewal, 1 if current key is still valid */ |
| 537 | return i ? 2 : 1; |
| 538 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 539 | } |
| 540 | |
| 541 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 542 | { |
| 543 | struct tls_keys_ref *ref; |
| 544 | |
| 545 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 546 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 547 | return ref; |
| 548 | return NULL; |
| 549 | } |
| 550 | |
| 551 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 552 | { |
| 553 | struct tls_keys_ref *ref; |
| 554 | |
| 555 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 556 | if (ref->unique_id == unique_id) |
| 557 | return ref; |
| 558 | return NULL; |
| 559 | } |
| 560 | |
| 561 | int ssl_sock_update_tlskey(char *filename, struct chunk *tlskey, char **err) { |
| 562 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 563 | |
| 564 | if(!ref) { |
| 565 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 566 | return 1; |
| 567 | } |
| 568 | |
Pradeep Jindal | cc79b00 | 2015-08-20 18:25:17 +0530 | [diff] [blame] | 569 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), tlskey->str, tlskey->len); |
| 570 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 571 | |
| 572 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 573 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 574 | |
| 575 | /* This function finalize the configuration parsing. Its set all the |
| 576 | * automatic ids |
| 577 | */ |
| 578 | void tlskeys_finalize_config(void) |
| 579 | { |
| 580 | int i = 0; |
| 581 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 582 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 583 | |
| 584 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 585 | if (ref->unique_id == -1) { |
| 586 | /* Look for the first free id. */ |
| 587 | while (1) { |
| 588 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 589 | if (ref2->unique_id == i) { |
| 590 | i++; |
| 591 | break; |
| 592 | } |
| 593 | } |
| 594 | if (&ref2->list == &tlskeys_reference) |
| 595 | break; |
| 596 | } |
| 597 | |
| 598 | /* Uses the unique id and increment it for the next entry. */ |
| 599 | ref->unique_id = i; |
| 600 | i++; |
| 601 | } |
| 602 | } |
| 603 | |
| 604 | /* This sort the reference list by id. */ |
| 605 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
| 606 | LIST_DEL(&ref->list); |
| 607 | list_for_each_entry(ref3, &tkr, list) { |
| 608 | if (ref->unique_id < ref3->unique_id) { |
| 609 | LIST_ADDQ(&ref3->list, &ref->list); |
| 610 | break; |
| 611 | } |
| 612 | } |
| 613 | if (&ref3->list == &tkr) |
| 614 | LIST_ADDQ(&tkr, &ref->list); |
| 615 | } |
| 616 | |
| 617 | /* swap root */ |
| 618 | LIST_ADD(&tkr, &tlskeys_reference); |
| 619 | LIST_DEL(&tkr); |
| 620 | } |
| 621 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 622 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 623 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 624 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 625 | { |
| 626 | switch (evp_keytype) { |
| 627 | case EVP_PKEY_RSA: |
| 628 | return 2; |
| 629 | case EVP_PKEY_DSA: |
| 630 | return 0; |
| 631 | case EVP_PKEY_EC: |
| 632 | return 1; |
| 633 | } |
| 634 | |
| 635 | return -1; |
| 636 | } |
| 637 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 638 | /* |
| 639 | * Callback used to set OCSP status extension content in server hello. |
| 640 | */ |
| 641 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 642 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 643 | struct certificate_ocsp *ocsp; |
| 644 | struct ocsp_cbk_arg *ocsp_arg; |
| 645 | char *ssl_buf; |
| 646 | EVP_PKEY *ssl_pkey; |
| 647 | int key_type; |
| 648 | int index; |
| 649 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 650 | ocsp_arg = arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 651 | |
| 652 | ssl_pkey = SSL_get_privatekey(ssl); |
| 653 | if (!ssl_pkey) |
| 654 | return SSL_TLSEXT_ERR_NOACK; |
| 655 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 656 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 657 | |
| 658 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 659 | ocsp = ocsp_arg->s_ocsp; |
| 660 | else { |
| 661 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 662 | * the certificate type |
| 663 | */ |
| 664 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 665 | |
| 666 | if (index < 0) |
| 667 | return SSL_TLSEXT_ERR_NOACK; |
| 668 | |
| 669 | ocsp = ocsp_arg->m_ocsp[index]; |
| 670 | |
| 671 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 672 | |
| 673 | if (!ocsp || |
| 674 | !ocsp->response.str || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 675 | !ocsp->response.len || |
| 676 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 677 | return SSL_TLSEXT_ERR_NOACK; |
| 678 | |
| 679 | ssl_buf = OPENSSL_malloc(ocsp->response.len); |
| 680 | if (!ssl_buf) |
| 681 | return SSL_TLSEXT_ERR_NOACK; |
| 682 | |
| 683 | memcpy(ssl_buf, ocsp->response.str, ocsp->response.len); |
| 684 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.len); |
| 685 | |
| 686 | return SSL_TLSEXT_ERR_OK; |
| 687 | } |
| 688 | |
| 689 | /* |
| 690 | * This function enables the handling of OCSP status extension on 'ctx' if a |
| 691 | * file name 'cert_path' suffixed using ".ocsp" is present. |
| 692 | * To enable OCSP status extension, the issuer's certificate is mandatory. |
| 693 | * It should be present in the certificate's extra chain builded from file |
| 694 | * 'cert_path'. If not found, the issuer certificate is loaded from a file |
| 695 | * named 'cert_path' suffixed using '.issuer'. |
| 696 | * |
| 697 | * In addition, ".ocsp" file content is loaded as a DER format of an OCSP |
| 698 | * response. If file is empty or content is not a valid OCSP response, |
| 699 | * OCSP status extension is enabled but OCSP response is ignored (a warning |
| 700 | * is displayed). |
| 701 | * |
| 702 | * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is |
| 703 | * succesfully enabled, or -1 in other error case. |
| 704 | */ |
| 705 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const char *cert_path) |
| 706 | { |
| 707 | |
| 708 | BIO *in = NULL; |
| 709 | X509 *x, *xi = NULL, *issuer = NULL; |
| 710 | STACK_OF(X509) *chain = NULL; |
| 711 | OCSP_CERTID *cid = NULL; |
| 712 | SSL *ssl; |
| 713 | char ocsp_path[MAXPATHLEN+1]; |
| 714 | int i, ret = -1; |
| 715 | struct stat st; |
| 716 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 717 | char *warn = NULL; |
| 718 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 719 | pem_password_cb *passwd_cb; |
| 720 | void *passwd_cb_userdata; |
| 721 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 722 | |
| 723 | snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path); |
| 724 | |
| 725 | if (stat(ocsp_path, &st)) |
| 726 | return 1; |
| 727 | |
| 728 | ssl = SSL_new(ctx); |
| 729 | if (!ssl) |
| 730 | goto out; |
| 731 | |
| 732 | x = SSL_get_certificate(ssl); |
| 733 | if (!x) |
| 734 | goto out; |
| 735 | |
| 736 | /* Try to lookup for issuer in certificate extra chain */ |
| 737 | #ifdef SSL_CTRL_GET_EXTRA_CHAIN_CERTS |
| 738 | SSL_CTX_get_extra_chain_certs(ctx, &chain); |
| 739 | #else |
| 740 | chain = ctx->extra_certs; |
| 741 | #endif |
| 742 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 743 | issuer = sk_X509_value(chain, i); |
| 744 | if (X509_check_issued(issuer, x) == X509_V_OK) |
| 745 | break; |
| 746 | else |
| 747 | issuer = NULL; |
| 748 | } |
| 749 | |
| 750 | /* If not found try to load issuer from a suffixed file */ |
| 751 | if (!issuer) { |
| 752 | char issuer_path[MAXPATHLEN+1]; |
| 753 | |
| 754 | in = BIO_new(BIO_s_file()); |
| 755 | if (!in) |
| 756 | goto out; |
| 757 | |
| 758 | snprintf(issuer_path, MAXPATHLEN+1, "%s.issuer", cert_path); |
| 759 | if (BIO_read_filename(in, issuer_path) <= 0) |
| 760 | goto out; |
| 761 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 762 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 763 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 764 | |
| 765 | 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] | 766 | if (!xi) |
| 767 | goto out; |
| 768 | |
| 769 | if (X509_check_issued(xi, x) != X509_V_OK) |
| 770 | goto out; |
| 771 | |
| 772 | issuer = xi; |
| 773 | } |
| 774 | |
| 775 | cid = OCSP_cert_to_id(0, x, issuer); |
| 776 | if (!cid) |
| 777 | goto out; |
| 778 | |
| 779 | i = i2d_OCSP_CERTID(cid, NULL); |
| 780 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 781 | goto out; |
| 782 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 783 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 784 | if (!ocsp) |
| 785 | goto out; |
| 786 | |
| 787 | p = ocsp->key_data; |
| 788 | i2d_OCSP_CERTID(cid, &p); |
| 789 | |
| 790 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 791 | if (iocsp == ocsp) |
| 792 | ocsp = NULL; |
| 793 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 794 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 795 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 796 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 797 | #endif |
| 798 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 799 | |
| 800 | if (!callback) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 801 | struct ocsp_cbk_arg *cb_arg = calloc(1, sizeof(*cb_arg)); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 802 | |
| 803 | cb_arg->is_single = 1; |
| 804 | cb_arg->s_ocsp = iocsp; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 805 | |
| 806 | cb_arg->single_kt = EVP_PKEY_base_id(X509_get_pubkey(x)); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 807 | |
| 808 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
| 809 | SSL_CTX_set_tlsext_status_arg(ctx, cb_arg); |
| 810 | } else { |
| 811 | /* |
| 812 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 813 | * Update that cb_arg with the new cert's staple |
| 814 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 815 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 816 | struct certificate_ocsp *tmp_ocsp; |
| 817 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 818 | int key_type; |
| 819 | |
| 820 | #ifdef SSL_CTX_get_tlsext_status_arg |
| 821 | SSL_CTX_ctrl(ctx, SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG, 0, &cb_arg); |
| 822 | #else |
| 823 | cb_arg = ctx->tlsext_status_arg; |
| 824 | #endif |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 825 | |
| 826 | /* |
| 827 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 828 | * the order of operations below matter, take care when changing it |
| 829 | */ |
| 830 | tmp_ocsp = cb_arg->s_ocsp; |
| 831 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 832 | cb_arg->s_ocsp = NULL; |
| 833 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 834 | cb_arg->is_single = 0; |
| 835 | cb_arg->single_kt = 0; |
| 836 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 837 | key_type = EVP_PKEY_base_id(X509_get_pubkey(x)); |
| 838 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 839 | if (index >= 0 && !cb_arg->m_ocsp[index]) |
| 840 | cb_arg->m_ocsp[index] = iocsp; |
| 841 | |
| 842 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 843 | |
| 844 | ret = 0; |
| 845 | |
| 846 | warn = NULL; |
| 847 | if (ssl_sock_load_ocsp_response_from_file(ocsp_path, iocsp, cid, &warn)) { |
| 848 | memprintf(&warn, "Loading '%s': %s. Content will be ignored", ocsp_path, warn ? warn : "failure"); |
| 849 | Warning("%s.\n", warn); |
| 850 | } |
| 851 | |
| 852 | out: |
| 853 | if (ssl) |
| 854 | SSL_free(ssl); |
| 855 | |
| 856 | if (in) |
| 857 | BIO_free(in); |
| 858 | |
| 859 | if (xi) |
| 860 | X509_free(xi); |
| 861 | |
| 862 | if (cid) |
| 863 | OCSP_CERTID_free(cid); |
| 864 | |
| 865 | if (ocsp) |
| 866 | free(ocsp); |
| 867 | |
| 868 | if (warn) |
| 869 | free(warn); |
| 870 | |
| 871 | |
| 872 | return ret; |
| 873 | } |
| 874 | |
| 875 | #endif |
| 876 | |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 877 | #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] | 878 | |
| 879 | #define CT_EXTENSION_TYPE 18 |
| 880 | |
| 881 | static int sctl_ex_index = -1; |
| 882 | |
| 883 | /* |
| 884 | * Try to parse Signed Certificate Timestamp List structure. This function |
| 885 | * makes only basic test if the data seems like SCTL. No signature validation |
| 886 | * is performed. |
| 887 | */ |
| 888 | static int ssl_sock_parse_sctl(struct chunk *sctl) |
| 889 | { |
| 890 | int ret = 1; |
| 891 | int len, pos, sct_len; |
| 892 | unsigned char *data; |
| 893 | |
| 894 | if (sctl->len < 2) |
| 895 | goto out; |
| 896 | |
| 897 | data = (unsigned char *)sctl->str; |
| 898 | len = (data[0] << 8) | data[1]; |
| 899 | |
| 900 | if (len + 2 != sctl->len) |
| 901 | goto out; |
| 902 | |
| 903 | data = data + 2; |
| 904 | pos = 0; |
| 905 | while (pos < len) { |
| 906 | if (len - pos < 2) |
| 907 | goto out; |
| 908 | |
| 909 | sct_len = (data[pos] << 8) | data[pos + 1]; |
| 910 | if (pos + sct_len + 2 > len) |
| 911 | goto out; |
| 912 | |
| 913 | pos += sct_len + 2; |
| 914 | } |
| 915 | |
| 916 | ret = 0; |
| 917 | |
| 918 | out: |
| 919 | return ret; |
| 920 | } |
| 921 | |
| 922 | static int ssl_sock_load_sctl_from_file(const char *sctl_path, struct chunk **sctl) |
| 923 | { |
| 924 | int fd = -1; |
| 925 | int r = 0; |
| 926 | int ret = 1; |
| 927 | |
| 928 | *sctl = NULL; |
| 929 | |
| 930 | fd = open(sctl_path, O_RDONLY); |
| 931 | if (fd == -1) |
| 932 | goto end; |
| 933 | |
| 934 | trash.len = 0; |
| 935 | while (trash.len < trash.size) { |
| 936 | r = read(fd, trash.str + trash.len, trash.size - trash.len); |
| 937 | if (r < 0) { |
| 938 | if (errno == EINTR) |
| 939 | continue; |
| 940 | |
| 941 | goto end; |
| 942 | } |
| 943 | else if (r == 0) { |
| 944 | break; |
| 945 | } |
| 946 | trash.len += r; |
| 947 | } |
| 948 | |
| 949 | ret = ssl_sock_parse_sctl(&trash); |
| 950 | if (ret) |
| 951 | goto end; |
| 952 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 953 | *sctl = calloc(1, sizeof(**sctl)); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 954 | if (!chunk_dup(*sctl, &trash)) { |
| 955 | free(*sctl); |
| 956 | *sctl = NULL; |
| 957 | goto end; |
| 958 | } |
| 959 | |
| 960 | end: |
| 961 | if (fd != -1) |
| 962 | close(fd); |
| 963 | |
| 964 | return ret; |
| 965 | } |
| 966 | |
| 967 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 968 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 969 | struct chunk *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 970 | |
| 971 | *out = (unsigned char *)sctl->str; |
| 972 | *outlen = sctl->len; |
| 973 | |
| 974 | return 1; |
| 975 | } |
| 976 | |
| 977 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 978 | { |
| 979 | return 1; |
| 980 | } |
| 981 | |
| 982 | static int ssl_sock_load_sctl(SSL_CTX *ctx, const char *cert_path) |
| 983 | { |
| 984 | char sctl_path[MAXPATHLEN+1]; |
| 985 | int ret = -1; |
| 986 | struct stat st; |
| 987 | struct chunk *sctl = NULL; |
| 988 | |
| 989 | snprintf(sctl_path, MAXPATHLEN+1, "%s.sctl", cert_path); |
| 990 | |
| 991 | if (stat(sctl_path, &st)) |
| 992 | return 1; |
| 993 | |
| 994 | if (ssl_sock_load_sctl_from_file(sctl_path, &sctl)) |
| 995 | goto out; |
| 996 | |
| 997 | if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) { |
| 998 | free(sctl); |
| 999 | goto out; |
| 1000 | } |
| 1001 | |
| 1002 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1003 | |
| 1004 | ret = 0; |
| 1005 | |
| 1006 | out: |
| 1007 | return ret; |
| 1008 | } |
| 1009 | |
| 1010 | #endif |
| 1011 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1012 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1013 | { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1014 | struct connection *conn = SSL_get_app_data(ssl); |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1015 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1016 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1017 | |
| 1018 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1019 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1020 | if (conn->flags & CO_FL_CONNECTED) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1021 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1022 | conn->err_code = CO_ER_SSL_RENEG; |
| 1023 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1024 | } |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1025 | |
| 1026 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
| 1027 | if (!(conn->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
| 1028 | /* Long certificate chains optimz |
| 1029 | If write and read bios are differents, we |
| 1030 | consider that the buffering was activated, |
| 1031 | so we rise the output buffer size from 4k |
| 1032 | to 16k */ |
| 1033 | write_bio = SSL_get_wbio(ssl); |
| 1034 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1035 | BIO_set_write_buffer_size(write_bio, 16384); |
| 1036 | conn->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
| 1037 | } |
| 1038 | } |
| 1039 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1040 | } |
| 1041 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1042 | /* Callback is called for each certificate of the chain during a verify |
| 1043 | ok is set to 1 if preverify detect no error on current certificate. |
| 1044 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1045 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1046 | { |
| 1047 | SSL *ssl; |
| 1048 | struct connection *conn; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1049 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1050 | |
| 1051 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1052 | conn = SSL_get_app_data(ssl); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1053 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1054 | conn->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1055 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1056 | if (ok) /* no errors */ |
| 1057 | return ok; |
| 1058 | |
| 1059 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1060 | err = X509_STORE_CTX_get_error(x_store); |
| 1061 | |
| 1062 | /* check if CA error needs to be ignored */ |
| 1063 | if (depth > 0) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1064 | if (!SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st)) { |
| 1065 | conn->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1066 | conn->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1067 | } |
| 1068 | |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1069 | 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] | 1070 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1071 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1072 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1073 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1074 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1075 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1076 | return 0; |
| 1077 | } |
| 1078 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1079 | if (!SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st)) |
| 1080 | conn->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1081 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1082 | /* check if certificate error needs to be ignored */ |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1083 | 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] | 1084 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1085 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1086 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1087 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1088 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1089 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1090 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1091 | } |
| 1092 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1093 | /* Callback is called for ssl protocol analyse */ |
| 1094 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1095 | { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1096 | #ifdef TLS1_RT_HEARTBEAT |
| 1097 | /* test heartbeat received (write_p is set to 0 |
| 1098 | for a received record) */ |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1099 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1100 | struct connection *conn = SSL_get_app_data(ssl); |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1101 | const unsigned char *p = buf; |
| 1102 | unsigned int payload; |
| 1103 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1104 | conn->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1105 | |
| 1106 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1107 | if (*p != TLS1_HB_REQUEST) |
| 1108 | return; |
| 1109 | |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 1110 | 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] | 1111 | goto kill_it; |
| 1112 | |
| 1113 | payload = (p[1] * 256) + p[2]; |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1114 | if (3 + payload + 16 <= len) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1115 | return; /* OK no problem */ |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 1116 | kill_it: |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1117 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1118 | * advertised payload is larger than the advertised packet |
| 1119 | * length, so we have garbage in the buffer between the |
| 1120 | * payload and the end of the buffer (p+len). We can't know |
| 1121 | * if the SSL stack is patched, and we don't know if we can |
| 1122 | * safely wipe out the area between p+3+len and payload. |
| 1123 | * So instead, we prevent the response from being sent by |
| 1124 | * setting the max_send_fragment to 0 and we report an SSL |
| 1125 | * error, which will kill this connection. It will be reported |
| 1126 | * above as SSL_ERROR_SSL while an other handshake failure with |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1127 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1128 | */ |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1129 | ssl->max_send_fragment = 0; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1130 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1131 | return; |
| 1132 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1133 | #endif |
| 1134 | } |
| 1135 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1136 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 1137 | /* This callback is used so that the server advertises the list of |
| 1138 | * negociable protocols for NPN. |
| 1139 | */ |
| 1140 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1141 | unsigned int *len, void *arg) |
| 1142 | { |
| 1143 | struct bind_conf *conf = arg; |
| 1144 | |
| 1145 | *data = (const unsigned char *)conf->npn_str; |
| 1146 | *len = conf->npn_len; |
| 1147 | return SSL_TLSEXT_ERR_OK; |
| 1148 | } |
| 1149 | #endif |
| 1150 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1151 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1152 | /* This callback is used so that the server advertises the list of |
| 1153 | * negociable protocols for ALPN. |
| 1154 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1155 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1156 | unsigned char *outlen, |
| 1157 | const unsigned char *server, |
| 1158 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1159 | { |
| 1160 | struct bind_conf *conf = arg; |
| 1161 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1162 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1163 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1164 | return SSL_TLSEXT_ERR_NOACK; |
| 1165 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1166 | return SSL_TLSEXT_ERR_OK; |
| 1167 | } |
| 1168 | #endif |
| 1169 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1170 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1171 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
| 1172 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1173 | /* Create a X509 certificate with the specified servername and serial. This |
| 1174 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1175 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1176 | 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] | 1177 | { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1178 | static unsigned int serial = 0; |
| 1179 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1180 | X509 *cacert = bind_conf->ca_sign_cert; |
| 1181 | EVP_PKEY *capkey = bind_conf->ca_sign_pkey; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1182 | SSL_CTX *ssl_ctx = NULL; |
| 1183 | X509 *newcrt = NULL; |
| 1184 | EVP_PKEY *pkey = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1185 | X509_NAME *name; |
| 1186 | const EVP_MD *digest; |
| 1187 | X509V3_CTX ctx; |
| 1188 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1189 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1190 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1191 | /* Get the private key of the defautl certificate and use it */ |
| 1192 | if (!(pkey = SSL_get_privatekey(ssl))) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1193 | goto mkcert_error; |
| 1194 | |
| 1195 | /* Create the certificate */ |
| 1196 | if (!(newcrt = X509_new())) |
| 1197 | goto mkcert_error; |
| 1198 | |
| 1199 | /* Set version number for the certificate (X509v3) and the serial |
| 1200 | * number */ |
| 1201 | if (X509_set_version(newcrt, 2L) != 1) |
| 1202 | goto mkcert_error; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1203 | if (!serial) |
| 1204 | serial = now_ms; |
| 1205 | ASN1_INTEGER_set(X509_get_serialNumber(newcrt), serial++); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1206 | |
| 1207 | /* Set duration for the certificate */ |
| 1208 | if (!X509_gmtime_adj(X509_get_notBefore(newcrt), (long)-60*60*24) || |
| 1209 | !X509_gmtime_adj(X509_get_notAfter(newcrt),(long)60*60*24*365)) |
| 1210 | goto mkcert_error; |
| 1211 | |
| 1212 | /* set public key in the certificate */ |
| 1213 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1214 | goto mkcert_error; |
| 1215 | |
| 1216 | /* Set issuer name from the CA */ |
| 1217 | if (!(name = X509_get_subject_name(cacert))) |
| 1218 | goto mkcert_error; |
| 1219 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 1220 | goto mkcert_error; |
| 1221 | |
| 1222 | /* Set the subject name using the same, but the CN */ |
| 1223 | name = X509_NAME_dup(name); |
| 1224 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 1225 | (const unsigned char *)servername, |
| 1226 | -1, -1, 0) != 1) { |
| 1227 | X509_NAME_free(name); |
| 1228 | goto mkcert_error; |
| 1229 | } |
| 1230 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 1231 | X509_NAME_free(name); |
| 1232 | goto mkcert_error; |
| 1233 | } |
| 1234 | X509_NAME_free(name); |
| 1235 | |
| 1236 | /* Add x509v3 extensions as specified */ |
| 1237 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 1238 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 1239 | X509_EXTENSION *ext; |
| 1240 | |
| 1241 | if (!(ext = X509V3_EXT_conf(NULL, &ctx, x509v3_ext_names[i], x509v3_ext_values[i]))) |
| 1242 | goto mkcert_error; |
| 1243 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 1244 | X509_EXTENSION_free(ext); |
| 1245 | goto mkcert_error; |
| 1246 | } |
| 1247 | X509_EXTENSION_free(ext); |
| 1248 | } |
| 1249 | |
| 1250 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1251 | |
| 1252 | key_type = EVP_PKEY_base_id(capkey); |
| 1253 | |
| 1254 | if (key_type == EVP_PKEY_DSA) |
| 1255 | digest = EVP_sha1(); |
| 1256 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1257 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1258 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1259 | digest = EVP_sha256(); |
| 1260 | else { |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 1261 | #if (OPENSSL_VERSION_NUMBER >= 0x1000000fL) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1262 | int nid; |
| 1263 | |
| 1264 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 1265 | goto mkcert_error; |
| 1266 | if (!(digest = EVP_get_digestbynid(nid))) |
| 1267 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 1268 | #else |
| 1269 | goto mkcert_error; |
| 1270 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1271 | } |
| 1272 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1273 | if (!(X509_sign(newcrt, capkey, digest))) |
| 1274 | goto mkcert_error; |
| 1275 | |
| 1276 | /* Create and set the new SSL_CTX */ |
| 1277 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 1278 | goto mkcert_error; |
| 1279 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 1280 | goto mkcert_error; |
| 1281 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 1282 | goto mkcert_error; |
| 1283 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 1284 | goto mkcert_error; |
| 1285 | |
| 1286 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1287 | |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1288 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
| 1289 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 1290 | { |
| 1291 | const char *ecdhe = (bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE); |
| 1292 | EC_KEY *ecc; |
| 1293 | int nid; |
| 1294 | |
| 1295 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 1296 | goto end; |
| 1297 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 1298 | goto end; |
| 1299 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 1300 | EC_KEY_free(ecc); |
| 1301 | } |
| 1302 | #endif |
| 1303 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1304 | return ssl_ctx; |
| 1305 | |
| 1306 | mkcert_error: |
| 1307 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 1308 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1309 | return NULL; |
| 1310 | } |
| 1311 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1312 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1313 | 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] | 1314 | { |
| 1315 | struct bind_conf *bind_conf = objt_listener(conn->target)->bind_conf; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1316 | |
| 1317 | return ssl_sock_do_create_cert(servername, bind_conf, conn->xprt_ctx); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1318 | } |
| 1319 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1320 | /* Do a lookup for a certificate in the LRU cache used to store generated |
| 1321 | * certificates. */ |
| 1322 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1323 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1324 | { |
| 1325 | struct lru64 *lru = NULL; |
| 1326 | |
| 1327 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1328 | lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1329 | if (lru && lru->domain) |
| 1330 | return (SSL_CTX *)lru->data; |
| 1331 | } |
| 1332 | return NULL; |
| 1333 | } |
| 1334 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1335 | /* Set a certificate int the LRU cache used to store generated |
| 1336 | * certificate. Return 0 on success, otherwise -1 */ |
| 1337 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1338 | 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] | 1339 | { |
| 1340 | struct lru64 *lru = NULL; |
| 1341 | |
| 1342 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1343 | lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1344 | if (!lru) |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1345 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1346 | if (lru->domain && lru->data) |
| 1347 | lru->free((SSL_CTX *)lru->data); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1348 | lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_cert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1349 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1350 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1351 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1352 | } |
| 1353 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1354 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1355 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1356 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1357 | { |
| 1358 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 1359 | } |
| 1360 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1361 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 1362 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 1363 | */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1364 | static SSL_CTX * |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1365 | 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] | 1366 | { |
| 1367 | X509 *cacert = bind_conf->ca_sign_cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1368 | SSL_CTX *ssl_ctx = NULL; |
| 1369 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1370 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1371 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1372 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1373 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1374 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1375 | if (lru && lru->domain) |
| 1376 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1377 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1378 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1379 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 1380 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1381 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1382 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1383 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1384 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 1385 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 1386 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 1387 | SSL_CTX_free(ssl_ctx); |
| 1388 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1389 | return ssl_ctx; |
| 1390 | } |
| 1391 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1392 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 1393 | * warning when no match is found, which implies the default (first) cert |
| 1394 | * will keep being used. |
| 1395 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 1396 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, struct bind_conf *s) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1397 | { |
| 1398 | const char *servername; |
| 1399 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1400 | struct ebmb_node *node, *n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1401 | int i; |
| 1402 | (void)al; /* shut gcc stupid warning */ |
| 1403 | |
| 1404 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 1405 | if (!servername) { |
Willy Tarreau | f672145 | 2015-07-07 18:04:38 +0200 | [diff] [blame] | 1406 | if (s->generate_certs) { |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1407 | struct connection *conn = SSL_get_app_data(ssl); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1408 | unsigned int key; |
Willy Tarreau | f672145 | 2015-07-07 18:04:38 +0200 | [diff] [blame] | 1409 | SSL_CTX *ctx; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1410 | |
Willy Tarreau | f672145 | 2015-07-07 18:04:38 +0200 | [diff] [blame] | 1411 | conn_get_to_addr(conn); |
| 1412 | if (conn->flags & CO_FL_ADDR_TO_SET) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1413 | key = ssl_sock_generated_cert_key(&conn->addr.to, get_addr_len(&conn->addr.to)); |
| 1414 | ctx = ssl_sock_get_generated_cert(key, s); |
Willy Tarreau | f672145 | 2015-07-07 18:04:38 +0200 | [diff] [blame] | 1415 | if (ctx) { |
| 1416 | /* switch ctx */ |
| 1417 | SSL_set_SSL_CTX(ssl, ctx); |
| 1418 | return SSL_TLSEXT_ERR_OK; |
| 1419 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1420 | } |
| 1421 | } |
| 1422 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1423 | return (s->strict_sni ? |
| 1424 | SSL_TLSEXT_ERR_ALERT_FATAL : |
Emmanuel Hocdet | 79274e2 | 2013-05-31 12:47:44 +0200 | [diff] [blame] | 1425 | SSL_TLSEXT_ERR_NOACK); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 1426 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1427 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1428 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1429 | if (!servername[i]) |
| 1430 | break; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1431 | trash.str[i] = tolower(servername[i]); |
| 1432 | if (!wildp && (trash.str[i] == '.')) |
| 1433 | wildp = &trash.str[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1434 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1435 | trash.str[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1436 | |
| 1437 | /* lookup in full qualified names */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1438 | node = ebst_lookup(&s->sni_ctx, trash.str); |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1439 | |
| 1440 | /* lookup a not neg filter */ |
| 1441 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 1442 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 1443 | node = n; |
| 1444 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 1445 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1446 | } |
| 1447 | if (!node && wildp) { |
| 1448 | /* lookup in wildcards names */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1449 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1450 | } |
| 1451 | if (!node || container_of(node, struct sni_ctx, name)->neg) { |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1452 | SSL_CTX *ctx; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1453 | if (s->generate_certs && |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1454 | (ctx = ssl_sock_generate_certificate(servername, s, ssl))) { |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1455 | /* switch ctx */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1456 | return SSL_TLSEXT_ERR_OK; |
| 1457 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1458 | return (s->strict_sni ? |
| 1459 | SSL_TLSEXT_ERR_ALERT_FATAL : |
| 1460 | SSL_TLSEXT_ERR_ALERT_WARNING); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1461 | } |
| 1462 | |
| 1463 | /* switch ctx */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1464 | SSL_set_SSL_CTX(ssl, container_of(node, struct sni_ctx, name)->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1465 | return SSL_TLSEXT_ERR_OK; |
| 1466 | } |
| 1467 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 1468 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1469 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1470 | |
| 1471 | static DH * ssl_get_dh_1024(void) |
| 1472 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1473 | static unsigned char dh1024_p[]={ |
| 1474 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 1475 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 1476 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 1477 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 1478 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 1479 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 1480 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 1481 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 1482 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 1483 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 1484 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 1485 | }; |
| 1486 | static unsigned char dh1024_g[]={ |
| 1487 | 0x02, |
| 1488 | }; |
| 1489 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1490 | BIGNUM *p; |
| 1491 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1492 | DH *dh = DH_new(); |
| 1493 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1494 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 1495 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1496 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1497 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1498 | DH_free(dh); |
| 1499 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1500 | } else { |
| 1501 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1502 | } |
| 1503 | } |
| 1504 | return dh; |
| 1505 | } |
| 1506 | |
| 1507 | static DH *ssl_get_dh_2048(void) |
| 1508 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1509 | static unsigned char dh2048_p[]={ |
| 1510 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 1511 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 1512 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 1513 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 1514 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 1515 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 1516 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 1517 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 1518 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 1519 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 1520 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 1521 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 1522 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 1523 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 1524 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 1525 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 1526 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 1527 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 1528 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 1529 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 1530 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 1531 | 0xB7,0x1F,0x77,0xF3, |
| 1532 | }; |
| 1533 | static unsigned char dh2048_g[]={ |
| 1534 | 0x02, |
| 1535 | }; |
| 1536 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1537 | BIGNUM *p; |
| 1538 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1539 | DH *dh = DH_new(); |
| 1540 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1541 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 1542 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1543 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1544 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1545 | DH_free(dh); |
| 1546 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1547 | } else { |
| 1548 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1549 | } |
| 1550 | } |
| 1551 | return dh; |
| 1552 | } |
| 1553 | |
| 1554 | static DH *ssl_get_dh_4096(void) |
| 1555 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1556 | static unsigned char dh4096_p[]={ |
| 1557 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 1558 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 1559 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 1560 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 1561 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 1562 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 1563 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 1564 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 1565 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 1566 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 1567 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 1568 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 1569 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 1570 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 1571 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 1572 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 1573 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 1574 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 1575 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 1576 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 1577 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 1578 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 1579 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 1580 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 1581 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 1582 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 1583 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 1584 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 1585 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 1586 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 1587 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 1588 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 1589 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 1590 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 1591 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 1592 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 1593 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 1594 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 1595 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 1596 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 1597 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 1598 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 1599 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1600 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1601 | static unsigned char dh4096_g[]={ |
| 1602 | 0x02, |
| 1603 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1604 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1605 | BIGNUM *p; |
| 1606 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1607 | DH *dh = DH_new(); |
| 1608 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1609 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 1610 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1611 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1612 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1613 | DH_free(dh); |
| 1614 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1615 | } else { |
| 1616 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1617 | } |
| 1618 | } |
| 1619 | return dh; |
| 1620 | } |
| 1621 | |
| 1622 | /* Returns Diffie-Hellman parameters matching the private key length |
| 1623 | but not exceeding global.tune.ssl_default_dh_param */ |
| 1624 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 1625 | { |
| 1626 | DH *dh = NULL; |
| 1627 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1628 | int type; |
| 1629 | |
| 1630 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1631 | |
| 1632 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 1633 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 1634 | */ |
| 1635 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 1636 | keylen = EVP_PKEY_bits(pkey); |
| 1637 | } |
| 1638 | |
| 1639 | if (keylen > global.tune.ssl_default_dh_param) { |
| 1640 | keylen = global.tune.ssl_default_dh_param; |
| 1641 | } |
| 1642 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1643 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1644 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1645 | } |
| 1646 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1647 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1648 | } |
| 1649 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1650 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1651 | } |
| 1652 | |
| 1653 | return dh; |
| 1654 | } |
| 1655 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1656 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1657 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1658 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1659 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1660 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1661 | if (in == NULL) |
| 1662 | goto end; |
| 1663 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1664 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1665 | goto end; |
| 1666 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1667 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 1668 | |
| 1669 | end: |
| 1670 | if (in) |
| 1671 | BIO_free(in); |
| 1672 | |
| 1673 | return dh; |
| 1674 | } |
| 1675 | |
| 1676 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 1677 | { |
| 1678 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 1679 | |
| 1680 | if (global_dh) { |
| 1681 | return 0; |
| 1682 | } |
| 1683 | |
| 1684 | return -1; |
| 1685 | } |
| 1686 | |
| 1687 | /* Loads Diffie-Hellman parameter from a file. Returns 1 if loaded, else -1 |
| 1688 | if an error occured, and 0 if parameter not found. */ |
| 1689 | int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file) |
| 1690 | { |
| 1691 | int ret = -1; |
| 1692 | DH *dh = ssl_sock_get_dh_from_file(file); |
| 1693 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1694 | if (dh) { |
| 1695 | ret = 1; |
| 1696 | SSL_CTX_set_tmp_dh(ctx, dh); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 1697 | |
| 1698 | if (ssl_dh_ptr_index >= 0) { |
| 1699 | /* store a pointer to the DH params to avoid complaining about |
| 1700 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 1701 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 1702 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1703 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1704 | else if (global_dh) { |
| 1705 | SSL_CTX_set_tmp_dh(ctx, global_dh); |
| 1706 | ret = 0; /* DH params not found */ |
| 1707 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1708 | else { |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 1709 | /* Clear openssl global errors stack */ |
| 1710 | ERR_clear_error(); |
| 1711 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1712 | if (global.tune.ssl_default_dh_param <= 1024) { |
| 1713 | /* we are limited to DH parameter of 1024 bits anyway */ |
Remi Gacogne | c7e1263 | 2016-07-02 16:26:10 +0200 | [diff] [blame] | 1714 | if (local_dh_1024 == NULL) |
| 1715 | local_dh_1024 = ssl_get_dh_1024(); |
| 1716 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1717 | if (local_dh_1024 == NULL) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1718 | goto end; |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 1719 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1720 | SSL_CTX_set_tmp_dh(ctx, local_dh_1024); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1721 | } |
| 1722 | else { |
| 1723 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 1724 | } |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 1725 | |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 1726 | ret = 0; /* DH params not found */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1727 | } |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1728 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1729 | end: |
| 1730 | if (dh) |
| 1731 | DH_free(dh); |
| 1732 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1733 | return ret; |
| 1734 | } |
| 1735 | #endif |
| 1736 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1737 | static int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1738 | { |
| 1739 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1740 | int wild = 0, neg = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 1741 | struct ebmb_node *node; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1742 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1743 | if (*name == '!') { |
| 1744 | neg = 1; |
| 1745 | name++; |
| 1746 | } |
| 1747 | if (*name == '*') { |
| 1748 | wild = 1; |
| 1749 | name++; |
| 1750 | } |
| 1751 | /* !* filter is a nop */ |
| 1752 | if (neg && wild) |
| 1753 | return order; |
| 1754 | if (*name) { |
| 1755 | int j, len; |
| 1756 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 1757 | for (j = 0; j < len && j < trash.size; j++) |
| 1758 | trash.str[j] = tolower(name[j]); |
| 1759 | if (j >= trash.size) |
| 1760 | return order; |
| 1761 | trash.str[j] = 0; |
| 1762 | |
| 1763 | /* Check for duplicates. */ |
| 1764 | if (wild) |
| 1765 | node = ebst_lookup(&s->sni_w_ctx, trash.str); |
| 1766 | else |
| 1767 | node = ebst_lookup(&s->sni_ctx, trash.str); |
| 1768 | for (; node; node = ebmb_next_dup(node)) { |
| 1769 | sc = ebmb_entry(node, struct sni_ctx, name); |
| 1770 | if (sc->ctx == ctx && sc->neg == neg) |
| 1771 | return order; |
| 1772 | } |
| 1773 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1774 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 1775 | if (!sc) |
| 1776 | return order; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 1777 | memcpy(sc->name.key, trash.str, len + 1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1778 | sc->ctx = ctx; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1779 | sc->order = order++; |
| 1780 | sc->neg = neg; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1781 | if (wild) |
| 1782 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 1783 | else |
| 1784 | ebst_insert(&s->sni_ctx, &sc->name); |
| 1785 | } |
| 1786 | return order; |
| 1787 | } |
| 1788 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1789 | |
| 1790 | /* The following code is used for loading multiple crt files into |
| 1791 | * SSL_CTX's based on CN/SAN |
| 1792 | */ |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 1793 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined(LIBRESSL_VERSION_NUMBER) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1794 | /* This is used to preload the certifcate, private key |
| 1795 | * and Cert Chain of a file passed in via the crt |
| 1796 | * argument |
| 1797 | * |
| 1798 | * This way, we do not have to read the file multiple times |
| 1799 | */ |
| 1800 | struct cert_key_and_chain { |
| 1801 | X509 *cert; |
| 1802 | EVP_PKEY *key; |
| 1803 | unsigned int num_chain_certs; |
| 1804 | /* This is an array of X509 pointers */ |
| 1805 | X509 **chain_certs; |
| 1806 | }; |
| 1807 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 1808 | #define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES)) |
| 1809 | |
| 1810 | struct key_combo_ctx { |
| 1811 | SSL_CTX *ctx; |
| 1812 | int order; |
| 1813 | }; |
| 1814 | |
| 1815 | /* Map used for processing multiple keypairs for a single purpose |
| 1816 | * |
| 1817 | * This maps CN/SNI name to certificate type |
| 1818 | */ |
| 1819 | struct sni_keytype { |
| 1820 | int keytypes; /* BITMASK for keytypes */ |
| 1821 | struct ebmb_node name; /* node holding the servername value */ |
| 1822 | }; |
| 1823 | |
| 1824 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1825 | /* Frees the contents of a cert_key_and_chain |
| 1826 | */ |
| 1827 | static void ssl_sock_free_cert_key_and_chain_contents(struct cert_key_and_chain *ckch) |
| 1828 | { |
| 1829 | int i; |
| 1830 | |
| 1831 | if (!ckch) |
| 1832 | return; |
| 1833 | |
| 1834 | /* Free the certificate and set pointer to NULL */ |
| 1835 | if (ckch->cert) |
| 1836 | X509_free(ckch->cert); |
| 1837 | ckch->cert = NULL; |
| 1838 | |
| 1839 | /* Free the key and set pointer to NULL */ |
| 1840 | if (ckch->key) |
| 1841 | EVP_PKEY_free(ckch->key); |
| 1842 | ckch->key = NULL; |
| 1843 | |
| 1844 | /* Free each certificate in the chain */ |
| 1845 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 1846 | if (ckch->chain_certs[i]) |
| 1847 | X509_free(ckch->chain_certs[i]); |
| 1848 | } |
| 1849 | |
| 1850 | /* Free the chain obj itself and set to NULL */ |
| 1851 | if (ckch->num_chain_certs > 0) { |
| 1852 | free(ckch->chain_certs); |
| 1853 | ckch->num_chain_certs = 0; |
| 1854 | ckch->chain_certs = NULL; |
| 1855 | } |
| 1856 | |
| 1857 | } |
| 1858 | |
| 1859 | /* checks if a key and cert exists in the ckch |
| 1860 | */ |
| 1861 | static int ssl_sock_is_ckch_valid(struct cert_key_and_chain *ckch) |
| 1862 | { |
| 1863 | return (ckch->cert != NULL && ckch->key != NULL); |
| 1864 | } |
| 1865 | |
| 1866 | |
| 1867 | /* Loads the contents of a crt file (path) into a cert_key_and_chain |
| 1868 | * This allows us to carry the contents of the file without having to |
| 1869 | * read the file multiple times. |
| 1870 | * |
| 1871 | * returns: |
| 1872 | * 0 on Success |
| 1873 | * 1 on SSL Failure |
| 1874 | * 2 on file not found |
| 1875 | */ |
| 1876 | static int ssl_sock_load_crt_file_into_ckch(const char *path, struct cert_key_and_chain *ckch, char **err) |
| 1877 | { |
| 1878 | |
| 1879 | BIO *in; |
| 1880 | X509 *ca = NULL; |
| 1881 | int ret = 1; |
| 1882 | |
| 1883 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 1884 | |
| 1885 | in = BIO_new(BIO_s_file()); |
| 1886 | if (in == NULL) |
| 1887 | goto end; |
| 1888 | |
| 1889 | if (BIO_read_filename(in, path) <= 0) |
| 1890 | goto end; |
| 1891 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1892 | /* Read Private Key */ |
| 1893 | ckch->key = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL); |
| 1894 | if (ckch->key == NULL) { |
| 1895 | memprintf(err, "%sunable to load private key from file '%s'.\n", |
| 1896 | err && *err ? *err : "", path); |
| 1897 | goto end; |
| 1898 | } |
| 1899 | |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 1900 | /* Seek back to beginning of file */ |
Thierry FOURNIER / OZON.IO | d44ea3f | 2016-10-14 00:49:21 +0200 | [diff] [blame] | 1901 | if (BIO_reset(in) == -1) { |
| 1902 | memprintf(err, "%san error occurred while reading the file '%s'.\n", |
| 1903 | err && *err ? *err : "", path); |
| 1904 | goto end; |
| 1905 | } |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 1906 | |
| 1907 | /* Read Certificate */ |
| 1908 | ckch->cert = PEM_read_bio_X509_AUX(in, NULL, NULL, NULL); |
| 1909 | if (ckch->cert == NULL) { |
| 1910 | memprintf(err, "%sunable to load certificate from file '%s'.\n", |
| 1911 | err && *err ? *err : "", path); |
| 1912 | goto end; |
| 1913 | } |
| 1914 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1915 | /* Read Certificate Chain */ |
| 1916 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 1917 | /* Grow the chain certs */ |
| 1918 | ckch->num_chain_certs++; |
| 1919 | ckch->chain_certs = realloc(ckch->chain_certs, (ckch->num_chain_certs * sizeof(X509 *))); |
| 1920 | |
| 1921 | /* use - 1 here since we just incremented it above */ |
| 1922 | ckch->chain_certs[ckch->num_chain_certs - 1] = ca; |
| 1923 | } |
| 1924 | ret = ERR_get_error(); |
| 1925 | if (ret && (ERR_GET_LIB(ret) != ERR_LIB_PEM && ERR_GET_REASON(ret) != PEM_R_NO_START_LINE)) { |
| 1926 | memprintf(err, "%sunable to load certificate chain from file '%s'.\n", |
| 1927 | err && *err ? *err : "", path); |
| 1928 | ret = 1; |
| 1929 | goto end; |
| 1930 | } |
| 1931 | |
| 1932 | ret = 0; |
| 1933 | |
| 1934 | end: |
| 1935 | |
| 1936 | ERR_clear_error(); |
| 1937 | if (in) |
| 1938 | BIO_free(in); |
| 1939 | |
| 1940 | /* Something went wrong in one of the reads */ |
| 1941 | if (ret != 0) |
| 1942 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 1943 | |
| 1944 | return ret; |
| 1945 | } |
| 1946 | |
| 1947 | /* Loads the info in ckch into ctx |
| 1948 | * Currently, this does not process any information about ocsp, dhparams or |
| 1949 | * sctl |
| 1950 | * Returns |
| 1951 | * 0 on success |
| 1952 | * 1 on failure |
| 1953 | */ |
| 1954 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 1955 | { |
| 1956 | int i = 0; |
| 1957 | |
| 1958 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 1959 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 1960 | err && *err ? *err : "", path); |
| 1961 | return 1; |
| 1962 | } |
| 1963 | |
| 1964 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 1965 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 1966 | err && *err ? *err : "", path); |
| 1967 | return 1; |
| 1968 | } |
| 1969 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1970 | /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */ |
| 1971 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 1972 | if (!SSL_CTX_add1_chain_cert(ctx, ckch->chain_certs[i])) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 1973 | memprintf(err, "%sunable to load chain certificate #%d into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 1974 | err && *err ? *err : "", (i+1), path); |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 1975 | return 1; |
| 1976 | } |
| 1977 | } |
| 1978 | |
| 1979 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 1980 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 1981 | err && *err ? *err : "", path); |
| 1982 | return 1; |
| 1983 | } |
| 1984 | |
| 1985 | return 0; |
| 1986 | } |
| 1987 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 1988 | |
| 1989 | static void ssl_sock_populate_sni_keytypes_hplr(const char *str, struct eb_root *sni_keytypes, int key_index) |
| 1990 | { |
| 1991 | struct sni_keytype *s_kt = NULL; |
| 1992 | struct ebmb_node *node; |
| 1993 | int i; |
| 1994 | |
| 1995 | for (i = 0; i < trash.size; i++) { |
| 1996 | if (!str[i]) |
| 1997 | break; |
| 1998 | trash.str[i] = tolower(str[i]); |
| 1999 | } |
| 2000 | trash.str[i] = 0; |
| 2001 | node = ebst_lookup(sni_keytypes, trash.str); |
| 2002 | if (!node) { |
| 2003 | /* CN not found in tree */ |
| 2004 | s_kt = malloc(sizeof(struct sni_keytype) + i + 1); |
| 2005 | /* Using memcpy here instead of strncpy. |
| 2006 | * strncpy will cause sig_abrt errors under certain versions of gcc with -O2 |
| 2007 | * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60792 |
| 2008 | */ |
| 2009 | memcpy(s_kt->name.key, trash.str, i+1); |
| 2010 | s_kt->keytypes = 0; |
| 2011 | ebst_insert(sni_keytypes, &s_kt->name); |
| 2012 | } else { |
| 2013 | /* CN found in tree */ |
| 2014 | s_kt = container_of(node, struct sni_keytype, name); |
| 2015 | } |
| 2016 | |
| 2017 | /* Mark that this CN has the keytype of key_index via keytypes mask */ |
| 2018 | s_kt->keytypes |= 1<<key_index; |
| 2019 | |
| 2020 | } |
| 2021 | |
| 2022 | |
| 2023 | /* Given a path that does not exist, try to check for path.rsa, path.dsa and path.ecdsa files. |
| 2024 | * If any are found, group these files into a set of SSL_CTX* |
| 2025 | * based on shared and unique CN and SAN entries. Add these SSL_CTX* to the SNI tree. |
| 2026 | * |
| 2027 | * This will allow the user to explictly group multiple cert/keys for a single purpose |
| 2028 | * |
| 2029 | * Returns |
| 2030 | * 0 on success |
| 2031 | * 1 on failure |
| 2032 | */ |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2033 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct proxy *curproxy, char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2034 | { |
| 2035 | char fp[MAXPATHLEN+1] = {0}; |
| 2036 | int n = 0; |
| 2037 | int i = 0; |
| 2038 | struct cert_key_and_chain certs_and_keys[SSL_SOCK_NUM_KEYTYPES] = { {0} }; |
| 2039 | struct eb_root sni_keytypes_map = { {0} }; |
| 2040 | struct ebmb_node *node; |
| 2041 | struct ebmb_node *next; |
| 2042 | /* Array of SSL_CTX pointers corresponding to each possible combo |
| 2043 | * of keytypes |
| 2044 | */ |
| 2045 | struct key_combo_ctx key_combos[SSL_SOCK_POSSIBLE_KT_COMBOS] = { {0} }; |
| 2046 | int rv = 0; |
| 2047 | X509_NAME *xname = NULL; |
| 2048 | char *str = NULL; |
| 2049 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2050 | STACK_OF(GENERAL_NAME) *names = NULL; |
| 2051 | #endif |
| 2052 | |
| 2053 | /* Load all possible certs and keys */ |
| 2054 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 2055 | struct stat buf; |
| 2056 | |
| 2057 | snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 2058 | if (stat(fp, &buf) == 0) { |
| 2059 | if (ssl_sock_load_crt_file_into_ckch(fp, &certs_and_keys[n], err) == 1) { |
| 2060 | rv = 1; |
| 2061 | goto end; |
| 2062 | } |
| 2063 | } |
| 2064 | } |
| 2065 | |
| 2066 | /* Process each ckch and update keytypes for each CN/SAN |
| 2067 | * for example, if CN/SAN www.a.com is associated with |
| 2068 | * certs with keytype 0 and 2, then at the end of the loop, |
| 2069 | * www.a.com will have: |
| 2070 | * keyindex = 0 | 1 | 4 = 5 |
| 2071 | */ |
| 2072 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 2073 | |
| 2074 | if (!ssl_sock_is_ckch_valid(&certs_and_keys[n])) |
| 2075 | continue; |
| 2076 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2077 | if (fcount) { |
Willy Tarreau | 24b892f | 2016-06-20 23:01:57 +0200 | [diff] [blame] | 2078 | for (i = 0; i < fcount; i++) |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2079 | ssl_sock_populate_sni_keytypes_hplr(sni_filter[i], &sni_keytypes_map, n); |
| 2080 | } else { |
| 2081 | /* A lot of the following code is OpenSSL boilerplate for processing CN's and SAN's, |
| 2082 | * so the line that contains logic is marked via comments |
| 2083 | */ |
| 2084 | xname = X509_get_subject_name(certs_and_keys[n].cert); |
| 2085 | i = -1; |
| 2086 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 2087 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2088 | ASN1_STRING *value; |
| 2089 | value = X509_NAME_ENTRY_get_data(entry); |
| 2090 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2091 | /* Important line is here */ |
| 2092 | ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2093 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2094 | OPENSSL_free(str); |
| 2095 | str = NULL; |
| 2096 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2097 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2098 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2099 | /* Do the above logic for each SAN */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2100 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2101 | names = X509_get_ext_d2i(certs_and_keys[n].cert, NID_subject_alt_name, NULL, NULL); |
| 2102 | if (names) { |
| 2103 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 2104 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2105 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2106 | if (name->type == GEN_DNS) { |
| 2107 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
| 2108 | /* Important line is here */ |
| 2109 | ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2110 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2111 | OPENSSL_free(str); |
| 2112 | str = NULL; |
| 2113 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2114 | } |
| 2115 | } |
| 2116 | } |
| 2117 | } |
| 2118 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2119 | } |
| 2120 | |
| 2121 | /* If no files found, return error */ |
| 2122 | if (eb_is_empty(&sni_keytypes_map)) { |
| 2123 | memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n", |
| 2124 | err && *err ? *err : "", path); |
| 2125 | rv = 1; |
| 2126 | goto end; |
| 2127 | } |
| 2128 | |
| 2129 | /* We now have a map of CN/SAN to keytypes that are loaded in |
| 2130 | * Iterate through the map to create the SSL_CTX's (if needed) |
| 2131 | * and add each CTX to the SNI tree |
| 2132 | * |
| 2133 | * Some math here: |
| 2134 | * There are 2^n - 1 possibile combinations, each unique |
| 2135 | * combination is denoted by the key in the map. Each key |
| 2136 | * has a value between 1 and 2^n - 1. Conveniently, the array |
| 2137 | * of SSL_CTX* is sized 2^n. So, we can simply use the i'th |
| 2138 | * entry in the array to correspond to the unique combo (key) |
| 2139 | * associated with i. This unique key combo (i) will be associated |
| 2140 | * with combos[i-1] |
| 2141 | */ |
| 2142 | |
| 2143 | node = ebmb_first(&sni_keytypes_map); |
| 2144 | while (node) { |
| 2145 | SSL_CTX *cur_ctx; |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 2146 | char cur_file[MAXPATHLEN+1]; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2147 | |
| 2148 | str = (char *)container_of(node, struct sni_keytype, name)->name.key; |
| 2149 | i = container_of(node, struct sni_keytype, name)->keytypes; |
| 2150 | cur_ctx = key_combos[i-1].ctx; |
| 2151 | |
| 2152 | if (cur_ctx == NULL) { |
| 2153 | /* need to create SSL_CTX */ |
| 2154 | cur_ctx = SSL_CTX_new(SSLv23_server_method()); |
| 2155 | if (cur_ctx == NULL) { |
| 2156 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 2157 | err && *err ? *err : ""); |
| 2158 | rv = 1; |
| 2159 | goto end; |
| 2160 | } |
| 2161 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 2162 | /* Load all required certs/keys/chains/OCSPs info into SSL_CTX */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2163 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 2164 | if (i & (1<<n)) { |
| 2165 | /* Key combo contains ckch[n] */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 2166 | snprintf(cur_file, MAXPATHLEN+1, "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 2167 | 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] | 2168 | SSL_CTX_free(cur_ctx); |
| 2169 | rv = 1; |
| 2170 | goto end; |
| 2171 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 2172 | |
| 2173 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 2174 | /* Load OCSP Info into context */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 2175 | if (ssl_sock_load_ocsp(cur_ctx, cur_file) < 0) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 2176 | if (err) |
| 2177 | 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] | 2178 | *err ? *err : "", cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 2179 | SSL_CTX_free(cur_ctx); |
| 2180 | rv = 1; |
| 2181 | goto end; |
| 2182 | } |
| 2183 | #endif |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2184 | } |
| 2185 | } |
| 2186 | |
| 2187 | /* Load DH params into the ctx to support DHE keys */ |
| 2188 | #ifndef OPENSSL_NO_DH |
| 2189 | if (ssl_dh_ptr_index >= 0) |
| 2190 | SSL_CTX_set_ex_data(cur_ctx, ssl_dh_ptr_index, NULL); |
| 2191 | |
| 2192 | rv = ssl_sock_load_dh_params(cur_ctx, NULL); |
| 2193 | if (rv < 0) { |
| 2194 | if (err) |
| 2195 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 2196 | *err ? *err : "", path); |
| 2197 | rv = 1; |
| 2198 | goto end; |
| 2199 | } |
| 2200 | #endif |
| 2201 | |
| 2202 | /* Update key_combos */ |
| 2203 | key_combos[i-1].ctx = cur_ctx; |
| 2204 | } |
| 2205 | |
| 2206 | /* Update SNI Tree */ |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2207 | key_combos[i-1].order = ssl_sock_add_cert_sni(cur_ctx, bind_conf, str, key_combos[i-1].order); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2208 | node = ebmb_next(node); |
| 2209 | } |
| 2210 | |
| 2211 | |
| 2212 | /* Mark a default context if none exists, using the ctx that has the most shared keys */ |
| 2213 | if (!bind_conf->default_ctx) { |
| 2214 | for (i = SSL_SOCK_POSSIBLE_KT_COMBOS - 1; i >= 0; i--) { |
| 2215 | if (key_combos[i].ctx) { |
| 2216 | bind_conf->default_ctx = key_combos[i].ctx; |
| 2217 | break; |
| 2218 | } |
| 2219 | } |
| 2220 | } |
| 2221 | |
| 2222 | end: |
| 2223 | |
| 2224 | if (names) |
| 2225 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
| 2226 | |
| 2227 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) |
| 2228 | ssl_sock_free_cert_key_and_chain_contents(&certs_and_keys[n]); |
| 2229 | |
| 2230 | node = ebmb_first(&sni_keytypes_map); |
| 2231 | while (node) { |
| 2232 | next = ebmb_next(node); |
| 2233 | ebmb_delete(node); |
| 2234 | node = next; |
| 2235 | } |
| 2236 | |
| 2237 | return rv; |
| 2238 | } |
| 2239 | #else |
| 2240 | /* This is a dummy, that just logs an error and returns error */ |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2241 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct proxy *curproxy, char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2242 | { |
| 2243 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 2244 | err && *err ? *err : "", path, strerror(errno)); |
| 2245 | return 1; |
| 2246 | } |
| 2247 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2248 | #endif /* #if OPENSSL_VERSION_NUMBER >= 0x1000200fL: Support for loading multiple certs into a single SSL_CTX */ |
| 2249 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2250 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 2251 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 2252 | */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2253 | static int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s, char **sni_filter, int fcount) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2254 | { |
| 2255 | BIO *in; |
| 2256 | X509 *x = NULL, *ca; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2257 | int i, err; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2258 | int ret = -1; |
| 2259 | int order = 0; |
| 2260 | X509_NAME *xname; |
| 2261 | char *str; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2262 | pem_password_cb *passwd_cb; |
| 2263 | void *passwd_cb_userdata; |
| 2264 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2265 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2266 | STACK_OF(GENERAL_NAME) *names; |
| 2267 | #endif |
| 2268 | |
| 2269 | in = BIO_new(BIO_s_file()); |
| 2270 | if (in == NULL) |
| 2271 | goto end; |
| 2272 | |
| 2273 | if (BIO_read_filename(in, file) <= 0) |
| 2274 | goto end; |
| 2275 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2276 | |
| 2277 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 2278 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 2279 | |
| 2280 | 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] | 2281 | if (x == NULL) |
| 2282 | goto end; |
| 2283 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2284 | if (fcount) { |
| 2285 | while (fcount--) |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2286 | order = ssl_sock_add_cert_sni(ctx, s, sni_filter[fcount], order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2287 | } |
| 2288 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2289 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2290 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 2291 | if (names) { |
| 2292 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 2293 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 2294 | if (name->type == GEN_DNS) { |
| 2295 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2296 | order = ssl_sock_add_cert_sni(ctx, s, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2297 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2298 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2299 | } |
| 2300 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2301 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2302 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2303 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2304 | xname = X509_get_subject_name(x); |
| 2305 | i = -1; |
| 2306 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 2307 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2308 | ASN1_STRING *value; |
| 2309 | |
| 2310 | value = X509_NAME_ENTRY_get_data(entry); |
| 2311 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2312 | order = ssl_sock_add_cert_sni(ctx, s, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2313 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2314 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2315 | } |
| 2316 | } |
| 2317 | |
| 2318 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 2319 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 2320 | goto end; |
| 2321 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2322 | #ifdef SSL_CTX_clear_extra_chain_certs |
| 2323 | SSL_CTX_clear_extra_chain_certs(ctx); |
| 2324 | #else |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2325 | if (ctx->extra_certs != NULL) { |
| 2326 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 2327 | ctx->extra_certs = NULL; |
| 2328 | } |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2329 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2330 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2331 | 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] | 2332 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 2333 | X509_free(ca); |
| 2334 | goto end; |
| 2335 | } |
| 2336 | } |
| 2337 | |
| 2338 | err = ERR_get_error(); |
| 2339 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 2340 | /* we successfully reached the last cert in the file */ |
| 2341 | ret = 1; |
| 2342 | } |
| 2343 | ERR_clear_error(); |
| 2344 | |
| 2345 | end: |
| 2346 | if (x) |
| 2347 | X509_free(x); |
| 2348 | |
| 2349 | if (in) |
| 2350 | BIO_free(in); |
| 2351 | |
| 2352 | return ret; |
| 2353 | } |
| 2354 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2355 | static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct proxy *curproxy, char **sni_filter, int fcount, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2356 | { |
| 2357 | int ret; |
| 2358 | SSL_CTX *ctx; |
| 2359 | |
| 2360 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 2361 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 2362 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 2363 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2364 | return 1; |
| 2365 | } |
| 2366 | |
| 2367 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 2368 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 2369 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2370 | SSL_CTX_free(ctx); |
| 2371 | return 1; |
| 2372 | } |
| 2373 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2374 | ret = ssl_sock_load_cert_chain_file(ctx, path, bind_conf, sni_filter, fcount); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2375 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 2376 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 2377 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2378 | if (ret < 0) /* serious error, must do that ourselves */ |
| 2379 | SSL_CTX_free(ctx); |
| 2380 | return 1; |
| 2381 | } |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 2382 | |
| 2383 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 2384 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 2385 | err && *err ? *err : "", path); |
| 2386 | return 1; |
| 2387 | } |
| 2388 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2389 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 2390 | * the tree, so it will be discovered and cleaned in time. |
| 2391 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2392 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2393 | /* store a NULL pointer to indicate we have not yet loaded |
| 2394 | a custom DH param file */ |
| 2395 | if (ssl_dh_ptr_index >= 0) { |
| 2396 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 2397 | } |
| 2398 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2399 | ret = ssl_sock_load_dh_params(ctx, path); |
| 2400 | if (ret < 0) { |
| 2401 | if (err) |
| 2402 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 2403 | *err ? *err : "", path); |
| 2404 | return 1; |
| 2405 | } |
| 2406 | #endif |
| 2407 | |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 2408 | #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] | 2409 | ret = ssl_sock_load_ocsp(ctx, path); |
| 2410 | if (ret < 0) { |
| 2411 | if (err) |
| 2412 | 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", |
| 2413 | *err ? *err : "", path); |
| 2414 | return 1; |
| 2415 | } |
| 2416 | #endif |
| 2417 | |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 2418 | #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] | 2419 | if (sctl_ex_index >= 0) { |
| 2420 | ret = ssl_sock_load_sctl(ctx, path); |
| 2421 | if (ret < 0) { |
| 2422 | if (err) |
| 2423 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
| 2424 | *err ? *err : "", path); |
| 2425 | return 1; |
| 2426 | } |
| 2427 | } |
| 2428 | #endif |
| 2429 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2430 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2431 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 2432 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 2433 | err && *err ? *err : ""); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2434 | return 1; |
| 2435 | } |
| 2436 | #endif |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2437 | if (!bind_conf->default_ctx) |
| 2438 | bind_conf->default_ctx = ctx; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2439 | |
| 2440 | return 0; |
| 2441 | } |
| 2442 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2443 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2444 | { |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 2445 | struct dirent **de_list; |
| 2446 | int i, n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2447 | DIR *dir; |
| 2448 | struct stat buf; |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 2449 | char *end; |
| 2450 | char fp[MAXPATHLEN+1]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2451 | int cfgerr = 0; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 2452 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 2453 | int is_bundle; |
| 2454 | int j; |
| 2455 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2456 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2457 | if (stat(path, &buf) == 0) { |
| 2458 | dir = opendir(path); |
| 2459 | if (!dir) |
| 2460 | return ssl_sock_load_cert_file(path, bind_conf, curproxy, NULL, 0, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2461 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2462 | /* strip trailing slashes, including first one */ |
| 2463 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 2464 | *end = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2465 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2466 | n = scandir(path, &de_list, 0, alphasort); |
| 2467 | if (n < 0) { |
| 2468 | memprintf(err, "%sunable to scan directory '%s' : %s.\n", |
| 2469 | err && *err ? *err : "", path, strerror(errno)); |
| 2470 | cfgerr++; |
| 2471 | } |
| 2472 | else { |
| 2473 | for (i = 0; i < n; i++) { |
| 2474 | struct dirent *de = de_list[i]; |
Emeric Brun | 2aab722 | 2014-06-18 18:15:09 +0200 | [diff] [blame] | 2475 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2476 | end = strrchr(de->d_name, '.'); |
| 2477 | if (end && (!strcmp(end, ".issuer") || !strcmp(end, ".ocsp") || !strcmp(end, ".sctl"))) |
| 2478 | goto ignore_entry; |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 2479 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2480 | snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name); |
| 2481 | if (stat(fp, &buf) != 0) { |
| 2482 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 2483 | err && *err ? *err : "", fp, strerror(errno)); |
| 2484 | cfgerr++; |
| 2485 | goto ignore_entry; |
| 2486 | } |
| 2487 | if (!S_ISREG(buf.st_mode)) |
| 2488 | goto ignore_entry; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 2489 | |
| 2490 | #if OPENSSL_VERSION_NUMBER >= 0x1000200fL |
| 2491 | is_bundle = 0; |
| 2492 | /* Check if current entry in directory is part of a multi-cert bundle */ |
| 2493 | |
| 2494 | if (end) { |
| 2495 | for (j = 0; j < SSL_SOCK_NUM_KEYTYPES; j++) { |
| 2496 | if (!strcmp(end + 1, SSL_SOCK_KEYTYPE_NAMES[j])) { |
| 2497 | is_bundle = 1; |
| 2498 | break; |
| 2499 | } |
| 2500 | } |
| 2501 | |
| 2502 | if (is_bundle) { |
| 2503 | char dp[MAXPATHLEN+1] = {0}; /* this will be the filename w/o the keytype */ |
| 2504 | int dp_len; |
| 2505 | |
| 2506 | dp_len = end - de->d_name; |
| 2507 | snprintf(dp, dp_len + 1, "%s", de->d_name); |
| 2508 | |
| 2509 | /* increment i and free de until we get to a non-bundle cert |
| 2510 | * Note here that we look at de_list[i + 1] before freeing de |
| 2511 | * this is important since ignore_entry will free de |
| 2512 | */ |
| 2513 | while (i + 1 < n && !strncmp(de_list[i + 1]->d_name, dp, dp_len)) { |
| 2514 | free(de); |
| 2515 | i++; |
| 2516 | de = de_list[i]; |
| 2517 | } |
| 2518 | |
| 2519 | snprintf(fp, sizeof(fp), "%s/%s", path, dp); |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2520 | ssl_sock_load_multi_cert(fp, bind_conf, curproxy, NULL, 0, err); |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 2521 | |
| 2522 | /* Successfully processed the bundle */ |
| 2523 | goto ignore_entry; |
| 2524 | } |
| 2525 | } |
| 2526 | |
| 2527 | #endif |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2528 | cfgerr += ssl_sock_load_cert_file(fp, bind_conf, curproxy, NULL, 0, err); |
| 2529 | ignore_entry: |
| 2530 | free(de); |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 2531 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2532 | free(de_list); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2533 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2534 | closedir(dir); |
| 2535 | return cfgerr; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2536 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2537 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2538 | cfgerr = ssl_sock_load_multi_cert(path, bind_conf, curproxy, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2539 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2540 | return cfgerr; |
| 2541 | } |
| 2542 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 2543 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 2544 | * done once. Zero is returned if the operation fails. No error is returned |
| 2545 | * if the random is said as not implemented, because we expect that openssl |
| 2546 | * will use another method once needed. |
| 2547 | */ |
| 2548 | static int ssl_initialize_random() |
| 2549 | { |
| 2550 | unsigned char random; |
| 2551 | static int random_initialized = 0; |
| 2552 | |
| 2553 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 2554 | random_initialized = 1; |
| 2555 | |
| 2556 | return random_initialized; |
| 2557 | } |
| 2558 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2559 | int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
| 2560 | { |
Emmanuel Hocdet | 5e0e6e4 | 2016-05-13 11:18:50 +0200 | [diff] [blame] | 2561 | char thisline[LINESIZE*CRTLIST_FACTOR]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2562 | FILE *f; |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 2563 | struct stat buf; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2564 | int linenum = 0; |
| 2565 | int cfgerr = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2566 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2567 | if ((f = fopen(file, "r")) == NULL) { |
| 2568 | memprintf(err, "cannot open file '%s' : %s", file, strerror(errno)); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2569 | return 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2570 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2571 | |
| 2572 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 2573 | int arg; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2574 | int newarg; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2575 | char *end; |
Emmanuel Hocdet | 5e0e6e4 | 2016-05-13 11:18:50 +0200 | [diff] [blame] | 2576 | char *args[MAX_LINE_ARGS*CRTLIST_FACTOR + 1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2577 | char *line = thisline; |
| 2578 | |
| 2579 | linenum++; |
| 2580 | end = line + strlen(line); |
| 2581 | if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') { |
| 2582 | /* Check if we reached the limit and the last char is not \n. |
| 2583 | * Watch out for the last line without the terminating '\n'! |
| 2584 | */ |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2585 | memprintf(err, "line %d too long in file '%s', limit is %d characters", |
| 2586 | linenum, file, (int)sizeof(thisline)-1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2587 | cfgerr = 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2588 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2589 | } |
| 2590 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2591 | arg = 0; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2592 | newarg = 1; |
| 2593 | while (*line) { |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2594 | if (*line == '#' || *line == '\n' || *line == '\r') { |
| 2595 | /* end of string, end of loop */ |
| 2596 | *line = 0; |
| 2597 | break; |
| 2598 | } |
| 2599 | else if (isspace(*line)) { |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2600 | newarg = 1; |
| 2601 | *line = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2602 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2603 | else if (newarg) { |
Emmanuel Hocdet | 5e0e6e4 | 2016-05-13 11:18:50 +0200 | [diff] [blame] | 2604 | if (arg == MAX_LINE_ARGS*CRTLIST_FACTOR) { |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2605 | memprintf(err, "too many args on line %d in file '%s'.", |
| 2606 | linenum, file); |
| 2607 | cfgerr = 1; |
| 2608 | break; |
| 2609 | } |
| 2610 | newarg = 0; |
| 2611 | args[arg++] = line; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2612 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2613 | line++; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2614 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2615 | if (cfgerr) |
| 2616 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2617 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2618 | /* empty line */ |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 2619 | if (!arg) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2620 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2621 | |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 2622 | if (stat(args[0], &buf) == 0) { |
| 2623 | cfgerr = ssl_sock_load_cert_file(args[0], bind_conf, curproxy, &args[1], arg-1, err); |
| 2624 | } else { |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 2625 | cfgerr = ssl_sock_load_multi_cert(args[0], bind_conf, curproxy, &args[1], arg-1, err); |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 2626 | } |
| 2627 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2628 | if (cfgerr) { |
| 2629 | 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] | 2630 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2631 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2632 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2633 | fclose(f); |
| 2634 | return cfgerr; |
| 2635 | } |
| 2636 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2637 | #ifndef SSL_OP_CIPHER_SERVER_PREFERENCE /* needs OpenSSL >= 0.9.7 */ |
| 2638 | #define SSL_OP_CIPHER_SERVER_PREFERENCE 0 |
| 2639 | #endif |
| 2640 | |
| 2641 | #ifndef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION /* needs OpenSSL >= 0.9.7 */ |
| 2642 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 |
Willy Tarreau | 7d588ee | 2012-11-26 18:47:31 +0100 | [diff] [blame] | 2643 | #define SSL_renegotiate_pending(arg) 0 |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2644 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2645 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 0.9.8 */ |
| 2646 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 2647 | #endif |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 2648 | #ifndef SSL_OP_NO_TICKET /* needs OpenSSL >= 0.9.8 */ |
| 2649 | #define SSL_OP_NO_TICKET 0 |
| 2650 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2651 | #ifndef SSL_OP_NO_COMPRESSION /* needs OpenSSL >= 0.9.9 */ |
| 2652 | #define SSL_OP_NO_COMPRESSION 0 |
| 2653 | #endif |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 2654 | #ifndef SSL_OP_NO_TLSv1_1 /* needs OpenSSL >= 1.0.1 */ |
| 2655 | #define SSL_OP_NO_TLSv1_1 0 |
| 2656 | #endif |
| 2657 | #ifndef SSL_OP_NO_TLSv1_2 /* needs OpenSSL >= 1.0.1 */ |
| 2658 | #define SSL_OP_NO_TLSv1_2 0 |
| 2659 | #endif |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2660 | #ifndef SSL_OP_SINGLE_DH_USE /* needs OpenSSL >= 0.9.6 */ |
| 2661 | #define SSL_OP_SINGLE_DH_USE 0 |
| 2662 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2663 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 1.0.0 */ |
| 2664 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 2665 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2666 | #ifndef SSL_MODE_RELEASE_BUFFERS /* needs OpenSSL >= 1.0.0 */ |
| 2667 | #define SSL_MODE_RELEASE_BUFFERS 0 |
| 2668 | #endif |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 2669 | #ifndef SSL_MODE_SMALL_BUFFERS /* needs small_records.patch */ |
| 2670 | #define SSL_MODE_SMALL_BUFFERS 0 |
| 2671 | #endif |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2672 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2673 | int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, SSL_CTX *ctx, struct proxy *curproxy) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2674 | { |
| 2675 | int cfgerr = 0; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2676 | int verify = SSL_VERIFY_NONE; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 2677 | long ssloptions = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2678 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 2679 | SSL_OP_NO_SSLv2 | |
| 2680 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2681 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2682 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 2683 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
| 2684 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 2685 | long sslmode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2686 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 2687 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 2688 | SSL_MODE_RELEASE_BUFFERS | |
| 2689 | SSL_MODE_SMALL_BUFFERS; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2690 | STACK_OF(SSL_CIPHER) * ciphers = NULL; |
Willy Tarreau | a616ba6 | 2014-10-26 06:49:19 +0100 | [diff] [blame] | 2691 | SSL_CIPHER * cipher = NULL; |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 2692 | char cipher_description[128]; |
| 2693 | /* The description of ciphers using an Ephemeral Diffie Hellman key exchange |
| 2694 | contains " Kx=DH " or " Kx=DH(". Beware of " Kx=DH/", |
| 2695 | which is not ephemeral DH. */ |
| 2696 | const char dhe_description[] = " Kx=DH "; |
| 2697 | const char dhe_export_description[] = " Kx=DH("; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2698 | int idx = 0; |
| 2699 | int dhe_found = 0; |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2700 | SSL *ssl = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2701 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 2702 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 2703 | if (!ssl_initialize_random()) { |
| 2704 | Alert("OpenSSL random data generator initialization failed.\n"); |
| 2705 | cfgerr++; |
| 2706 | } |
| 2707 | |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2708 | if (bind_conf->ssl_options & BC_SSL_O_NO_SSLV3) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2709 | ssloptions |= SSL_OP_NO_SSLv3; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2710 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV10) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2711 | ssloptions |= SSL_OP_NO_TLSv1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2712 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV11) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 2713 | ssloptions |= SSL_OP_NO_TLSv1_1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2714 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV12) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 2715 | ssloptions |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2716 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 2717 | ssloptions |= SSL_OP_NO_TICKET; |
Jérémie Courrèges-Anglas | 17c3f62 | 2015-07-25 16:50:52 -0600 | [diff] [blame] | 2718 | if (bind_conf->ssl_options & BC_SSL_O_USE_SSLV3) { |
| 2719 | #ifndef OPENSSL_NO_SSL3 |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 2720 | SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()); |
Jérémie Courrèges-Anglas | 17c3f62 | 2015-07-25 16:50:52 -0600 | [diff] [blame] | 2721 | #else |
| 2722 | Alert("SSLv3 support requested but unavailable.\n"); |
| 2723 | cfgerr++; |
| 2724 | #endif |
| 2725 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 2726 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV10) |
| 2727 | SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()); |
| 2728 | #if SSL_OP_NO_TLSv1_1 |
| 2729 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV11) |
| 2730 | SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()); |
| 2731 | #endif |
| 2732 | #if SSL_OP_NO_TLSv1_2 |
| 2733 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV12) |
| 2734 | SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()); |
| 2735 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2736 | |
| 2737 | SSL_CTX_set_options(ctx, ssloptions); |
| 2738 | SSL_CTX_set_mode(ctx, sslmode); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2739 | switch (bind_conf->verify) { |
| 2740 | case SSL_SOCK_VERIFY_NONE: |
| 2741 | verify = SSL_VERIFY_NONE; |
| 2742 | break; |
| 2743 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 2744 | verify = SSL_VERIFY_PEER; |
| 2745 | break; |
| 2746 | case SSL_SOCK_VERIFY_REQUIRED: |
| 2747 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 2748 | break; |
| 2749 | } |
| 2750 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 2751 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2752 | if (bind_conf->ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2753 | /* load CAfile to verify */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2754 | if (!SSL_CTX_load_verify_locations(ctx, bind_conf->ca_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2755 | Alert("Proxy '%s': unable to load CA file '%s' for bind '%s' at [%s:%d].\n", |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2756 | curproxy->id, bind_conf->ca_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2757 | cfgerr++; |
| 2758 | } |
| 2759 | /* set CA names fo client cert request, function returns void */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2760 | SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(bind_conf->ca_file)); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2761 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2762 | else { |
| 2763 | Alert("Proxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 2764 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 2765 | cfgerr++; |
| 2766 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 2767 | #ifdef X509_V_FLAG_CRL_CHECK |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2768 | if (bind_conf->crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2769 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 2770 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2771 | if (!store || !X509_STORE_load_locations(store, bind_conf->crl_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2772 | Alert("Proxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
Alexander Rigbo | fc65af0 | 2015-04-07 14:02:16 +0200 | [diff] [blame] | 2773 | curproxy->id, bind_conf->crl_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2774 | cfgerr++; |
| 2775 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 2776 | else { |
| 2777 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 2778 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2779 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 2780 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2781 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2782 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2783 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 2784 | #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] | 2785 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 2786 | if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
| 2787 | Alert("Proxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 2788 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 2789 | cfgerr++; |
| 2790 | } |
| 2791 | } |
| 2792 | #endif |
| 2793 | |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 2794 | if (global.tune.ssllifetime) |
| 2795 | SSL_CTX_set_timeout(ctx, global.tune.ssllifetime); |
| 2796 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2797 | shared_context_set_cache(ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2798 | if (bind_conf->ciphers && |
| 2799 | !SSL_CTX_set_cipher_list(ctx, bind_conf->ciphers)) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2800 | Alert("Proxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2801 | curproxy->id, bind_conf->ciphers, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2802 | cfgerr++; |
| 2803 | } |
| 2804 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2805 | /* If tune.ssl.default-dh-param has not been set, |
| 2806 | neither has ssl-default-dh-file and no static DH |
| 2807 | params were in the certificate file. */ |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2808 | if (global.tune.ssl_default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2809 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2810 | (ssl_dh_ptr_index == -1 || |
| 2811 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 2812 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2813 | ssl = SSL_new(ctx); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2814 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2815 | if (ssl) { |
| 2816 | ciphers = SSL_get_ciphers(ssl); |
| 2817 | |
| 2818 | if (ciphers) { |
| 2819 | for (idx = 0; idx < sk_SSL_CIPHER_num(ciphers); idx++) { |
| 2820 | cipher = sk_SSL_CIPHER_value(ciphers, idx); |
| 2821 | if (SSL_CIPHER_description(cipher, cipher_description, sizeof (cipher_description)) == cipher_description) { |
| 2822 | if (strstr(cipher_description, dhe_description) != NULL || |
| 2823 | strstr(cipher_description, dhe_export_description) != NULL) { |
| 2824 | dhe_found = 1; |
| 2825 | break; |
| 2826 | } |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 2827 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2828 | } |
| 2829 | } |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2830 | SSL_free(ssl); |
| 2831 | ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 2832 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2833 | |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 2834 | if (dhe_found) { |
| 2835 | 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] | 2836 | } |
| 2837 | |
| 2838 | global.tune.ssl_default_dh_param = 1024; |
| 2839 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2840 | |
| 2841 | #ifndef OPENSSL_NO_DH |
| 2842 | if (global.tune.ssl_default_dh_param >= 1024) { |
| 2843 | if (local_dh_1024 == NULL) { |
| 2844 | local_dh_1024 = ssl_get_dh_1024(); |
| 2845 | } |
| 2846 | if (global.tune.ssl_default_dh_param >= 2048) { |
| 2847 | if (local_dh_2048 == NULL) { |
| 2848 | local_dh_2048 = ssl_get_dh_2048(); |
| 2849 | } |
| 2850 | if (global.tune.ssl_default_dh_param >= 4096) { |
| 2851 | if (local_dh_4096 == NULL) { |
| 2852 | local_dh_4096 = ssl_get_dh_4096(); |
| 2853 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2854 | } |
| 2855 | } |
| 2856 | } |
| 2857 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2858 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2859 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 2860 | #if OPENSSL_VERSION_NUMBER >= 0x00907000L |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2861 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 2862 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2863 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2864 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 2865 | if (bind_conf->npn_str) |
| 2866 | SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, bind_conf); |
| 2867 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 2868 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 2869 | if (bind_conf->alpn_str) |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 2870 | SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, bind_conf); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 2871 | #endif |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2872 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2873 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2874 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2875 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2876 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2877 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 2878 | { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2879 | int i; |
| 2880 | EC_KEY *ecdh; |
| 2881 | |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 2882 | i = OBJ_sn2nid(bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2883 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
| 2884 | Alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 2885 | curproxy->id, bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE, |
| 2886 | bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2887 | cfgerr++; |
| 2888 | } |
| 2889 | else { |
| 2890 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 2891 | EC_KEY_free(ecdh); |
| 2892 | } |
| 2893 | } |
| 2894 | #endif |
| 2895 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2896 | return cfgerr; |
| 2897 | } |
| 2898 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2899 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 2900 | { |
| 2901 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 2902 | size_t prefixlen, suffixlen; |
| 2903 | |
| 2904 | /* Trivial case */ |
| 2905 | if (strcmp(pattern, hostname) == 0) |
| 2906 | return 1; |
| 2907 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2908 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 2909 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 2910 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 2911 | pattern_wildcard = NULL; |
| 2912 | pattern_left_label_end = pattern; |
| 2913 | while (*pattern_left_label_end != '.') { |
| 2914 | switch (*pattern_left_label_end) { |
| 2915 | case 0: |
| 2916 | /* End of label not found */ |
| 2917 | return 0; |
| 2918 | case '*': |
| 2919 | /* If there is more than one wildcards */ |
| 2920 | if (pattern_wildcard) |
| 2921 | return 0; |
| 2922 | pattern_wildcard = pattern_left_label_end; |
| 2923 | break; |
| 2924 | } |
| 2925 | pattern_left_label_end++; |
| 2926 | } |
| 2927 | |
| 2928 | /* If it's not trivial and there is no wildcard, it can't |
| 2929 | * match */ |
| 2930 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2931 | return 0; |
| 2932 | |
| 2933 | /* Make sure all labels match except the leftmost */ |
| 2934 | hostname_left_label_end = strchr(hostname, '.'); |
| 2935 | if (!hostname_left_label_end |
| 2936 | || strcmp(pattern_left_label_end, hostname_left_label_end) != 0) |
| 2937 | return 0; |
| 2938 | |
| 2939 | /* Make sure the leftmost label of the hostname is long enough |
| 2940 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 2941 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2942 | return 0; |
| 2943 | |
| 2944 | /* Finally compare the string on either side of the |
| 2945 | * wildcard */ |
| 2946 | prefixlen = pattern_wildcard - pattern; |
| 2947 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 2948 | if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0)) |
| 2949 | || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2950 | return 0; |
| 2951 | |
| 2952 | return 1; |
| 2953 | } |
| 2954 | |
| 2955 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 2956 | { |
| 2957 | SSL *ssl; |
| 2958 | struct connection *conn; |
| 2959 | char *servername; |
| 2960 | |
| 2961 | int depth; |
| 2962 | X509 *cert; |
| 2963 | STACK_OF(GENERAL_NAME) *alt_names; |
| 2964 | int i; |
| 2965 | X509_NAME *cert_subject; |
| 2966 | char *str; |
| 2967 | |
| 2968 | if (ok == 0) |
| 2969 | return ok; |
| 2970 | |
| 2971 | ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 2972 | conn = SSL_get_app_data(ssl); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2973 | |
| 2974 | servername = objt_server(conn->target)->ssl_ctx.verify_host; |
| 2975 | |
| 2976 | /* We only need to verify the CN on the actual server cert, |
| 2977 | * not the indirect CAs */ |
| 2978 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 2979 | if (depth != 0) |
| 2980 | return ok; |
| 2981 | |
| 2982 | /* At this point, the cert is *not* OK unless we can find a |
| 2983 | * hostname match */ |
| 2984 | ok = 0; |
| 2985 | |
| 2986 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 2987 | /* It seems like this might happen if verify peer isn't set */ |
| 2988 | if (!cert) |
| 2989 | return ok; |
| 2990 | |
| 2991 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 2992 | if (alt_names) { |
| 2993 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 2994 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 2995 | if (name->type == GEN_DNS) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 2996 | #if OPENSSL_VERSION_NUMBER < 0x00907000L |
| 2997 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 2998 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2999 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 3000 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3001 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 3002 | OPENSSL_free(str); |
| 3003 | } |
| 3004 | } |
| 3005 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 3006 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3007 | } |
| 3008 | |
| 3009 | cert_subject = X509_get_subject_name(cert); |
| 3010 | i = -1; |
| 3011 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 3012 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3013 | ASN1_STRING *value; |
| 3014 | value = X509_NAME_ENTRY_get_data(entry); |
| 3015 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3016 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 3017 | OPENSSL_free(str); |
| 3018 | } |
| 3019 | } |
| 3020 | |
| 3021 | return ok; |
| 3022 | } |
| 3023 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3024 | /* prepare ssl context from servers options. Returns an error count */ |
| 3025 | int ssl_sock_prepare_srv_ctx(struct server *srv, struct proxy *curproxy) |
| 3026 | { |
| 3027 | int cfgerr = 0; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 3028 | long options = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3029 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3030 | SSL_OP_NO_SSLv2 | |
| 3031 | SSL_OP_NO_COMPRESSION; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 3032 | long mode = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3033 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3034 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3035 | SSL_MODE_RELEASE_BUFFERS | |
| 3036 | SSL_MODE_SMALL_BUFFERS; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3037 | int verify = SSL_VERIFY_NONE; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3038 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 3039 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 3040 | if (!ssl_initialize_random()) { |
| 3041 | Alert("OpenSSL random data generator initialization failed.\n"); |
| 3042 | cfgerr++; |
| 3043 | } |
| 3044 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 3045 | /* Automatic memory computations need to know we use SSL there */ |
| 3046 | global.ssl_used_backend = 1; |
| 3047 | |
| 3048 | /* Initiate SSL context for current server */ |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3049 | srv->ssl_ctx.reused_sess = NULL; |
| 3050 | if (srv->use_ssl) |
| 3051 | srv->xprt = &ssl_sock; |
| 3052 | if (srv->check.use_ssl) |
Cyril Bonté | 9ce1311 | 2014-11-15 22:41:27 +0100 | [diff] [blame] | 3053 | srv->check.xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3054 | |
| 3055 | srv->ssl_ctx.ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3056 | if (!srv->ssl_ctx.ctx) { |
| 3057 | Alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 3058 | proxy_type_str(curproxy), curproxy->id, |
| 3059 | srv->id); |
| 3060 | cfgerr++; |
| 3061 | return cfgerr; |
| 3062 | } |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 3063 | if (srv->ssl_ctx.client_crt) { |
| 3064 | if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) { |
| 3065 | Alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n", |
| 3066 | proxy_type_str(curproxy), curproxy->id, |
| 3067 | srv->id, srv->ssl_ctx.client_crt); |
| 3068 | cfgerr++; |
| 3069 | } |
| 3070 | else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) { |
| 3071 | Alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n", |
| 3072 | proxy_type_str(curproxy), curproxy->id, |
| 3073 | srv->id, srv->ssl_ctx.client_crt); |
| 3074 | cfgerr++; |
| 3075 | } |
| 3076 | else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) { |
| 3077 | Alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3078 | proxy_type_str(curproxy), curproxy->id, |
| 3079 | srv->id, srv->ssl_ctx.client_crt); |
| 3080 | cfgerr++; |
| 3081 | } |
| 3082 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3083 | |
| 3084 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_SSLV3) |
| 3085 | options |= SSL_OP_NO_SSLv3; |
| 3086 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV10) |
| 3087 | options |= SSL_OP_NO_TLSv1; |
| 3088 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV11) |
| 3089 | options |= SSL_OP_NO_TLSv1_1; |
| 3090 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV12) |
| 3091 | options |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 3092 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 3093 | options |= SSL_OP_NO_TICKET; |
Jérémie Courrèges-Anglas | 17c3f62 | 2015-07-25 16:50:52 -0600 | [diff] [blame] | 3094 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_SSLV3) { |
| 3095 | #ifndef OPENSSL_NO_SSL3 |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3096 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, SSLv3_client_method()); |
Jérémie Courrèges-Anglas | 17c3f62 | 2015-07-25 16:50:52 -0600 | [diff] [blame] | 3097 | #else |
Thierry FOURNIER | bc96534 | 2015-08-26 08:21:26 +0200 | [diff] [blame] | 3098 | Alert("SSLv3 support requested but unavailable.\n"); |
Jérémie Courrèges-Anglas | 17c3f62 | 2015-07-25 16:50:52 -0600 | [diff] [blame] | 3099 | cfgerr++; |
| 3100 | #endif |
| 3101 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3102 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV10) |
| 3103 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_client_method()); |
| 3104 | #if SSL_OP_NO_TLSv1_1 |
| 3105 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV11) |
| 3106 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_1_client_method()); |
| 3107 | #endif |
| 3108 | #if SSL_OP_NO_TLSv1_2 |
| 3109 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV12) |
| 3110 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_2_client_method()); |
| 3111 | #endif |
| 3112 | |
| 3113 | SSL_CTX_set_options(srv->ssl_ctx.ctx, options); |
| 3114 | SSL_CTX_set_mode(srv->ssl_ctx.ctx, mode); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3115 | |
| 3116 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 3117 | verify = SSL_VERIFY_PEER; |
| 3118 | |
| 3119 | switch (srv->ssl_ctx.verify) { |
| 3120 | case SSL_SOCK_VERIFY_NONE: |
| 3121 | verify = SSL_VERIFY_NONE; |
| 3122 | break; |
| 3123 | case SSL_SOCK_VERIFY_REQUIRED: |
| 3124 | verify = SSL_VERIFY_PEER; |
| 3125 | break; |
| 3126 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3127 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3128 | verify, |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3129 | srv->ssl_ctx.verify_host ? ssl_sock_srv_verifycbk : NULL); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3130 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3131 | if (srv->ssl_ctx.ca_file) { |
| 3132 | /* load CAfile to verify */ |
| 3133 | if (!SSL_CTX_load_verify_locations(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file, NULL)) { |
Willy Tarreau | 07ba08b | 2014-02-16 19:22:08 +0100 | [diff] [blame] | 3134 | Alert("Proxy '%s', server '%s' [%s:%d] unable to load CA file '%s'.\n", |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3135 | curproxy->id, srv->id, |
| 3136 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
| 3137 | cfgerr++; |
| 3138 | } |
| 3139 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3140 | else { |
| 3141 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Willy Tarreau | 07ba08b | 2014-02-16 19:22:08 +0100 | [diff] [blame] | 3142 | 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", |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3143 | curproxy->id, srv->id, |
| 3144 | srv->conf.file, srv->conf.line); |
| 3145 | else |
Willy Tarreau | 07ba08b | 2014-02-16 19:22:08 +0100 | [diff] [blame] | 3146 | Alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n", |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 3147 | curproxy->id, srv->id, |
| 3148 | srv->conf.file, srv->conf.line); |
| 3149 | cfgerr++; |
| 3150 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3151 | #ifdef X509_V_FLAG_CRL_CHECK |
| 3152 | if (srv->ssl_ctx.crl_file) { |
| 3153 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 3154 | |
| 3155 | if (!store || !X509_STORE_load_locations(store, srv->ssl_ctx.crl_file, NULL)) { |
Willy Tarreau | 07ba08b | 2014-02-16 19:22:08 +0100 | [diff] [blame] | 3156 | Alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n", |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3157 | curproxy->id, srv->id, |
| 3158 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
| 3159 | cfgerr++; |
| 3160 | } |
| 3161 | else { |
| 3162 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 3163 | } |
| 3164 | } |
| 3165 | #endif |
| 3166 | } |
| 3167 | |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 3168 | if (global.tune.ssllifetime) |
| 3169 | SSL_CTX_set_timeout(srv->ssl_ctx.ctx, global.tune.ssllifetime); |
| 3170 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3171 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_OFF); |
| 3172 | if (srv->ssl_ctx.ciphers && |
| 3173 | !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) { |
| 3174 | Alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 3175 | curproxy->id, srv->id, |
| 3176 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
| 3177 | cfgerr++; |
| 3178 | } |
| 3179 | |
| 3180 | return cfgerr; |
| 3181 | } |
| 3182 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3183 | /* 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] | 3184 | * be NULL, in which case nothing is done. Returns the number of errors |
| 3185 | * encountered. |
| 3186 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3187 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf, struct proxy *px) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3188 | { |
| 3189 | struct ebmb_node *node; |
| 3190 | struct sni_ctx *sni; |
| 3191 | int err = 0; |
| 3192 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3193 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3194 | return 0; |
| 3195 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 3196 | /* Automatic memory computations need to know we use SSL there */ |
| 3197 | global.ssl_used_frontend = 1; |
| 3198 | |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 3199 | if (bind_conf->default_ctx) |
| 3200 | err += ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ctx, px); |
| 3201 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3202 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3203 | while (node) { |
| 3204 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 3205 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 3206 | /* only initialize the CTX on its first occurrence and |
| 3207 | if it is not the default_ctx */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3208 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3209 | node = ebmb_next(node); |
| 3210 | } |
| 3211 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3212 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3213 | while (node) { |
| 3214 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 3215 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 3216 | /* only initialize the CTX on its first occurrence and |
| 3217 | if it is not the default_ctx */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3218 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3219 | node = ebmb_next(node); |
| 3220 | } |
| 3221 | return err; |
| 3222 | } |
| 3223 | |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 3224 | |
| 3225 | /* release ssl context allocated for servers. */ |
| 3226 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 3227 | { |
| 3228 | if (srv->ssl_ctx.ctx) |
| 3229 | SSL_CTX_free(srv->ssl_ctx.ctx); |
| 3230 | } |
| 3231 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3232 | /* 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] | 3233 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 3234 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3235 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3236 | { |
| 3237 | struct ebmb_node *node, *back; |
| 3238 | struct sni_ctx *sni; |
| 3239 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3240 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3241 | return; |
| 3242 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3243 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3244 | while (node) { |
| 3245 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 3246 | back = ebmb_next(node); |
| 3247 | ebmb_delete(node); |
| 3248 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 3249 | SSL_CTX_free(sni->ctx); |
| 3250 | free(sni); |
| 3251 | node = back; |
| 3252 | } |
| 3253 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3254 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3255 | while (node) { |
| 3256 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 3257 | back = ebmb_next(node); |
| 3258 | ebmb_delete(node); |
| 3259 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 3260 | SSL_CTX_free(sni->ctx); |
| 3261 | free(sni); |
| 3262 | node = back; |
| 3263 | } |
| 3264 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3265 | bind_conf->default_ctx = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3266 | } |
| 3267 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3268 | /* Load CA cert file and private key used to generate certificates */ |
| 3269 | int |
| 3270 | ssl_sock_load_ca(struct bind_conf *bind_conf, struct proxy *px) |
| 3271 | { |
| 3272 | FILE *fp; |
| 3273 | X509 *cacert = NULL; |
| 3274 | EVP_PKEY *capkey = NULL; |
| 3275 | int err = 0; |
| 3276 | |
| 3277 | if (!bind_conf || !bind_conf->generate_certs) |
| 3278 | return err; |
| 3279 | |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 3280 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 3281 | if (global.tune.ssl_ctx_cache) |
| 3282 | ssl_ctx_lru_tree = lru64_new(global.tune.ssl_ctx_cache); |
| 3283 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 3284 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 3285 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3286 | if (!bind_conf->ca_sign_file) { |
| 3287 | Alert("Proxy '%s': cannot enable certificate generation, " |
| 3288 | "no CA certificate File configured at [%s:%d].\n", |
| 3289 | px->id, bind_conf->file, bind_conf->line); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3290 | goto load_error; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 3291 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3292 | |
| 3293 | /* read in the CA certificate */ |
| 3294 | if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) { |
| 3295 | Alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 3296 | 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] | 3297 | goto load_error; |
| 3298 | } |
| 3299 | if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) { |
| 3300 | Alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 3301 | 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] | 3302 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3303 | } |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 3304 | rewind(fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3305 | if (!(capkey = PEM_read_PrivateKey(fp, NULL, NULL, bind_conf->ca_sign_pass))) { |
| 3306 | Alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n", |
| 3307 | 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] | 3308 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3309 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3310 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 3311 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3312 | bind_conf->ca_sign_cert = cacert; |
| 3313 | bind_conf->ca_sign_pkey = capkey; |
| 3314 | return err; |
| 3315 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 3316 | read_error: |
| 3317 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3318 | if (capkey) EVP_PKEY_free(capkey); |
| 3319 | if (cacert) X509_free(cacert); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 3320 | load_error: |
| 3321 | bind_conf->generate_certs = 0; |
| 3322 | err++; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 3323 | return err; |
| 3324 | } |
| 3325 | |
| 3326 | /* Release CA cert and private key used to generate certificated */ |
| 3327 | void |
| 3328 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 3329 | { |
| 3330 | if (!bind_conf) |
| 3331 | return; |
| 3332 | |
| 3333 | if (bind_conf->ca_sign_pkey) |
| 3334 | EVP_PKEY_free(bind_conf->ca_sign_pkey); |
| 3335 | if (bind_conf->ca_sign_cert) |
| 3336 | X509_free(bind_conf->ca_sign_cert); |
| 3337 | } |
| 3338 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3339 | /* |
| 3340 | * This function is called if SSL * context is not yet allocated. The function |
| 3341 | * is designed to be called before any other data-layer operation and sets the |
| 3342 | * handshake flag on the connection. It is safe to call it multiple times. |
| 3343 | * It returns 0 on success and -1 in error case. |
| 3344 | */ |
| 3345 | static int ssl_sock_init(struct connection *conn) |
| 3346 | { |
| 3347 | /* already initialized */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3348 | if (conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3349 | return 0; |
| 3350 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 3351 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 3352 | return 0; |
| 3353 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3354 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 3355 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 3356 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3357 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 3358 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3359 | /* If it is in client mode initiate SSL session |
| 3360 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3361 | if (objt_server(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3362 | int may_retry = 1; |
| 3363 | |
| 3364 | retry_connect: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3365 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3366 | conn->xprt_ctx = SSL_new(objt_server(conn->target)->ssl_ctx.ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3367 | if (!conn->xprt_ctx) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3368 | if (may_retry--) { |
| 3369 | pool_gc2(); |
| 3370 | goto retry_connect; |
| 3371 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3372 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3373 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3374 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3375 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3376 | /* set fd on SSL session context */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3377 | if (!SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd)) { |
| 3378 | SSL_free(conn->xprt_ctx); |
| 3379 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3380 | if (may_retry--) { |
| 3381 | pool_gc2(); |
| 3382 | goto retry_connect; |
| 3383 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3384 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 3385 | return -1; |
| 3386 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3387 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3388 | /* set connection pointer */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3389 | if (!SSL_set_app_data(conn->xprt_ctx, conn)) { |
| 3390 | SSL_free(conn->xprt_ctx); |
| 3391 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3392 | if (may_retry--) { |
| 3393 | pool_gc2(); |
| 3394 | goto retry_connect; |
| 3395 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3396 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 3397 | return -1; |
| 3398 | } |
| 3399 | |
| 3400 | SSL_set_connect_state(conn->xprt_ctx); |
| 3401 | if (objt_server(conn->target)->ssl_ctx.reused_sess) { |
| 3402 | if(!SSL_set_session(conn->xprt_ctx, objt_server(conn->target)->ssl_ctx.reused_sess)) { |
| 3403 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
| 3404 | objt_server(conn->target)->ssl_ctx.reused_sess = NULL; |
| 3405 | } |
| 3406 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 3407 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3408 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 3409 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 3410 | |
| 3411 | sslconns++; |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 3412 | totalsslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3413 | return 0; |
| 3414 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3415 | else if (objt_listener(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3416 | int may_retry = 1; |
| 3417 | |
| 3418 | retry_accept: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3419 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3420 | conn->xprt_ctx = SSL_new(objt_listener(conn->target)->bind_conf->default_ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3421 | if (!conn->xprt_ctx) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3422 | if (may_retry--) { |
| 3423 | pool_gc2(); |
| 3424 | goto retry_accept; |
| 3425 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3426 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3427 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3428 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3429 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3430 | /* set fd on SSL session context */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3431 | if (!SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd)) { |
| 3432 | SSL_free(conn->xprt_ctx); |
| 3433 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3434 | if (may_retry--) { |
| 3435 | pool_gc2(); |
| 3436 | goto retry_accept; |
| 3437 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3438 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 3439 | return -1; |
| 3440 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3441 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3442 | /* set connection pointer */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3443 | if (!SSL_set_app_data(conn->xprt_ctx, conn)) { |
| 3444 | SSL_free(conn->xprt_ctx); |
| 3445 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 3446 | if (may_retry--) { |
| 3447 | pool_gc2(); |
| 3448 | goto retry_accept; |
| 3449 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 3450 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 3451 | return -1; |
| 3452 | } |
| 3453 | |
| 3454 | SSL_set_accept_state(conn->xprt_ctx); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3455 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3456 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 3457 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 3458 | |
| 3459 | sslconns++; |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 3460 | totalsslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3461 | return 0; |
| 3462 | } |
| 3463 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3464 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3465 | return -1; |
| 3466 | } |
| 3467 | |
| 3468 | |
| 3469 | /* This is the callback which is used when an SSL handshake is pending. It |
| 3470 | * updates the FD status if it wants some polling before being called again. |
| 3471 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 3472 | * otherwise it returns non-zero and removes itself from the connection's |
| 3473 | * flags (the bit is provided in <flag> by the caller). |
| 3474 | */ |
| 3475 | int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
| 3476 | { |
| 3477 | int ret; |
| 3478 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 3479 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 3480 | return 0; |
| 3481 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3482 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3483 | goto out_error; |
| 3484 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 3485 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 3486 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 3487 | * Usually SSL_write and SSL_read are used and process implicitly |
| 3488 | * the reneg handshake. |
| 3489 | * Here we use SSL_peek as a workaround for reneg. |
| 3490 | */ |
| 3491 | if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 3492 | char c; |
| 3493 | |
| 3494 | ret = SSL_peek(conn->xprt_ctx, &c, 1); |
| 3495 | if (ret <= 0) { |
| 3496 | /* handshake may have not been completed, let's find why */ |
| 3497 | ret = SSL_get_error(conn->xprt_ctx, ret); |
| 3498 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 3499 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 3500 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3501 | __conn_sock_want_send(conn); |
| 3502 | fd_cant_send(conn->t.sock.fd); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 3503 | return 0; |
| 3504 | } |
| 3505 | else if (ret == SSL_ERROR_WANT_READ) { |
| 3506 | /* handshake may have been completed but we have |
| 3507 | * no more data to read. |
| 3508 | */ |
| 3509 | if (!SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 3510 | ret = 1; |
| 3511 | goto reneg_ok; |
| 3512 | } |
| 3513 | /* SSL handshake needs to read, L4 connection is ready */ |
| 3514 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 3515 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 3516 | __conn_sock_stop_send(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3517 | __conn_sock_want_recv(conn); |
| 3518 | fd_cant_recv(conn->t.sock.fd); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 3519 | return 0; |
| 3520 | } |
| 3521 | else if (ret == SSL_ERROR_SYSCALL) { |
| 3522 | /* if errno is null, then connection was successfully established */ |
| 3523 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 3524 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3525 | if (!conn->err_code) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3526 | int empty_handshake; |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 3527 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(LIBRESSL_VERSION_NUMBER) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3528 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)conn->xprt_ctx); |
| 3529 | empty_handshake = state == TLS_ST_BEFORE; |
| 3530 | #else |
| 3531 | empty_handshake = !((SSL *)conn->xprt_ctx)->packet_length; |
| 3532 | #endif |
| 3533 | |
| 3534 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 3535 | if (!errno) { |
| 3536 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 3537 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 3538 | else |
| 3539 | conn->err_code = CO_ER_SSL_EMPTY; |
| 3540 | } |
| 3541 | else { |
| 3542 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 3543 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 3544 | else |
| 3545 | conn->err_code = CO_ER_SSL_ABORT; |
| 3546 | } |
| 3547 | } |
| 3548 | else { |
| 3549 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 3550 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3551 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 3552 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 3553 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3554 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 3555 | goto out_error; |
| 3556 | } |
| 3557 | else { |
| 3558 | /* Fail on all other handshake errors */ |
| 3559 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 3560 | * buffer, causing an RST to be emitted upon close() on |
| 3561 | * TCP sockets. We first try to drain possibly pending |
| 3562 | * data to avoid this as much as possible. |
| 3563 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 3564 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3565 | if (!conn->err_code) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 3566 | conn->err_code = (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
| 3567 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 3568 | goto out_error; |
| 3569 | } |
| 3570 | } |
| 3571 | /* read some data: consider handshake completed */ |
| 3572 | goto reneg_ok; |
| 3573 | } |
| 3574 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3575 | ret = SSL_do_handshake(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3576 | if (ret != 1) { |
| 3577 | /* handshake did not complete, let's find why */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3578 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3579 | |
| 3580 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 3581 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 3582 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3583 | __conn_sock_want_send(conn); |
| 3584 | fd_cant_send(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3585 | return 0; |
| 3586 | } |
| 3587 | else if (ret == SSL_ERROR_WANT_READ) { |
| 3588 | /* SSL handshake needs to read, L4 connection is ready */ |
| 3589 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 3590 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 3591 | __conn_sock_stop_send(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3592 | __conn_sock_want_recv(conn); |
| 3593 | fd_cant_recv(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3594 | return 0; |
| 3595 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 3596 | else if (ret == SSL_ERROR_SYSCALL) { |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 3597 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(LIBRESSL_VERSION_NUMBER) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3598 | OSSL_HANDSHAKE_STATE state; |
| 3599 | #endif |
| 3600 | int empty_handshake; |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 3601 | /* if errno is null, then connection was successfully established */ |
| 3602 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 3603 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3604 | |
Luca Pizzamiglio | 578b169 | 2016-12-12 10:56:56 +0100 | [diff] [blame] | 3605 | #if (OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(LIBRESSL_VERSION_NUMBER) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3606 | state = SSL_get_state((SSL *)conn->xprt_ctx); |
| 3607 | empty_handshake = state == TLS_ST_BEFORE; |
| 3608 | #else |
| 3609 | empty_handshake = !((SSL *)conn->xprt_ctx)->packet_length; |
| 3610 | #endif |
| 3611 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 3612 | if (!errno) { |
| 3613 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 3614 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 3615 | else |
| 3616 | conn->err_code = CO_ER_SSL_EMPTY; |
| 3617 | } |
| 3618 | else { |
| 3619 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 3620 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 3621 | else |
| 3622 | conn->err_code = CO_ER_SSL_ABORT; |
| 3623 | } |
| 3624 | } |
| 3625 | else { |
| 3626 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 3627 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3628 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 3629 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 3630 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 3631 | goto out_error; |
| 3632 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3633 | else { |
| 3634 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 3635 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 3636 | * buffer, causing an RST to be emitted upon close() on |
| 3637 | * TCP sockets. We first try to drain possibly pending |
| 3638 | * data to avoid this as much as possible. |
| 3639 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 3640 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3641 | if (!conn->err_code) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 3642 | conn->err_code = (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
| 3643 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3644 | goto out_error; |
| 3645 | } |
| 3646 | } |
| 3647 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 3648 | reneg_ok: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3649 | /* Handshake succeeded */ |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 3650 | if (!SSL_session_reused(conn->xprt_ctx)) { |
| 3651 | if (objt_server(conn->target)) { |
| 3652 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 3653 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 3654 | global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr; |
| 3655 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3656 | /* check if session was reused, if not store current session on server for reuse */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3657 | if (objt_server(conn->target)->ssl_ctx.reused_sess) |
| 3658 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3659 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 3660 | if (!(objt_server(conn->target)->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) |
| 3661 | objt_server(conn->target)->ssl_ctx.reused_sess = SSL_get1_session(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3662 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 3663 | else { |
| 3664 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 3665 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 3666 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 3667 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3668 | } |
| 3669 | |
| 3670 | /* The connection is now established at both layers, it's time to leave */ |
| 3671 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 3672 | return 1; |
| 3673 | |
| 3674 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3675 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 3676 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3677 | ERR_clear_error(); |
| 3678 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 3679 | /* free resumed session if exists */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 3680 | if (objt_server(conn->target) && objt_server(conn->target)->ssl_ctx.reused_sess) { |
| 3681 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
| 3682 | objt_server(conn->target)->ssl_ctx.reused_sess = NULL; |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 3683 | } |
| 3684 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3685 | /* Fail on all other handshake errors */ |
| 3686 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 3687 | if (!conn->err_code) |
| 3688 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3689 | return 0; |
| 3690 | } |
| 3691 | |
| 3692 | /* 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] | 3693 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3694 | * buffer wraps, in which case a second call may be performed. The connection's |
| 3695 | * flags are updated with whatever special event is detected (error, read0, |
| 3696 | * empty). The caller is responsible for taking care of those events and |
| 3697 | * avoiding the call if inappropriate. The function does not call the |
| 3698 | * connection's polling update function, so the caller is responsible for this. |
| 3699 | */ |
| 3700 | static int ssl_sock_to_buf(struct connection *conn, struct buffer *buf, int count) |
| 3701 | { |
| 3702 | int ret, done = 0; |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 3703 | int try; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3704 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3705 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3706 | goto out_error; |
| 3707 | |
| 3708 | if (conn->flags & CO_FL_HANDSHAKE) |
| 3709 | /* a handshake was requested */ |
| 3710 | return 0; |
| 3711 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 3712 | /* let's realign the buffer to optimize I/O */ |
| 3713 | if (buffer_empty(buf)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3714 | buf->p = buf->data; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3715 | |
| 3716 | /* read the largest possible block. For this, we perform only one call |
| 3717 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 3718 | * in which case we accept to do it once again. A new attempt is made on |
| 3719 | * EINTR too. |
| 3720 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 3721 | while (count > 0) { |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 3722 | /* first check if we have some room after p+i */ |
| 3723 | try = buf->data + buf->size - (buf->p + buf->i); |
| 3724 | /* otherwise continue between data and p-o */ |
| 3725 | if (try <= 0) { |
| 3726 | try = buf->p - (buf->data + buf->o); |
| 3727 | if (try <= 0) |
| 3728 | break; |
| 3729 | } |
| 3730 | if (try > count) |
| 3731 | try = count; |
| 3732 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3733 | ret = SSL_read(conn->xprt_ctx, bi_end(buf), try); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3734 | if (conn->flags & CO_FL_ERROR) { |
| 3735 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3736 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3737 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3738 | if (ret > 0) { |
| 3739 | buf->i += ret; |
| 3740 | done += ret; |
| 3741 | if (ret < try) |
| 3742 | break; |
| 3743 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3744 | } |
| 3745 | else if (ret == 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3746 | ret = SSL_get_error(conn->xprt_ctx, ret); |
| 3747 | if (ret != SSL_ERROR_ZERO_RETURN) { |
Emeric Brun | 1c64686 | 2012-12-14 12:33:41 +0100 | [diff] [blame] | 3748 | /* error on protocol or underlying transport */ |
| 3749 | if ((ret != SSL_ERROR_SYSCALL) |
| 3750 | || (errno && (errno != EAGAIN))) |
| 3751 | conn->flags |= CO_FL_ERROR; |
| 3752 | |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3753 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 3754 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3755 | ERR_clear_error(); |
| 3756 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3757 | goto read0; |
| 3758 | } |
| 3759 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3760 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3761 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 3762 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3763 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 3764 | __conn_sock_want_send(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3765 | break; |
| 3766 | } |
| 3767 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 3768 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 3769 | /* handshake is running, and it may need to re-enable read */ |
| 3770 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 3771 | __conn_sock_want_recv(conn); |
| 3772 | break; |
| 3773 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3774 | /* we need to poll for retry a read later */ |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3775 | fd_cant_recv(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3776 | break; |
| 3777 | } |
| 3778 | /* otherwise it's a real error */ |
| 3779 | goto out_error; |
| 3780 | } |
| 3781 | } |
| 3782 | return done; |
| 3783 | |
| 3784 | read0: |
| 3785 | conn_sock_read0(conn); |
| 3786 | return done; |
| 3787 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3788 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 3789 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3790 | ERR_clear_error(); |
| 3791 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3792 | conn->flags |= CO_FL_ERROR; |
| 3793 | return done; |
| 3794 | } |
| 3795 | |
| 3796 | |
| 3797 | /* Send all pending bytes from buffer <buf> to connection <conn>'s socket. |
Willy Tarreau | 1049b1f | 2014-02-02 01:51:17 +0100 | [diff] [blame] | 3798 | * <flags> may contain some CO_SFL_* flags to hint the system about other |
| 3799 | * pending data for example, but this flag is ignored at the moment. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3800 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 3801 | * a second call may be performed. The connection's flags are updated with |
| 3802 | * whatever special event is detected (error, empty). The caller is responsible |
| 3803 | * for taking care of those events and avoiding the call if inappropriate. The |
| 3804 | * function does not call the connection's polling update function, so the caller |
| 3805 | * is responsible for this. |
| 3806 | */ |
| 3807 | static int ssl_sock_from_buf(struct connection *conn, struct buffer *buf, int flags) |
| 3808 | { |
| 3809 | int ret, try, done; |
| 3810 | |
| 3811 | done = 0; |
| 3812 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3813 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3814 | goto out_error; |
| 3815 | |
| 3816 | if (conn->flags & CO_FL_HANDSHAKE) |
| 3817 | /* a handshake was requested */ |
| 3818 | return 0; |
| 3819 | |
| 3820 | /* send the largest possible block. For this we perform only one call |
| 3821 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 3822 | * in which case we accept to do it once again. |
| 3823 | */ |
| 3824 | while (buf->o) { |
Kevin Hester | cad8234 | 2013-05-30 15:12:41 -0700 | [diff] [blame] | 3825 | try = bo_contig_data(buf); |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 3826 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 3827 | if (!(flags & CO_SFL_STREAMER) && |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3828 | !(conn->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
| 3829 | global.tune.ssl_max_record && try > global.tune.ssl_max_record) { |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 3830 | try = global.tune.ssl_max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3831 | } |
| 3832 | else { |
| 3833 | /* we need to keep the information about the fact that |
| 3834 | * we're not limiting the upcoming send(), because if it |
| 3835 | * fails, we'll have to retry with at least as many data. |
| 3836 | */ |
| 3837 | conn->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
| 3838 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 3839 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3840 | ret = SSL_write(conn->xprt_ctx, bo_ptr(buf), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3841 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3842 | if (conn->flags & CO_FL_ERROR) { |
| 3843 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3844 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3845 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3846 | if (ret > 0) { |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3847 | conn->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
| 3848 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3849 | buf->o -= ret; |
| 3850 | done += ret; |
| 3851 | |
Willy Tarreau | 5fb3803 | 2012-12-16 19:39:09 +0100 | [diff] [blame] | 3852 | if (likely(buffer_empty(buf))) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3853 | /* optimize data alignment in the buffer */ |
| 3854 | buf->p = buf->data; |
| 3855 | |
| 3856 | /* if the system buffer is full, don't insist */ |
| 3857 | if (ret < try) |
| 3858 | break; |
| 3859 | } |
| 3860 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3861 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3862 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 3863 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 3864 | /* handshake is running, and it may need to re-enable write */ |
| 3865 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 3866 | __conn_sock_want_send(conn); |
| 3867 | break; |
| 3868 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3869 | /* we need to poll to retry a write later */ |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3870 | fd_cant_send(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3871 | break; |
| 3872 | } |
| 3873 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 3874 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3875 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 3876 | __conn_sock_want_recv(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3877 | break; |
| 3878 | } |
| 3879 | goto out_error; |
| 3880 | } |
| 3881 | } |
| 3882 | return done; |
| 3883 | |
| 3884 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3885 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 3886 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3887 | ERR_clear_error(); |
| 3888 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3889 | conn->flags |= CO_FL_ERROR; |
| 3890 | return done; |
| 3891 | } |
| 3892 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3893 | static void ssl_sock_close(struct connection *conn) { |
| 3894 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3895 | if (conn->xprt_ctx) { |
| 3896 | SSL_free(conn->xprt_ctx); |
| 3897 | conn->xprt_ctx = NULL; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 3898 | sslconns--; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3899 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3900 | } |
| 3901 | |
| 3902 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 3903 | * any case, flags the connection as reusable if no handshake was in progress. |
| 3904 | */ |
| 3905 | static void ssl_sock_shutw(struct connection *conn, int clean) |
| 3906 | { |
| 3907 | if (conn->flags & CO_FL_HANDSHAKE) |
| 3908 | return; |
| 3909 | /* no handshake was in progress, try a clean ssl shutdown */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3910 | if (clean && (SSL_shutdown(conn->xprt_ctx) <= 0)) { |
| 3911 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 3912 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3913 | ERR_clear_error(); |
| 3914 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3915 | |
| 3916 | /* force flag on ssl to keep session in cache regardless shutdown result */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3917 | SSL_set_shutdown(conn->xprt_ctx, SSL_SENT_SHUTDOWN); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3918 | } |
| 3919 | |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 3920 | /* used for logging, may be changed for a sample fetch later */ |
| 3921 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 3922 | { |
| 3923 | if (!conn->xprt && !conn->xprt_ctx) |
| 3924 | return NULL; |
| 3925 | return SSL_get_cipher_name(conn->xprt_ctx); |
| 3926 | } |
| 3927 | |
| 3928 | /* used for logging, may be changed for a sample fetch later */ |
| 3929 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 3930 | { |
| 3931 | if (!conn->xprt && !conn->xprt_ctx) |
| 3932 | return NULL; |
| 3933 | return SSL_get_version(conn->xprt_ctx); |
| 3934 | } |
| 3935 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3936 | /* Extract a serial from a cert, and copy it to a chunk. |
| 3937 | * Returns 1 if serial is found and copied, 0 if no serial found and |
| 3938 | * -1 if output is not large enough. |
| 3939 | */ |
| 3940 | static int |
| 3941 | ssl_sock_get_serial(X509 *crt, struct chunk *out) |
| 3942 | { |
| 3943 | ASN1_INTEGER *serial; |
| 3944 | |
| 3945 | serial = X509_get_serialNumber(crt); |
| 3946 | if (!serial) |
| 3947 | return 0; |
| 3948 | |
| 3949 | if (out->size < serial->length) |
| 3950 | return -1; |
| 3951 | |
| 3952 | memcpy(out->str, serial->data, serial->length); |
| 3953 | out->len = serial->length; |
| 3954 | return 1; |
| 3955 | } |
| 3956 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 3957 | /* Extract a cert to der, and copy it to a chunk. |
| 3958 | * Returns 1 if cert is found and copied, 0 on der convertion failure and |
| 3959 | * -1 if output is not large enough. |
| 3960 | */ |
| 3961 | static int |
| 3962 | ssl_sock_crt2der(X509 *crt, struct chunk *out) |
| 3963 | { |
| 3964 | int len; |
| 3965 | unsigned char *p = (unsigned char *)out->str;; |
| 3966 | |
| 3967 | len =i2d_X509(crt, NULL); |
| 3968 | if (len <= 0) |
| 3969 | return 1; |
| 3970 | |
| 3971 | if (out->size < len) |
| 3972 | return -1; |
| 3973 | |
| 3974 | i2d_X509(crt,&p); |
| 3975 | out->len = len; |
| 3976 | return 1; |
| 3977 | } |
| 3978 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3979 | |
| 3980 | /* Copy Date in ASN1_UTCTIME format in struct chunk out. |
| 3981 | * Returns 1 if serial is found and copied, 0 if no valid time found |
| 3982 | * and -1 if output is not large enough. |
| 3983 | */ |
| 3984 | static int |
| 3985 | ssl_sock_get_time(ASN1_TIME *tm, struct chunk *out) |
| 3986 | { |
| 3987 | if (tm->type == V_ASN1_GENERALIZEDTIME) { |
| 3988 | ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm; |
| 3989 | |
| 3990 | if (gentm->length < 12) |
| 3991 | return 0; |
| 3992 | if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30) |
| 3993 | return 0; |
| 3994 | if (out->size < gentm->length-2) |
| 3995 | return -1; |
| 3996 | |
| 3997 | memcpy(out->str, gentm->data+2, gentm->length-2); |
| 3998 | out->len = gentm->length-2; |
| 3999 | return 1; |
| 4000 | } |
| 4001 | else if (tm->type == V_ASN1_UTCTIME) { |
| 4002 | ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm; |
| 4003 | |
| 4004 | if (utctm->length < 10) |
| 4005 | return 0; |
| 4006 | if (utctm->data[0] >= 0x35) |
| 4007 | return 0; |
| 4008 | if (out->size < utctm->length) |
| 4009 | return -1; |
| 4010 | |
| 4011 | memcpy(out->str, utctm->data, utctm->length); |
| 4012 | out->len = utctm->length; |
| 4013 | return 1; |
| 4014 | } |
| 4015 | |
| 4016 | return 0; |
| 4017 | } |
| 4018 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4019 | /* Extract an entry from a X509_NAME and copy its value to an output chunk. |
| 4020 | * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough. |
| 4021 | */ |
| 4022 | static int |
| 4023 | ssl_sock_get_dn_entry(X509_NAME *a, const struct chunk *entry, int pos, struct chunk *out) |
| 4024 | { |
| 4025 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4026 | ASN1_OBJECT *obj; |
| 4027 | ASN1_STRING *data; |
| 4028 | const unsigned char *data_ptr; |
| 4029 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4030 | int i, j, n; |
| 4031 | int cur = 0; |
| 4032 | const char *s; |
| 4033 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4034 | int name_count; |
| 4035 | |
| 4036 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4037 | |
| 4038 | out->len = 0; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4039 | for (i = 0; i < name_count; i++) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4040 | if (pos < 0) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4041 | j = (name_count-1) - i; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4042 | else |
| 4043 | j = i; |
| 4044 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4045 | ne = X509_NAME_get_entry(a, j); |
| 4046 | obj = X509_NAME_ENTRY_get_object(ne); |
| 4047 | data = X509_NAME_ENTRY_get_data(ne); |
| 4048 | data_ptr = ASN1_STRING_get0_data(data); |
| 4049 | data_len = ASN1_STRING_length(data); |
| 4050 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4051 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4052 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4053 | s = tmp; |
| 4054 | } |
| 4055 | |
| 4056 | if (chunk_strcasecmp(entry, s) != 0) |
| 4057 | continue; |
| 4058 | |
| 4059 | if (pos < 0) |
| 4060 | cur--; |
| 4061 | else |
| 4062 | cur++; |
| 4063 | |
| 4064 | if (cur != pos) |
| 4065 | continue; |
| 4066 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4067 | if (data_len > out->size) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4068 | return -1; |
| 4069 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4070 | memcpy(out->str, data_ptr, data_len); |
| 4071 | out->len = data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4072 | return 1; |
| 4073 | } |
| 4074 | |
| 4075 | return 0; |
| 4076 | |
| 4077 | } |
| 4078 | |
| 4079 | /* Extract and format full DN from a X509_NAME and copy result into a chunk |
| 4080 | * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough. |
| 4081 | */ |
| 4082 | static int |
| 4083 | ssl_sock_get_dn_oneline(X509_NAME *a, struct chunk *out) |
| 4084 | { |
| 4085 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4086 | ASN1_OBJECT *obj; |
| 4087 | ASN1_STRING *data; |
| 4088 | const unsigned char *data_ptr; |
| 4089 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4090 | int i, n, ln; |
| 4091 | int l = 0; |
| 4092 | const char *s; |
| 4093 | char *p; |
| 4094 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4095 | int name_count; |
| 4096 | |
| 4097 | |
| 4098 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4099 | |
| 4100 | out->len = 0; |
| 4101 | p = out->str; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4102 | for (i = 0; i < name_count; i++) { |
| 4103 | ne = X509_NAME_get_entry(a, i); |
| 4104 | obj = X509_NAME_ENTRY_get_object(ne); |
| 4105 | data = X509_NAME_ENTRY_get_data(ne); |
| 4106 | data_ptr = ASN1_STRING_get0_data(data); |
| 4107 | data_len = ASN1_STRING_length(data); |
| 4108 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4109 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4110 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4111 | s = tmp; |
| 4112 | } |
| 4113 | ln = strlen(s); |
| 4114 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4115 | l += 1 + ln + 1 + data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4116 | if (l > out->size) |
| 4117 | return -1; |
| 4118 | out->len = l; |
| 4119 | |
| 4120 | *(p++)='/'; |
| 4121 | memcpy(p, s, ln); |
| 4122 | p += ln; |
| 4123 | *(p++)='='; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4124 | memcpy(p, data_ptr, data_len); |
| 4125 | p += data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4126 | } |
| 4127 | |
| 4128 | if (!out->len) |
| 4129 | return 0; |
| 4130 | |
| 4131 | return 1; |
| 4132 | } |
| 4133 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4134 | char *ssl_sock_get_version(struct connection *conn) |
| 4135 | { |
| 4136 | if (!ssl_sock_is_ssl(conn)) |
| 4137 | return NULL; |
| 4138 | |
| 4139 | return (char *)SSL_get_version(conn->xprt_ctx); |
| 4140 | } |
| 4141 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 4142 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 4143 | { |
| 4144 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 4145 | if (!ssl_sock_is_ssl(conn)) |
| 4146 | return; |
| 4147 | |
| 4148 | SSL_set_tlsext_host_name(conn->xprt_ctx, hostname); |
| 4149 | #endif |
| 4150 | } |
| 4151 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 4152 | /* Extract peer certificate's common name into the chunk dest |
| 4153 | * Returns |
| 4154 | * the len of the extracted common name |
| 4155 | * or 0 if no CN found in DN |
| 4156 | * or -1 on error case (i.e. no peer certificate) |
| 4157 | */ |
| 4158 | int ssl_sock_get_remote_common_name(struct connection *conn, struct chunk *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4159 | { |
| 4160 | X509 *crt = NULL; |
| 4161 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4162 | const char find_cn[] = "CN"; |
| 4163 | const struct chunk find_cn_chunk = { |
| 4164 | .str = (char *)&find_cn, |
| 4165 | .len = sizeof(find_cn)-1 |
| 4166 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 4167 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4168 | |
| 4169 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 4170 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4171 | |
| 4172 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4173 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4174 | if (!crt) |
| 4175 | goto out; |
| 4176 | |
| 4177 | name = X509_get_subject_name(crt); |
| 4178 | if (!name) |
| 4179 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4180 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 4181 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 4182 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4183 | if (crt) |
| 4184 | X509_free(crt); |
| 4185 | |
| 4186 | return result; |
| 4187 | } |
| 4188 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 4189 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 4190 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 4191 | { |
| 4192 | X509 *crt = NULL; |
| 4193 | |
| 4194 | if (!ssl_sock_is_ssl(conn)) |
| 4195 | return 0; |
| 4196 | |
| 4197 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4198 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4199 | if (!crt) |
| 4200 | return 0; |
| 4201 | |
| 4202 | X509_free(crt); |
| 4203 | return 1; |
| 4204 | } |
| 4205 | |
| 4206 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 4207 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4208 | { |
| 4209 | if (!ssl_sock_is_ssl(conn)) |
| 4210 | return 0; |
| 4211 | |
| 4212 | return SSL_SOCK_ST_FL_VERIFY_DONE & conn->xprt_st ? 1 : 0; |
| 4213 | } |
| 4214 | |
| 4215 | /* returns result from SSL verify */ |
| 4216 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 4217 | { |
| 4218 | if (!ssl_sock_is_ssl(conn)) |
| 4219 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
| 4220 | |
| 4221 | return (unsigned int)SSL_get_verify_result(conn->xprt_ctx); |
| 4222 | } |
| 4223 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4224 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 4225 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 4226 | /* boolean, returns true if client cert was present */ |
| 4227 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4228 | 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] | 4229 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4230 | struct connection *conn; |
| 4231 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4232 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4233 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 4234 | return 0; |
| 4235 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4236 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 4237 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4238 | return 0; |
| 4239 | } |
| 4240 | |
| 4241 | smp->flags = 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4242 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4243 | 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] | 4244 | |
| 4245 | return 1; |
| 4246 | } |
| 4247 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 4248 | /* binary, returns a certificate in a binary chunk (der/raw). |
| 4249 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4250 | * should be use. |
| 4251 | */ |
| 4252 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4253 | 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] | 4254 | { |
| 4255 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
| 4256 | X509 *crt = NULL; |
| 4257 | int ret = 0; |
| 4258 | struct chunk *smp_trash; |
| 4259 | struct connection *conn; |
| 4260 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4261 | conn = objt_conn(smp->sess->origin); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 4262 | if (!conn || conn->xprt != &ssl_sock) |
| 4263 | return 0; |
| 4264 | |
| 4265 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 4266 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4267 | return 0; |
| 4268 | } |
| 4269 | |
| 4270 | if (cert_peer) |
| 4271 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4272 | else |
| 4273 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 4274 | |
| 4275 | if (!crt) |
| 4276 | goto out; |
| 4277 | |
| 4278 | smp_trash = get_trash_chunk(); |
| 4279 | if (ssl_sock_crt2der(crt, smp_trash) <= 0) |
| 4280 | goto out; |
| 4281 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4282 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4283 | smp->data.type = SMP_T_BIN; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 4284 | ret = 1; |
| 4285 | out: |
| 4286 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4287 | if (cert_peer && crt) |
| 4288 | X509_free(crt); |
| 4289 | return ret; |
| 4290 | } |
| 4291 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4292 | /* binary, returns serial of certificate in a binary chunk. |
| 4293 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4294 | * should be use. |
| 4295 | */ |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4296 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4297 | 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] | 4298 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4299 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4300 | X509 *crt = NULL; |
| 4301 | int ret = 0; |
| 4302 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4303 | struct connection *conn; |
| 4304 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4305 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4306 | if (!conn || conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4307 | return 0; |
| 4308 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4309 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4310 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4311 | return 0; |
| 4312 | } |
| 4313 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4314 | if (cert_peer) |
| 4315 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4316 | else |
| 4317 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 4318 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4319 | if (!crt) |
| 4320 | goto out; |
| 4321 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 4322 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4323 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 4324 | goto out; |
| 4325 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4326 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4327 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4328 | ret = 1; |
| 4329 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4330 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4331 | if (cert_peer && crt) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 4332 | X509_free(crt); |
| 4333 | return ret; |
| 4334 | } |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 4335 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4336 | /* binary, returns the client certificate's SHA-1 fingerprint (SHA-1 hash of DER-encoded certificate) in a binary chunk. |
| 4337 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4338 | * should be use. |
| 4339 | */ |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4340 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4341 | 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] | 4342 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4343 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4344 | X509 *crt = NULL; |
| 4345 | const EVP_MD *digest; |
| 4346 | int ret = 0; |
| 4347 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4348 | struct connection *conn; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4349 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4350 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4351 | if (!conn || conn->xprt != &ssl_sock) |
| 4352 | return 0; |
| 4353 | |
| 4354 | if (!(conn->flags & CO_FL_CONNECTED)) { |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4355 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4356 | return 0; |
| 4357 | } |
| 4358 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4359 | if (cert_peer) |
| 4360 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4361 | else |
| 4362 | crt = SSL_get_certificate(conn->xprt_ctx); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4363 | if (!crt) |
| 4364 | goto out; |
| 4365 | |
| 4366 | smp_trash = get_trash_chunk(); |
| 4367 | digest = EVP_sha1(); |
| 4368 | X509_digest(crt, digest, (unsigned char *)smp_trash->str, (unsigned int *)&smp_trash->len); |
| 4369 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4370 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4371 | smp->data.type = SMP_T_BIN; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4372 | ret = 1; |
| 4373 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4374 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4375 | if (cert_peer && crt) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 4376 | X509_free(crt); |
| 4377 | return ret; |
| 4378 | } |
| 4379 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4380 | /* string, returns certificate's notafter date in ASN1_UTCTIME format. |
| 4381 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4382 | * should be use. |
| 4383 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4384 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4385 | 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] | 4386 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4387 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4388 | X509 *crt = NULL; |
| 4389 | int ret = 0; |
| 4390 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4391 | struct connection *conn; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4392 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4393 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4394 | if (!conn || conn->xprt != &ssl_sock) |
| 4395 | return 0; |
| 4396 | |
| 4397 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4398 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4399 | return 0; |
| 4400 | } |
| 4401 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4402 | if (cert_peer) |
| 4403 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4404 | else |
| 4405 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4406 | if (!crt) |
| 4407 | goto out; |
| 4408 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 4409 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4410 | if (ssl_sock_get_time(X509_get_notAfter(crt), smp_trash) <= 0) |
| 4411 | goto out; |
| 4412 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4413 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4414 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4415 | ret = 1; |
| 4416 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4417 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4418 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4419 | X509_free(crt); |
| 4420 | return ret; |
| 4421 | } |
| 4422 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4423 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's issuer |
| 4424 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4425 | * should be use. |
| 4426 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4427 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4428 | 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] | 4429 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4430 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4431 | X509 *crt = NULL; |
| 4432 | X509_NAME *name; |
| 4433 | int ret = 0; |
| 4434 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4435 | struct connection *conn; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4436 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4437 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4438 | if (!conn || conn->xprt != &ssl_sock) |
| 4439 | return 0; |
| 4440 | |
| 4441 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4442 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4443 | return 0; |
| 4444 | } |
| 4445 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4446 | if (cert_peer) |
| 4447 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4448 | else |
| 4449 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4450 | if (!crt) |
| 4451 | goto out; |
| 4452 | |
| 4453 | name = X509_get_issuer_name(crt); |
| 4454 | if (!name) |
| 4455 | goto out; |
| 4456 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 4457 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4458 | if (args && args[0].type == ARGT_STR) { |
| 4459 | int pos = 1; |
| 4460 | |
| 4461 | if (args[1].type == ARGT_SINT) |
| 4462 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4463 | |
| 4464 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 4465 | goto out; |
| 4466 | } |
| 4467 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 4468 | goto out; |
| 4469 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4470 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4471 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4472 | ret = 1; |
| 4473 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4474 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4475 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4476 | X509_free(crt); |
| 4477 | return ret; |
| 4478 | } |
| 4479 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4480 | /* string, returns notbefore date in ASN1_UTCTIME format. |
| 4481 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4482 | * should be use. |
| 4483 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4484 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4485 | 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] | 4486 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4487 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4488 | X509 *crt = NULL; |
| 4489 | int ret = 0; |
| 4490 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4491 | struct connection *conn; |
| 4492 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4493 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4494 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4495 | return 0; |
| 4496 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4497 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4498 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4499 | return 0; |
| 4500 | } |
| 4501 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4502 | if (cert_peer) |
| 4503 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4504 | else |
| 4505 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4506 | if (!crt) |
| 4507 | goto out; |
| 4508 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 4509 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4510 | if (ssl_sock_get_time(X509_get_notBefore(crt), smp_trash) <= 0) |
| 4511 | goto out; |
| 4512 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4513 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4514 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4515 | ret = 1; |
| 4516 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4517 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4518 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 4519 | X509_free(crt); |
| 4520 | return ret; |
| 4521 | } |
| 4522 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4523 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's subject |
| 4524 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4525 | * should be use. |
| 4526 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4527 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4528 | 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] | 4529 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4530 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4531 | X509 *crt = NULL; |
| 4532 | X509_NAME *name; |
| 4533 | int ret = 0; |
| 4534 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4535 | struct connection *conn; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4536 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4537 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4538 | if (!conn || conn->xprt != &ssl_sock) |
| 4539 | return 0; |
| 4540 | |
| 4541 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4542 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4543 | return 0; |
| 4544 | } |
| 4545 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4546 | if (cert_peer) |
| 4547 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4548 | else |
| 4549 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4550 | if (!crt) |
| 4551 | goto out; |
| 4552 | |
| 4553 | name = X509_get_subject_name(crt); |
| 4554 | if (!name) |
| 4555 | goto out; |
| 4556 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 4557 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4558 | if (args && args[0].type == ARGT_STR) { |
| 4559 | int pos = 1; |
| 4560 | |
| 4561 | if (args[1].type == ARGT_SINT) |
| 4562 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4563 | |
| 4564 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 4565 | goto out; |
| 4566 | } |
| 4567 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 4568 | goto out; |
| 4569 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4570 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4571 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4572 | ret = 1; |
| 4573 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4574 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 4575 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 4576 | X509_free(crt); |
| 4577 | return ret; |
| 4578 | } |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 4579 | |
| 4580 | /* integer, returns true if current session use a client certificate */ |
| 4581 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4582 | 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] | 4583 | { |
| 4584 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4585 | struct connection *conn; |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 4586 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4587 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4588 | if (!conn || conn->xprt != &ssl_sock) |
| 4589 | return 0; |
| 4590 | |
| 4591 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 4592 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4593 | return 0; |
| 4594 | } |
| 4595 | |
| 4596 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4597 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 4598 | if (crt) { |
| 4599 | X509_free(crt); |
| 4600 | } |
| 4601 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4602 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4603 | smp->data.u.sint = (crt != NULL); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 4604 | return 1; |
| 4605 | } |
| 4606 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4607 | /* integer, returns the certificate version |
| 4608 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4609 | * should be use. |
| 4610 | */ |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 4611 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4612 | 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] | 4613 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4614 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 4615 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4616 | struct connection *conn; |
| 4617 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4618 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4619 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 4620 | return 0; |
| 4621 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4622 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 4623 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4624 | return 0; |
| 4625 | } |
| 4626 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4627 | if (cert_peer) |
| 4628 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4629 | else |
| 4630 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 4631 | if (!crt) |
| 4632 | return 0; |
| 4633 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4634 | smp->data.u.sint = (unsigned int)(1 + X509_get_version(crt)); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4635 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 4636 | if (cert_peer) |
| 4637 | X509_free(crt); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4638 | smp->data.type = SMP_T_SINT; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 4639 | |
| 4640 | return 1; |
| 4641 | } |
| 4642 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4643 | /* string, returns the certificate's signature algorithm. |
| 4644 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4645 | * should be use. |
| 4646 | */ |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4647 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4648 | 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] | 4649 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4650 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4651 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4652 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4653 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4654 | struct connection *conn; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4655 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4656 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4657 | if (!conn || conn->xprt != &ssl_sock) |
| 4658 | return 0; |
| 4659 | |
| 4660 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4661 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4662 | return 0; |
| 4663 | } |
| 4664 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4665 | if (cert_peer) |
| 4666 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4667 | else |
| 4668 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4669 | if (!crt) |
| 4670 | return 0; |
| 4671 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4672 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 4673 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4674 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4675 | smp->data.u.str.str = (char *)OBJ_nid2sn(nid); |
| 4676 | if (!smp->data.u.str.str) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4677 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 4678 | if (cert_peer) |
| 4679 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4680 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 4681 | } |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4682 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4683 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4684 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4685 | smp->data.u.str.len = strlen(smp->data.u.str.str); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4686 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 4687 | if (cert_peer) |
| 4688 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 4689 | |
| 4690 | return 1; |
| 4691 | } |
| 4692 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4693 | /* string, returns the certificate's key algorithm. |
| 4694 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 4695 | * should be use. |
| 4696 | */ |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4697 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4698 | 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] | 4699 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4700 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4701 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4702 | ASN1_OBJECT *algorithm; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4703 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4704 | struct connection *conn; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4705 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4706 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4707 | if (!conn || conn->xprt != &ssl_sock) |
| 4708 | return 0; |
| 4709 | |
| 4710 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4711 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4712 | return 0; |
| 4713 | } |
| 4714 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4715 | if (cert_peer) |
| 4716 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 4717 | else |
| 4718 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4719 | if (!crt) |
| 4720 | return 0; |
| 4721 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4722 | X509_PUBKEY_get0_param(&algorithm, NULL, NULL, NULL, X509_get_X509_PUBKEY(crt)); |
| 4723 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4724 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4725 | smp->data.u.str.str = (char *)OBJ_nid2sn(nid); |
| 4726 | if (!smp->data.u.str.str) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4727 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 4728 | if (cert_peer) |
| 4729 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4730 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 4731 | } |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4732 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4733 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4734 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4735 | smp->data.u.str.len = strlen(smp->data.u.str.str); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 4736 | if (cert_peer) |
| 4737 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 4738 | |
| 4739 | return 1; |
| 4740 | } |
| 4741 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4742 | /* boolean, returns true if front conn. transport layer is SSL. |
| 4743 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4744 | * char is 'b'. |
| 4745 | */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4746 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4747 | 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] | 4748 | { |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4749 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4750 | smp->strm ? smp->strm->si[1].end : NULL); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4751 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4752 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4753 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4754 | return 1; |
| 4755 | } |
| 4756 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 4757 | /* boolean, returns true if client present a SNI */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4758 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4759 | 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] | 4760 | { |
| 4761 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4762 | struct connection *conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4763 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4764 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4765 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4766 | conn->xprt_ctx && |
| 4767 | SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name) != NULL; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4768 | return 1; |
| 4769 | #else |
| 4770 | return 0; |
| 4771 | #endif |
| 4772 | } |
| 4773 | |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 4774 | /* boolean, returns true if client session has been resumed */ |
| 4775 | static int |
| 4776 | smp_fetch_ssl_fc_is_resumed(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 4777 | { |
| 4778 | struct connection *conn = objt_conn(smp->sess->origin); |
| 4779 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4780 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4781 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 4782 | conn->xprt_ctx && |
| 4783 | SSL_session_reused(conn->xprt_ctx); |
| 4784 | return 1; |
| 4785 | } |
| 4786 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4787 | /* string, returns the used cipher if front conn. transport layer is SSL. |
| 4788 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4789 | * char is 'b'. |
| 4790 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4791 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4792 | 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] | 4793 | { |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4794 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4795 | smp->strm ? smp->strm->si[1].end : NULL); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4796 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 4797 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4798 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4799 | return 0; |
| 4800 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4801 | smp->data.u.str.str = (char *)SSL_get_cipher_name(conn->xprt_ctx); |
| 4802 | if (!smp->data.u.str.str) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4803 | return 0; |
| 4804 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4805 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4806 | smp->flags |= SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4807 | smp->data.u.str.len = strlen(smp->data.u.str.str); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4808 | |
| 4809 | return 1; |
| 4810 | } |
| 4811 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4812 | /* integer, returns the algoritm's keysize if front conn. transport layer |
| 4813 | * is SSL. |
| 4814 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4815 | * char is 'b'. |
| 4816 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4817 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4818 | 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] | 4819 | { |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4820 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4821 | smp->strm ? smp->strm->si[1].end : NULL); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4822 | |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4823 | int sint; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 4824 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4825 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4826 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4827 | return 0; |
| 4828 | |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 4829 | if (!SSL_get_cipher_bits(conn->xprt_ctx, &sint)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4830 | return 0; |
| 4831 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4832 | smp->data.u.sint = sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4833 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4834 | |
| 4835 | return 1; |
| 4836 | } |
| 4837 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4838 | /* integer, returns the used keysize if front conn. transport layer is SSL. |
| 4839 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4840 | * char is 'b'. |
| 4841 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4842 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4843 | 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] | 4844 | { |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4845 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4846 | smp->strm ? smp->strm->si[1].end : NULL); |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 4847 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4848 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4849 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4850 | return 0; |
| 4851 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4852 | smp->data.u.sint = (unsigned int)SSL_get_cipher_bits(conn->xprt_ctx, NULL); |
| 4853 | if (!smp->data.u.sint) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4854 | return 0; |
| 4855 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4856 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4857 | |
| 4858 | return 1; |
| 4859 | } |
| 4860 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4861 | #ifdef OPENSSL_NPN_NEGOTIATED |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4862 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4863 | 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] | 4864 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4865 | struct connection *conn; |
| 4866 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4867 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4868 | smp->data.type = SMP_T_STR; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4869 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4870 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4871 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4872 | return 0; |
| 4873 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4874 | smp->data.u.str.str = NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4875 | SSL_get0_next_proto_negotiated(conn->xprt_ctx, |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4876 | (const unsigned char **)&smp->data.u.str.str, (unsigned *)&smp->data.u.str.len); |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4877 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4878 | if (!smp->data.u.str.str) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4879 | return 0; |
| 4880 | |
| 4881 | return 1; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4882 | } |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4883 | #endif |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4884 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4885 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4886 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4887 | 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] | 4888 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4889 | struct connection *conn; |
| 4890 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4891 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4892 | smp->data.type = SMP_T_STR; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4893 | |
Willy Tarreau | e26bf05 | 2015-05-12 10:30:12 +0200 | [diff] [blame] | 4894 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4895 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4896 | return 0; |
| 4897 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4898 | smp->data.u.str.str = NULL; |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4899 | SSL_get0_alpn_selected(conn->xprt_ctx, |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4900 | (const unsigned char **)&smp->data.u.str.str, (unsigned *)&smp->data.u.str.len); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4901 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4902 | if (!smp->data.u.str.str) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4903 | return 0; |
| 4904 | |
| 4905 | return 1; |
| 4906 | } |
| 4907 | #endif |
| 4908 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4909 | /* string, returns the used protocol if front conn. transport layer is SSL. |
| 4910 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4911 | * char is 'b'. |
| 4912 | */ |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4913 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4914 | 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] | 4915 | { |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4916 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4917 | smp->strm ? smp->strm->si[1].end : NULL); |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 4918 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4919 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4920 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4921 | return 0; |
| 4922 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4923 | smp->data.u.str.str = (char *)SSL_get_version(conn->xprt_ctx); |
| 4924 | if (!smp->data.u.str.str) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4925 | return 0; |
| 4926 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4927 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4928 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4929 | smp->data.u.str.len = strlen(smp->data.u.str.str); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4930 | |
| 4931 | return 1; |
| 4932 | } |
| 4933 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4934 | /* 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] | 4935 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4936 | * char is 'b'. |
| 4937 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4938 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4939 | 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] | 4940 | { |
| 4941 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4942 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4943 | smp->strm ? smp->strm->si[1].end : NULL); |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4944 | |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4945 | SSL_SESSION *ssl_sess; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 4946 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4947 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4948 | smp->data.type = SMP_T_BIN; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4949 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4950 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4951 | return 0; |
| 4952 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 4953 | ssl_sess = SSL_get_session(conn->xprt_ctx); |
| 4954 | if (!ssl_sess) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4955 | return 0; |
| 4956 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4957 | smp->data.u.str.str = (char *)SSL_SESSION_get_id(ssl_sess, (unsigned int *)&smp->data.u.str.len); |
| 4958 | if (!smp->data.u.str.str || !smp->data.u.str.len) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4959 | return 0; |
| 4960 | |
| 4961 | return 1; |
| 4962 | #else |
| 4963 | return 0; |
| 4964 | #endif |
| 4965 | } |
| 4966 | |
| 4967 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4968 | 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] | 4969 | { |
| 4970 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4971 | struct connection *conn; |
| 4972 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4973 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 4974 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4975 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4976 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4977 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4978 | return 0; |
| 4979 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4980 | smp->data.u.str.str = (char *)SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name); |
| 4981 | if (!smp->data.u.str.str) |
Willy Tarreau | 3e394c9 | 2012-09-14 23:56:58 +0200 | [diff] [blame] | 4982 | return 0; |
| 4983 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 4984 | smp->data.u.str.len = strlen(smp->data.u.str.str); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4985 | return 1; |
| 4986 | #else |
| 4987 | return 0; |
| 4988 | #endif |
| 4989 | } |
| 4990 | |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4991 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4992 | 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] | 4993 | { |
| 4994 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 4995 | struct connection *conn = objt_conn((kw[4] != 'b') ? smp->sess->origin : |
| 4996 | smp->strm ? smp->strm->si[1].end : NULL); |
| 4997 | |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4998 | int finished_len; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4999 | struct chunk *finished_trash; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 5000 | |
| 5001 | smp->flags = 0; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 5002 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 5003 | return 0; |
| 5004 | |
| 5005 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 5006 | smp->flags |= SMP_F_MAY_CHANGE; |
| 5007 | return 0; |
| 5008 | } |
| 5009 | |
| 5010 | finished_trash = get_trash_chunk(); |
| 5011 | if (!SSL_session_reused(conn->xprt_ctx)) |
| 5012 | finished_len = SSL_get_peer_finished(conn->xprt_ctx, finished_trash->str, finished_trash->size); |
| 5013 | else |
| 5014 | finished_len = SSL_get_finished(conn->xprt_ctx, finished_trash->str, finished_trash->size); |
| 5015 | |
| 5016 | if (!finished_len) |
| 5017 | return 0; |
| 5018 | |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 5019 | finished_trash->len = finished_len; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 5020 | smp->data.u.str = *finished_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 5021 | smp->data.type = SMP_T_BIN; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 5022 | |
| 5023 | return 1; |
| 5024 | #else |
| 5025 | return 0; |
| 5026 | #endif |
| 5027 | } |
| 5028 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 5029 | /* 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] | 5030 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 5031 | 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] | 5032 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5033 | struct connection *conn; |
| 5034 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5035 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5036 | if (!conn || conn->xprt != &ssl_sock) |
| 5037 | return 0; |
| 5038 | |
| 5039 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 5040 | smp->flags = SMP_F_MAY_CHANGE; |
| 5041 | return 0; |
| 5042 | } |
| 5043 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 5044 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 5045 | 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] | 5046 | smp->flags = 0; |
| 5047 | |
| 5048 | return 1; |
| 5049 | } |
| 5050 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 5051 | /* 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] | 5052 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 5053 | 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] | 5054 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5055 | struct connection *conn; |
| 5056 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5057 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5058 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 5059 | return 0; |
| 5060 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5061 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 5062 | smp->flags = SMP_F_MAY_CHANGE; |
| 5063 | return 0; |
| 5064 | } |
| 5065 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 5066 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 5067 | 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] | 5068 | smp->flags = 0; |
| 5069 | |
| 5070 | return 1; |
| 5071 | } |
| 5072 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 5073 | /* integer, returns the first verify error on client certificate */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 5074 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 5075 | 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] | 5076 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5077 | struct connection *conn; |
| 5078 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5079 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5080 | if (!conn || conn->xprt != &ssl_sock) |
| 5081 | return 0; |
| 5082 | |
| 5083 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 5084 | smp->flags = SMP_F_MAY_CHANGE; |
| 5085 | return 0; |
| 5086 | } |
| 5087 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 5088 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 5089 | 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] | 5090 | smp->flags = 0; |
| 5091 | |
| 5092 | return 1; |
| 5093 | } |
| 5094 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 5095 | /* integer, returns the verify result on client cert */ |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 5096 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 5097 | 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] | 5098 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5099 | struct connection *conn; |
| 5100 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 5101 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5102 | if (!conn || conn->xprt != &ssl_sock) |
| 5103 | return 0; |
| 5104 | |
| 5105 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 5106 | smp->flags = SMP_F_MAY_CHANGE; |
| 5107 | return 0; |
| 5108 | } |
| 5109 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 5110 | if (!conn->xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 5111 | return 0; |
| 5112 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 5113 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 5114 | 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] | 5115 | smp->flags = 0; |
| 5116 | |
| 5117 | return 1; |
| 5118 | } |
| 5119 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 5120 | /* parse the "ca-file" bind keyword */ |
| 5121 | static int bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5122 | { |
| 5123 | if (!*args[cur_arg + 1]) { |
| 5124 | if (err) |
| 5125 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 5126 | return ERR_ALERT | ERR_FATAL; |
| 5127 | } |
| 5128 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5129 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 5130 | memprintf(&conf->ca_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 5131 | else |
| 5132 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 5133 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5134 | return 0; |
| 5135 | } |
| 5136 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5137 | /* parse the "ca-sign-file" bind keyword */ |
| 5138 | static int bind_parse_ca_sign_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5139 | { |
| 5140 | if (!*args[cur_arg + 1]) { |
| 5141 | if (err) |
| 5142 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 5143 | return ERR_ALERT | ERR_FATAL; |
| 5144 | } |
| 5145 | |
| 5146 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 5147 | memprintf(&conf->ca_sign_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 5148 | else |
| 5149 | memprintf(&conf->ca_sign_file, "%s", args[cur_arg + 1]); |
| 5150 | |
| 5151 | return 0; |
| 5152 | } |
| 5153 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 5154 | /* parse the "ca-sign-pass" bind keyword */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5155 | static int bind_parse_ca_sign_pass(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5156 | { |
| 5157 | if (!*args[cur_arg + 1]) { |
| 5158 | if (err) |
| 5159 | memprintf(err, "'%s' : missing CAkey password", args[cur_arg]); |
| 5160 | return ERR_ALERT | ERR_FATAL; |
| 5161 | } |
| 5162 | memprintf(&conf->ca_sign_pass, "%s", args[cur_arg + 1]); |
| 5163 | return 0; |
| 5164 | } |
| 5165 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5166 | /* parse the "ciphers" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 5167 | static int bind_parse_ciphers(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] | 5168 | { |
| 5169 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 5170 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5171 | return ERR_ALERT | ERR_FATAL; |
| 5172 | } |
| 5173 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 5174 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 5175 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5176 | return 0; |
| 5177 | } |
| 5178 | |
| 5179 | /* parse the "crt" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 5180 | 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] | 5181 | { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 5182 | char path[MAXPATHLEN]; |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 5183 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5184 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 5185 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5186 | return ERR_ALERT | ERR_FATAL; |
| 5187 | } |
| 5188 | |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 5189 | if ((*args[cur_arg + 1] != '/' ) && global.crt_base) { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 5190 | if ((strlen(global.crt_base) + 1 + strlen(args[cur_arg + 1]) + 1) > MAXPATHLEN) { |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 5191 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 5192 | return ERR_ALERT | ERR_FATAL; |
| 5193 | } |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 5194 | snprintf(path, sizeof(path), "%s/%s", global.crt_base, args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 5195 | if (ssl_sock_load_cert(path, conf, px, err) > 0) |
| 5196 | return ERR_ALERT | ERR_FATAL; |
| 5197 | |
| 5198 | return 0; |
| 5199 | } |
| 5200 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 5201 | if (ssl_sock_load_cert(args[cur_arg + 1], conf, px, err) > 0) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5202 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5203 | |
| 5204 | return 0; |
| 5205 | } |
| 5206 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 5207 | /* parse the "crt-list" bind keyword */ |
| 5208 | static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5209 | { |
| 5210 | if (!*args[cur_arg + 1]) { |
| 5211 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
| 5212 | return ERR_ALERT | ERR_FATAL; |
| 5213 | } |
| 5214 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 5215 | if (ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err) > 0) { |
| 5216 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 5217 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 5218 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 5219 | |
| 5220 | return 0; |
| 5221 | } |
| 5222 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 5223 | /* parse the "crl-file" bind keyword */ |
| 5224 | static int bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5225 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 5226 | #ifndef X509_V_FLAG_CRL_CHECK |
| 5227 | if (err) |
| 5228 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 5229 | return ERR_ALERT | ERR_FATAL; |
| 5230 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5231 | if (!*args[cur_arg + 1]) { |
| 5232 | if (err) |
| 5233 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 5234 | return ERR_ALERT | ERR_FATAL; |
| 5235 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 5236 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5237 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 5238 | memprintf(&conf->crl_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 5239 | else |
| 5240 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 5241 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 5242 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 5243 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 5244 | } |
| 5245 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 5246 | /* parse the "ecdhe" bind keyword keyword */ |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 5247 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5248 | { |
| 5249 | #if OPENSSL_VERSION_NUMBER < 0x0090800fL |
| 5250 | if (err) |
| 5251 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 5252 | return ERR_ALERT | ERR_FATAL; |
| 5253 | #elif defined(OPENSSL_NO_ECDH) |
| 5254 | if (err) |
| 5255 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 5256 | return ERR_ALERT | ERR_FATAL; |
| 5257 | #else |
| 5258 | if (!*args[cur_arg + 1]) { |
| 5259 | if (err) |
| 5260 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 5261 | return ERR_ALERT | ERR_FATAL; |
| 5262 | } |
| 5263 | |
| 5264 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5265 | |
| 5266 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 5267 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5268 | } |
| 5269 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 5270 | /* parse the "crt-ignore-err" and "ca-ignore-err" bind keywords */ |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 5271 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5272 | { |
| 5273 | int code; |
| 5274 | char *p = args[cur_arg + 1]; |
| 5275 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 5276 | |
| 5277 | if (!*p) { |
| 5278 | if (err) |
| 5279 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 5280 | return ERR_ALERT | ERR_FATAL; |
| 5281 | } |
| 5282 | |
| 5283 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 5284 | ignerr = &conf->ca_ignerr; |
| 5285 | |
| 5286 | if (strcmp(p, "all") == 0) { |
| 5287 | *ignerr = ~0ULL; |
| 5288 | return 0; |
| 5289 | } |
| 5290 | |
| 5291 | while (p) { |
| 5292 | code = atoi(p); |
| 5293 | if ((code <= 0) || (code > 63)) { |
| 5294 | if (err) |
| 5295 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 5296 | args[cur_arg], code, args[cur_arg + 1]); |
| 5297 | return ERR_ALERT | ERR_FATAL; |
| 5298 | } |
| 5299 | *ignerr |= 1ULL << code; |
| 5300 | p = strchr(p, ','); |
| 5301 | if (p) |
| 5302 | p++; |
| 5303 | } |
| 5304 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 5305 | return 0; |
| 5306 | } |
| 5307 | |
| 5308 | /* parse the "force-sslv3" bind keyword */ |
| 5309 | static int bind_parse_force_sslv3(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5310 | { |
| 5311 | conf->ssl_options |= BC_SSL_O_USE_SSLV3; |
| 5312 | return 0; |
| 5313 | } |
| 5314 | |
| 5315 | /* parse the "force-tlsv10" bind keyword */ |
| 5316 | static int bind_parse_force_tlsv10(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5317 | { |
| 5318 | conf->ssl_options |= BC_SSL_O_USE_TLSV10; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 5319 | return 0; |
| 5320 | } |
| 5321 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 5322 | /* parse the "force-tlsv11" bind keyword */ |
| 5323 | static int bind_parse_force_tlsv11(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5324 | { |
| 5325 | #if SSL_OP_NO_TLSv1_1 |
| 5326 | conf->ssl_options |= BC_SSL_O_USE_TLSV11; |
| 5327 | return 0; |
| 5328 | #else |
| 5329 | if (err) |
| 5330 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[cur_arg]); |
| 5331 | return ERR_ALERT | ERR_FATAL; |
| 5332 | #endif |
| 5333 | } |
| 5334 | |
| 5335 | /* parse the "force-tlsv12" bind keyword */ |
| 5336 | static int bind_parse_force_tlsv12(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5337 | { |
| 5338 | #if SSL_OP_NO_TLSv1_2 |
| 5339 | conf->ssl_options |= BC_SSL_O_USE_TLSV12; |
| 5340 | return 0; |
| 5341 | #else |
| 5342 | if (err) |
| 5343 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[cur_arg]); |
| 5344 | return ERR_ALERT | ERR_FATAL; |
| 5345 | #endif |
| 5346 | } |
| 5347 | |
| 5348 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 5349 | /* parse the "no-tls-tickets" bind keyword */ |
| 5350 | static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5351 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 5352 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 5353 | return 0; |
| 5354 | } |
| 5355 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 5356 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 5357 | /* parse the "no-sslv3" bind keyword */ |
| 5358 | static int bind_parse_no_sslv3(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] | 5359 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 5360 | conf->ssl_options |= BC_SSL_O_NO_SSLV3; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5361 | return 0; |
| 5362 | } |
| 5363 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 5364 | /* parse the "no-tlsv10" bind keyword */ |
| 5365 | static int bind_parse_no_tlsv10(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 5366 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 5367 | conf->ssl_options |= BC_SSL_O_NO_TLSV10; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 5368 | return 0; |
| 5369 | } |
| 5370 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 5371 | /* parse the "no-tlsv11" bind keyword */ |
| 5372 | static int bind_parse_no_tlsv11(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 5373 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 5374 | conf->ssl_options |= BC_SSL_O_NO_TLSV11; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 5375 | return 0; |
| 5376 | } |
| 5377 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 5378 | /* parse the "no-tlsv12" bind keyword */ |
| 5379 | static int bind_parse_no_tlsv12(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] | 5380 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 5381 | conf->ssl_options |= BC_SSL_O_NO_TLSV12; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5382 | return 0; |
| 5383 | } |
| 5384 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 5385 | /* parse the "npn" bind keyword */ |
| 5386 | static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5387 | { |
| 5388 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 5389 | char *p1, *p2; |
| 5390 | |
| 5391 | if (!*args[cur_arg + 1]) { |
| 5392 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]); |
| 5393 | return ERR_ALERT | ERR_FATAL; |
| 5394 | } |
| 5395 | |
| 5396 | free(conf->npn_str); |
| 5397 | |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 5398 | /* the NPN string is built as a suite of (<len> <name>)*, |
| 5399 | * so we reuse each comma to store the next <len> and need |
| 5400 | * one more for the end of the string. |
| 5401 | */ |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 5402 | conf->npn_len = strlen(args[cur_arg + 1]) + 1; |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 5403 | conf->npn_str = calloc(1, conf->npn_len + 1); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 5404 | memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len); |
| 5405 | |
| 5406 | /* replace commas with the name length */ |
| 5407 | p1 = conf->npn_str; |
| 5408 | p2 = p1 + 1; |
| 5409 | while (1) { |
| 5410 | p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1)); |
| 5411 | if (!p2) |
| 5412 | p2 = p1 + 1 + strlen(p1 + 1); |
| 5413 | |
| 5414 | if (p2 - (p1 + 1) > 255) { |
| 5415 | *p2 = '\0'; |
| 5416 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 5417 | return ERR_ALERT | ERR_FATAL; |
| 5418 | } |
| 5419 | |
| 5420 | *p1 = p2 - (p1 + 1); |
| 5421 | p1 = p2; |
| 5422 | |
| 5423 | if (!*p2) |
| 5424 | break; |
| 5425 | |
| 5426 | *(p2++) = '\0'; |
| 5427 | } |
| 5428 | return 0; |
| 5429 | #else |
| 5430 | if (err) |
| 5431 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]); |
| 5432 | return ERR_ALERT | ERR_FATAL; |
| 5433 | #endif |
| 5434 | } |
| 5435 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 5436 | /* parse the "alpn" bind keyword */ |
| 5437 | static int bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5438 | { |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 5439 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 5440 | char *p1, *p2; |
| 5441 | |
| 5442 | if (!*args[cur_arg + 1]) { |
| 5443 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[cur_arg]); |
| 5444 | return ERR_ALERT | ERR_FATAL; |
| 5445 | } |
| 5446 | |
| 5447 | free(conf->alpn_str); |
| 5448 | |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 5449 | /* the ALPN string is built as a suite of (<len> <name>)*, |
| 5450 | * so we reuse each comma to store the next <len> and need |
| 5451 | * one more for the end of the string. |
| 5452 | */ |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 5453 | conf->alpn_len = strlen(args[cur_arg + 1]) + 1; |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 5454 | conf->alpn_str = calloc(1, conf->alpn_len + 1); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 5455 | memcpy(conf->alpn_str + 1, args[cur_arg + 1], conf->alpn_len); |
| 5456 | |
| 5457 | /* replace commas with the name length */ |
| 5458 | p1 = conf->alpn_str; |
| 5459 | p2 = p1 + 1; |
| 5460 | while (1) { |
| 5461 | p2 = memchr(p1 + 1, ',', conf->alpn_str + conf->alpn_len - (p1 + 1)); |
| 5462 | if (!p2) |
| 5463 | p2 = p1 + 1 + strlen(p1 + 1); |
| 5464 | |
| 5465 | if (p2 - (p1 + 1) > 255) { |
| 5466 | *p2 = '\0'; |
| 5467 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 5468 | return ERR_ALERT | ERR_FATAL; |
| 5469 | } |
| 5470 | |
| 5471 | *p1 = p2 - (p1 + 1); |
| 5472 | p1 = p2; |
| 5473 | |
| 5474 | if (!*p2) |
| 5475 | break; |
| 5476 | |
| 5477 | *(p2++) = '\0'; |
| 5478 | } |
| 5479 | return 0; |
| 5480 | #else |
| 5481 | if (err) |
| 5482 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[cur_arg]); |
| 5483 | return ERR_ALERT | ERR_FATAL; |
| 5484 | #endif |
| 5485 | } |
| 5486 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5487 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 5488 | 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] | 5489 | { |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 5490 | struct listener *l; |
| 5491 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 5492 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 5493 | |
| 5494 | if (global.listen_default_ciphers && !conf->ciphers) |
| 5495 | conf->ciphers = strdup(global.listen_default_ciphers); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 5496 | conf->ssl_options |= global.listen_default_ssloptions; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 5497 | |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 5498 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5499 | l->xprt = &ssl_sock; |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 5500 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5501 | return 0; |
| 5502 | } |
| 5503 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5504 | /* parse the "generate-certificates" bind keyword */ |
| 5505 | static int bind_parse_generate_certs(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5506 | { |
| 5507 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5508 | conf->generate_certs = 1; |
| 5509 | #else |
| 5510 | memprintf(err, "%sthis version of openssl cannot generate SSL certificates.\n", |
| 5511 | err && *err ? *err : ""); |
| 5512 | #endif |
| 5513 | return 0; |
| 5514 | } |
| 5515 | |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 5516 | /* parse the "strict-sni" bind keyword */ |
| 5517 | static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5518 | { |
| 5519 | conf->strict_sni = 1; |
| 5520 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5521 | } |
| 5522 | |
| 5523 | /* parse the "tls-ticket-keys" bind keyword */ |
| 5524 | static int bind_parse_tls_ticket_keys(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5525 | { |
| 5526 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 5527 | FILE *f; |
| 5528 | int i = 0; |
| 5529 | char thisline[LINESIZE]; |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 5530 | struct tls_keys_ref *keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5531 | |
| 5532 | if (!*args[cur_arg + 1]) { |
| 5533 | if (err) |
| 5534 | memprintf(err, "'%s' : missing TLS ticket keys file path", args[cur_arg]); |
| 5535 | return ERR_ALERT | ERR_FATAL; |
| 5536 | } |
| 5537 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 5538 | keys_ref = tlskeys_ref_lookup(args[cur_arg + 1]); |
| 5539 | if(keys_ref) { |
| 5540 | conf->keys_ref = keys_ref; |
| 5541 | return 0; |
| 5542 | } |
| 5543 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 5544 | keys_ref = malloc(sizeof(*keys_ref)); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 5545 | keys_ref->tlskeys = malloc(TLS_TICKETS_NO * sizeof(struct tls_sess_key)); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5546 | |
| 5547 | if ((f = fopen(args[cur_arg + 1], "r")) == NULL) { |
| 5548 | if (err) |
| 5549 | memprintf(err, "'%s' : unable to load ssl tickets keys file", args[cur_arg+1]); |
| 5550 | return ERR_ALERT | ERR_FATAL; |
| 5551 | } |
| 5552 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 5553 | keys_ref->filename = strdup(args[cur_arg + 1]); |
| 5554 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5555 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 5556 | int len = strlen(thisline); |
| 5557 | /* Strip newline characters from the end */ |
| 5558 | if(thisline[len - 1] == '\n') |
| 5559 | thisline[--len] = 0; |
| 5560 | |
| 5561 | if(thisline[len - 1] == '\r') |
| 5562 | thisline[--len] = 0; |
| 5563 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 5564 | 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] | 5565 | if (err) |
| 5566 | 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] | 5567 | fclose(f); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5568 | return ERR_ALERT | ERR_FATAL; |
| 5569 | } |
| 5570 | i++; |
| 5571 | } |
| 5572 | |
| 5573 | if (i < TLS_TICKETS_NO) { |
| 5574 | if (err) |
| 5575 | 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] | 5576 | fclose(f); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5577 | return ERR_ALERT | ERR_FATAL; |
| 5578 | } |
| 5579 | |
| 5580 | fclose(f); |
| 5581 | |
| 5582 | /* Use penultimate key for encryption, handle when TLS_TICKETS_NO = 1 */ |
Nenad Merdanovic | 1789115 | 2016-03-25 22:16:57 +0100 | [diff] [blame] | 5583 | i -= 2; |
| 5584 | 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] | 5585 | keys_ref->unique_id = -1; |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 5586 | conf->keys_ref = keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5587 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 5588 | LIST_ADD(&tlskeys_reference, &keys_ref->list); |
| 5589 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5590 | return 0; |
| 5591 | #else |
| 5592 | if (err) |
| 5593 | memprintf(err, "'%s' : TLS ticket callback extension not supported", args[cur_arg]); |
| 5594 | return ERR_ALERT | ERR_FATAL; |
| 5595 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 5596 | } |
| 5597 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5598 | /* parse the "verify" bind keyword */ |
| 5599 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 5600 | { |
| 5601 | if (!*args[cur_arg + 1]) { |
| 5602 | if (err) |
| 5603 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 5604 | return ERR_ALERT | ERR_FATAL; |
| 5605 | } |
| 5606 | |
| 5607 | if (strcmp(args[cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5608 | conf->verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5609 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5610 | conf->verify = SSL_SOCK_VERIFY_OPTIONAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5611 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5612 | conf->verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 5613 | else { |
| 5614 | if (err) |
| 5615 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 5616 | args[cur_arg], args[cur_arg + 1]); |
| 5617 | return ERR_ALERT | ERR_FATAL; |
| 5618 | } |
| 5619 | |
| 5620 | return 0; |
| 5621 | } |
| 5622 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5623 | /************** "server" keywords ****************/ |
| 5624 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5625 | /* parse the "ca-file" server keyword */ |
| 5626 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5627 | { |
| 5628 | if (!*args[*cur_arg + 1]) { |
| 5629 | if (err) |
| 5630 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 5631 | return ERR_ALERT | ERR_FATAL; |
| 5632 | } |
| 5633 | |
| 5634 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 5635 | memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 5636 | else |
| 5637 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 5638 | |
| 5639 | return 0; |
| 5640 | } |
| 5641 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5642 | /* parse the "check-ssl" server keyword */ |
| 5643 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5644 | { |
| 5645 | newsrv->check.use_ssl = 1; |
| 5646 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 5647 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 5648 | newsrv->ssl_ctx.options |= global.connect_default_ssloptions; |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5649 | return 0; |
| 5650 | } |
| 5651 | |
| 5652 | /* parse the "ciphers" server keyword */ |
| 5653 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5654 | { |
| 5655 | if (!*args[*cur_arg + 1]) { |
| 5656 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 5657 | return ERR_ALERT | ERR_FATAL; |
| 5658 | } |
| 5659 | |
| 5660 | free(newsrv->ssl_ctx.ciphers); |
| 5661 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 5662 | return 0; |
| 5663 | } |
| 5664 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5665 | /* parse the "crl-file" server keyword */ |
| 5666 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5667 | { |
| 5668 | #ifndef X509_V_FLAG_CRL_CHECK |
| 5669 | if (err) |
| 5670 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 5671 | return ERR_ALERT | ERR_FATAL; |
| 5672 | #else |
| 5673 | if (!*args[*cur_arg + 1]) { |
| 5674 | if (err) |
| 5675 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 5676 | return ERR_ALERT | ERR_FATAL; |
| 5677 | } |
| 5678 | |
| 5679 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 5680 | memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 5681 | else |
| 5682 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 5683 | |
| 5684 | return 0; |
| 5685 | #endif |
| 5686 | } |
| 5687 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 5688 | /* parse the "crt" server keyword */ |
| 5689 | static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5690 | { |
| 5691 | if (!*args[*cur_arg + 1]) { |
| 5692 | if (err) |
| 5693 | memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]); |
| 5694 | return ERR_ALERT | ERR_FATAL; |
| 5695 | } |
| 5696 | |
| 5697 | if ((*args[*cur_arg + 1] != '/') && global.crt_base) |
| 5698 | memprintf(&newsrv->ssl_ctx.client_crt, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 5699 | else |
| 5700 | memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]); |
| 5701 | |
| 5702 | return 0; |
| 5703 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5704 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5705 | /* parse the "force-sslv3" server keyword */ |
| 5706 | static int srv_parse_force_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5707 | { |
| 5708 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_SSLV3; |
| 5709 | return 0; |
| 5710 | } |
| 5711 | |
| 5712 | /* parse the "force-tlsv10" server keyword */ |
| 5713 | static int srv_parse_force_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5714 | { |
| 5715 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV10; |
| 5716 | return 0; |
| 5717 | } |
| 5718 | |
| 5719 | /* parse the "force-tlsv11" server keyword */ |
| 5720 | static int srv_parse_force_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5721 | { |
| 5722 | #if SSL_OP_NO_TLSv1_1 |
| 5723 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV11; |
| 5724 | return 0; |
| 5725 | #else |
| 5726 | if (err) |
| 5727 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[*cur_arg]); |
| 5728 | return ERR_ALERT | ERR_FATAL; |
| 5729 | #endif |
| 5730 | } |
| 5731 | |
| 5732 | /* parse the "force-tlsv12" server keyword */ |
| 5733 | static int srv_parse_force_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5734 | { |
| 5735 | #if SSL_OP_NO_TLSv1_2 |
| 5736 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV12; |
| 5737 | return 0; |
| 5738 | #else |
| 5739 | if (err) |
| 5740 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[*cur_arg]); |
| 5741 | return ERR_ALERT | ERR_FATAL; |
| 5742 | #endif |
| 5743 | } |
| 5744 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 5745 | /* parse the "no-ssl-reuse" server keyword */ |
| 5746 | static int srv_parse_no_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5747 | { |
| 5748 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_REUSE; |
| 5749 | return 0; |
| 5750 | } |
| 5751 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5752 | /* parse the "no-sslv3" server keyword */ |
| 5753 | static int srv_parse_no_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5754 | { |
| 5755 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_SSLV3; |
| 5756 | return 0; |
| 5757 | } |
| 5758 | |
| 5759 | /* parse the "no-tlsv10" server keyword */ |
| 5760 | static int srv_parse_no_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5761 | { |
| 5762 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV10; |
| 5763 | return 0; |
| 5764 | } |
| 5765 | |
| 5766 | /* parse the "no-tlsv11" server keyword */ |
| 5767 | static int srv_parse_no_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5768 | { |
| 5769 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV11; |
| 5770 | return 0; |
| 5771 | } |
| 5772 | |
| 5773 | /* parse the "no-tlsv12" server keyword */ |
| 5774 | static int srv_parse_no_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5775 | { |
| 5776 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV12; |
| 5777 | return 0; |
| 5778 | } |
| 5779 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 5780 | /* parse the "no-tls-tickets" server keyword */ |
| 5781 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5782 | { |
| 5783 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 5784 | return 0; |
| 5785 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 5786 | /* parse the "send-proxy-v2-ssl" server keyword */ |
| 5787 | static int srv_parse_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5788 | { |
| 5789 | newsrv->pp_opts |= SRV_PP_V2; |
| 5790 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 5791 | return 0; |
| 5792 | } |
| 5793 | |
| 5794 | /* parse the "send-proxy-v2-ssl-cn" server keyword */ |
| 5795 | static int srv_parse_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5796 | { |
| 5797 | newsrv->pp_opts |= SRV_PP_V2; |
| 5798 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 5799 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
| 5800 | return 0; |
| 5801 | } |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 5802 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 5803 | /* parse the "sni" server keyword */ |
| 5804 | static int srv_parse_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5805 | { |
| 5806 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5807 | memprintf(err, "'%s' : the current SSL library doesn't support the SNI TLS extension", args[*cur_arg]); |
| 5808 | return ERR_ALERT | ERR_FATAL; |
| 5809 | #else |
Cyril Bonté | 23d19d6 | 2016-03-07 22:13:22 +0100 | [diff] [blame] | 5810 | int idx; |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 5811 | struct sample_expr *expr; |
| 5812 | |
| 5813 | if (!*args[*cur_arg + 1]) { |
| 5814 | memprintf(err, "'%s' : missing sni expression", args[*cur_arg]); |
| 5815 | return ERR_ALERT | ERR_FATAL; |
| 5816 | } |
| 5817 | |
Cyril Bonté | 23d19d6 | 2016-03-07 22:13:22 +0100 | [diff] [blame] | 5818 | idx = (*cur_arg) + 1; |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 5819 | proxy->conf.args.ctx = ARGC_SRV; |
| 5820 | |
Cyril Bonté | 23d19d6 | 2016-03-07 22:13:22 +0100 | [diff] [blame] | 5821 | expr = sample_parse_expr((char **)args, &idx, px->conf.file, px->conf.line, err, &proxy->conf.args); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 5822 | if (!expr) { |
| 5823 | memprintf(err, "error detected while parsing sni expression : %s", *err); |
| 5824 | return ERR_ALERT | ERR_FATAL; |
| 5825 | } |
| 5826 | |
| 5827 | if (!(expr->fetch->val & SMP_VAL_BE_SRV_CON)) { |
| 5828 | memprintf(err, "error detected while parsing sni expression : " |
| 5829 | " fetch method '%s' extracts information from '%s', none of which is available here.\n", |
Cyril Bonté | 23d19d6 | 2016-03-07 22:13:22 +0100 | [diff] [blame] | 5830 | args[idx-1], sample_src_names(expr->fetch->use)); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 5831 | return ERR_ALERT | ERR_FATAL; |
| 5832 | } |
| 5833 | |
| 5834 | px->http_needed |= !!(expr->fetch->use & SMP_USE_HTTP_ANY); |
| 5835 | newsrv->ssl_ctx.sni = expr; |
| 5836 | return 0; |
| 5837 | #endif |
| 5838 | } |
| 5839 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5840 | /* parse the "ssl" server keyword */ |
| 5841 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5842 | { |
| 5843 | newsrv->use_ssl = 1; |
| 5844 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 5845 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
| 5846 | return 0; |
| 5847 | } |
| 5848 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5849 | /* parse the "verify" server keyword */ |
| 5850 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5851 | { |
| 5852 | if (!*args[*cur_arg + 1]) { |
| 5853 | if (err) |
| 5854 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 5855 | return ERR_ALERT | ERR_FATAL; |
| 5856 | } |
| 5857 | |
| 5858 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5859 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5860 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5861 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5862 | else { |
| 5863 | if (err) |
| 5864 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 5865 | args[*cur_arg], args[*cur_arg + 1]); |
| 5866 | return ERR_ALERT | ERR_FATAL; |
| 5867 | } |
| 5868 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5869 | return 0; |
| 5870 | } |
| 5871 | |
| 5872 | /* parse the "verifyhost" server keyword */ |
| 5873 | static int srv_parse_verifyhost(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 5874 | { |
| 5875 | if (!*args[*cur_arg + 1]) { |
| 5876 | if (err) |
| 5877 | memprintf(err, "'%s' : missing hostname to verify against", args[*cur_arg]); |
| 5878 | return ERR_ALERT | ERR_FATAL; |
| 5879 | } |
| 5880 | |
| 5881 | newsrv->ssl_ctx.verify_host = strdup(args[*cur_arg + 1]); |
| 5882 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5883 | return 0; |
| 5884 | } |
| 5885 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 5886 | /* parse the "ssl-default-bind-options" keyword in global section */ |
| 5887 | static int ssl_parse_default_bind_options(char **args, int section_type, struct proxy *curpx, |
| 5888 | struct proxy *defpx, const char *file, int line, |
| 5889 | char **err) { |
| 5890 | int i = 1; |
| 5891 | |
| 5892 | if (*(args[i]) == 0) { |
| 5893 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 5894 | return -1; |
| 5895 | } |
| 5896 | while (*(args[i])) { |
| 5897 | if (!strcmp(args[i], "no-sslv3")) |
| 5898 | global.listen_default_ssloptions |= BC_SSL_O_NO_SSLV3; |
| 5899 | else if (!strcmp(args[i], "no-tlsv10")) |
| 5900 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLSV10; |
| 5901 | else if (!strcmp(args[i], "no-tlsv11")) |
| 5902 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLSV11; |
| 5903 | else if (!strcmp(args[i], "no-tlsv12")) |
| 5904 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLSV12; |
| 5905 | else if (!strcmp(args[i], "force-sslv3")) |
| 5906 | global.listen_default_ssloptions |= BC_SSL_O_USE_SSLV3; |
| 5907 | else if (!strcmp(args[i], "force-tlsv10")) |
| 5908 | global.listen_default_ssloptions |= BC_SSL_O_USE_TLSV10; |
| 5909 | else if (!strcmp(args[i], "force-tlsv11")) { |
| 5910 | #if SSL_OP_NO_TLSv1_1 |
| 5911 | global.listen_default_ssloptions |= BC_SSL_O_USE_TLSV11; |
| 5912 | #else |
| 5913 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.1", args[0], args[i]); |
| 5914 | return -1; |
| 5915 | #endif |
| 5916 | } |
| 5917 | else if (!strcmp(args[i], "force-tlsv12")) { |
| 5918 | #if SSL_OP_NO_TLSv1_2 |
| 5919 | global.listen_default_ssloptions |= BC_SSL_O_USE_TLSV12; |
| 5920 | #else |
| 5921 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.2", args[0], args[i]); |
| 5922 | return -1; |
| 5923 | #endif |
| 5924 | } |
| 5925 | else if (!strcmp(args[i], "no-tls-tickets")) |
| 5926 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLS_TICKETS; |
| 5927 | else { |
| 5928 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 5929 | return -1; |
| 5930 | } |
| 5931 | i++; |
| 5932 | } |
| 5933 | return 0; |
| 5934 | } |
| 5935 | |
| 5936 | /* parse the "ssl-default-server-options" keyword in global section */ |
| 5937 | static int ssl_parse_default_server_options(char **args, int section_type, struct proxy *curpx, |
| 5938 | struct proxy *defpx, const char *file, int line, |
| 5939 | char **err) { |
| 5940 | int i = 1; |
| 5941 | |
| 5942 | if (*(args[i]) == 0) { |
| 5943 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 5944 | return -1; |
| 5945 | } |
| 5946 | while (*(args[i])) { |
| 5947 | if (!strcmp(args[i], "no-sslv3")) |
| 5948 | global.connect_default_ssloptions |= SRV_SSL_O_NO_SSLV3; |
| 5949 | else if (!strcmp(args[i], "no-tlsv10")) |
| 5950 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLSV10; |
| 5951 | else if (!strcmp(args[i], "no-tlsv11")) |
| 5952 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLSV11; |
| 5953 | else if (!strcmp(args[i], "no-tlsv12")) |
| 5954 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLSV12; |
| 5955 | else if (!strcmp(args[i], "force-sslv3")) |
| 5956 | global.connect_default_ssloptions |= SRV_SSL_O_USE_SSLV3; |
| 5957 | else if (!strcmp(args[i], "force-tlsv10")) |
| 5958 | global.connect_default_ssloptions |= SRV_SSL_O_USE_TLSV10; |
| 5959 | else if (!strcmp(args[i], "force-tlsv11")) { |
| 5960 | #if SSL_OP_NO_TLSv1_1 |
| 5961 | global.connect_default_ssloptions |= SRV_SSL_O_USE_TLSV11; |
| 5962 | #else |
| 5963 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.1", args[0], args[i]); |
| 5964 | return -1; |
| 5965 | #endif |
| 5966 | } |
| 5967 | else if (!strcmp(args[i], "force-tlsv12")) { |
| 5968 | #if SSL_OP_NO_TLSv1_2 |
| 5969 | global.connect_default_ssloptions |= SRV_SSL_O_USE_TLSV12; |
| 5970 | #else |
| 5971 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.2", args[0], args[i]); |
| 5972 | return -1; |
| 5973 | #endif |
| 5974 | } |
| 5975 | else if (!strcmp(args[i], "no-tls-tickets")) |
| 5976 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLS_TICKETS; |
| 5977 | else { |
| 5978 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 5979 | return -1; |
| 5980 | } |
| 5981 | i++; |
| 5982 | } |
| 5983 | return 0; |
| 5984 | } |
| 5985 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 5986 | /* This function is used with TLS ticket keys management. It permits to browse |
| 5987 | * each reference. The variable <getnext> must contain the current node, |
| 5988 | * <end> point to the root node. |
| 5989 | */ |
| 5990 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 5991 | static inline |
| 5992 | struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end) |
| 5993 | { |
| 5994 | struct tls_keys_ref *ref = getnext; |
| 5995 | |
| 5996 | while (1) { |
| 5997 | |
| 5998 | /* Get next list entry. */ |
| 5999 | ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list); |
| 6000 | |
| 6001 | /* If the entry is the last of the list, return NULL. */ |
| 6002 | if (&ref->list == end) |
| 6003 | return NULL; |
| 6004 | |
| 6005 | return ref; |
| 6006 | } |
| 6007 | } |
| 6008 | |
| 6009 | static inline |
| 6010 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 6011 | { |
| 6012 | int id; |
| 6013 | char *error; |
| 6014 | |
| 6015 | /* If the reference starts by a '#', this is numeric id. */ |
| 6016 | if (reference[0] == '#') { |
| 6017 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 6018 | id = strtol(reference + 1, &error, 10); |
| 6019 | if (*error != '\0') |
| 6020 | return NULL; |
| 6021 | |
| 6022 | /* Perform the unique id lookup. */ |
| 6023 | return tlskeys_ref_lookupid(id); |
| 6024 | } |
| 6025 | |
| 6026 | /* Perform the string lookup. */ |
| 6027 | return tlskeys_ref_lookup(reference); |
| 6028 | } |
| 6029 | #endif |
| 6030 | |
| 6031 | |
| 6032 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 6033 | |
| 6034 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 6035 | |
| 6036 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 6037 | return cli_io_handler_tlskeys_files(appctx); |
| 6038 | } |
| 6039 | |
| 6040 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 6041 | |
| 6042 | struct stream_interface *si = appctx->owner; |
| 6043 | |
| 6044 | switch (appctx->st2) { |
| 6045 | case STAT_ST_INIT: |
| 6046 | /* Display the column headers. If the message cannot be sent, |
| 6047 | * quit the fucntion with returning 0. The function is called |
| 6048 | * later and restart at the state "STAT_ST_INIT". |
| 6049 | */ |
| 6050 | chunk_reset(&trash); |
| 6051 | |
| 6052 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 6053 | chunk_appendf(&trash, "# id secret\n"); |
| 6054 | else |
| 6055 | chunk_appendf(&trash, "# id (file)\n"); |
| 6056 | |
| 6057 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 6058 | si_applet_cant_put(si); |
| 6059 | return 0; |
| 6060 | } |
| 6061 | |
| 6062 | appctx->ctx.tlskeys.dump_keys_index = 0; |
| 6063 | |
| 6064 | /* Now, we start the browsing of the references lists. |
| 6065 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 6066 | * available field of this pointer is <list>. It is used with the function |
| 6067 | * tlskeys_list_get_next() for retruning the first available entry |
| 6068 | */ |
| 6069 | if (appctx->ctx.tlskeys.ref == NULL) { |
| 6070 | appctx->ctx.tlskeys.ref = LIST_ELEM(&tlskeys_reference, struct tls_keys_ref *, list); |
| 6071 | appctx->ctx.tlskeys.ref = tlskeys_list_get_next(appctx->ctx.tlskeys.ref, &tlskeys_reference); |
| 6072 | } |
| 6073 | |
| 6074 | appctx->st2 = STAT_ST_LIST; |
| 6075 | /* fall through */ |
| 6076 | |
| 6077 | case STAT_ST_LIST: |
| 6078 | while (appctx->ctx.tlskeys.ref) { |
| 6079 | int head = appctx->ctx.tlskeys.ref->tls_ticket_enc_index; |
| 6080 | |
| 6081 | chunk_reset(&trash); |
| 6082 | if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.tlskeys.dump_keys_index == 0) |
| 6083 | chunk_appendf(&trash, "# "); |
| 6084 | if (appctx->ctx.tlskeys.dump_keys_index == 0) |
| 6085 | chunk_appendf(&trash, "%d (%s)\n", appctx->ctx.tlskeys.ref->unique_id, |
| 6086 | appctx->ctx.tlskeys.ref->filename); |
| 6087 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
| 6088 | while (appctx->ctx.tlskeys.dump_keys_index < TLS_TICKETS_NO) { |
| 6089 | struct chunk *t2 = get_trash_chunk(); |
| 6090 | |
| 6091 | chunk_reset(t2); |
| 6092 | /* should never fail here because we dump only a key in the t2 buffer */ |
| 6093 | t2->len = a2base64((char *)(appctx->ctx.tlskeys.ref->tlskeys + (head + 2 + appctx->ctx.tlskeys.dump_keys_index) % TLS_TICKETS_NO), |
| 6094 | sizeof(struct tls_sess_key), t2->str, t2->size); |
| 6095 | chunk_appendf(&trash, "%d.%d %s\n", appctx->ctx.tlskeys.ref->unique_id, appctx->ctx.tlskeys.dump_keys_index, t2->str); |
| 6096 | |
| 6097 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 6098 | /* let's try again later from this stream. We add ourselves into |
| 6099 | * this stream's users so that it can remove us upon termination. |
| 6100 | */ |
| 6101 | si_applet_cant_put(si); |
| 6102 | return 0; |
| 6103 | } |
| 6104 | appctx->ctx.tlskeys.dump_keys_index++; |
| 6105 | } |
| 6106 | appctx->ctx.tlskeys.dump_keys_index = 0; |
| 6107 | } |
| 6108 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 6109 | /* let's try again later from this stream. We add ourselves into |
| 6110 | * this stream's users so that it can remove us upon termination. |
| 6111 | */ |
| 6112 | si_applet_cant_put(si); |
| 6113 | return 0; |
| 6114 | } |
| 6115 | |
| 6116 | if (appctx->ctx.tlskeys.dump_all == 0) /* don't display everything if not necessary */ |
| 6117 | break; |
| 6118 | |
| 6119 | /* get next list entry and check the end of the list */ |
| 6120 | appctx->ctx.tlskeys.ref = tlskeys_list_get_next(appctx->ctx.tlskeys.ref, &tlskeys_reference); |
| 6121 | |
| 6122 | } |
| 6123 | |
| 6124 | appctx->st2 = STAT_ST_FIN; |
| 6125 | /* fall through */ |
| 6126 | |
| 6127 | default: |
| 6128 | appctx->st2 = STAT_ST_FIN; |
| 6129 | return 1; |
| 6130 | } |
| 6131 | return 0; |
| 6132 | } |
| 6133 | |
| 6134 | #endif |
| 6135 | |
| 6136 | static int cli_parse_show_tlskeys(char **args, struct appctx *appctx, void *private) |
| 6137 | { |
| 6138 | appctx->ctx.tlskeys.dump_all = 0; |
| 6139 | /* no parameter, shows only file list */ |
| 6140 | if (!*args[2]) { |
| 6141 | appctx->ctx.tlskeys.dump_all = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6142 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 6143 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6144 | } |
| 6145 | |
| 6146 | if (args[2][0] == '*') { |
| 6147 | /* list every TLS ticket keys */ |
| 6148 | appctx->ctx.tlskeys.ref = NULL; |
| 6149 | appctx->ctx.tlskeys.dump_all = 1; |
| 6150 | } else { |
| 6151 | appctx->ctx.tlskeys.ref = tlskeys_ref_lookup_ref(args[2]); |
Willy Tarreau | 30e5e18 | 2016-11-24 16:45:53 +0100 | [diff] [blame] | 6152 | if (!appctx->ctx.tlskeys.ref) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6153 | 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] | 6154 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6155 | return 1; |
| 6156 | } |
| 6157 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6158 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 6159 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6160 | } |
| 6161 | |
| 6162 | |
| 6163 | static int cli_parse_set_tlskeys(char **args, struct appctx *appctx, void *private) |
| 6164 | { |
| 6165 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
| 6166 | if (!*args[3] || !*args[4]) { |
| 6167 | 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] | 6168 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6169 | return 1; |
| 6170 | } |
| 6171 | |
| 6172 | appctx->ctx.tlskeys.ref = tlskeys_ref_lookup_ref(args[3]); |
| 6173 | if(!appctx->ctx.tlskeys.ref) { |
| 6174 | 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] | 6175 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6176 | return 1; |
| 6177 | } |
| 6178 | |
| 6179 | trash.len = base64dec(args[4], strlen(args[4]), trash.str, trash.size); |
| 6180 | if (trash.len != sizeof(struct tls_sess_key)) { |
| 6181 | 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] | 6182 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6183 | return 1; |
| 6184 | } |
| 6185 | |
| 6186 | memcpy(appctx->ctx.tlskeys.ref->tlskeys + ((appctx->ctx.tlskeys.ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO), trash.str, trash.len); |
| 6187 | appctx->ctx.tlskeys.ref->tls_ticket_enc_index = (appctx->ctx.tlskeys.ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 6188 | |
| 6189 | appctx->ctx.cli.msg = "TLS ticket key updated!"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 6190 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6191 | return 1; |
| 6192 | |
| 6193 | } |
| 6194 | |
| 6195 | static int cli_parse_set_ocspresponse(char **args, struct appctx *appctx, void *private) |
| 6196 | { |
| 6197 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 6198 | char *err = NULL; |
| 6199 | |
| 6200 | /* Expect one parameter: the new response in base64 encoding */ |
| 6201 | if (!*args[3]) { |
| 6202 | 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] | 6203 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6204 | return 1; |
| 6205 | } |
| 6206 | |
| 6207 | trash.len = base64dec(args[3], strlen(args[3]), trash.str, trash.size); |
| 6208 | if (trash.len < 0) { |
| 6209 | 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] | 6210 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6211 | return 1; |
| 6212 | } |
| 6213 | |
| 6214 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
| 6215 | if (err) { |
| 6216 | memprintf(&err, "%s.\n", err); |
| 6217 | appctx->ctx.cli.err = err; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 6218 | appctx->st0 = CLI_ST_PRINT_FREE; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6219 | } |
| 6220 | return 1; |
| 6221 | } |
| 6222 | appctx->ctx.cli.msg = "OCSP Response updated!"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 6223 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6224 | return 1; |
| 6225 | #else |
| 6226 | 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] | 6227 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6228 | return 1; |
| 6229 | #endif |
| 6230 | |
| 6231 | } |
| 6232 | |
| 6233 | /* register cli keywords */ |
| 6234 | static struct cli_kw_list cli_kws = {{ },{ |
| 6235 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 6236 | { { "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 }, |
| 6237 | { { "set", "ssl", "tls-keys", NULL }, NULL, cli_parse_set_tlskeys, NULL }, |
| 6238 | { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL }, |
| 6239 | #endif |
| 6240 | { { NULL }, NULL, NULL, NULL } |
| 6241 | }}; |
| 6242 | |
| 6243 | |
| 6244 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6245 | /* Note: must not be declared <const> as its list will be overwritten. |
| 6246 | * Please take care of keeping this list alphabetically sorted. |
| 6247 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 6248 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6249 | { "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] | 6250 | { "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] | 6251 | { "ssl_bc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
| 6252 | { "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] | 6253 | { "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] | 6254 | { "ssl_bc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV }, |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 6255 | { "ssl_bc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 6256 | { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 6257 | { "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] | 6258 | { "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] | 6259 | { "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] | 6260 | { "ssl_c_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6261 | { "ssl_c_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6262 | { "ssl_c_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6263 | { "ssl_c_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6264 | { "ssl_c_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6265 | { "ssl_c_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6266 | { "ssl_c_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 6267 | { "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] | 6268 | { "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] | 6269 | { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 6270 | { "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] | 6271 | { "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] | 6272 | { "ssl_f_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6273 | { "ssl_f_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6274 | { "ssl_f_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6275 | { "ssl_f_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6276 | { "ssl_f_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6277 | { "ssl_f_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 6278 | { "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] | 6279 | { "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] | 6280 | { "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] | 6281 | { "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] | 6282 | { "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] | 6283 | { "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] | 6284 | { "ssl_fc_has_crt", smp_fetch_ssl_fc_has_crt, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 6285 | { "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] | 6286 | { "ssl_fc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 6287 | #ifdef OPENSSL_NPN_NEGOTIATED |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6288 | { "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] | 6289 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 6290 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6291 | { "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] | 6292 | #endif |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6293 | { "ssl_fc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 6294 | { "ssl_fc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 6295 | { "ssl_fc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 6296 | { "ssl_fc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 6297 | { "ssl_fc_sni", smp_fetch_ssl_fc_sni, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6298 | { NULL, NULL, 0, 0, 0 }, |
| 6299 | }}; |
| 6300 | |
| 6301 | /* Note: must not be declared <const> as its list will be overwritten. |
| 6302 | * Please take care of keeping this list alphabetically sorted. |
| 6303 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 6304 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 6305 | { "ssl_fc_sni_end", "ssl_fc_sni", PAT_MATCH_END }, |
| 6306 | { "ssl_fc_sni_reg", "ssl_fc_sni", PAT_MATCH_REG }, |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 6307 | { /* END */ }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6308 | }}; |
| 6309 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 6310 | /* Note: must not be declared <const> as its list will be overwritten. |
| 6311 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 6312 | * all code contributors. |
| 6313 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 6314 | * the config parser can report an appropriate error when a known keyword was |
| 6315 | * not enabled. |
| 6316 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 6317 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 6318 | { "alpn", bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 6319 | { "ca-file", bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 6320 | { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 6321 | { "ca-sign-file", bind_parse_ca_sign_file, 1 }, /* set CAFile used to generate and sign server certs */ |
| 6322 | { "ca-sign-pass", bind_parse_ca_sign_pass, 1 }, /* set CAKey passphrase */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 6323 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
| 6324 | { "crl-file", bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
| 6325 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 6326 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
| 6327 | { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */ |
| 6328 | { "ecdhe", bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
| 6329 | { "force-sslv3", bind_parse_force_sslv3, 0 }, /* force SSLv3 */ |
| 6330 | { "force-tlsv10", bind_parse_force_tlsv10, 0 }, /* force TLSv10 */ |
| 6331 | { "force-tlsv11", bind_parse_force_tlsv11, 0 }, /* force TLSv11 */ |
| 6332 | { "force-tlsv12", bind_parse_force_tlsv12, 0 }, /* force TLSv12 */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 6333 | { "generate-certificates", bind_parse_generate_certs, 0 }, /* enable the server certificates generation */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 6334 | { "no-sslv3", bind_parse_no_sslv3, 0 }, /* disable SSLv3 */ |
| 6335 | { "no-tlsv10", bind_parse_no_tlsv10, 0 }, /* disable TLSv10 */ |
| 6336 | { "no-tlsv11", bind_parse_no_tlsv11, 0 }, /* disable TLSv11 */ |
| 6337 | { "no-tlsv12", bind_parse_no_tlsv12, 0 }, /* disable TLSv12 */ |
| 6338 | { "no-tls-tickets", bind_parse_no_tls_tickets, 0 }, /* disable session resumption tickets */ |
| 6339 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
| 6340 | { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */ |
| 6341 | { "tls-ticket-keys", bind_parse_tls_ticket_keys, 1 }, /* set file to load TLS ticket keys from */ |
| 6342 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
| 6343 | { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 6344 | { NULL, NULL, 0 }, |
| 6345 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6346 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 6347 | /* Note: must not be declared <const> as its list will be overwritten. |
| 6348 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 6349 | * all code contributors. |
| 6350 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 6351 | * the config parser can report an appropriate error when a known keyword was |
| 6352 | * not enabled. |
| 6353 | */ |
| 6354 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 6355 | { "ca-file", srv_parse_ca_file, 1, 0 }, /* set CAfile to process verify server cert */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 6356 | { "check-ssl", srv_parse_check_ssl, 0, 0 }, /* enable SSL for health checks */ |
| 6357 | { "ciphers", srv_parse_ciphers, 1, 0 }, /* select the cipher suite */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 6358 | { "crl-file", srv_parse_crl_file, 1, 0 }, /* set certificate revocation list file use on server cert verify */ |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 6359 | { "crt", srv_parse_crt, 1, 0 }, /* set client certificate */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 6360 | { "force-sslv3", srv_parse_force_sslv3, 0, 0 }, /* force SSLv3 */ |
| 6361 | { "force-tlsv10", srv_parse_force_tlsv10, 0, 0 }, /* force TLSv10 */ |
| 6362 | { "force-tlsv11", srv_parse_force_tlsv11, 0, 0 }, /* force TLSv11 */ |
| 6363 | { "force-tlsv12", srv_parse_force_tlsv12, 0, 0 }, /* force TLSv12 */ |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 6364 | { "no-ssl-reuse", srv_parse_no_ssl_reuse, 0, 0 }, /* disable session reuse */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 6365 | { "no-sslv3", srv_parse_no_sslv3, 0, 0 }, /* disable SSLv3 */ |
| 6366 | { "no-tlsv10", srv_parse_no_tlsv10, 0, 0 }, /* disable TLSv10 */ |
| 6367 | { "no-tlsv11", srv_parse_no_tlsv11, 0, 0 }, /* disable TLSv11 */ |
| 6368 | { "no-tlsv12", srv_parse_no_tlsv12, 0, 0 }, /* disable TLSv12 */ |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 6369 | { "no-tls-tickets", srv_parse_no_tls_tickets, 0, 0 }, /* disable session resumption tickets */ |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6370 | { "send-proxy-v2-ssl", srv_parse_send_proxy_ssl, 0, 0 }, /* send PROXY protocol header v2 with SSL info */ |
| 6371 | { "send-proxy-v2-ssl-cn", srv_parse_send_proxy_cn, 0, 0 }, /* send PROXY protocol header v2 with CN */ |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 6372 | { "sni", srv_parse_sni, 1, 0 }, /* send SNI extension */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 6373 | { "ssl", srv_parse_ssl, 0, 0 }, /* enable SSL processing */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 6374 | { "verify", srv_parse_verify, 1, 0 }, /* set SSL verify method */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 6375 | { "verifyhost", srv_parse_verifyhost, 1, 0 }, /* require that SSL cert verifies for hostname */ |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 6376 | { NULL, NULL, 0, 0 }, |
| 6377 | }}; |
| 6378 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 6379 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 6380 | { CFG_GLOBAL, "ssl-default-bind-options", ssl_parse_default_bind_options }, |
| 6381 | { CFG_GLOBAL, "ssl-default-server-options", ssl_parse_default_server_options }, |
| 6382 | { 0, NULL, NULL }, |
| 6383 | }}; |
| 6384 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 6385 | /* transport-layer operations for SSL sockets */ |
| 6386 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6387 | .snd_buf = ssl_sock_from_buf, |
| 6388 | .rcv_buf = ssl_sock_to_buf, |
| 6389 | .rcv_pipe = NULL, |
| 6390 | .snd_pipe = NULL, |
| 6391 | .shutr = NULL, |
| 6392 | .shutw = ssl_sock_shutw, |
| 6393 | .close = ssl_sock_close, |
| 6394 | .init = ssl_sock_init, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 6395 | .name = "SSL", |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6396 | }; |
| 6397 | |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 6398 | #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] | 6399 | |
| 6400 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 6401 | { |
| 6402 | if (ptr) { |
| 6403 | chunk_destroy(ptr); |
| 6404 | free(ptr); |
| 6405 | } |
| 6406 | } |
| 6407 | |
| 6408 | #endif |
| 6409 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6410 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 6411 | static void __ssl_sock_init(void) |
| 6412 | { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6413 | STACK_OF(SSL_COMP)* cm; |
| 6414 | |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 6415 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 6416 | global.listen_default_ciphers = LISTEN_DEFAULT_CIPHERS; |
| 6417 | #endif |
| 6418 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 6419 | global.connect_default_ciphers = CONNECT_DEFAULT_CIPHERS; |
| 6420 | #endif |
| 6421 | if (global.listen_default_ciphers) |
| 6422 | global.listen_default_ciphers = strdup(global.listen_default_ciphers); |
| 6423 | if (global.connect_default_ciphers) |
| 6424 | global.connect_default_ciphers = strdup(global.connect_default_ciphers); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 6425 | global.listen_default_ssloptions = BC_SSL_O_NONE; |
| 6426 | global.connect_default_ssloptions = SRV_SSL_O_NONE; |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 6427 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6428 | SSL_library_init(); |
| 6429 | cm = SSL_COMP_get_compression_methods(); |
| 6430 | sk_SSL_COMP_zero(cm); |
Daniel Jakots | 54ffb91 | 2015-11-06 20:02:41 +0100 | [diff] [blame] | 6431 | #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] | 6432 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 6433 | #endif |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6434 | sample_register_fetches(&sample_fetch_keywords); |
| 6435 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 6436 | bind_register_keywords(&bind_kws); |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 6437 | srv_register_keywords(&srv_kws); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 6438 | cfg_register_keywords(&cfg_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6439 | cli_register_kw(&cli_kws); |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 6440 | |
| 6441 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 6442 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 6443 | |
| 6444 | #ifndef OPENSSL_NO_DH |
| 6445 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 6446 | #endif |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6447 | |
| 6448 | /* Load SSL string for the verbose & debug mode. */ |
| 6449 | ERR_load_SSL_strings(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6450 | } |
| 6451 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 6452 | __attribute__((destructor)) |
| 6453 | static void __ssl_sock_deinit(void) |
| 6454 | { |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 6455 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 6456 | lru64_destroy(ssl_ctx_lru_tree); |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 6457 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 6458 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 6459 | #ifndef OPENSSL_NO_DH |
| 6460 | if (local_dh_1024) { |
| 6461 | DH_free(local_dh_1024); |
| 6462 | local_dh_1024 = NULL; |
| 6463 | } |
| 6464 | |
| 6465 | if (local_dh_2048) { |
| 6466 | DH_free(local_dh_2048); |
| 6467 | local_dh_2048 = NULL; |
| 6468 | } |
| 6469 | |
| 6470 | if (local_dh_4096) { |
| 6471 | DH_free(local_dh_4096); |
| 6472 | local_dh_4096 = NULL; |
| 6473 | } |
| 6474 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 6475 | if (global_dh) { |
| 6476 | DH_free(global_dh); |
| 6477 | global_dh = NULL; |
| 6478 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 6479 | #endif |
| 6480 | |
| 6481 | ERR_remove_state(0); |
| 6482 | ERR_free_strings(); |
| 6483 | |
| 6484 | EVP_cleanup(); |
| 6485 | |
| 6486 | #if OPENSSL_VERSION_NUMBER >= 0x00907000L |
| 6487 | CRYPTO_cleanup_all_ex_data(); |
| 6488 | #endif |
| 6489 | } |
| 6490 | |
| 6491 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6492 | /* |
| 6493 | * Local variables: |
| 6494 | * c-indent-level: 8 |
| 6495 | * c-basic-offset: 8 |
| 6496 | * End: |
| 6497 | */ |