Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2 | * SSL/TLS transport layer over SOCK_STREAM sockets |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
Willy Tarreau | 69845df | 2012-09-10 09:43:09 +0200 | [diff] [blame] | 11 | * Acknowledgement: |
| 12 | * We'd like to specially thank the Stud project authors for a very clean |
| 13 | * and well documented code which helped us understand how the OpenSSL API |
| 14 | * ought to be used in non-blocking mode. This is one difficult part which |
| 15 | * is not easy to get from the OpenSSL doc, and reading the Stud code made |
| 16 | * it much more obvious than the examples in the OpenSSL package. Keep up |
| 17 | * the good works, guys ! |
| 18 | * |
| 19 | * Stud is an extremely efficient and scalable SSL/TLS proxy which combines |
| 20 | * particularly well with haproxy. For more info about this project, visit : |
| 21 | * https://github.com/bumptech/stud |
| 22 | * |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | #define _GNU_SOURCE |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 26 | #include <ctype.h> |
| 27 | #include <dirent.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 28 | #include <errno.h> |
| 29 | #include <fcntl.h> |
| 30 | #include <stdio.h> |
| 31 | #include <stdlib.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 32 | #include <string.h> |
| 33 | #include <unistd.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 34 | |
| 35 | #include <sys/socket.h> |
| 36 | #include <sys/stat.h> |
| 37 | #include <sys/types.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 38 | #include <netdb.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 39 | #include <netinet/tcp.h> |
| 40 | |
| 41 | #include <openssl/ssl.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 42 | #include <openssl/x509.h> |
| 43 | #include <openssl/x509v3.h> |
| 44 | #include <openssl/x509.h> |
| 45 | #include <openssl/err.h> |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 46 | #include <openssl/rand.h> |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 47 | #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] | 48 | #include <openssl/ocsp.h> |
| 49 | #endif |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 50 | #ifndef OPENSSL_NO_DH |
| 51 | #include <openssl/dh.h> |
| 52 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 53 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 54 | #include <import/lru.h> |
| 55 | #include <import/xxhash.h> |
| 56 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 57 | #include <common/buffer.h> |
| 58 | #include <common/compat.h> |
| 59 | #include <common/config.h> |
| 60 | #include <common/debug.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 61 | #include <common/errors.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 62 | #include <common/standard.h> |
| 63 | #include <common/ticks.h> |
| 64 | #include <common/time.h> |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 65 | #include <common/cfgparse.h> |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 66 | #include <common/base64.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 67 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 68 | #include <ebsttree.h> |
| 69 | |
| 70 | #include <types/global.h> |
| 71 | #include <types/ssl_sock.h> |
| 72 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 73 | #include <proto/acl.h> |
| 74 | #include <proto/arg.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 75 | #include <proto/connection.h> |
| 76 | #include <proto/fd.h> |
| 77 | #include <proto/freq_ctr.h> |
| 78 | #include <proto/frontend.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 79 | #include <proto/listener.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 80 | #include <proto/pattern.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 81 | #include <proto/proto_tcp.h> |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 82 | #include <proto/server.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 83 | #include <proto/log.h> |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 84 | #include <proto/proxy.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 85 | #include <proto/shctx.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 86 | #include <proto/ssl_sock.h> |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 87 | #include <proto/stream.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 88 | #include <proto/task.h> |
| 89 | |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 90 | /* Warning, these are bits, not integers! */ |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 91 | #define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001 |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 92 | #define SSL_SOCK_ST_FL_16K_WBFSIZE 0x00000002 |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 93 | #define SSL_SOCK_SEND_UNLIMITED 0x00000004 |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 94 | #define SSL_SOCK_RECV_HEARTBEAT 0x00000008 |
| 95 | |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 96 | /* bits 0xFFFF0000 are reserved to store verify errors */ |
| 97 | |
| 98 | /* Verify errors macros */ |
| 99 | #define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16)) |
| 100 | #define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16)) |
| 101 | #define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16)) |
| 102 | |
| 103 | #define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63) |
| 104 | #define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15) |
| 105 | #define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 106 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 107 | /* Supported hash function for TLS tickets */ |
| 108 | #ifdef OPENSSL_NO_SHA256 |
| 109 | #define HASH_FUNCT EVP_sha1 |
| 110 | #else |
| 111 | #define HASH_FUNCT EVP_sha256 |
| 112 | #endif /* OPENSSL_NO_SHA256 */ |
| 113 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 114 | /* server and bind verify method, it uses a global value as default */ |
| 115 | enum { |
| 116 | SSL_SOCK_VERIFY_DEFAULT = 0, |
| 117 | SSL_SOCK_VERIFY_REQUIRED = 1, |
| 118 | SSL_SOCK_VERIFY_OPTIONAL = 2, |
| 119 | SSL_SOCK_VERIFY_NONE = 3, |
| 120 | }; |
| 121 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 122 | int sslconns = 0; |
| 123 | int totalsslconns = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 124 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 125 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 126 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 127 | #endif |
| 128 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 129 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 130 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 131 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 132 | static DH *local_dh_1024 = NULL; |
| 133 | static DH *local_dh_2048 = NULL; |
| 134 | static DH *local_dh_4096 = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 135 | #endif /* OPENSSL_NO_DH */ |
| 136 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 137 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 138 | /* X509V3 Extensions that will be added on generated certificates */ |
| 139 | #define X509V3_EXT_SIZE 5 |
| 140 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 141 | "basicConstraints", |
| 142 | "nsComment", |
| 143 | "subjectKeyIdentifier", |
| 144 | "authorityKeyIdentifier", |
| 145 | "keyUsage", |
| 146 | }; |
| 147 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 148 | "CA:FALSE", |
| 149 | "\"OpenSSL Generated Certificate\"", |
| 150 | "hash", |
| 151 | "keyid,issuer:always", |
| 152 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 153 | }; |
| 154 | |
| 155 | /* LRU cache to store generated certificate */ |
| 156 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 157 | static unsigned int ssl_ctx_lru_seed = 0; |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 158 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 159 | |
| 160 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 161 | struct certificate_ocsp { |
| 162 | struct ebmb_node key; |
| 163 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 164 | struct chunk response; |
| 165 | long expire; |
| 166 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 167 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 168 | /* |
| 169 | * This function returns the number of seconds elapsed |
| 170 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 171 | * date presented un ASN1_GENERALIZEDTIME. |
| 172 | * |
| 173 | * In parsing error case, it returns -1. |
| 174 | */ |
| 175 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 176 | { |
| 177 | long epoch; |
| 178 | char *p, *end; |
| 179 | const unsigned short month_offset[12] = { |
| 180 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 181 | }; |
| 182 | int year, month; |
| 183 | |
| 184 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 185 | |
| 186 | p = (char *)d->data; |
| 187 | end = p + d->length; |
| 188 | |
| 189 | if (end - p < 4) return -1; |
| 190 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 191 | p += 4; |
| 192 | if (end - p < 2) return -1; |
| 193 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 194 | if (month < 1 || month > 12) return -1; |
| 195 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 196 | We consider leap years and the current month (<marsh or not) */ |
| 197 | epoch = ( ((year - 1970) * 365) |
| 198 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 199 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 200 | + month_offset[month-1] |
| 201 | ) * 24 * 60 * 60; |
| 202 | p += 2; |
| 203 | if (end - p < 2) return -1; |
| 204 | /* Add the number of seconds of completed days of current month */ |
| 205 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 206 | p += 2; |
| 207 | if (end - p < 2) return -1; |
| 208 | /* Add the completed hours of the current day */ |
| 209 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 210 | p += 2; |
| 211 | if (end - p < 2) return -1; |
| 212 | /* Add the completed minutes of the current hour */ |
| 213 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 214 | p += 2; |
| 215 | if (p == end) return -1; |
| 216 | /* Test if there is available seconds */ |
| 217 | if (p[0] < '0' || p[0] > '9') |
| 218 | goto nosec; |
| 219 | if (end - p < 2) return -1; |
| 220 | /* Add the seconds of the current minute */ |
| 221 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 222 | p += 2; |
| 223 | if (p == end) return -1; |
| 224 | /* Ignore seconds float part if present */ |
| 225 | if (p[0] == '.') { |
| 226 | do { |
| 227 | if (++p == end) return -1; |
| 228 | } while (p[0] >= '0' && p[0] <= '9'); |
| 229 | } |
| 230 | |
| 231 | nosec: |
| 232 | if (p[0] == 'Z') { |
| 233 | if (end - p != 1) return -1; |
| 234 | return epoch; |
| 235 | } |
| 236 | else if (p[0] == '+') { |
| 237 | if (end - p != 5) return -1; |
| 238 | /* Apply timezone offset */ |
| 239 | return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
| 240 | } |
| 241 | else if (p[0] == '-') { |
| 242 | if (end - p != 5) return -1; |
| 243 | /* Apply timezone offset */ |
| 244 | return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
| 245 | } |
| 246 | |
| 247 | return -1; |
| 248 | } |
| 249 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 250 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 251 | |
| 252 | /* This function starts to check if the OCSP response (in DER format) contained |
| 253 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 254 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 255 | * contained in the OCSP Response and exits on error if no match. |
| 256 | * If it's a valid OCSP Response: |
| 257 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 258 | * pointed by 'ocsp'. |
| 259 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 260 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 261 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 262 | * already present in the container, it will be overwritten. |
| 263 | * |
| 264 | * Note: OCSP response containing more than one OCSP Single response is not |
| 265 | * considered valid. |
| 266 | * |
| 267 | * Returns 0 on success, 1 in error case. |
| 268 | */ |
| 269 | static int ssl_sock_load_ocsp_response(struct chunk *ocsp_response, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err) |
| 270 | { |
| 271 | OCSP_RESPONSE *resp; |
| 272 | OCSP_BASICRESP *bs = NULL; |
| 273 | OCSP_SINGLERESP *sr; |
| 274 | unsigned char *p = (unsigned char *)ocsp_response->str; |
| 275 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 276 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 277 | int reason; |
| 278 | int ret = 1; |
| 279 | |
| 280 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, ocsp_response->len); |
| 281 | if (!resp) { |
| 282 | memprintf(err, "Unable to parse OCSP response"); |
| 283 | goto out; |
| 284 | } |
| 285 | |
| 286 | rc = OCSP_response_status(resp); |
| 287 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 288 | memprintf(err, "OCSP response status not successful"); |
| 289 | goto out; |
| 290 | } |
| 291 | |
| 292 | bs = OCSP_response_get1_basic(resp); |
| 293 | if (!bs) { |
| 294 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 295 | goto out; |
| 296 | } |
| 297 | |
| 298 | count_sr = OCSP_resp_count(bs); |
| 299 | if (count_sr > 1) { |
| 300 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 301 | goto out; |
| 302 | } |
| 303 | |
| 304 | sr = OCSP_resp_get0(bs, 0); |
| 305 | if (!sr) { |
| 306 | memprintf(err, "Failed to get OCSP single response"); |
| 307 | goto out; |
| 308 | } |
| 309 | |
| 310 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
| 311 | if (rc != V_OCSP_CERTSTATUS_GOOD) { |
| 312 | memprintf(err, "OCSP single response: certificate status not good"); |
| 313 | goto out; |
| 314 | } |
| 315 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 316 | if (!nextupd) { |
| 317 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 318 | goto out; |
| 319 | } |
| 320 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 321 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 322 | if (!rc) { |
| 323 | memprintf(err, "OCSP single response: no longer valid."); |
| 324 | goto out; |
| 325 | } |
| 326 | |
| 327 | if (cid) { |
| 328 | if (OCSP_id_cmp(sr->certId, cid)) { |
| 329 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 330 | goto out; |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | if (!ocsp) { |
| 335 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 336 | unsigned char *p; |
| 337 | |
| 338 | rc = i2d_OCSP_CERTID(sr->certId, NULL); |
| 339 | if (!rc) { |
| 340 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 341 | goto out; |
| 342 | } |
| 343 | |
| 344 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 345 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 346 | goto out; |
| 347 | } |
| 348 | |
| 349 | p = key; |
| 350 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 351 | i2d_OCSP_CERTID(sr->certId, &p); |
| 352 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 353 | if (!ocsp) { |
| 354 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 355 | goto out; |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | /* According to comments on "chunk_dup", the |
| 360 | previous chunk buffer will be freed */ |
| 361 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 362 | memprintf(err, "OCSP response: Memory allocation error"); |
| 363 | goto out; |
| 364 | } |
| 365 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 366 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 367 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 368 | ret = 0; |
| 369 | out: |
| 370 | if (bs) |
| 371 | OCSP_BASICRESP_free(bs); |
| 372 | |
| 373 | if (resp) |
| 374 | OCSP_RESPONSE_free(resp); |
| 375 | |
| 376 | return ret; |
| 377 | } |
| 378 | /* |
| 379 | * External function use to update the OCSP response in the OCSP response's |
| 380 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 381 | * to update in DER format. |
| 382 | * |
| 383 | * Returns 0 on success, 1 in error case. |
| 384 | */ |
| 385 | int ssl_sock_update_ocsp_response(struct chunk *ocsp_response, char **err) |
| 386 | { |
| 387 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 388 | } |
| 389 | |
| 390 | /* |
| 391 | * This function load the OCSP Resonse in DER format contained in file at |
| 392 | * path 'ocsp_path' and call 'ssl_sock_load_ocsp_response' |
| 393 | * |
| 394 | * Returns 0 on success, 1 in error case. |
| 395 | */ |
| 396 | static int ssl_sock_load_ocsp_response_from_file(const char *ocsp_path, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err) |
| 397 | { |
| 398 | int fd = -1; |
| 399 | int r = 0; |
| 400 | int ret = 1; |
| 401 | |
| 402 | fd = open(ocsp_path, O_RDONLY); |
| 403 | if (fd == -1) { |
| 404 | memprintf(err, "Error opening OCSP response file"); |
| 405 | goto end; |
| 406 | } |
| 407 | |
| 408 | trash.len = 0; |
| 409 | while (trash.len < trash.size) { |
| 410 | r = read(fd, trash.str + trash.len, trash.size - trash.len); |
| 411 | if (r < 0) { |
| 412 | if (errno == EINTR) |
| 413 | continue; |
| 414 | |
| 415 | memprintf(err, "Error reading OCSP response from file"); |
| 416 | goto end; |
| 417 | } |
| 418 | else if (r == 0) { |
| 419 | break; |
| 420 | } |
| 421 | trash.len += r; |
| 422 | } |
| 423 | |
| 424 | close(fd); |
| 425 | fd = -1; |
| 426 | |
| 427 | ret = ssl_sock_load_ocsp_response(&trash, ocsp, cid, err); |
| 428 | end: |
| 429 | if (fd != -1) |
| 430 | close(fd); |
| 431 | |
| 432 | return ret; |
| 433 | } |
| 434 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 435 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 436 | 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) |
| 437 | { |
| 438 | struct tls_sess_key *keys; |
| 439 | struct connection *conn; |
| 440 | int head; |
| 441 | int i; |
| 442 | |
| 443 | conn = (struct connection *)SSL_get_app_data(s); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 444 | keys = objt_listener(conn->target)->bind_conf->keys_ref->tlskeys; |
| 445 | 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] | 446 | |
| 447 | if (enc) { |
| 448 | memcpy(key_name, keys[head].name, 16); |
| 449 | |
| 450 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
| 451 | return -1; |
| 452 | |
| 453 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].aes_key, iv)) |
| 454 | return -1; |
| 455 | |
| 456 | HMAC_Init_ex(hctx, keys[head].hmac_key, 16, HASH_FUNCT(), NULL); |
| 457 | |
| 458 | return 1; |
| 459 | } else { |
| 460 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 461 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 462 | goto found; |
| 463 | } |
| 464 | return 0; |
| 465 | |
| 466 | found: |
| 467 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].hmac_key, 16, HASH_FUNCT(), NULL); |
| 468 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].aes_key, iv)) |
| 469 | return -1; |
| 470 | /* 2 for key renewal, 1 if current key is still valid */ |
| 471 | return i ? 2 : 1; |
| 472 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 473 | } |
| 474 | |
| 475 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 476 | { |
| 477 | struct tls_keys_ref *ref; |
| 478 | |
| 479 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 480 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 481 | return ref; |
| 482 | return NULL; |
| 483 | } |
| 484 | |
| 485 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 486 | { |
| 487 | struct tls_keys_ref *ref; |
| 488 | |
| 489 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 490 | if (ref->unique_id == unique_id) |
| 491 | return ref; |
| 492 | return NULL; |
| 493 | } |
| 494 | |
| 495 | int ssl_sock_update_tlskey(char *filename, struct chunk *tlskey, char **err) { |
| 496 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 497 | |
| 498 | if(!ref) { |
| 499 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 500 | return 1; |
| 501 | } |
| 502 | |
| 503 | memcpy((char *) (ref->tlskeys + 2 % TLS_TICKETS_NO), tlskey->str, tlskey->len); |
| 504 | ref->tls_ticket_enc_index = ref->tls_ticket_enc_index + 1 % TLS_TICKETS_NO; |
| 505 | |
| 506 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 507 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 508 | |
| 509 | /* This function finalize the configuration parsing. Its set all the |
| 510 | * automatic ids |
| 511 | */ |
| 512 | void tlskeys_finalize_config(void) |
| 513 | { |
| 514 | int i = 0; |
| 515 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 516 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 517 | |
| 518 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 519 | if (ref->unique_id == -1) { |
| 520 | /* Look for the first free id. */ |
| 521 | while (1) { |
| 522 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 523 | if (ref2->unique_id == i) { |
| 524 | i++; |
| 525 | break; |
| 526 | } |
| 527 | } |
| 528 | if (&ref2->list == &tlskeys_reference) |
| 529 | break; |
| 530 | } |
| 531 | |
| 532 | /* Uses the unique id and increment it for the next entry. */ |
| 533 | ref->unique_id = i; |
| 534 | i++; |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | /* This sort the reference list by id. */ |
| 539 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
| 540 | LIST_DEL(&ref->list); |
| 541 | list_for_each_entry(ref3, &tkr, list) { |
| 542 | if (ref->unique_id < ref3->unique_id) { |
| 543 | LIST_ADDQ(&ref3->list, &ref->list); |
| 544 | break; |
| 545 | } |
| 546 | } |
| 547 | if (&ref3->list == &tkr) |
| 548 | LIST_ADDQ(&tkr, &ref->list); |
| 549 | } |
| 550 | |
| 551 | /* swap root */ |
| 552 | LIST_ADD(&tkr, &tlskeys_reference); |
| 553 | LIST_DEL(&tkr); |
| 554 | } |
| 555 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 556 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 557 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 558 | /* |
| 559 | * Callback used to set OCSP status extension content in server hello. |
| 560 | */ |
| 561 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 562 | { |
| 563 | struct certificate_ocsp *ocsp = (struct certificate_ocsp *)arg; |
| 564 | char* ssl_buf; |
| 565 | |
| 566 | if (!ocsp || |
| 567 | !ocsp->response.str || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 568 | !ocsp->response.len || |
| 569 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 570 | return SSL_TLSEXT_ERR_NOACK; |
| 571 | |
| 572 | ssl_buf = OPENSSL_malloc(ocsp->response.len); |
| 573 | if (!ssl_buf) |
| 574 | return SSL_TLSEXT_ERR_NOACK; |
| 575 | |
| 576 | memcpy(ssl_buf, ocsp->response.str, ocsp->response.len); |
| 577 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.len); |
| 578 | |
| 579 | return SSL_TLSEXT_ERR_OK; |
| 580 | } |
| 581 | |
| 582 | /* |
| 583 | * This function enables the handling of OCSP status extension on 'ctx' if a |
| 584 | * file name 'cert_path' suffixed using ".ocsp" is present. |
| 585 | * To enable OCSP status extension, the issuer's certificate is mandatory. |
| 586 | * It should be present in the certificate's extra chain builded from file |
| 587 | * 'cert_path'. If not found, the issuer certificate is loaded from a file |
| 588 | * named 'cert_path' suffixed using '.issuer'. |
| 589 | * |
| 590 | * In addition, ".ocsp" file content is loaded as a DER format of an OCSP |
| 591 | * response. If file is empty or content is not a valid OCSP response, |
| 592 | * OCSP status extension is enabled but OCSP response is ignored (a warning |
| 593 | * is displayed). |
| 594 | * |
| 595 | * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is |
| 596 | * succesfully enabled, or -1 in other error case. |
| 597 | */ |
| 598 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const char *cert_path) |
| 599 | { |
| 600 | |
| 601 | BIO *in = NULL; |
| 602 | X509 *x, *xi = NULL, *issuer = NULL; |
| 603 | STACK_OF(X509) *chain = NULL; |
| 604 | OCSP_CERTID *cid = NULL; |
| 605 | SSL *ssl; |
| 606 | char ocsp_path[MAXPATHLEN+1]; |
| 607 | int i, ret = -1; |
| 608 | struct stat st; |
| 609 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 610 | char *warn = NULL; |
| 611 | unsigned char *p; |
| 612 | |
| 613 | snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path); |
| 614 | |
| 615 | if (stat(ocsp_path, &st)) |
| 616 | return 1; |
| 617 | |
| 618 | ssl = SSL_new(ctx); |
| 619 | if (!ssl) |
| 620 | goto out; |
| 621 | |
| 622 | x = SSL_get_certificate(ssl); |
| 623 | if (!x) |
| 624 | goto out; |
| 625 | |
| 626 | /* Try to lookup for issuer in certificate extra chain */ |
| 627 | #ifdef SSL_CTRL_GET_EXTRA_CHAIN_CERTS |
| 628 | SSL_CTX_get_extra_chain_certs(ctx, &chain); |
| 629 | #else |
| 630 | chain = ctx->extra_certs; |
| 631 | #endif |
| 632 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 633 | issuer = sk_X509_value(chain, i); |
| 634 | if (X509_check_issued(issuer, x) == X509_V_OK) |
| 635 | break; |
| 636 | else |
| 637 | issuer = NULL; |
| 638 | } |
| 639 | |
| 640 | /* If not found try to load issuer from a suffixed file */ |
| 641 | if (!issuer) { |
| 642 | char issuer_path[MAXPATHLEN+1]; |
| 643 | |
| 644 | in = BIO_new(BIO_s_file()); |
| 645 | if (!in) |
| 646 | goto out; |
| 647 | |
| 648 | snprintf(issuer_path, MAXPATHLEN+1, "%s.issuer", cert_path); |
| 649 | if (BIO_read_filename(in, issuer_path) <= 0) |
| 650 | goto out; |
| 651 | |
| 652 | xi = PEM_read_bio_X509_AUX(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); |
| 653 | if (!xi) |
| 654 | goto out; |
| 655 | |
| 656 | if (X509_check_issued(xi, x) != X509_V_OK) |
| 657 | goto out; |
| 658 | |
| 659 | issuer = xi; |
| 660 | } |
| 661 | |
| 662 | cid = OCSP_cert_to_id(0, x, issuer); |
| 663 | if (!cid) |
| 664 | goto out; |
| 665 | |
| 666 | i = i2d_OCSP_CERTID(cid, NULL); |
| 667 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 668 | goto out; |
| 669 | |
| 670 | ocsp = calloc(1, sizeof(struct certificate_ocsp)); |
| 671 | if (!ocsp) |
| 672 | goto out; |
| 673 | |
| 674 | p = ocsp->key_data; |
| 675 | i2d_OCSP_CERTID(cid, &p); |
| 676 | |
| 677 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 678 | if (iocsp == ocsp) |
| 679 | ocsp = NULL; |
| 680 | |
| 681 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
| 682 | SSL_CTX_set_tlsext_status_arg(ctx, iocsp); |
| 683 | |
| 684 | ret = 0; |
| 685 | |
| 686 | warn = NULL; |
| 687 | if (ssl_sock_load_ocsp_response_from_file(ocsp_path, iocsp, cid, &warn)) { |
| 688 | memprintf(&warn, "Loading '%s': %s. Content will be ignored", ocsp_path, warn ? warn : "failure"); |
| 689 | Warning("%s.\n", warn); |
| 690 | } |
| 691 | |
| 692 | out: |
| 693 | if (ssl) |
| 694 | SSL_free(ssl); |
| 695 | |
| 696 | if (in) |
| 697 | BIO_free(in); |
| 698 | |
| 699 | if (xi) |
| 700 | X509_free(xi); |
| 701 | |
| 702 | if (cid) |
| 703 | OCSP_CERTID_free(cid); |
| 704 | |
| 705 | if (ocsp) |
| 706 | free(ocsp); |
| 707 | |
| 708 | if (warn) |
| 709 | free(warn); |
| 710 | |
| 711 | |
| 712 | return ret; |
| 713 | } |
| 714 | |
| 715 | #endif |
| 716 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 717 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
| 718 | |
| 719 | #define CT_EXTENSION_TYPE 18 |
| 720 | |
| 721 | static int sctl_ex_index = -1; |
| 722 | |
| 723 | /* |
| 724 | * Try to parse Signed Certificate Timestamp List structure. This function |
| 725 | * makes only basic test if the data seems like SCTL. No signature validation |
| 726 | * is performed. |
| 727 | */ |
| 728 | static int ssl_sock_parse_sctl(struct chunk *sctl) |
| 729 | { |
| 730 | int ret = 1; |
| 731 | int len, pos, sct_len; |
| 732 | unsigned char *data; |
| 733 | |
| 734 | if (sctl->len < 2) |
| 735 | goto out; |
| 736 | |
| 737 | data = (unsigned char *)sctl->str; |
| 738 | len = (data[0] << 8) | data[1]; |
| 739 | |
| 740 | if (len + 2 != sctl->len) |
| 741 | goto out; |
| 742 | |
| 743 | data = data + 2; |
| 744 | pos = 0; |
| 745 | while (pos < len) { |
| 746 | if (len - pos < 2) |
| 747 | goto out; |
| 748 | |
| 749 | sct_len = (data[pos] << 8) | data[pos + 1]; |
| 750 | if (pos + sct_len + 2 > len) |
| 751 | goto out; |
| 752 | |
| 753 | pos += sct_len + 2; |
| 754 | } |
| 755 | |
| 756 | ret = 0; |
| 757 | |
| 758 | out: |
| 759 | return ret; |
| 760 | } |
| 761 | |
| 762 | static int ssl_sock_load_sctl_from_file(const char *sctl_path, struct chunk **sctl) |
| 763 | { |
| 764 | int fd = -1; |
| 765 | int r = 0; |
| 766 | int ret = 1; |
| 767 | |
| 768 | *sctl = NULL; |
| 769 | |
| 770 | fd = open(sctl_path, O_RDONLY); |
| 771 | if (fd == -1) |
| 772 | goto end; |
| 773 | |
| 774 | trash.len = 0; |
| 775 | while (trash.len < trash.size) { |
| 776 | r = read(fd, trash.str + trash.len, trash.size - trash.len); |
| 777 | if (r < 0) { |
| 778 | if (errno == EINTR) |
| 779 | continue; |
| 780 | |
| 781 | goto end; |
| 782 | } |
| 783 | else if (r == 0) { |
| 784 | break; |
| 785 | } |
| 786 | trash.len += r; |
| 787 | } |
| 788 | |
| 789 | ret = ssl_sock_parse_sctl(&trash); |
| 790 | if (ret) |
| 791 | goto end; |
| 792 | |
| 793 | *sctl = calloc(1, sizeof(struct chunk)); |
| 794 | if (!chunk_dup(*sctl, &trash)) { |
| 795 | free(*sctl); |
| 796 | *sctl = NULL; |
| 797 | goto end; |
| 798 | } |
| 799 | |
| 800 | end: |
| 801 | if (fd != -1) |
| 802 | close(fd); |
| 803 | |
| 804 | return ret; |
| 805 | } |
| 806 | |
| 807 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 808 | { |
| 809 | struct chunk *sctl = (struct chunk *)add_arg; |
| 810 | |
| 811 | *out = (unsigned char *)sctl->str; |
| 812 | *outlen = sctl->len; |
| 813 | |
| 814 | return 1; |
| 815 | } |
| 816 | |
| 817 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 818 | { |
| 819 | return 1; |
| 820 | } |
| 821 | |
| 822 | static int ssl_sock_load_sctl(SSL_CTX *ctx, const char *cert_path) |
| 823 | { |
| 824 | char sctl_path[MAXPATHLEN+1]; |
| 825 | int ret = -1; |
| 826 | struct stat st; |
| 827 | struct chunk *sctl = NULL; |
| 828 | |
| 829 | snprintf(sctl_path, MAXPATHLEN+1, "%s.sctl", cert_path); |
| 830 | |
| 831 | if (stat(sctl_path, &st)) |
| 832 | return 1; |
| 833 | |
| 834 | if (ssl_sock_load_sctl_from_file(sctl_path, &sctl)) |
| 835 | goto out; |
| 836 | |
| 837 | if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) { |
| 838 | free(sctl); |
| 839 | goto out; |
| 840 | } |
| 841 | |
| 842 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 843 | |
| 844 | ret = 0; |
| 845 | |
| 846 | out: |
| 847 | return ret; |
| 848 | } |
| 849 | |
| 850 | #endif |
| 851 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 852 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 853 | { |
| 854 | struct connection *conn = (struct connection *)SSL_get_app_data(ssl); |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 855 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 856 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 857 | |
| 858 | if (where & SSL_CB_HANDSHAKE_START) { |
| 859 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 860 | if (conn->flags & CO_FL_CONNECTED) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 861 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 862 | conn->err_code = CO_ER_SSL_RENEG; |
| 863 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 864 | } |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 865 | |
| 866 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
| 867 | if (!(conn->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
| 868 | /* Long certificate chains optimz |
| 869 | If write and read bios are differents, we |
| 870 | consider that the buffering was activated, |
| 871 | so we rise the output buffer size from 4k |
| 872 | to 16k */ |
| 873 | write_bio = SSL_get_wbio(ssl); |
| 874 | if (write_bio != SSL_get_rbio(ssl)) { |
| 875 | BIO_set_write_buffer_size(write_bio, 16384); |
| 876 | conn->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
| 877 | } |
| 878 | } |
| 879 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 880 | } |
| 881 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 882 | /* Callback is called for each certificate of the chain during a verify |
| 883 | ok is set to 1 if preverify detect no error on current certificate. |
| 884 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 885 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 886 | { |
| 887 | SSL *ssl; |
| 888 | struct connection *conn; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 889 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 890 | |
| 891 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
| 892 | conn = (struct connection *)SSL_get_app_data(ssl); |
| 893 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 894 | conn->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 895 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 896 | if (ok) /* no errors */ |
| 897 | return ok; |
| 898 | |
| 899 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 900 | err = X509_STORE_CTX_get_error(x_store); |
| 901 | |
| 902 | /* check if CA error needs to be ignored */ |
| 903 | if (depth > 0) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 904 | if (!SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st)) { |
| 905 | conn->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 906 | conn->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 907 | } |
| 908 | |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 909 | if (objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) { |
| 910 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 911 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 912 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 913 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 914 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 915 | return 0; |
| 916 | } |
| 917 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 918 | if (!SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st)) |
| 919 | conn->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 920 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 921 | /* check if certificate error needs to be ignored */ |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 922 | if (objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) { |
| 923 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 924 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 925 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 926 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 927 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 928 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 929 | } |
| 930 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 931 | /* Callback is called for ssl protocol analyse */ |
| 932 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 933 | { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 934 | #ifdef TLS1_RT_HEARTBEAT |
| 935 | /* test heartbeat received (write_p is set to 0 |
| 936 | for a received record) */ |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 937 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
Willy Tarreau | 8481500 | 2014-04-25 21:40:27 +0200 | [diff] [blame] | 938 | struct connection *conn = (struct connection *)SSL_get_app_data(ssl); |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 939 | const unsigned char *p = buf; |
| 940 | unsigned int payload; |
| 941 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 942 | conn->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 943 | |
| 944 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 945 | if (*p != TLS1_HB_REQUEST) |
| 946 | return; |
| 947 | |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 948 | 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] | 949 | goto kill_it; |
| 950 | |
| 951 | payload = (p[1] * 256) + p[2]; |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 952 | if (3 + payload + 16 <= len) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 953 | return; /* OK no problem */ |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 954 | kill_it: |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 955 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 956 | * advertised payload is larger than the advertised packet |
| 957 | * length, so we have garbage in the buffer between the |
| 958 | * payload and the end of the buffer (p+len). We can't know |
| 959 | * if the SSL stack is patched, and we don't know if we can |
| 960 | * safely wipe out the area between p+3+len and payload. |
| 961 | * So instead, we prevent the response from being sent by |
| 962 | * setting the max_send_fragment to 0 and we report an SSL |
| 963 | * error, which will kill this connection. It will be reported |
| 964 | * above as SSL_ERROR_SSL while an other handshake failure with |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 965 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 966 | */ |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 967 | ssl->max_send_fragment = 0; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 968 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 969 | return; |
| 970 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 971 | #endif |
| 972 | } |
| 973 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 974 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 975 | /* This callback is used so that the server advertises the list of |
| 976 | * negociable protocols for NPN. |
| 977 | */ |
| 978 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 979 | unsigned int *len, void *arg) |
| 980 | { |
| 981 | struct bind_conf *conf = arg; |
| 982 | |
| 983 | *data = (const unsigned char *)conf->npn_str; |
| 984 | *len = conf->npn_len; |
| 985 | return SSL_TLSEXT_ERR_OK; |
| 986 | } |
| 987 | #endif |
| 988 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 989 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 990 | /* This callback is used so that the server advertises the list of |
| 991 | * negociable protocols for ALPN. |
| 992 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 993 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 994 | unsigned char *outlen, |
| 995 | const unsigned char *server, |
| 996 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 997 | { |
| 998 | struct bind_conf *conf = arg; |
| 999 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1000 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1001 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1002 | return SSL_TLSEXT_ERR_NOACK; |
| 1003 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1004 | return SSL_TLSEXT_ERR_OK; |
| 1005 | } |
| 1006 | #endif |
| 1007 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1008 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1009 | /* Create a X509 certificate with the specified servername and serial. This |
| 1010 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
| 1011 | SSL_CTX * |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1012 | ssl_sock_create_cert(const char *servername, unsigned int serial, X509 *cacert, EVP_PKEY *capkey) |
| 1013 | { |
| 1014 | SSL_CTX *ssl_ctx = NULL; |
| 1015 | X509 *newcrt = NULL; |
| 1016 | EVP_PKEY *pkey = NULL; |
| 1017 | RSA *rsa; |
| 1018 | X509_NAME *name; |
| 1019 | const EVP_MD *digest; |
| 1020 | X509V3_CTX ctx; |
| 1021 | unsigned int i; |
| 1022 | |
| 1023 | /* Generate the public key */ |
| 1024 | if (!(rsa = RSA_generate_key(2048, 3, NULL, NULL))) |
| 1025 | goto mkcert_error; |
| 1026 | if (!(pkey = EVP_PKEY_new())) |
| 1027 | goto mkcert_error; |
| 1028 | if (EVP_PKEY_assign_RSA(pkey, rsa) != 1) |
| 1029 | goto mkcert_error; |
| 1030 | |
| 1031 | /* Create the certificate */ |
| 1032 | if (!(newcrt = X509_new())) |
| 1033 | goto mkcert_error; |
| 1034 | |
| 1035 | /* Set version number for the certificate (X509v3) and the serial |
| 1036 | * number */ |
| 1037 | if (X509_set_version(newcrt, 2L) != 1) |
| 1038 | goto mkcert_error; |
| 1039 | ASN1_INTEGER_set(X509_get_serialNumber(newcrt), serial); |
| 1040 | |
| 1041 | /* Set duration for the certificate */ |
| 1042 | if (!X509_gmtime_adj(X509_get_notBefore(newcrt), (long)-60*60*24) || |
| 1043 | !X509_gmtime_adj(X509_get_notAfter(newcrt),(long)60*60*24*365)) |
| 1044 | goto mkcert_error; |
| 1045 | |
| 1046 | /* set public key in the certificate */ |
| 1047 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1048 | goto mkcert_error; |
| 1049 | |
| 1050 | /* Set issuer name from the CA */ |
| 1051 | if (!(name = X509_get_subject_name(cacert))) |
| 1052 | goto mkcert_error; |
| 1053 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 1054 | goto mkcert_error; |
| 1055 | |
| 1056 | /* Set the subject name using the same, but the CN */ |
| 1057 | name = X509_NAME_dup(name); |
| 1058 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 1059 | (const unsigned char *)servername, |
| 1060 | -1, -1, 0) != 1) { |
| 1061 | X509_NAME_free(name); |
| 1062 | goto mkcert_error; |
| 1063 | } |
| 1064 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 1065 | X509_NAME_free(name); |
| 1066 | goto mkcert_error; |
| 1067 | } |
| 1068 | X509_NAME_free(name); |
| 1069 | |
| 1070 | /* Add x509v3 extensions as specified */ |
| 1071 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 1072 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 1073 | X509_EXTENSION *ext; |
| 1074 | |
| 1075 | if (!(ext = X509V3_EXT_conf(NULL, &ctx, x509v3_ext_names[i], x509v3_ext_values[i]))) |
| 1076 | goto mkcert_error; |
| 1077 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 1078 | X509_EXTENSION_free(ext); |
| 1079 | goto mkcert_error; |
| 1080 | } |
| 1081 | X509_EXTENSION_free(ext); |
| 1082 | } |
| 1083 | |
| 1084 | /* Sign the certificate with the CA private key */ |
| 1085 | if (EVP_PKEY_type(capkey->type) == EVP_PKEY_DSA) |
| 1086 | digest = EVP_dss1(); |
| 1087 | else if (EVP_PKEY_type (capkey->type) == EVP_PKEY_RSA) |
| 1088 | digest = EVP_sha256(); |
| 1089 | else |
| 1090 | goto mkcert_error; |
| 1091 | if (!(X509_sign(newcrt, capkey, digest))) |
| 1092 | goto mkcert_error; |
| 1093 | |
| 1094 | /* Create and set the new SSL_CTX */ |
| 1095 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 1096 | goto mkcert_error; |
| 1097 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 1098 | goto mkcert_error; |
| 1099 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 1100 | goto mkcert_error; |
| 1101 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 1102 | goto mkcert_error; |
| 1103 | |
| 1104 | if (newcrt) X509_free(newcrt); |
| 1105 | if (pkey) EVP_PKEY_free(pkey); |
| 1106 | return ssl_ctx; |
| 1107 | |
| 1108 | mkcert_error: |
| 1109 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 1110 | if (newcrt) X509_free(newcrt); |
| 1111 | if (pkey) EVP_PKEY_free(pkey); |
| 1112 | return NULL; |
| 1113 | } |
| 1114 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1115 | /* Do a lookup for a certificate in the LRU cache used to store generated |
| 1116 | * certificates. */ |
| 1117 | SSL_CTX * |
| 1118 | ssl_sock_get_generated_cert(unsigned int serial, X509 *cacert) |
| 1119 | { |
| 1120 | struct lru64 *lru = NULL; |
| 1121 | |
| 1122 | if (ssl_ctx_lru_tree) { |
| 1123 | lru = lru64_lookup(serial, ssl_ctx_lru_tree, cacert, 0); |
| 1124 | if (lru && lru->domain) |
| 1125 | return (SSL_CTX *)lru->data; |
| 1126 | } |
| 1127 | return NULL; |
| 1128 | } |
| 1129 | |
| 1130 | /* Set a certificate int the LRU cache used to store generated certificate. */ |
| 1131 | void |
| 1132 | ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int serial, X509 *cacert) |
| 1133 | { |
| 1134 | struct lru64 *lru = NULL; |
| 1135 | |
| 1136 | if (ssl_ctx_lru_tree) { |
| 1137 | lru = lru64_get(serial, ssl_ctx_lru_tree, cacert, 0); |
| 1138 | if (!lru) |
| 1139 | return; |
| 1140 | if (lru->domain && lru->data) |
| 1141 | lru->free((SSL_CTX *)lru->data); |
| 1142 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
| 1143 | } |
| 1144 | } |
| 1145 | |
| 1146 | /* Compute the serial that will be used to create/set/get a certificate. */ |
| 1147 | unsigned int |
Willy Tarreau | 646b864 | 2015-07-07 18:09:15 +0200 | [diff] [blame^] | 1148 | ssl_sock_generated_cert_serial(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1149 | { |
| 1150 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 1151 | } |
| 1152 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1153 | static SSL_CTX * |
| 1154 | ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf) |
| 1155 | { |
| 1156 | X509 *cacert = bind_conf->ca_sign_cert; |
| 1157 | EVP_PKEY *capkey = bind_conf->ca_sign_pkey; |
| 1158 | SSL_CTX *ssl_ctx = NULL; |
| 1159 | struct lru64 *lru = NULL; |
| 1160 | unsigned int serial; |
| 1161 | |
| 1162 | serial = XXH32(servername, strlen(servername), ssl_ctx_lru_seed); |
| 1163 | if (ssl_ctx_lru_tree) { |
| 1164 | lru = lru64_get(serial, ssl_ctx_lru_tree, cacert, 0); |
| 1165 | if (lru && lru->domain) |
| 1166 | ssl_ctx = (SSL_CTX *)lru->data; |
| 1167 | } |
| 1168 | |
| 1169 | if (!ssl_ctx) { |
| 1170 | ssl_ctx = ssl_sock_create_cert(servername, serial, cacert, capkey); |
| 1171 | if (lru) |
| 1172 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
| 1173 | } |
| 1174 | return ssl_ctx; |
| 1175 | } |
| 1176 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1177 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 1178 | * warning when no match is found, which implies the default (first) cert |
| 1179 | * will keep being used. |
| 1180 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 1181 | 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] | 1182 | { |
| 1183 | const char *servername; |
| 1184 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1185 | struct ebmb_node *node, *n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1186 | int i; |
| 1187 | (void)al; /* shut gcc stupid warning */ |
| 1188 | |
| 1189 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 1190 | if (!servername) { |
Willy Tarreau | f672145 | 2015-07-07 18:04:38 +0200 | [diff] [blame] | 1191 | if (s->generate_certs) { |
| 1192 | struct connection *conn = (struct connection *)SSL_get_app_data(ssl); |
| 1193 | unsigned int serial; |
| 1194 | SSL_CTX *ctx; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1195 | |
Willy Tarreau | f672145 | 2015-07-07 18:04:38 +0200 | [diff] [blame] | 1196 | conn_get_to_addr(conn); |
| 1197 | if (conn->flags & CO_FL_ADDR_TO_SET) { |
| 1198 | serial = ssl_sock_generated_cert_serial(&conn->addr.to, get_addr_len(&conn->addr.to)); |
| 1199 | ctx = ssl_sock_get_generated_cert(serial, s->ca_sign_cert); |
| 1200 | if (ctx) { |
| 1201 | /* switch ctx */ |
| 1202 | SSL_set_SSL_CTX(ssl, ctx); |
| 1203 | return SSL_TLSEXT_ERR_OK; |
| 1204 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1205 | } |
| 1206 | } |
| 1207 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1208 | return (s->strict_sni ? |
| 1209 | SSL_TLSEXT_ERR_ALERT_FATAL : |
Emmanuel Hocdet | 79274e2 | 2013-05-31 12:47:44 +0200 | [diff] [blame] | 1210 | SSL_TLSEXT_ERR_NOACK); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 1211 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1212 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1213 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1214 | if (!servername[i]) |
| 1215 | break; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1216 | trash.str[i] = tolower(servername[i]); |
| 1217 | if (!wildp && (trash.str[i] == '.')) |
| 1218 | wildp = &trash.str[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1219 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1220 | trash.str[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1221 | |
| 1222 | /* lookup in full qualified names */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1223 | node = ebst_lookup(&s->sni_ctx, trash.str); |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1224 | |
| 1225 | /* lookup a not neg filter */ |
| 1226 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 1227 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 1228 | node = n; |
| 1229 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 1230 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1231 | } |
| 1232 | if (!node && wildp) { |
| 1233 | /* lookup in wildcards names */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1234 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1235 | } |
| 1236 | if (!node || container_of(node, struct sni_ctx, name)->neg) { |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1237 | SSL_CTX *ctx; |
| 1238 | |
| 1239 | if (s->generate_certs && |
| 1240 | (ctx = ssl_sock_generate_certificate(servername, s))) { |
| 1241 | /* switch ctx */ |
| 1242 | SSL_set_SSL_CTX(ssl, ctx); |
| 1243 | return SSL_TLSEXT_ERR_OK; |
| 1244 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1245 | return (s->strict_sni ? |
| 1246 | SSL_TLSEXT_ERR_ALERT_FATAL : |
| 1247 | SSL_TLSEXT_ERR_ALERT_WARNING); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1248 | } |
| 1249 | |
| 1250 | /* switch ctx */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1251 | 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] | 1252 | return SSL_TLSEXT_ERR_OK; |
| 1253 | } |
| 1254 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 1255 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1256 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1257 | |
| 1258 | static DH * ssl_get_dh_1024(void) |
| 1259 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1260 | static unsigned char dh1024_p[]={ |
| 1261 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 1262 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 1263 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 1264 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 1265 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 1266 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 1267 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 1268 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 1269 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 1270 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 1271 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 1272 | }; |
| 1273 | static unsigned char dh1024_g[]={ |
| 1274 | 0x02, |
| 1275 | }; |
| 1276 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1277 | DH *dh = DH_new(); |
| 1278 | if (dh) { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1279 | dh->p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 1280 | dh->g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
| 1281 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1282 | if (!dh->p || !dh->g) { |
| 1283 | DH_free(dh); |
| 1284 | dh = NULL; |
| 1285 | } |
| 1286 | } |
| 1287 | return dh; |
| 1288 | } |
| 1289 | |
| 1290 | static DH *ssl_get_dh_2048(void) |
| 1291 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1292 | static unsigned char dh2048_p[]={ |
| 1293 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 1294 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 1295 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 1296 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 1297 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 1298 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 1299 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 1300 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 1301 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 1302 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 1303 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 1304 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 1305 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 1306 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 1307 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 1308 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 1309 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 1310 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 1311 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 1312 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 1313 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 1314 | 0xB7,0x1F,0x77,0xF3, |
| 1315 | }; |
| 1316 | static unsigned char dh2048_g[]={ |
| 1317 | 0x02, |
| 1318 | }; |
| 1319 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1320 | DH *dh = DH_new(); |
| 1321 | if (dh) { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1322 | dh->p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 1323 | dh->g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
| 1324 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1325 | if (!dh->p || !dh->g) { |
| 1326 | DH_free(dh); |
| 1327 | dh = NULL; |
| 1328 | } |
| 1329 | } |
| 1330 | return dh; |
| 1331 | } |
| 1332 | |
| 1333 | static DH *ssl_get_dh_4096(void) |
| 1334 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1335 | static unsigned char dh4096_p[]={ |
| 1336 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 1337 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 1338 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 1339 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 1340 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 1341 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 1342 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 1343 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 1344 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 1345 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 1346 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 1347 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 1348 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 1349 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 1350 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 1351 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 1352 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 1353 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 1354 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 1355 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 1356 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 1357 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 1358 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 1359 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 1360 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 1361 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 1362 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 1363 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 1364 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 1365 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 1366 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 1367 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 1368 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 1369 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 1370 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 1371 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 1372 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 1373 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 1374 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 1375 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 1376 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 1377 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 1378 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1379 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1380 | static unsigned char dh4096_g[]={ |
| 1381 | 0x02, |
| 1382 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1383 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1384 | DH *dh = DH_new(); |
| 1385 | if (dh) { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1386 | dh->p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 1387 | dh->g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
| 1388 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1389 | if (!dh->p || !dh->g) { |
| 1390 | DH_free(dh); |
| 1391 | dh = NULL; |
| 1392 | } |
| 1393 | } |
| 1394 | return dh; |
| 1395 | } |
| 1396 | |
| 1397 | /* Returns Diffie-Hellman parameters matching the private key length |
| 1398 | but not exceeding global.tune.ssl_default_dh_param */ |
| 1399 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 1400 | { |
| 1401 | DH *dh = NULL; |
| 1402 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
| 1403 | int type = pkey ? EVP_PKEY_type(pkey->type) : EVP_PKEY_NONE; |
| 1404 | |
| 1405 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 1406 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 1407 | */ |
| 1408 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 1409 | keylen = EVP_PKEY_bits(pkey); |
| 1410 | } |
| 1411 | |
| 1412 | if (keylen > global.tune.ssl_default_dh_param) { |
| 1413 | keylen = global.tune.ssl_default_dh_param; |
| 1414 | } |
| 1415 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 1416 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1417 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1418 | } |
| 1419 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1420 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1421 | } |
| 1422 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1423 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1424 | } |
| 1425 | |
| 1426 | return dh; |
| 1427 | } |
| 1428 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1429 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1430 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1431 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1432 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1433 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1434 | if (in == NULL) |
| 1435 | goto end; |
| 1436 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1437 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1438 | goto end; |
| 1439 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1440 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 1441 | |
| 1442 | end: |
| 1443 | if (in) |
| 1444 | BIO_free(in); |
| 1445 | |
| 1446 | return dh; |
| 1447 | } |
| 1448 | |
| 1449 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 1450 | { |
| 1451 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 1452 | |
| 1453 | if (global_dh) { |
| 1454 | return 0; |
| 1455 | } |
| 1456 | |
| 1457 | return -1; |
| 1458 | } |
| 1459 | |
| 1460 | /* Loads Diffie-Hellman parameter from a file. Returns 1 if loaded, else -1 |
| 1461 | if an error occured, and 0 if parameter not found. */ |
| 1462 | int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file) |
| 1463 | { |
| 1464 | int ret = -1; |
| 1465 | DH *dh = ssl_sock_get_dh_from_file(file); |
| 1466 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1467 | if (dh) { |
| 1468 | ret = 1; |
| 1469 | SSL_CTX_set_tmp_dh(ctx, dh); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 1470 | |
| 1471 | if (ssl_dh_ptr_index >= 0) { |
| 1472 | /* store a pointer to the DH params to avoid complaining about |
| 1473 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 1474 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 1475 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1476 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 1477 | else if (global_dh) { |
| 1478 | SSL_CTX_set_tmp_dh(ctx, global_dh); |
| 1479 | ret = 0; /* DH params not found */ |
| 1480 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1481 | else { |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 1482 | /* Clear openssl global errors stack */ |
| 1483 | ERR_clear_error(); |
| 1484 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1485 | if (global.tune.ssl_default_dh_param <= 1024) { |
| 1486 | /* we are limited to DH parameter of 1024 bits anyway */ |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1487 | local_dh_1024 = ssl_get_dh_1024(); |
| 1488 | if (local_dh_1024 == NULL) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1489 | goto end; |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 1490 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 1491 | SSL_CTX_set_tmp_dh(ctx, local_dh_1024); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1492 | } |
| 1493 | else { |
| 1494 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 1495 | } |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 1496 | |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 1497 | ret = 0; /* DH params not found */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1498 | } |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1499 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1500 | end: |
| 1501 | if (dh) |
| 1502 | DH_free(dh); |
| 1503 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1504 | return ret; |
| 1505 | } |
| 1506 | #endif |
| 1507 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1508 | 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] | 1509 | { |
| 1510 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1511 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1512 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1513 | if (*name == '!') { |
| 1514 | neg = 1; |
| 1515 | name++; |
| 1516 | } |
| 1517 | if (*name == '*') { |
| 1518 | wild = 1; |
| 1519 | name++; |
| 1520 | } |
| 1521 | /* !* filter is a nop */ |
| 1522 | if (neg && wild) |
| 1523 | return order; |
| 1524 | if (*name) { |
| 1525 | int j, len; |
| 1526 | len = strlen(name); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1527 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
| 1528 | for (j = 0; j < len; j++) |
| 1529 | sc->name.key[j] = tolower(name[j]); |
| 1530 | sc->name.key[len] = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1531 | sc->ctx = ctx; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1532 | sc->order = order++; |
| 1533 | sc->neg = neg; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1534 | if (wild) |
| 1535 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 1536 | else |
| 1537 | ebst_insert(&s->sni_ctx, &sc->name); |
| 1538 | } |
| 1539 | return order; |
| 1540 | } |
| 1541 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1542 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 1543 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 1544 | */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1545 | 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] | 1546 | { |
| 1547 | BIO *in; |
| 1548 | X509 *x = NULL, *ca; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1549 | int i, err; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1550 | int ret = -1; |
| 1551 | int order = 0; |
| 1552 | X509_NAME *xname; |
| 1553 | char *str; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1554 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 1555 | STACK_OF(GENERAL_NAME) *names; |
| 1556 | #endif |
| 1557 | |
| 1558 | in = BIO_new(BIO_s_file()); |
| 1559 | if (in == NULL) |
| 1560 | goto end; |
| 1561 | |
| 1562 | if (BIO_read_filename(in, file) <= 0) |
| 1563 | goto end; |
| 1564 | |
| 1565 | x = PEM_read_bio_X509_AUX(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); |
| 1566 | if (x == NULL) |
| 1567 | goto end; |
| 1568 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1569 | if (fcount) { |
| 1570 | while (fcount--) |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1571 | order = ssl_sock_add_cert_sni(ctx, s, sni_filter[fcount], order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1572 | } |
| 1573 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1574 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1575 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 1576 | if (names) { |
| 1577 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 1578 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 1579 | if (name->type == GEN_DNS) { |
| 1580 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1581 | order = ssl_sock_add_cert_sni(ctx, s, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1582 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1583 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1584 | } |
| 1585 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1586 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1587 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1588 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1589 | xname = X509_get_subject_name(x); |
| 1590 | i = -1; |
| 1591 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 1592 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
| 1593 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, entry->value) >= 0) { |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1594 | order = ssl_sock_add_cert_sni(ctx, s, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1595 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1596 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1597 | } |
| 1598 | } |
| 1599 | |
| 1600 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 1601 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 1602 | goto end; |
| 1603 | |
| 1604 | if (ctx->extra_certs != NULL) { |
| 1605 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 1606 | ctx->extra_certs = NULL; |
| 1607 | } |
| 1608 | |
| 1609 | while ((ca = PEM_read_bio_X509(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata))) { |
| 1610 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 1611 | X509_free(ca); |
| 1612 | goto end; |
| 1613 | } |
| 1614 | } |
| 1615 | |
| 1616 | err = ERR_get_error(); |
| 1617 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 1618 | /* we successfully reached the last cert in the file */ |
| 1619 | ret = 1; |
| 1620 | } |
| 1621 | ERR_clear_error(); |
| 1622 | |
| 1623 | end: |
| 1624 | if (x) |
| 1625 | X509_free(x); |
| 1626 | |
| 1627 | if (in) |
| 1628 | BIO_free(in); |
| 1629 | |
| 1630 | return ret; |
| 1631 | } |
| 1632 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1633 | 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] | 1634 | { |
| 1635 | int ret; |
| 1636 | SSL_CTX *ctx; |
| 1637 | |
| 1638 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 1639 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1640 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 1641 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1642 | return 1; |
| 1643 | } |
| 1644 | |
| 1645 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1646 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 1647 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1648 | SSL_CTX_free(ctx); |
| 1649 | return 1; |
| 1650 | } |
| 1651 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1652 | 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] | 1653 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1654 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 1655 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1656 | if (ret < 0) /* serious error, must do that ourselves */ |
| 1657 | SSL_CTX_free(ctx); |
| 1658 | return 1; |
| 1659 | } |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 1660 | |
| 1661 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 1662 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 1663 | err && *err ? *err : "", path); |
| 1664 | return 1; |
| 1665 | } |
| 1666 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1667 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 1668 | * the tree, so it will be discovered and cleaned in time. |
| 1669 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1670 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 1671 | /* store a NULL pointer to indicate we have not yet loaded |
| 1672 | a custom DH param file */ |
| 1673 | if (ssl_dh_ptr_index >= 0) { |
| 1674 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 1675 | } |
| 1676 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1677 | ret = ssl_sock_load_dh_params(ctx, path); |
| 1678 | if (ret < 0) { |
| 1679 | if (err) |
| 1680 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 1681 | *err ? *err : "", path); |
| 1682 | return 1; |
| 1683 | } |
| 1684 | #endif |
| 1685 | |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 1686 | #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] | 1687 | ret = ssl_sock_load_ocsp(ctx, path); |
| 1688 | if (ret < 0) { |
| 1689 | if (err) |
| 1690 | 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", |
| 1691 | *err ? *err : "", path); |
| 1692 | return 1; |
| 1693 | } |
| 1694 | #endif |
| 1695 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1696 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
| 1697 | if (sctl_ex_index >= 0) { |
| 1698 | ret = ssl_sock_load_sctl(ctx, path); |
| 1699 | if (ret < 0) { |
| 1700 | if (err) |
| 1701 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
| 1702 | *err ? *err : "", path); |
| 1703 | return 1; |
| 1704 | } |
| 1705 | } |
| 1706 | #endif |
| 1707 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1708 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 1709 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1710 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 1711 | err && *err ? *err : ""); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1712 | return 1; |
| 1713 | } |
| 1714 | #endif |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 1715 | if (!bind_conf->default_ctx) |
| 1716 | bind_conf->default_ctx = ctx; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1717 | |
| 1718 | return 0; |
| 1719 | } |
| 1720 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1721 | 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] | 1722 | { |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 1723 | struct dirent **de_list; |
| 1724 | int i, n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1725 | DIR *dir; |
| 1726 | struct stat buf; |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 1727 | char *end; |
| 1728 | char fp[MAXPATHLEN+1]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1729 | int cfgerr = 0; |
| 1730 | |
| 1731 | if (!(dir = opendir(path))) |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1732 | 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] | 1733 | |
| 1734 | /* strip trailing slashes, including first one */ |
| 1735 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 1736 | *end = 0; |
| 1737 | |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 1738 | n = scandir(path, &de_list, 0, alphasort); |
| 1739 | if (n < 0) { |
| 1740 | memprintf(err, "%sunable to scan directory '%s' : %s.\n", |
| 1741 | err && *err ? *err : "", path, strerror(errno)); |
| 1742 | cfgerr++; |
| 1743 | } |
| 1744 | else { |
| 1745 | for (i = 0; i < n; i++) { |
| 1746 | struct dirent *de = de_list[i]; |
Emeric Brun | 2aab722 | 2014-06-18 18:15:09 +0200 | [diff] [blame] | 1747 | |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 1748 | end = strrchr(de->d_name, '.'); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1749 | if (end && (!strcmp(end, ".issuer") || !strcmp(end, ".ocsp") || !strcmp(end, ".sctl"))) |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 1750 | goto ignore_entry; |
| 1751 | |
| 1752 | snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name); |
| 1753 | if (stat(fp, &buf) != 0) { |
| 1754 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 1755 | err && *err ? *err : "", fp, strerror(errno)); |
| 1756 | cfgerr++; |
| 1757 | goto ignore_entry; |
| 1758 | } |
| 1759 | if (!S_ISREG(buf.st_mode)) |
| 1760 | goto ignore_entry; |
| 1761 | cfgerr += ssl_sock_load_cert_file(fp, bind_conf, curproxy, NULL, 0, err); |
| 1762 | ignore_entry: |
| 1763 | free(de); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1764 | } |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 1765 | free(de_list); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1766 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1767 | closedir(dir); |
| 1768 | return cfgerr; |
| 1769 | } |
| 1770 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 1771 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 1772 | * done once. Zero is returned if the operation fails. No error is returned |
| 1773 | * if the random is said as not implemented, because we expect that openssl |
| 1774 | * will use another method once needed. |
| 1775 | */ |
| 1776 | static int ssl_initialize_random() |
| 1777 | { |
| 1778 | unsigned char random; |
| 1779 | static int random_initialized = 0; |
| 1780 | |
| 1781 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 1782 | random_initialized = 1; |
| 1783 | |
| 1784 | return random_initialized; |
| 1785 | } |
| 1786 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1787 | int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
| 1788 | { |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1789 | char thisline[LINESIZE]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1790 | FILE *f; |
| 1791 | int linenum = 0; |
| 1792 | int cfgerr = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1793 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1794 | if ((f = fopen(file, "r")) == NULL) { |
| 1795 | memprintf(err, "cannot open file '%s' : %s", file, strerror(errno)); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1796 | return 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1797 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1798 | |
| 1799 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 1800 | int arg; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1801 | int newarg; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1802 | char *end; |
| 1803 | char *args[MAX_LINE_ARGS + 1]; |
| 1804 | char *line = thisline; |
| 1805 | |
| 1806 | linenum++; |
| 1807 | end = line + strlen(line); |
| 1808 | if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') { |
| 1809 | /* Check if we reached the limit and the last char is not \n. |
| 1810 | * Watch out for the last line without the terminating '\n'! |
| 1811 | */ |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1812 | memprintf(err, "line %d too long in file '%s', limit is %d characters", |
| 1813 | linenum, file, (int)sizeof(thisline)-1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1814 | cfgerr = 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1815 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1816 | } |
| 1817 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1818 | arg = 0; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1819 | newarg = 1; |
| 1820 | while (*line) { |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1821 | if (*line == '#' || *line == '\n' || *line == '\r') { |
| 1822 | /* end of string, end of loop */ |
| 1823 | *line = 0; |
| 1824 | break; |
| 1825 | } |
| 1826 | else if (isspace(*line)) { |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1827 | newarg = 1; |
| 1828 | *line = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1829 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1830 | else if (newarg) { |
| 1831 | if (arg == MAX_LINE_ARGS) { |
| 1832 | memprintf(err, "too many args on line %d in file '%s'.", |
| 1833 | linenum, file); |
| 1834 | cfgerr = 1; |
| 1835 | break; |
| 1836 | } |
| 1837 | newarg = 0; |
| 1838 | args[arg++] = line; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1839 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1840 | line++; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1841 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 1842 | if (cfgerr) |
| 1843 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1844 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1845 | /* empty line */ |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1846 | if (!arg) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1847 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1848 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 1849 | cfgerr = ssl_sock_load_cert_file(args[0], bind_conf, curproxy, &args[1], arg-1, err); |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1850 | if (cfgerr) { |
| 1851 | 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] | 1852 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 1853 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1854 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 1855 | fclose(f); |
| 1856 | return cfgerr; |
| 1857 | } |
| 1858 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1859 | #ifndef SSL_OP_CIPHER_SERVER_PREFERENCE /* needs OpenSSL >= 0.9.7 */ |
| 1860 | #define SSL_OP_CIPHER_SERVER_PREFERENCE 0 |
| 1861 | #endif |
| 1862 | |
| 1863 | #ifndef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION /* needs OpenSSL >= 0.9.7 */ |
| 1864 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 |
Willy Tarreau | 7d588ee | 2012-11-26 18:47:31 +0100 | [diff] [blame] | 1865 | #define SSL_renegotiate_pending(arg) 0 |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1866 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1867 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 0.9.8 */ |
| 1868 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 1869 | #endif |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 1870 | #ifndef SSL_OP_NO_TICKET /* needs OpenSSL >= 0.9.8 */ |
| 1871 | #define SSL_OP_NO_TICKET 0 |
| 1872 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1873 | #ifndef SSL_OP_NO_COMPRESSION /* needs OpenSSL >= 0.9.9 */ |
| 1874 | #define SSL_OP_NO_COMPRESSION 0 |
| 1875 | #endif |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 1876 | #ifndef SSL_OP_NO_TLSv1_1 /* needs OpenSSL >= 1.0.1 */ |
| 1877 | #define SSL_OP_NO_TLSv1_1 0 |
| 1878 | #endif |
| 1879 | #ifndef SSL_OP_NO_TLSv1_2 /* needs OpenSSL >= 1.0.1 */ |
| 1880 | #define SSL_OP_NO_TLSv1_2 0 |
| 1881 | #endif |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1882 | #ifndef SSL_OP_SINGLE_DH_USE /* needs OpenSSL >= 0.9.6 */ |
| 1883 | #define SSL_OP_SINGLE_DH_USE 0 |
| 1884 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1885 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 1.0.0 */ |
| 1886 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 1887 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1888 | #ifndef SSL_MODE_RELEASE_BUFFERS /* needs OpenSSL >= 1.0.0 */ |
| 1889 | #define SSL_MODE_RELEASE_BUFFERS 0 |
| 1890 | #endif |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 1891 | #ifndef SSL_MODE_SMALL_BUFFERS /* needs small_records.patch */ |
| 1892 | #define SSL_MODE_SMALL_BUFFERS 0 |
| 1893 | #endif |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1894 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 1895 | 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] | 1896 | { |
| 1897 | int cfgerr = 0; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1898 | int verify = SSL_VERIFY_NONE; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 1899 | long ssloptions = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1900 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 1901 | SSL_OP_NO_SSLv2 | |
| 1902 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 1903 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1904 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 1905 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
| 1906 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 1907 | long sslmode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1908 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 1909 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 1910 | SSL_MODE_RELEASE_BUFFERS | |
| 1911 | SSL_MODE_SMALL_BUFFERS; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1912 | STACK_OF(SSL_CIPHER) * ciphers = NULL; |
Willy Tarreau | a616ba6 | 2014-10-26 06:49:19 +0100 | [diff] [blame] | 1913 | SSL_CIPHER * cipher = NULL; |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 1914 | char cipher_description[128]; |
| 1915 | /* The description of ciphers using an Ephemeral Diffie Hellman key exchange |
| 1916 | contains " Kx=DH " or " Kx=DH(". Beware of " Kx=DH/", |
| 1917 | which is not ephemeral DH. */ |
| 1918 | const char dhe_description[] = " Kx=DH "; |
| 1919 | const char dhe_export_description[] = " Kx=DH("; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 1920 | int idx = 0; |
| 1921 | int dhe_found = 0; |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 1922 | SSL *ssl = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1923 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 1924 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 1925 | if (!ssl_initialize_random()) { |
| 1926 | Alert("OpenSSL random data generator initialization failed.\n"); |
| 1927 | cfgerr++; |
| 1928 | } |
| 1929 | |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1930 | if (bind_conf->ssl_options & BC_SSL_O_NO_SSLV3) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1931 | ssloptions |= SSL_OP_NO_SSLv3; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1932 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV10) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1933 | ssloptions |= SSL_OP_NO_TLSv1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1934 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV11) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 1935 | ssloptions |= SSL_OP_NO_TLSv1_1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1936 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV12) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 1937 | ssloptions |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1938 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 1939 | ssloptions |= SSL_OP_NO_TICKET; |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 1940 | if (bind_conf->ssl_options & BC_SSL_O_USE_SSLV3) |
| 1941 | SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()); |
| 1942 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV10) |
| 1943 | SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()); |
| 1944 | #if SSL_OP_NO_TLSv1_1 |
| 1945 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV11) |
| 1946 | SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()); |
| 1947 | #endif |
| 1948 | #if SSL_OP_NO_TLSv1_2 |
| 1949 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV12) |
| 1950 | SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()); |
| 1951 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1952 | |
| 1953 | SSL_CTX_set_options(ctx, ssloptions); |
| 1954 | SSL_CTX_set_mode(ctx, sslmode); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1955 | switch (bind_conf->verify) { |
| 1956 | case SSL_SOCK_VERIFY_NONE: |
| 1957 | verify = SSL_VERIFY_NONE; |
| 1958 | break; |
| 1959 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 1960 | verify = SSL_VERIFY_PEER; |
| 1961 | break; |
| 1962 | case SSL_SOCK_VERIFY_REQUIRED: |
| 1963 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 1964 | break; |
| 1965 | } |
| 1966 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 1967 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1968 | if (bind_conf->ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1969 | /* load CAfile to verify */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1970 | if (!SSL_CTX_load_verify_locations(ctx, bind_conf->ca_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1971 | 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] | 1972 | 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] | 1973 | cfgerr++; |
| 1974 | } |
| 1975 | /* set CA names fo client cert request, function returns void */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1976 | 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] | 1977 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1978 | else { |
| 1979 | Alert("Proxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 1980 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 1981 | cfgerr++; |
| 1982 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 1983 | #ifdef X509_V_FLAG_CRL_CHECK |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1984 | if (bind_conf->crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1985 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 1986 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1987 | if (!store || !X509_STORE_load_locations(store, bind_conf->crl_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1988 | 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] | 1989 | 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] | 1990 | cfgerr++; |
| 1991 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 1992 | else { |
| 1993 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 1994 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1995 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 1996 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1997 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1998 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1999 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 2000 | #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] | 2001 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 2002 | if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
| 2003 | Alert("Proxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 2004 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 2005 | cfgerr++; |
| 2006 | } |
| 2007 | } |
| 2008 | #endif |
| 2009 | |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 2010 | if (global.tune.ssllifetime) |
| 2011 | SSL_CTX_set_timeout(ctx, global.tune.ssllifetime); |
| 2012 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2013 | shared_context_set_cache(ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2014 | if (bind_conf->ciphers && |
| 2015 | !SSL_CTX_set_cipher_list(ctx, bind_conf->ciphers)) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2016 | 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] | 2017 | 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] | 2018 | cfgerr++; |
| 2019 | } |
| 2020 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2021 | /* If tune.ssl.default-dh-param has not been set, |
| 2022 | neither has ssl-default-dh-file and no static DH |
| 2023 | params were in the certificate file. */ |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2024 | if (global.tune.ssl_default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2025 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2026 | (ssl_dh_ptr_index == -1 || |
| 2027 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 2028 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2029 | ssl = SSL_new(ctx); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2030 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2031 | if (ssl) { |
| 2032 | ciphers = SSL_get_ciphers(ssl); |
| 2033 | |
| 2034 | if (ciphers) { |
| 2035 | for (idx = 0; idx < sk_SSL_CIPHER_num(ciphers); idx++) { |
| 2036 | cipher = sk_SSL_CIPHER_value(ciphers, idx); |
| 2037 | if (SSL_CIPHER_description(cipher, cipher_description, sizeof (cipher_description)) == cipher_description) { |
| 2038 | if (strstr(cipher_description, dhe_description) != NULL || |
| 2039 | strstr(cipher_description, dhe_export_description) != NULL) { |
| 2040 | dhe_found = 1; |
| 2041 | break; |
| 2042 | } |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 2043 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2044 | } |
| 2045 | } |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 2046 | SSL_free(ssl); |
| 2047 | ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 2048 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2049 | |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 2050 | if (dhe_found) { |
| 2051 | 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] | 2052 | } |
| 2053 | |
| 2054 | global.tune.ssl_default_dh_param = 1024; |
| 2055 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2056 | |
| 2057 | #ifndef OPENSSL_NO_DH |
| 2058 | if (global.tune.ssl_default_dh_param >= 1024) { |
| 2059 | if (local_dh_1024 == NULL) { |
| 2060 | local_dh_1024 = ssl_get_dh_1024(); |
| 2061 | } |
| 2062 | if (global.tune.ssl_default_dh_param >= 2048) { |
| 2063 | if (local_dh_2048 == NULL) { |
| 2064 | local_dh_2048 = ssl_get_dh_2048(); |
| 2065 | } |
| 2066 | if (global.tune.ssl_default_dh_param >= 4096) { |
| 2067 | if (local_dh_4096 == NULL) { |
| 2068 | local_dh_4096 = ssl_get_dh_4096(); |
| 2069 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2070 | } |
| 2071 | } |
| 2072 | } |
| 2073 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2074 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2075 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 2076 | #if OPENSSL_VERSION_NUMBER >= 0x00907000L |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2077 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 2078 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2079 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2080 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 2081 | if (bind_conf->npn_str) |
| 2082 | SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, bind_conf); |
| 2083 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 2084 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 2085 | if (bind_conf->alpn_str) |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 2086 | 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] | 2087 | #endif |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2088 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2089 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2090 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2091 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2092 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2093 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 2094 | { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2095 | int i; |
| 2096 | EC_KEY *ecdh; |
| 2097 | |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 2098 | i = OBJ_sn2nid(bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2099 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
| 2100 | 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] | 2101 | curproxy->id, bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE, |
| 2102 | bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2103 | cfgerr++; |
| 2104 | } |
| 2105 | else { |
| 2106 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 2107 | EC_KEY_free(ecdh); |
| 2108 | } |
| 2109 | } |
| 2110 | #endif |
| 2111 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2112 | return cfgerr; |
| 2113 | } |
| 2114 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2115 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 2116 | { |
| 2117 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 2118 | size_t prefixlen, suffixlen; |
| 2119 | |
| 2120 | /* Trivial case */ |
| 2121 | if (strcmp(pattern, hostname) == 0) |
| 2122 | return 1; |
| 2123 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2124 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 2125 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 2126 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 2127 | pattern_wildcard = NULL; |
| 2128 | pattern_left_label_end = pattern; |
| 2129 | while (*pattern_left_label_end != '.') { |
| 2130 | switch (*pattern_left_label_end) { |
| 2131 | case 0: |
| 2132 | /* End of label not found */ |
| 2133 | return 0; |
| 2134 | case '*': |
| 2135 | /* If there is more than one wildcards */ |
| 2136 | if (pattern_wildcard) |
| 2137 | return 0; |
| 2138 | pattern_wildcard = pattern_left_label_end; |
| 2139 | break; |
| 2140 | } |
| 2141 | pattern_left_label_end++; |
| 2142 | } |
| 2143 | |
| 2144 | /* If it's not trivial and there is no wildcard, it can't |
| 2145 | * match */ |
| 2146 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2147 | return 0; |
| 2148 | |
| 2149 | /* Make sure all labels match except the leftmost */ |
| 2150 | hostname_left_label_end = strchr(hostname, '.'); |
| 2151 | if (!hostname_left_label_end |
| 2152 | || strcmp(pattern_left_label_end, hostname_left_label_end) != 0) |
| 2153 | return 0; |
| 2154 | |
| 2155 | /* Make sure the leftmost label of the hostname is long enough |
| 2156 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 2157 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2158 | return 0; |
| 2159 | |
| 2160 | /* Finally compare the string on either side of the |
| 2161 | * wildcard */ |
| 2162 | prefixlen = pattern_wildcard - pattern; |
| 2163 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 2164 | if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0)) |
| 2165 | || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2166 | return 0; |
| 2167 | |
| 2168 | return 1; |
| 2169 | } |
| 2170 | |
| 2171 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 2172 | { |
| 2173 | SSL *ssl; |
| 2174 | struct connection *conn; |
| 2175 | char *servername; |
| 2176 | |
| 2177 | int depth; |
| 2178 | X509 *cert; |
| 2179 | STACK_OF(GENERAL_NAME) *alt_names; |
| 2180 | int i; |
| 2181 | X509_NAME *cert_subject; |
| 2182 | char *str; |
| 2183 | |
| 2184 | if (ok == 0) |
| 2185 | return ok; |
| 2186 | |
| 2187 | ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()); |
| 2188 | conn = (struct connection *)SSL_get_app_data(ssl); |
| 2189 | |
| 2190 | servername = objt_server(conn->target)->ssl_ctx.verify_host; |
| 2191 | |
| 2192 | /* We only need to verify the CN on the actual server cert, |
| 2193 | * not the indirect CAs */ |
| 2194 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 2195 | if (depth != 0) |
| 2196 | return ok; |
| 2197 | |
| 2198 | /* At this point, the cert is *not* OK unless we can find a |
| 2199 | * hostname match */ |
| 2200 | ok = 0; |
| 2201 | |
| 2202 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 2203 | /* It seems like this might happen if verify peer isn't set */ |
| 2204 | if (!cert) |
| 2205 | return ok; |
| 2206 | |
| 2207 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 2208 | if (alt_names) { |
| 2209 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 2210 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 2211 | if (name->type == GEN_DNS) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 2212 | #if OPENSSL_VERSION_NUMBER < 0x00907000L |
| 2213 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 2214 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2215 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 2216 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2217 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 2218 | OPENSSL_free(str); |
| 2219 | } |
| 2220 | } |
| 2221 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 2222 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2223 | } |
| 2224 | |
| 2225 | cert_subject = X509_get_subject_name(cert); |
| 2226 | i = -1; |
| 2227 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 2228 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
| 2229 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, entry->value) >= 0) { |
| 2230 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 2231 | OPENSSL_free(str); |
| 2232 | } |
| 2233 | } |
| 2234 | |
| 2235 | return ok; |
| 2236 | } |
| 2237 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2238 | /* prepare ssl context from servers options. Returns an error count */ |
| 2239 | int ssl_sock_prepare_srv_ctx(struct server *srv, struct proxy *curproxy) |
| 2240 | { |
| 2241 | int cfgerr = 0; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 2242 | long options = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2243 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 2244 | SSL_OP_NO_SSLv2 | |
| 2245 | SSL_OP_NO_COMPRESSION; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 2246 | long mode = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2247 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 2248 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 2249 | SSL_MODE_RELEASE_BUFFERS | |
| 2250 | SSL_MODE_SMALL_BUFFERS; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2251 | int verify = SSL_VERIFY_NONE; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2252 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 2253 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 2254 | if (!ssl_initialize_random()) { |
| 2255 | Alert("OpenSSL random data generator initialization failed.\n"); |
| 2256 | cfgerr++; |
| 2257 | } |
| 2258 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 2259 | /* Automatic memory computations need to know we use SSL there */ |
| 2260 | global.ssl_used_backend = 1; |
| 2261 | |
| 2262 | /* Initiate SSL context for current server */ |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2263 | srv->ssl_ctx.reused_sess = NULL; |
| 2264 | if (srv->use_ssl) |
| 2265 | srv->xprt = &ssl_sock; |
| 2266 | if (srv->check.use_ssl) |
Cyril Bonté | 9ce1311 | 2014-11-15 22:41:27 +0100 | [diff] [blame] | 2267 | srv->check.xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2268 | |
| 2269 | srv->ssl_ctx.ctx = SSL_CTX_new(SSLv23_client_method()); |
| 2270 | if (!srv->ssl_ctx.ctx) { |
| 2271 | Alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 2272 | proxy_type_str(curproxy), curproxy->id, |
| 2273 | srv->id); |
| 2274 | cfgerr++; |
| 2275 | return cfgerr; |
| 2276 | } |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 2277 | if (srv->ssl_ctx.client_crt) { |
| 2278 | if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) { |
| 2279 | Alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n", |
| 2280 | proxy_type_str(curproxy), curproxy->id, |
| 2281 | srv->id, srv->ssl_ctx.client_crt); |
| 2282 | cfgerr++; |
| 2283 | } |
| 2284 | else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) { |
| 2285 | Alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n", |
| 2286 | proxy_type_str(curproxy), curproxy->id, |
| 2287 | srv->id, srv->ssl_ctx.client_crt); |
| 2288 | cfgerr++; |
| 2289 | } |
| 2290 | else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) { |
| 2291 | Alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 2292 | proxy_type_str(curproxy), curproxy->id, |
| 2293 | srv->id, srv->ssl_ctx.client_crt); |
| 2294 | cfgerr++; |
| 2295 | } |
| 2296 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2297 | |
| 2298 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_SSLV3) |
| 2299 | options |= SSL_OP_NO_SSLv3; |
| 2300 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV10) |
| 2301 | options |= SSL_OP_NO_TLSv1; |
| 2302 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV11) |
| 2303 | options |= SSL_OP_NO_TLSv1_1; |
| 2304 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV12) |
| 2305 | options |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 2306 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 2307 | options |= SSL_OP_NO_TICKET; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2308 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_SSLV3) |
| 2309 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, SSLv3_client_method()); |
| 2310 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV10) |
| 2311 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_client_method()); |
| 2312 | #if SSL_OP_NO_TLSv1_1 |
| 2313 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV11) |
| 2314 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_1_client_method()); |
| 2315 | #endif |
| 2316 | #if SSL_OP_NO_TLSv1_2 |
| 2317 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV12) |
| 2318 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_2_client_method()); |
| 2319 | #endif |
| 2320 | |
| 2321 | SSL_CTX_set_options(srv->ssl_ctx.ctx, options); |
| 2322 | SSL_CTX_set_mode(srv->ssl_ctx.ctx, mode); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2323 | |
| 2324 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 2325 | verify = SSL_VERIFY_PEER; |
| 2326 | |
| 2327 | switch (srv->ssl_ctx.verify) { |
| 2328 | case SSL_SOCK_VERIFY_NONE: |
| 2329 | verify = SSL_VERIFY_NONE; |
| 2330 | break; |
| 2331 | case SSL_SOCK_VERIFY_REQUIRED: |
| 2332 | verify = SSL_VERIFY_PEER; |
| 2333 | break; |
| 2334 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2335 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2336 | verify, |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2337 | srv->ssl_ctx.verify_host ? ssl_sock_srv_verifycbk : NULL); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2338 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2339 | if (srv->ssl_ctx.ca_file) { |
| 2340 | /* load CAfile to verify */ |
| 2341 | 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] | 2342 | 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] | 2343 | curproxy->id, srv->id, |
| 2344 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
| 2345 | cfgerr++; |
| 2346 | } |
| 2347 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 2348 | else { |
| 2349 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Willy Tarreau | 07ba08b | 2014-02-16 19:22:08 +0100 | [diff] [blame] | 2350 | 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] | 2351 | curproxy->id, srv->id, |
| 2352 | srv->conf.file, srv->conf.line); |
| 2353 | else |
Willy Tarreau | 07ba08b | 2014-02-16 19:22:08 +0100 | [diff] [blame] | 2354 | 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] | 2355 | curproxy->id, srv->id, |
| 2356 | srv->conf.file, srv->conf.line); |
| 2357 | cfgerr++; |
| 2358 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2359 | #ifdef X509_V_FLAG_CRL_CHECK |
| 2360 | if (srv->ssl_ctx.crl_file) { |
| 2361 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 2362 | |
| 2363 | 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] | 2364 | 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] | 2365 | curproxy->id, srv->id, |
| 2366 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
| 2367 | cfgerr++; |
| 2368 | } |
| 2369 | else { |
| 2370 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 2371 | } |
| 2372 | } |
| 2373 | #endif |
| 2374 | } |
| 2375 | |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 2376 | if (global.tune.ssllifetime) |
| 2377 | SSL_CTX_set_timeout(srv->ssl_ctx.ctx, global.tune.ssllifetime); |
| 2378 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 2379 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_OFF); |
| 2380 | if (srv->ssl_ctx.ciphers && |
| 2381 | !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) { |
| 2382 | Alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 2383 | curproxy->id, srv->id, |
| 2384 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
| 2385 | cfgerr++; |
| 2386 | } |
| 2387 | |
| 2388 | return cfgerr; |
| 2389 | } |
| 2390 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2391 | /* 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] | 2392 | * be NULL, in which case nothing is done. Returns the number of errors |
| 2393 | * encountered. |
| 2394 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2395 | 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] | 2396 | { |
| 2397 | struct ebmb_node *node; |
| 2398 | struct sni_ctx *sni; |
| 2399 | int err = 0; |
| 2400 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2401 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2402 | return 0; |
| 2403 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 2404 | /* Automatic memory computations need to know we use SSL there */ |
| 2405 | global.ssl_used_frontend = 1; |
| 2406 | |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 2407 | if (bind_conf->default_ctx) |
| 2408 | err += ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ctx, px); |
| 2409 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2410 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2411 | while (node) { |
| 2412 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 2413 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 2414 | /* only initialize the CTX on its first occurrence and |
| 2415 | if it is not the default_ctx */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2416 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2417 | node = ebmb_next(node); |
| 2418 | } |
| 2419 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2420 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2421 | while (node) { |
| 2422 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 2423 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 2424 | /* only initialize the CTX on its first occurrence and |
| 2425 | if it is not the default_ctx */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2426 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2427 | node = ebmb_next(node); |
| 2428 | } |
| 2429 | return err; |
| 2430 | } |
| 2431 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2432 | /* 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] | 2433 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 2434 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2435 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2436 | { |
| 2437 | struct ebmb_node *node, *back; |
| 2438 | struct sni_ctx *sni; |
| 2439 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2440 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2441 | return; |
| 2442 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2443 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2444 | while (node) { |
| 2445 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 2446 | back = ebmb_next(node); |
| 2447 | ebmb_delete(node); |
| 2448 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 2449 | SSL_CTX_free(sni->ctx); |
| 2450 | free(sni); |
| 2451 | node = back; |
| 2452 | } |
| 2453 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2454 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2455 | while (node) { |
| 2456 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 2457 | back = ebmb_next(node); |
| 2458 | ebmb_delete(node); |
| 2459 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 2460 | SSL_CTX_free(sni->ctx); |
| 2461 | free(sni); |
| 2462 | node = back; |
| 2463 | } |
| 2464 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2465 | bind_conf->default_ctx = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 2466 | } |
| 2467 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2468 | /* Load CA cert file and private key used to generate certificates */ |
| 2469 | int |
| 2470 | ssl_sock_load_ca(struct bind_conf *bind_conf, struct proxy *px) |
| 2471 | { |
| 2472 | FILE *fp; |
| 2473 | X509 *cacert = NULL; |
| 2474 | EVP_PKEY *capkey = NULL; |
| 2475 | int err = 0; |
| 2476 | |
| 2477 | if (!bind_conf || !bind_conf->generate_certs) |
| 2478 | return err; |
| 2479 | |
| 2480 | if (!bind_conf->ca_sign_file) { |
| 2481 | Alert("Proxy '%s': cannot enable certificate generation, " |
| 2482 | "no CA certificate File configured at [%s:%d].\n", |
| 2483 | px->id, bind_conf->file, bind_conf->line); |
| 2484 | err++; |
| 2485 | } |
| 2486 | |
| 2487 | if (err) |
| 2488 | goto load_error; |
| 2489 | |
| 2490 | /* read in the CA certificate */ |
| 2491 | if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) { |
| 2492 | Alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 2493 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 2494 | err++; |
| 2495 | goto load_error; |
| 2496 | } |
| 2497 | if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) { |
| 2498 | Alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 2499 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 2500 | fclose (fp); |
| 2501 | err++; |
| 2502 | goto load_error; |
| 2503 | } |
| 2504 | if (!(capkey = PEM_read_PrivateKey(fp, NULL, NULL, bind_conf->ca_sign_pass))) { |
| 2505 | Alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n", |
| 2506 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 2507 | fclose (fp); |
| 2508 | err++; |
| 2509 | goto load_error; |
| 2510 | } |
| 2511 | fclose (fp); |
| 2512 | |
| 2513 | bind_conf->ca_sign_cert = cacert; |
| 2514 | bind_conf->ca_sign_pkey = capkey; |
| 2515 | return err; |
| 2516 | |
| 2517 | load_error: |
| 2518 | bind_conf->generate_certs = 0; |
| 2519 | if (capkey) EVP_PKEY_free(capkey); |
| 2520 | if (cacert) X509_free(cacert); |
| 2521 | return err; |
| 2522 | } |
| 2523 | |
| 2524 | /* Release CA cert and private key used to generate certificated */ |
| 2525 | void |
| 2526 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 2527 | { |
| 2528 | if (!bind_conf) |
| 2529 | return; |
| 2530 | |
| 2531 | if (bind_conf->ca_sign_pkey) |
| 2532 | EVP_PKEY_free(bind_conf->ca_sign_pkey); |
| 2533 | if (bind_conf->ca_sign_cert) |
| 2534 | X509_free(bind_conf->ca_sign_cert); |
| 2535 | } |
| 2536 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2537 | /* |
| 2538 | * This function is called if SSL * context is not yet allocated. The function |
| 2539 | * is designed to be called before any other data-layer operation and sets the |
| 2540 | * handshake flag on the connection. It is safe to call it multiple times. |
| 2541 | * It returns 0 on success and -1 in error case. |
| 2542 | */ |
| 2543 | static int ssl_sock_init(struct connection *conn) |
| 2544 | { |
| 2545 | /* already initialized */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2546 | if (conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2547 | return 0; |
| 2548 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 2549 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 2550 | return 0; |
| 2551 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2552 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 2553 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 2554 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2555 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 2556 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2557 | /* If it is in client mode initiate SSL session |
| 2558 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2559 | if (objt_server(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2560 | int may_retry = 1; |
| 2561 | |
| 2562 | retry_connect: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2563 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2564 | conn->xprt_ctx = SSL_new(objt_server(conn->target)->ssl_ctx.ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2565 | if (!conn->xprt_ctx) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2566 | if (may_retry--) { |
| 2567 | pool_gc2(); |
| 2568 | goto retry_connect; |
| 2569 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2570 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2571 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2572 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2573 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2574 | /* set fd on SSL session context */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2575 | if (!SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd)) { |
| 2576 | SSL_free(conn->xprt_ctx); |
| 2577 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2578 | if (may_retry--) { |
| 2579 | pool_gc2(); |
| 2580 | goto retry_connect; |
| 2581 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2582 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 2583 | return -1; |
| 2584 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2585 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2586 | /* set connection pointer */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2587 | if (!SSL_set_app_data(conn->xprt_ctx, conn)) { |
| 2588 | SSL_free(conn->xprt_ctx); |
| 2589 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2590 | if (may_retry--) { |
| 2591 | pool_gc2(); |
| 2592 | goto retry_connect; |
| 2593 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2594 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 2595 | return -1; |
| 2596 | } |
| 2597 | |
| 2598 | SSL_set_connect_state(conn->xprt_ctx); |
| 2599 | if (objt_server(conn->target)->ssl_ctx.reused_sess) { |
| 2600 | if(!SSL_set_session(conn->xprt_ctx, objt_server(conn->target)->ssl_ctx.reused_sess)) { |
| 2601 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
| 2602 | objt_server(conn->target)->ssl_ctx.reused_sess = NULL; |
| 2603 | } |
| 2604 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 2605 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2606 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 2607 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 2608 | |
| 2609 | sslconns++; |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 2610 | totalsslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2611 | return 0; |
| 2612 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2613 | else if (objt_listener(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2614 | int may_retry = 1; |
| 2615 | |
| 2616 | retry_accept: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2617 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2618 | 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] | 2619 | if (!conn->xprt_ctx) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2620 | if (may_retry--) { |
| 2621 | pool_gc2(); |
| 2622 | goto retry_accept; |
| 2623 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2624 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2625 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2626 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2627 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2628 | /* set fd on SSL session context */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2629 | if (!SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd)) { |
| 2630 | SSL_free(conn->xprt_ctx); |
| 2631 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2632 | if (may_retry--) { |
| 2633 | pool_gc2(); |
| 2634 | goto retry_accept; |
| 2635 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2636 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 2637 | return -1; |
| 2638 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2639 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 2640 | /* set connection pointer */ |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2641 | if (!SSL_set_app_data(conn->xprt_ctx, conn)) { |
| 2642 | SSL_free(conn->xprt_ctx); |
| 2643 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 2644 | if (may_retry--) { |
| 2645 | pool_gc2(); |
| 2646 | goto retry_accept; |
| 2647 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 2648 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 2649 | return -1; |
| 2650 | } |
| 2651 | |
| 2652 | SSL_set_accept_state(conn->xprt_ctx); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 2653 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2654 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 2655 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 2656 | |
| 2657 | sslconns++; |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 2658 | totalsslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2659 | return 0; |
| 2660 | } |
| 2661 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2662 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2663 | return -1; |
| 2664 | } |
| 2665 | |
| 2666 | |
| 2667 | /* This is the callback which is used when an SSL handshake is pending. It |
| 2668 | * updates the FD status if it wants some polling before being called again. |
| 2669 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 2670 | * otherwise it returns non-zero and removes itself from the connection's |
| 2671 | * flags (the bit is provided in <flag> by the caller). |
| 2672 | */ |
| 2673 | int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
| 2674 | { |
| 2675 | int ret; |
| 2676 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 2677 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 2678 | return 0; |
| 2679 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2680 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2681 | goto out_error; |
| 2682 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 2683 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 2684 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 2685 | * Usually SSL_write and SSL_read are used and process implicitly |
| 2686 | * the reneg handshake. |
| 2687 | * Here we use SSL_peek as a workaround for reneg. |
| 2688 | */ |
| 2689 | if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 2690 | char c; |
| 2691 | |
| 2692 | ret = SSL_peek(conn->xprt_ctx, &c, 1); |
| 2693 | if (ret <= 0) { |
| 2694 | /* handshake may have not been completed, let's find why */ |
| 2695 | ret = SSL_get_error(conn->xprt_ctx, ret); |
| 2696 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 2697 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 2698 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 2699 | __conn_sock_want_send(conn); |
| 2700 | fd_cant_send(conn->t.sock.fd); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 2701 | return 0; |
| 2702 | } |
| 2703 | else if (ret == SSL_ERROR_WANT_READ) { |
| 2704 | /* handshake may have been completed but we have |
| 2705 | * no more data to read. |
| 2706 | */ |
| 2707 | if (!SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 2708 | ret = 1; |
| 2709 | goto reneg_ok; |
| 2710 | } |
| 2711 | /* SSL handshake needs to read, L4 connection is ready */ |
| 2712 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 2713 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 2714 | __conn_sock_stop_send(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 2715 | __conn_sock_want_recv(conn); |
| 2716 | fd_cant_recv(conn->t.sock.fd); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 2717 | return 0; |
| 2718 | } |
| 2719 | else if (ret == SSL_ERROR_SYSCALL) { |
| 2720 | /* if errno is null, then connection was successfully established */ |
| 2721 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 2722 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2723 | if (!conn->err_code) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2724 | if (!((SSL *)conn->xprt_ctx)->packet_length) { |
| 2725 | if (!errno) { |
| 2726 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 2727 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 2728 | else |
| 2729 | conn->err_code = CO_ER_SSL_EMPTY; |
| 2730 | } |
| 2731 | else { |
| 2732 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 2733 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 2734 | else |
| 2735 | conn->err_code = CO_ER_SSL_ABORT; |
| 2736 | } |
| 2737 | } |
| 2738 | else { |
| 2739 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 2740 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2741 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2742 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 2743 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2744 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 2745 | goto out_error; |
| 2746 | } |
| 2747 | else { |
| 2748 | /* Fail on all other handshake errors */ |
| 2749 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 2750 | * buffer, causing an RST to be emitted upon close() on |
| 2751 | * TCP sockets. We first try to drain possibly pending |
| 2752 | * data to avoid this as much as possible. |
| 2753 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 2754 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2755 | if (!conn->err_code) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 2756 | conn->err_code = (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
| 2757 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 2758 | goto out_error; |
| 2759 | } |
| 2760 | } |
| 2761 | /* read some data: consider handshake completed */ |
| 2762 | goto reneg_ok; |
| 2763 | } |
| 2764 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2765 | ret = SSL_do_handshake(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2766 | if (ret != 1) { |
| 2767 | /* handshake did not complete, let's find why */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2768 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2769 | |
| 2770 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 2771 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 2772 | __conn_sock_stop_recv(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 2773 | __conn_sock_want_send(conn); |
| 2774 | fd_cant_send(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2775 | return 0; |
| 2776 | } |
| 2777 | else if (ret == SSL_ERROR_WANT_READ) { |
| 2778 | /* SSL handshake needs to read, L4 connection is ready */ |
| 2779 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 2780 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 2781 | __conn_sock_stop_send(conn); |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 2782 | __conn_sock_want_recv(conn); |
| 2783 | fd_cant_recv(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2784 | return 0; |
| 2785 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 2786 | else if (ret == SSL_ERROR_SYSCALL) { |
| 2787 | /* if errno is null, then connection was successfully established */ |
| 2788 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 2789 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2790 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2791 | if (!((SSL *)conn->xprt_ctx)->packet_length) { |
| 2792 | if (!errno) { |
| 2793 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 2794 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 2795 | else |
| 2796 | conn->err_code = CO_ER_SSL_EMPTY; |
| 2797 | } |
| 2798 | else { |
| 2799 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 2800 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 2801 | else |
| 2802 | conn->err_code = CO_ER_SSL_ABORT; |
| 2803 | } |
| 2804 | } |
| 2805 | else { |
| 2806 | if (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
| 2807 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2808 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 2809 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 2810 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 2811 | goto out_error; |
| 2812 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2813 | else { |
| 2814 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 2815 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 2816 | * buffer, causing an RST to be emitted upon close() on |
| 2817 | * TCP sockets. We first try to drain possibly pending |
| 2818 | * data to avoid this as much as possible. |
| 2819 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 2820 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2821 | if (!conn->err_code) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 2822 | conn->err_code = (conn->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
| 2823 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2824 | goto out_error; |
| 2825 | } |
| 2826 | } |
| 2827 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 2828 | reneg_ok: |
| 2829 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2830 | /* Handshake succeeded */ |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 2831 | if (!SSL_session_reused(conn->xprt_ctx)) { |
| 2832 | if (objt_server(conn->target)) { |
| 2833 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 2834 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 2835 | global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr; |
| 2836 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2837 | /* 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] | 2838 | if (objt_server(conn->target)->ssl_ctx.reused_sess) |
| 2839 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2840 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 2841 | if (!(objt_server(conn->target)->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) |
| 2842 | 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] | 2843 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 2844 | else { |
| 2845 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 2846 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 2847 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 2848 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | /* The connection is now established at both layers, it's time to leave */ |
| 2852 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 2853 | return 1; |
| 2854 | |
| 2855 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2856 | /* Clear openssl global errors stack */ |
| 2857 | ERR_clear_error(); |
| 2858 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 2859 | /* free resumed session if exists */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 2860 | if (objt_server(conn->target) && objt_server(conn->target)->ssl_ctx.reused_sess) { |
| 2861 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
| 2862 | objt_server(conn->target)->ssl_ctx.reused_sess = NULL; |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 2863 | } |
| 2864 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2865 | /* Fail on all other handshake errors */ |
| 2866 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 2867 | if (!conn->err_code) |
| 2868 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2869 | return 0; |
| 2870 | } |
| 2871 | |
| 2872 | /* 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] | 2873 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2874 | * buffer wraps, in which case a second call may be performed. The connection's |
| 2875 | * flags are updated with whatever special event is detected (error, read0, |
| 2876 | * empty). The caller is responsible for taking care of those events and |
| 2877 | * avoiding the call if inappropriate. The function does not call the |
| 2878 | * connection's polling update function, so the caller is responsible for this. |
| 2879 | */ |
| 2880 | static int ssl_sock_to_buf(struct connection *conn, struct buffer *buf, int count) |
| 2881 | { |
| 2882 | int ret, done = 0; |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 2883 | int try; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2884 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2885 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2886 | goto out_error; |
| 2887 | |
| 2888 | if (conn->flags & CO_FL_HANDSHAKE) |
| 2889 | /* a handshake was requested */ |
| 2890 | return 0; |
| 2891 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 2892 | /* let's realign the buffer to optimize I/O */ |
| 2893 | if (buffer_empty(buf)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2894 | buf->p = buf->data; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2895 | |
| 2896 | /* read the largest possible block. For this, we perform only one call |
| 2897 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 2898 | * in which case we accept to do it once again. A new attempt is made on |
| 2899 | * EINTR too. |
| 2900 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 2901 | while (count > 0) { |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 2902 | /* first check if we have some room after p+i */ |
| 2903 | try = buf->data + buf->size - (buf->p + buf->i); |
| 2904 | /* otherwise continue between data and p-o */ |
| 2905 | if (try <= 0) { |
| 2906 | try = buf->p - (buf->data + buf->o); |
| 2907 | if (try <= 0) |
| 2908 | break; |
| 2909 | } |
| 2910 | if (try > count) |
| 2911 | try = count; |
| 2912 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2913 | ret = SSL_read(conn->xprt_ctx, bi_end(buf), try); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 2914 | if (conn->flags & CO_FL_ERROR) { |
| 2915 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2916 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 2917 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2918 | if (ret > 0) { |
| 2919 | buf->i += ret; |
| 2920 | done += ret; |
| 2921 | if (ret < try) |
| 2922 | break; |
| 2923 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2924 | } |
| 2925 | else if (ret == 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2926 | ret = SSL_get_error(conn->xprt_ctx, ret); |
| 2927 | if (ret != SSL_ERROR_ZERO_RETURN) { |
Emeric Brun | 1c64686 | 2012-12-14 12:33:41 +0100 | [diff] [blame] | 2928 | /* error on protocol or underlying transport */ |
| 2929 | if ((ret != SSL_ERROR_SYSCALL) |
| 2930 | || (errno && (errno != EAGAIN))) |
| 2931 | conn->flags |= CO_FL_ERROR; |
| 2932 | |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2933 | /* Clear openssl global errors stack */ |
| 2934 | ERR_clear_error(); |
| 2935 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2936 | goto read0; |
| 2937 | } |
| 2938 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2939 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2940 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 2941 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2942 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 2943 | __conn_sock_want_send(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2944 | break; |
| 2945 | } |
| 2946 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 2947 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 2948 | /* handshake is running, and it may need to re-enable read */ |
| 2949 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 2950 | __conn_sock_want_recv(conn); |
| 2951 | break; |
| 2952 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2953 | /* we need to poll for retry a read later */ |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 2954 | fd_cant_recv(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2955 | break; |
| 2956 | } |
| 2957 | /* otherwise it's a real error */ |
| 2958 | goto out_error; |
| 2959 | } |
| 2960 | } |
| 2961 | return done; |
| 2962 | |
| 2963 | read0: |
| 2964 | conn_sock_read0(conn); |
| 2965 | return done; |
| 2966 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2967 | /* Clear openssl global errors stack */ |
| 2968 | ERR_clear_error(); |
| 2969 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2970 | conn->flags |= CO_FL_ERROR; |
| 2971 | return done; |
| 2972 | } |
| 2973 | |
| 2974 | |
| 2975 | /* Send all pending bytes from buffer <buf> to connection <conn>'s socket. |
Willy Tarreau | 1049b1f | 2014-02-02 01:51:17 +0100 | [diff] [blame] | 2976 | * <flags> may contain some CO_SFL_* flags to hint the system about other |
| 2977 | * pending data for example, but this flag is ignored at the moment. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2978 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 2979 | * a second call may be performed. The connection's flags are updated with |
| 2980 | * whatever special event is detected (error, empty). The caller is responsible |
| 2981 | * for taking care of those events and avoiding the call if inappropriate. The |
| 2982 | * function does not call the connection's polling update function, so the caller |
| 2983 | * is responsible for this. |
| 2984 | */ |
| 2985 | static int ssl_sock_from_buf(struct connection *conn, struct buffer *buf, int flags) |
| 2986 | { |
| 2987 | int ret, try, done; |
| 2988 | |
| 2989 | done = 0; |
| 2990 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2991 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2992 | goto out_error; |
| 2993 | |
| 2994 | if (conn->flags & CO_FL_HANDSHAKE) |
| 2995 | /* a handshake was requested */ |
| 2996 | return 0; |
| 2997 | |
| 2998 | /* send the largest possible block. For this we perform only one call |
| 2999 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 3000 | * in which case we accept to do it once again. |
| 3001 | */ |
| 3002 | while (buf->o) { |
Kevin Hester | cad8234 | 2013-05-30 15:12:41 -0700 | [diff] [blame] | 3003 | try = bo_contig_data(buf); |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 3004 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 3005 | if (!(flags & CO_SFL_STREAMER) && |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3006 | !(conn->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
| 3007 | global.tune.ssl_max_record && try > global.tune.ssl_max_record) { |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 3008 | try = global.tune.ssl_max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3009 | } |
| 3010 | else { |
| 3011 | /* we need to keep the information about the fact that |
| 3012 | * we're not limiting the upcoming send(), because if it |
| 3013 | * fails, we'll have to retry with at least as many data. |
| 3014 | */ |
| 3015 | conn->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
| 3016 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 3017 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3018 | ret = SSL_write(conn->xprt_ctx, bo_ptr(buf), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3019 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3020 | if (conn->flags & CO_FL_ERROR) { |
| 3021 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3022 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 3023 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3024 | if (ret > 0) { |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 3025 | conn->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
| 3026 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3027 | buf->o -= ret; |
| 3028 | done += ret; |
| 3029 | |
Willy Tarreau | 5fb3803 | 2012-12-16 19:39:09 +0100 | [diff] [blame] | 3030 | if (likely(buffer_empty(buf))) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3031 | /* optimize data alignment in the buffer */ |
| 3032 | buf->p = buf->data; |
| 3033 | |
| 3034 | /* if the system buffer is full, don't insist */ |
| 3035 | if (ret < try) |
| 3036 | break; |
| 3037 | } |
| 3038 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3039 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3040 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 3041 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 3042 | /* handshake is running, and it may need to re-enable write */ |
| 3043 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 3044 | __conn_sock_want_send(conn); |
| 3045 | break; |
| 3046 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3047 | /* we need to poll to retry a write later */ |
Willy Tarreau | e1f50c4 | 2014-01-22 20:02:06 +0100 | [diff] [blame] | 3048 | fd_cant_send(conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3049 | break; |
| 3050 | } |
| 3051 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 3052 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3053 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 3054 | __conn_sock_want_recv(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3055 | break; |
| 3056 | } |
| 3057 | goto out_error; |
| 3058 | } |
| 3059 | } |
| 3060 | return done; |
| 3061 | |
| 3062 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3063 | /* Clear openssl global errors stack */ |
| 3064 | ERR_clear_error(); |
| 3065 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3066 | conn->flags |= CO_FL_ERROR; |
| 3067 | return done; |
| 3068 | } |
| 3069 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3070 | static void ssl_sock_close(struct connection *conn) { |
| 3071 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3072 | if (conn->xprt_ctx) { |
| 3073 | SSL_free(conn->xprt_ctx); |
| 3074 | conn->xprt_ctx = NULL; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 3075 | sslconns--; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3076 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3077 | } |
| 3078 | |
| 3079 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 3080 | * any case, flags the connection as reusable if no handshake was in progress. |
| 3081 | */ |
| 3082 | static void ssl_sock_shutw(struct connection *conn, int clean) |
| 3083 | { |
| 3084 | if (conn->flags & CO_FL_HANDSHAKE) |
| 3085 | return; |
| 3086 | /* no handshake was in progress, try a clean ssl shutdown */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 3087 | if (clean && (SSL_shutdown(conn->xprt_ctx) <= 0)) { |
| 3088 | /* Clear openssl global errors stack */ |
| 3089 | ERR_clear_error(); |
| 3090 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3091 | |
| 3092 | /* force flag on ssl to keep session in cache regardless shutdown result */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3093 | SSL_set_shutdown(conn->xprt_ctx, SSL_SENT_SHUTDOWN); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3094 | } |
| 3095 | |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 3096 | /* used for logging, may be changed for a sample fetch later */ |
| 3097 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 3098 | { |
| 3099 | if (!conn->xprt && !conn->xprt_ctx) |
| 3100 | return NULL; |
| 3101 | return SSL_get_cipher_name(conn->xprt_ctx); |
| 3102 | } |
| 3103 | |
| 3104 | /* used for logging, may be changed for a sample fetch later */ |
| 3105 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 3106 | { |
| 3107 | if (!conn->xprt && !conn->xprt_ctx) |
| 3108 | return NULL; |
| 3109 | return SSL_get_version(conn->xprt_ctx); |
| 3110 | } |
| 3111 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3112 | /* Extract a serial from a cert, and copy it to a chunk. |
| 3113 | * Returns 1 if serial is found and copied, 0 if no serial found and |
| 3114 | * -1 if output is not large enough. |
| 3115 | */ |
| 3116 | static int |
| 3117 | ssl_sock_get_serial(X509 *crt, struct chunk *out) |
| 3118 | { |
| 3119 | ASN1_INTEGER *serial; |
| 3120 | |
| 3121 | serial = X509_get_serialNumber(crt); |
| 3122 | if (!serial) |
| 3123 | return 0; |
| 3124 | |
| 3125 | if (out->size < serial->length) |
| 3126 | return -1; |
| 3127 | |
| 3128 | memcpy(out->str, serial->data, serial->length); |
| 3129 | out->len = serial->length; |
| 3130 | return 1; |
| 3131 | } |
| 3132 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 3133 | /* Extract a cert to der, and copy it to a chunk. |
| 3134 | * Returns 1 if cert is found and copied, 0 on der convertion failure and |
| 3135 | * -1 if output is not large enough. |
| 3136 | */ |
| 3137 | static int |
| 3138 | ssl_sock_crt2der(X509 *crt, struct chunk *out) |
| 3139 | { |
| 3140 | int len; |
| 3141 | unsigned char *p = (unsigned char *)out->str;; |
| 3142 | |
| 3143 | len =i2d_X509(crt, NULL); |
| 3144 | if (len <= 0) |
| 3145 | return 1; |
| 3146 | |
| 3147 | if (out->size < len) |
| 3148 | return -1; |
| 3149 | |
| 3150 | i2d_X509(crt,&p); |
| 3151 | out->len = len; |
| 3152 | return 1; |
| 3153 | } |
| 3154 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3155 | |
| 3156 | /* Copy Date in ASN1_UTCTIME format in struct chunk out. |
| 3157 | * Returns 1 if serial is found and copied, 0 if no valid time found |
| 3158 | * and -1 if output is not large enough. |
| 3159 | */ |
| 3160 | static int |
| 3161 | ssl_sock_get_time(ASN1_TIME *tm, struct chunk *out) |
| 3162 | { |
| 3163 | if (tm->type == V_ASN1_GENERALIZEDTIME) { |
| 3164 | ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm; |
| 3165 | |
| 3166 | if (gentm->length < 12) |
| 3167 | return 0; |
| 3168 | if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30) |
| 3169 | return 0; |
| 3170 | if (out->size < gentm->length-2) |
| 3171 | return -1; |
| 3172 | |
| 3173 | memcpy(out->str, gentm->data+2, gentm->length-2); |
| 3174 | out->len = gentm->length-2; |
| 3175 | return 1; |
| 3176 | } |
| 3177 | else if (tm->type == V_ASN1_UTCTIME) { |
| 3178 | ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm; |
| 3179 | |
| 3180 | if (utctm->length < 10) |
| 3181 | return 0; |
| 3182 | if (utctm->data[0] >= 0x35) |
| 3183 | return 0; |
| 3184 | if (out->size < utctm->length) |
| 3185 | return -1; |
| 3186 | |
| 3187 | memcpy(out->str, utctm->data, utctm->length); |
| 3188 | out->len = utctm->length; |
| 3189 | return 1; |
| 3190 | } |
| 3191 | |
| 3192 | return 0; |
| 3193 | } |
| 3194 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3195 | /* Extract an entry from a X509_NAME and copy its value to an output chunk. |
| 3196 | * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough. |
| 3197 | */ |
| 3198 | static int |
| 3199 | ssl_sock_get_dn_entry(X509_NAME *a, const struct chunk *entry, int pos, struct chunk *out) |
| 3200 | { |
| 3201 | X509_NAME_ENTRY *ne; |
| 3202 | int i, j, n; |
| 3203 | int cur = 0; |
| 3204 | const char *s; |
| 3205 | char tmp[128]; |
| 3206 | |
| 3207 | out->len = 0; |
| 3208 | for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) { |
| 3209 | if (pos < 0) |
| 3210 | j = (sk_X509_NAME_ENTRY_num(a->entries)-1) - i; |
| 3211 | else |
| 3212 | j = i; |
| 3213 | |
| 3214 | ne = sk_X509_NAME_ENTRY_value(a->entries, j); |
| 3215 | n = OBJ_obj2nid(ne->object); |
| 3216 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
| 3217 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), ne->object); |
| 3218 | s = tmp; |
| 3219 | } |
| 3220 | |
| 3221 | if (chunk_strcasecmp(entry, s) != 0) |
| 3222 | continue; |
| 3223 | |
| 3224 | if (pos < 0) |
| 3225 | cur--; |
| 3226 | else |
| 3227 | cur++; |
| 3228 | |
| 3229 | if (cur != pos) |
| 3230 | continue; |
| 3231 | |
| 3232 | if (ne->value->length > out->size) |
| 3233 | return -1; |
| 3234 | |
| 3235 | memcpy(out->str, ne->value->data, ne->value->length); |
| 3236 | out->len = ne->value->length; |
| 3237 | return 1; |
| 3238 | } |
| 3239 | |
| 3240 | return 0; |
| 3241 | |
| 3242 | } |
| 3243 | |
| 3244 | /* Extract and format full DN from a X509_NAME and copy result into a chunk |
| 3245 | * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough. |
| 3246 | */ |
| 3247 | static int |
| 3248 | ssl_sock_get_dn_oneline(X509_NAME *a, struct chunk *out) |
| 3249 | { |
| 3250 | X509_NAME_ENTRY *ne; |
| 3251 | int i, n, ln; |
| 3252 | int l = 0; |
| 3253 | const char *s; |
| 3254 | char *p; |
| 3255 | char tmp[128]; |
| 3256 | |
| 3257 | out->len = 0; |
| 3258 | p = out->str; |
| 3259 | for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) { |
| 3260 | ne = sk_X509_NAME_ENTRY_value(a->entries, i); |
| 3261 | n = OBJ_obj2nid(ne->object); |
| 3262 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
| 3263 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), ne->object); |
| 3264 | s = tmp; |
| 3265 | } |
| 3266 | ln = strlen(s); |
| 3267 | |
| 3268 | l += 1 + ln + 1 + ne->value->length; |
| 3269 | if (l > out->size) |
| 3270 | return -1; |
| 3271 | out->len = l; |
| 3272 | |
| 3273 | *(p++)='/'; |
| 3274 | memcpy(p, s, ln); |
| 3275 | p += ln; |
| 3276 | *(p++)='='; |
| 3277 | memcpy(p, ne->value->data, ne->value->length); |
| 3278 | p += ne->value->length; |
| 3279 | } |
| 3280 | |
| 3281 | if (!out->len) |
| 3282 | return 0; |
| 3283 | |
| 3284 | return 1; |
| 3285 | } |
| 3286 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3287 | char *ssl_sock_get_version(struct connection *conn) |
| 3288 | { |
| 3289 | if (!ssl_sock_is_ssl(conn)) |
| 3290 | return NULL; |
| 3291 | |
| 3292 | return (char *)SSL_get_version(conn->xprt_ctx); |
| 3293 | } |
| 3294 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 3295 | /* Extract peer certificate's common name into the chunk dest |
| 3296 | * Returns |
| 3297 | * the len of the extracted common name |
| 3298 | * or 0 if no CN found in DN |
| 3299 | * or -1 on error case (i.e. no peer certificate) |
| 3300 | */ |
| 3301 | 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] | 3302 | { |
| 3303 | X509 *crt = NULL; |
| 3304 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3305 | const char find_cn[] = "CN"; |
| 3306 | const struct chunk find_cn_chunk = { |
| 3307 | .str = (char *)&find_cn, |
| 3308 | .len = sizeof(find_cn)-1 |
| 3309 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 3310 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3311 | |
| 3312 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 3313 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3314 | |
| 3315 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3316 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3317 | if (!crt) |
| 3318 | goto out; |
| 3319 | |
| 3320 | name = X509_get_subject_name(crt); |
| 3321 | if (!name) |
| 3322 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3323 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 3324 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 3325 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3326 | if (crt) |
| 3327 | X509_free(crt); |
| 3328 | |
| 3329 | return result; |
| 3330 | } |
| 3331 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 3332 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 3333 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 3334 | { |
| 3335 | X509 *crt = NULL; |
| 3336 | |
| 3337 | if (!ssl_sock_is_ssl(conn)) |
| 3338 | return 0; |
| 3339 | |
| 3340 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3341 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3342 | if (!crt) |
| 3343 | return 0; |
| 3344 | |
| 3345 | X509_free(crt); |
| 3346 | return 1; |
| 3347 | } |
| 3348 | |
| 3349 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 3350 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 3351 | { |
| 3352 | if (!ssl_sock_is_ssl(conn)) |
| 3353 | return 0; |
| 3354 | |
| 3355 | return SSL_SOCK_ST_FL_VERIFY_DONE & conn->xprt_st ? 1 : 0; |
| 3356 | } |
| 3357 | |
| 3358 | /* returns result from SSL verify */ |
| 3359 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 3360 | { |
| 3361 | if (!ssl_sock_is_ssl(conn)) |
| 3362 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
| 3363 | |
| 3364 | return (unsigned int)SSL_get_verify_result(conn->xprt_ctx); |
| 3365 | } |
| 3366 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3367 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 3368 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 3369 | /* boolean, returns true if client cert was present */ |
| 3370 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3371 | 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] | 3372 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3373 | struct connection *conn; |
| 3374 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3375 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3376 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 3377 | return 0; |
| 3378 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3379 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 3380 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3381 | return 0; |
| 3382 | } |
| 3383 | |
| 3384 | smp->flags = 0; |
| 3385 | smp->type = SMP_T_BOOL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3386 | smp->data.uint = SSL_SOCK_ST_FL_VERIFY_DONE & conn->xprt_st ? 1 : 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 3387 | |
| 3388 | return 1; |
| 3389 | } |
| 3390 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 3391 | /* binary, returns a certificate in a binary chunk (der/raw). |
| 3392 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3393 | * should be use. |
| 3394 | */ |
| 3395 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3396 | 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] | 3397 | { |
| 3398 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
| 3399 | X509 *crt = NULL; |
| 3400 | int ret = 0; |
| 3401 | struct chunk *smp_trash; |
| 3402 | struct connection *conn; |
| 3403 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3404 | conn = objt_conn(smp->sess->origin); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 3405 | if (!conn || conn->xprt != &ssl_sock) |
| 3406 | return 0; |
| 3407 | |
| 3408 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 3409 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3410 | return 0; |
| 3411 | } |
| 3412 | |
| 3413 | if (cert_peer) |
| 3414 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3415 | else |
| 3416 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 3417 | |
| 3418 | if (!crt) |
| 3419 | goto out; |
| 3420 | |
| 3421 | smp_trash = get_trash_chunk(); |
| 3422 | if (ssl_sock_crt2der(crt, smp_trash) <= 0) |
| 3423 | goto out; |
| 3424 | |
| 3425 | smp->data.str = *smp_trash; |
| 3426 | smp->type = SMP_T_BIN; |
| 3427 | ret = 1; |
| 3428 | out: |
| 3429 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3430 | if (cert_peer && crt) |
| 3431 | X509_free(crt); |
| 3432 | return ret; |
| 3433 | } |
| 3434 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3435 | /* binary, returns serial of certificate in a binary chunk. |
| 3436 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3437 | * should be use. |
| 3438 | */ |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3439 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3440 | 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] | 3441 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3442 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3443 | X509 *crt = NULL; |
| 3444 | int ret = 0; |
| 3445 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3446 | struct connection *conn; |
| 3447 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3448 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3449 | if (!conn || conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3450 | return 0; |
| 3451 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3452 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3453 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3454 | return 0; |
| 3455 | } |
| 3456 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3457 | if (cert_peer) |
| 3458 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3459 | else |
| 3460 | crt = SSL_get_certificate(conn->xprt_ctx); |
| 3461 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3462 | if (!crt) |
| 3463 | goto out; |
| 3464 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 3465 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3466 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 3467 | goto out; |
| 3468 | |
| 3469 | smp->data.str = *smp_trash; |
| 3470 | smp->type = SMP_T_BIN; |
| 3471 | ret = 1; |
| 3472 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3473 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3474 | if (cert_peer && crt) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 3475 | X509_free(crt); |
| 3476 | return ret; |
| 3477 | } |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 3478 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3479 | /* binary, returns the client certificate's SHA-1 fingerprint (SHA-1 hash of DER-encoded certificate) in a binary chunk. |
| 3480 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3481 | * should be use. |
| 3482 | */ |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 3483 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3484 | 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] | 3485 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3486 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 3487 | X509 *crt = NULL; |
| 3488 | const EVP_MD *digest; |
| 3489 | int ret = 0; |
| 3490 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3491 | struct connection *conn; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 3492 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3493 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3494 | if (!conn || conn->xprt != &ssl_sock) |
| 3495 | return 0; |
| 3496 | |
| 3497 | if (!(conn->flags & CO_FL_CONNECTED)) { |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 3498 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3499 | return 0; |
| 3500 | } |
| 3501 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3502 | if (cert_peer) |
| 3503 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3504 | else |
| 3505 | crt = SSL_get_certificate(conn->xprt_ctx); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 3506 | if (!crt) |
| 3507 | goto out; |
| 3508 | |
| 3509 | smp_trash = get_trash_chunk(); |
| 3510 | digest = EVP_sha1(); |
| 3511 | X509_digest(crt, digest, (unsigned char *)smp_trash->str, (unsigned int *)&smp_trash->len); |
| 3512 | |
| 3513 | smp->data.str = *smp_trash; |
| 3514 | smp->type = SMP_T_BIN; |
| 3515 | ret = 1; |
| 3516 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3517 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3518 | if (cert_peer && crt) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 3519 | X509_free(crt); |
| 3520 | return ret; |
| 3521 | } |
| 3522 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3523 | /* string, returns certificate's notafter date in ASN1_UTCTIME format. |
| 3524 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3525 | * should be use. |
| 3526 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3527 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3528 | 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] | 3529 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3530 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3531 | X509 *crt = NULL; |
| 3532 | int ret = 0; |
| 3533 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3534 | struct connection *conn; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3535 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3536 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3537 | if (!conn || conn->xprt != &ssl_sock) |
| 3538 | return 0; |
| 3539 | |
| 3540 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3541 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3542 | return 0; |
| 3543 | } |
| 3544 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3545 | if (cert_peer) |
| 3546 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3547 | else |
| 3548 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3549 | if (!crt) |
| 3550 | goto out; |
| 3551 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 3552 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3553 | if (ssl_sock_get_time(X509_get_notAfter(crt), smp_trash) <= 0) |
| 3554 | goto out; |
| 3555 | |
| 3556 | smp->data.str = *smp_trash; |
| 3557 | smp->type = SMP_T_STR; |
| 3558 | ret = 1; |
| 3559 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3560 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3561 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3562 | X509_free(crt); |
| 3563 | return ret; |
| 3564 | } |
| 3565 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3566 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's issuer |
| 3567 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3568 | * should be use. |
| 3569 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3570 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3571 | 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] | 3572 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3573 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3574 | X509 *crt = NULL; |
| 3575 | X509_NAME *name; |
| 3576 | int ret = 0; |
| 3577 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3578 | struct connection *conn; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3579 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3580 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3581 | if (!conn || conn->xprt != &ssl_sock) |
| 3582 | return 0; |
| 3583 | |
| 3584 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3585 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3586 | return 0; |
| 3587 | } |
| 3588 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3589 | if (cert_peer) |
| 3590 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3591 | else |
| 3592 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3593 | if (!crt) |
| 3594 | goto out; |
| 3595 | |
| 3596 | name = X509_get_issuer_name(crt); |
| 3597 | if (!name) |
| 3598 | goto out; |
| 3599 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 3600 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3601 | if (args && args[0].type == ARGT_STR) { |
| 3602 | int pos = 1; |
| 3603 | |
| 3604 | if (args[1].type == ARGT_SINT) |
| 3605 | pos = args[1].data.sint; |
| 3606 | else if (args[1].type == ARGT_UINT) |
| 3607 | pos =(int)args[1].data.uint; |
| 3608 | |
| 3609 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 3610 | goto out; |
| 3611 | } |
| 3612 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 3613 | goto out; |
| 3614 | |
| 3615 | smp->type = SMP_T_STR; |
| 3616 | smp->data.str = *smp_trash; |
| 3617 | ret = 1; |
| 3618 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3619 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3620 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3621 | X509_free(crt); |
| 3622 | return ret; |
| 3623 | } |
| 3624 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3625 | /* string, returns notbefore date in ASN1_UTCTIME format. |
| 3626 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3627 | * should be use. |
| 3628 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3629 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3630 | 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] | 3631 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3632 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3633 | X509 *crt = NULL; |
| 3634 | int ret = 0; |
| 3635 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3636 | struct connection *conn; |
| 3637 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3638 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3639 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3640 | return 0; |
| 3641 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3642 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3643 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3644 | return 0; |
| 3645 | } |
| 3646 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3647 | if (cert_peer) |
| 3648 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3649 | else |
| 3650 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3651 | if (!crt) |
| 3652 | goto out; |
| 3653 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 3654 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3655 | if (ssl_sock_get_time(X509_get_notBefore(crt), smp_trash) <= 0) |
| 3656 | goto out; |
| 3657 | |
| 3658 | smp->data.str = *smp_trash; |
| 3659 | smp->type = SMP_T_STR; |
| 3660 | ret = 1; |
| 3661 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3662 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3663 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 3664 | X509_free(crt); |
| 3665 | return ret; |
| 3666 | } |
| 3667 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3668 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's subject |
| 3669 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3670 | * should be use. |
| 3671 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3672 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3673 | 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] | 3674 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3675 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3676 | X509 *crt = NULL; |
| 3677 | X509_NAME *name; |
| 3678 | int ret = 0; |
| 3679 | struct chunk *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3680 | struct connection *conn; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3681 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3682 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3683 | if (!conn || conn->xprt != &ssl_sock) |
| 3684 | return 0; |
| 3685 | |
| 3686 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3687 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3688 | return 0; |
| 3689 | } |
| 3690 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3691 | if (cert_peer) |
| 3692 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3693 | else |
| 3694 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3695 | if (!crt) |
| 3696 | goto out; |
| 3697 | |
| 3698 | name = X509_get_subject_name(crt); |
| 3699 | if (!name) |
| 3700 | goto out; |
| 3701 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 3702 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3703 | if (args && args[0].type == ARGT_STR) { |
| 3704 | int pos = 1; |
| 3705 | |
| 3706 | if (args[1].type == ARGT_SINT) |
| 3707 | pos = args[1].data.sint; |
| 3708 | else if (args[1].type == ARGT_UINT) |
| 3709 | pos =(int)args[1].data.uint; |
| 3710 | |
| 3711 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 3712 | goto out; |
| 3713 | } |
| 3714 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 3715 | goto out; |
| 3716 | |
| 3717 | smp->type = SMP_T_STR; |
| 3718 | smp->data.str = *smp_trash; |
| 3719 | ret = 1; |
| 3720 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3721 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 3722 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 3723 | X509_free(crt); |
| 3724 | return ret; |
| 3725 | } |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 3726 | |
| 3727 | /* integer, returns true if current session use a client certificate */ |
| 3728 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3729 | 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] | 3730 | { |
| 3731 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3732 | struct connection *conn; |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 3733 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3734 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3735 | if (!conn || conn->xprt != &ssl_sock) |
| 3736 | return 0; |
| 3737 | |
| 3738 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 3739 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3740 | return 0; |
| 3741 | } |
| 3742 | |
| 3743 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3744 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 3745 | if (crt) { |
| 3746 | X509_free(crt); |
| 3747 | } |
| 3748 | |
| 3749 | smp->type = SMP_T_BOOL; |
| 3750 | smp->data.uint = (crt != NULL); |
| 3751 | return 1; |
| 3752 | } |
| 3753 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3754 | /* integer, returns the certificate version |
| 3755 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3756 | * should be use. |
| 3757 | */ |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 3758 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3759 | 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] | 3760 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3761 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 3762 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3763 | struct connection *conn; |
| 3764 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3765 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3766 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 3767 | return 0; |
| 3768 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3769 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 3770 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3771 | return 0; |
| 3772 | } |
| 3773 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3774 | if (cert_peer) |
| 3775 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3776 | else |
| 3777 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 3778 | if (!crt) |
| 3779 | return 0; |
| 3780 | |
| 3781 | smp->data.uint = (unsigned int)(1 + X509_get_version(crt)); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3782 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 3783 | if (cert_peer) |
| 3784 | X509_free(crt); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 3785 | smp->type = SMP_T_UINT; |
| 3786 | |
| 3787 | return 1; |
| 3788 | } |
| 3789 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3790 | /* string, returns the certificate's signature algorithm. |
| 3791 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3792 | * should be use. |
| 3793 | */ |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3794 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3795 | 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] | 3796 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3797 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3798 | X509 *crt; |
| 3799 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3800 | struct connection *conn; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3801 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3802 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3803 | if (!conn || conn->xprt != &ssl_sock) |
| 3804 | return 0; |
| 3805 | |
| 3806 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3807 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3808 | return 0; |
| 3809 | } |
| 3810 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3811 | if (cert_peer) |
| 3812 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3813 | else |
| 3814 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3815 | if (!crt) |
| 3816 | return 0; |
| 3817 | |
| 3818 | nid = OBJ_obj2nid((ASN1_OBJECT *)(crt->cert_info->signature->algorithm)); |
| 3819 | |
| 3820 | smp->data.str.str = (char *)OBJ_nid2sn(nid); |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 3821 | if (!smp->data.str.str) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3822 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 3823 | if (cert_peer) |
| 3824 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3825 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 3826 | } |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3827 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 3828 | smp->type = SMP_T_STR; |
| 3829 | smp->flags |= SMP_F_CONST; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3830 | smp->data.str.len = strlen(smp->data.str.str); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3831 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 3832 | if (cert_peer) |
| 3833 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 3834 | |
| 3835 | return 1; |
| 3836 | } |
| 3837 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3838 | /* string, returns the certificate's key algorithm. |
| 3839 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 3840 | * should be use. |
| 3841 | */ |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3842 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3843 | 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] | 3844 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3845 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3846 | X509 *crt; |
| 3847 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3848 | struct connection *conn; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3849 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3850 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3851 | if (!conn || conn->xprt != &ssl_sock) |
| 3852 | return 0; |
| 3853 | |
| 3854 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3855 | smp->flags |= SMP_F_MAY_CHANGE; |
| 3856 | return 0; |
| 3857 | } |
| 3858 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3859 | if (cert_peer) |
| 3860 | crt = SSL_get_peer_certificate(conn->xprt_ctx); |
| 3861 | else |
| 3862 | crt = SSL_get_certificate(conn->xprt_ctx); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3863 | if (!crt) |
| 3864 | return 0; |
| 3865 | |
| 3866 | nid = OBJ_obj2nid((ASN1_OBJECT *)(crt->cert_info->key->algor->algorithm)); |
| 3867 | |
| 3868 | smp->data.str.str = (char *)OBJ_nid2sn(nid); |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 3869 | if (!smp->data.str.str) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3870 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 3871 | if (cert_peer) |
| 3872 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3873 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 3874 | } |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3875 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 3876 | smp->type = SMP_T_STR; |
| 3877 | smp->flags |= SMP_F_CONST; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3878 | smp->data.str.len = strlen(smp->data.str.str); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 3879 | if (cert_peer) |
| 3880 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 3881 | |
| 3882 | return 1; |
| 3883 | } |
| 3884 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3885 | /* boolean, returns true if front conn. transport layer is SSL. |
| 3886 | * This function is also usable on backend conn if the fetch keyword 5th |
| 3887 | * char is 'b'. |
| 3888 | */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3889 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3890 | 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] | 3891 | { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3892 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3893 | struct connection *conn = objt_conn(smp->strm->si[back_conn].end); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3894 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3895 | smp->type = SMP_T_BOOL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3896 | smp->data.uint = (conn && conn->xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3897 | return 1; |
| 3898 | } |
| 3899 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 3900 | /* boolean, returns true if client present a SNI */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3901 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3902 | 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] | 3903 | { |
| 3904 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3905 | struct connection *conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3906 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3907 | smp->type = SMP_T_BOOL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3908 | smp->data.uint = (conn && conn->xprt == &ssl_sock) && |
| 3909 | conn->xprt_ctx && |
| 3910 | SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name) != NULL; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3911 | return 1; |
| 3912 | #else |
| 3913 | return 0; |
| 3914 | #endif |
| 3915 | } |
| 3916 | |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 3917 | /* boolean, returns true if client session has been resumed */ |
| 3918 | static int |
| 3919 | smp_fetch_ssl_fc_is_resumed(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 3920 | { |
| 3921 | struct connection *conn = objt_conn(smp->sess->origin); |
| 3922 | |
| 3923 | smp->type = SMP_T_BOOL; |
| 3924 | smp->data.uint = (conn && conn->xprt == &ssl_sock) && |
| 3925 | conn->xprt_ctx && |
| 3926 | SSL_session_reused(conn->xprt_ctx); |
| 3927 | return 1; |
| 3928 | } |
| 3929 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3930 | /* string, returns the used cipher if front conn. transport layer is SSL. |
| 3931 | * This function is also usable on backend conn if the fetch keyword 5th |
| 3932 | * char is 'b'. |
| 3933 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3934 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3935 | 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] | 3936 | { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3937 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3938 | struct connection *conn; |
| 3939 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3940 | smp->flags = 0; |
| 3941 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3942 | conn = objt_conn(smp->strm->si[back_conn].end); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3943 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3944 | return 0; |
| 3945 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3946 | smp->data.str.str = (char *)SSL_get_cipher_name(conn->xprt_ctx); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3947 | if (!smp->data.str.str) |
| 3948 | return 0; |
| 3949 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 3950 | smp->type = SMP_T_STR; |
| 3951 | smp->flags |= SMP_F_CONST; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3952 | smp->data.str.len = strlen(smp->data.str.str); |
| 3953 | |
| 3954 | return 1; |
| 3955 | } |
| 3956 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3957 | /* integer, returns the algoritm's keysize if front conn. transport layer |
| 3958 | * is SSL. |
| 3959 | * This function is also usable on backend conn if the fetch keyword 5th |
| 3960 | * char is 'b'. |
| 3961 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3962 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3963 | 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] | 3964 | { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3965 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3966 | struct connection *conn; |
| 3967 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3968 | smp->flags = 0; |
| 3969 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3970 | conn = objt_conn(smp->strm->si[back_conn].end); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3971 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3972 | return 0; |
| 3973 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3974 | if (!SSL_get_cipher_bits(conn->xprt_ctx, (int *)&smp->data.uint)) |
| 3975 | return 0; |
| 3976 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3977 | smp->type = SMP_T_UINT; |
| 3978 | |
| 3979 | return 1; |
| 3980 | } |
| 3981 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3982 | /* integer, returns the used keysize if front conn. transport layer is SSL. |
| 3983 | * This function is also usable on backend conn if the fetch keyword 5th |
| 3984 | * char is 'b'. |
| 3985 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3986 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 3987 | 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] | 3988 | { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 3989 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3990 | struct connection *conn; |
| 3991 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3992 | smp->flags = 0; |
| 3993 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 3994 | conn = objt_conn(smp->strm->si[back_conn].end); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 3995 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 3996 | return 0; |
| 3997 | |
| 3998 | smp->data.uint = (unsigned int)SSL_get_cipher_bits(conn->xprt_ctx, NULL); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 3999 | if (!smp->data.uint) |
| 4000 | return 0; |
| 4001 | |
| 4002 | smp->type = SMP_T_UINT; |
| 4003 | |
| 4004 | return 1; |
| 4005 | } |
| 4006 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4007 | #ifdef OPENSSL_NPN_NEGOTIATED |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4008 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4009 | 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] | 4010 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4011 | struct connection *conn; |
| 4012 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4013 | smp->flags = SMP_F_CONST; |
| 4014 | smp->type = SMP_T_STR; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4015 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4016 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4017 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4018 | return 0; |
| 4019 | |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4020 | smp->data.str.str = NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4021 | SSL_get0_next_proto_negotiated(conn->xprt_ctx, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4022 | (const unsigned char **)&smp->data.str.str, (unsigned *)&smp->data.str.len); |
| 4023 | |
| 4024 | if (!smp->data.str.str) |
| 4025 | return 0; |
| 4026 | |
| 4027 | return 1; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4028 | } |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4029 | #endif |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4030 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4031 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4032 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4033 | 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] | 4034 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4035 | struct connection *conn; |
| 4036 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4037 | smp->flags = SMP_F_CONST; |
| 4038 | smp->type = SMP_T_STR; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4039 | |
Willy Tarreau | e26bf05 | 2015-05-12 10:30:12 +0200 | [diff] [blame] | 4040 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4041 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4042 | return 0; |
| 4043 | |
| 4044 | smp->data.str.str = NULL; |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4045 | SSL_get0_alpn_selected(conn->xprt_ctx, |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4046 | (const unsigned char **)&smp->data.str.str, (unsigned *)&smp->data.str.len); |
| 4047 | |
| 4048 | if (!smp->data.str.str) |
| 4049 | return 0; |
| 4050 | |
| 4051 | return 1; |
| 4052 | } |
| 4053 | #endif |
| 4054 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4055 | /* string, returns the used protocol if front conn. transport layer is SSL. |
| 4056 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4057 | * char is 'b'. |
| 4058 | */ |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 4059 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4060 | 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] | 4061 | { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4062 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4063 | struct connection *conn; |
| 4064 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4065 | smp->flags = 0; |
| 4066 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4067 | conn = objt_conn(smp->strm->si[back_conn].end); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4068 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4069 | return 0; |
| 4070 | |
| 4071 | smp->data.str.str = (char *)SSL_get_version(conn->xprt_ctx); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4072 | if (!smp->data.str.str) |
| 4073 | return 0; |
| 4074 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4075 | smp->type = SMP_T_STR; |
| 4076 | smp->flags = SMP_F_CONST; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4077 | smp->data.str.len = strlen(smp->data.str.str); |
| 4078 | |
| 4079 | return 1; |
| 4080 | } |
| 4081 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 4082 | /* 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] | 4083 | * This function is also usable on backend conn if the fetch keyword 5th |
| 4084 | * char is 'b'. |
| 4085 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 4086 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4087 | 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] | 4088 | { |
| 4089 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4090 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 4091 | SSL_SESSION *ssl_sess; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4092 | struct connection *conn; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4093 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4094 | smp->flags = SMP_F_CONST; |
| 4095 | smp->type = SMP_T_BIN; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4096 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4097 | conn = objt_conn(smp->strm->si[back_conn].end); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4098 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4099 | return 0; |
| 4100 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 4101 | ssl_sess = SSL_get_session(conn->xprt_ctx); |
| 4102 | if (!ssl_sess) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4103 | return 0; |
| 4104 | |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 4105 | smp->data.str.str = (char *)SSL_SESSION_get_id(ssl_sess, (unsigned int *)&smp->data.str.len); |
Willy Tarreau | 745d412 | 2015-06-17 18:34:14 +0200 | [diff] [blame] | 4106 | if (!smp->data.str.str || !smp->data.str.len) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 4107 | return 0; |
| 4108 | |
| 4109 | return 1; |
| 4110 | #else |
| 4111 | return 0; |
| 4112 | #endif |
| 4113 | } |
| 4114 | |
| 4115 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4116 | 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] | 4117 | { |
| 4118 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4119 | struct connection *conn; |
| 4120 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 4121 | smp->flags = SMP_F_CONST; |
| 4122 | smp->type = SMP_T_STR; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4123 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4124 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4125 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4126 | return 0; |
| 4127 | |
| 4128 | smp->data.str.str = (char *)SSL_get_servername(conn->xprt_ctx, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 3e394c9 | 2012-09-14 23:56:58 +0200 | [diff] [blame] | 4129 | if (!smp->data.str.str) |
| 4130 | return 0; |
| 4131 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 4132 | smp->data.str.len = strlen(smp->data.str.str); |
| 4133 | return 1; |
| 4134 | #else |
| 4135 | return 0; |
| 4136 | #endif |
| 4137 | } |
| 4138 | |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4139 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4140 | 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] | 4141 | { |
| 4142 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 4143 | int back_conn = (kw[4] == 'b') ? 1 : 0; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4144 | struct connection *conn; |
| 4145 | int finished_len; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4146 | struct chunk *finished_trash; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4147 | |
| 4148 | smp->flags = 0; |
| 4149 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4150 | conn = objt_conn(smp->strm->si[back_conn].end); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4151 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 4152 | return 0; |
| 4153 | |
| 4154 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 4155 | smp->flags |= SMP_F_MAY_CHANGE; |
| 4156 | return 0; |
| 4157 | } |
| 4158 | |
| 4159 | finished_trash = get_trash_chunk(); |
| 4160 | if (!SSL_session_reused(conn->xprt_ctx)) |
| 4161 | finished_len = SSL_get_peer_finished(conn->xprt_ctx, finished_trash->str, finished_trash->size); |
| 4162 | else |
| 4163 | finished_len = SSL_get_finished(conn->xprt_ctx, finished_trash->str, finished_trash->size); |
| 4164 | |
| 4165 | if (!finished_len) |
| 4166 | return 0; |
| 4167 | |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 4168 | finished_trash->len = finished_len; |
| 4169 | smp->data.str = *finished_trash; |
| 4170 | smp->type = SMP_T_BIN; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 4171 | |
| 4172 | return 1; |
| 4173 | #else |
| 4174 | return 0; |
| 4175 | #endif |
| 4176 | } |
| 4177 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 4178 | /* 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] | 4179 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4180 | 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] | 4181 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4182 | struct connection *conn; |
| 4183 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4184 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4185 | if (!conn || conn->xprt != &ssl_sock) |
| 4186 | return 0; |
| 4187 | |
| 4188 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4189 | smp->flags = SMP_F_MAY_CHANGE; |
| 4190 | return 0; |
| 4191 | } |
| 4192 | |
| 4193 | smp->type = SMP_T_UINT; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4194 | smp->data.uint = (unsigned int)SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4195 | smp->flags = 0; |
| 4196 | |
| 4197 | return 1; |
| 4198 | } |
| 4199 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 4200 | /* 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] | 4201 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4202 | 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] | 4203 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4204 | struct connection *conn; |
| 4205 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4206 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4207 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4208 | return 0; |
| 4209 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4210 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4211 | smp->flags = SMP_F_MAY_CHANGE; |
| 4212 | return 0; |
| 4213 | } |
| 4214 | |
| 4215 | smp->type = SMP_T_UINT; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4216 | smp->data.uint = (unsigned int)SSL_SOCK_ST_TO_CAEDEPTH(conn->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4217 | smp->flags = 0; |
| 4218 | |
| 4219 | return 1; |
| 4220 | } |
| 4221 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 4222 | /* integer, returns the first verify error on client certificate */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4223 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4224 | 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] | 4225 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4226 | struct connection *conn; |
| 4227 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4228 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4229 | if (!conn || conn->xprt != &ssl_sock) |
| 4230 | return 0; |
| 4231 | |
| 4232 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4233 | smp->flags = SMP_F_MAY_CHANGE; |
| 4234 | return 0; |
| 4235 | } |
| 4236 | |
| 4237 | smp->type = SMP_T_UINT; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4238 | smp->data.uint = (unsigned int)SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 4239 | smp->flags = 0; |
| 4240 | |
| 4241 | return 1; |
| 4242 | } |
| 4243 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 4244 | /* integer, returns the verify result on client cert */ |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 4245 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 4246 | 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] | 4247 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4248 | struct connection *conn; |
| 4249 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 4250 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4251 | if (!conn || conn->xprt != &ssl_sock) |
| 4252 | return 0; |
| 4253 | |
| 4254 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 4255 | smp->flags = SMP_F_MAY_CHANGE; |
| 4256 | return 0; |
| 4257 | } |
| 4258 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4259 | if (!conn->xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 4260 | return 0; |
| 4261 | |
| 4262 | smp->type = SMP_T_UINT; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 4263 | smp->data.uint = (unsigned int)SSL_get_verify_result(conn->xprt_ctx); |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 4264 | smp->flags = 0; |
| 4265 | |
| 4266 | return 1; |
| 4267 | } |
| 4268 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 4269 | /* parse the "ca-file" bind keyword */ |
| 4270 | 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] | 4271 | { |
| 4272 | if (!*args[cur_arg + 1]) { |
| 4273 | if (err) |
| 4274 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 4275 | return ERR_ALERT | ERR_FATAL; |
| 4276 | } |
| 4277 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4278 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 4279 | memprintf(&conf->ca_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 4280 | else |
| 4281 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 4282 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4283 | return 0; |
| 4284 | } |
| 4285 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4286 | /* parse the "ca-sign-file" bind keyword */ |
| 4287 | static int bind_parse_ca_sign_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4288 | { |
| 4289 | if (!*args[cur_arg + 1]) { |
| 4290 | if (err) |
| 4291 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 4292 | return ERR_ALERT | ERR_FATAL; |
| 4293 | } |
| 4294 | |
| 4295 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 4296 | memprintf(&conf->ca_sign_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 4297 | else |
| 4298 | memprintf(&conf->ca_sign_file, "%s", args[cur_arg + 1]); |
| 4299 | |
| 4300 | return 0; |
| 4301 | } |
| 4302 | |
| 4303 | /* parse the ca-sign-pass bind keyword */ |
| 4304 | |
| 4305 | static int bind_parse_ca_sign_pass(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4306 | { |
| 4307 | if (!*args[cur_arg + 1]) { |
| 4308 | if (err) |
| 4309 | memprintf(err, "'%s' : missing CAkey password", args[cur_arg]); |
| 4310 | return ERR_ALERT | ERR_FATAL; |
| 4311 | } |
| 4312 | memprintf(&conf->ca_sign_pass, "%s", args[cur_arg + 1]); |
| 4313 | return 0; |
| 4314 | } |
| 4315 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4316 | /* parse the "ciphers" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4317 | 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] | 4318 | { |
| 4319 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 4320 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4321 | return ERR_ALERT | ERR_FATAL; |
| 4322 | } |
| 4323 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 4324 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4325 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4326 | return 0; |
| 4327 | } |
| 4328 | |
| 4329 | /* parse the "crt" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4330 | 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] | 4331 | { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 4332 | char path[MAXPATHLEN]; |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 4333 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4334 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 4335 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4336 | return ERR_ALERT | ERR_FATAL; |
| 4337 | } |
| 4338 | |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 4339 | if ((*args[cur_arg + 1] != '/' ) && global.crt_base) { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 4340 | 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] | 4341 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 4342 | return ERR_ALERT | ERR_FATAL; |
| 4343 | } |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 4344 | 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] | 4345 | if (ssl_sock_load_cert(path, conf, px, err) > 0) |
| 4346 | return ERR_ALERT | ERR_FATAL; |
| 4347 | |
| 4348 | return 0; |
| 4349 | } |
| 4350 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4351 | 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] | 4352 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4353 | |
| 4354 | return 0; |
| 4355 | } |
| 4356 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 4357 | /* parse the "crt-list" bind keyword */ |
| 4358 | static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4359 | { |
| 4360 | if (!*args[cur_arg + 1]) { |
| 4361 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
| 4362 | return ERR_ALERT | ERR_FATAL; |
| 4363 | } |
| 4364 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 4365 | if (ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err) > 0) { |
| 4366 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 4367 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 4368 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 4369 | |
| 4370 | return 0; |
| 4371 | } |
| 4372 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 4373 | /* parse the "crl-file" bind keyword */ |
| 4374 | 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] | 4375 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4376 | #ifndef X509_V_FLAG_CRL_CHECK |
| 4377 | if (err) |
| 4378 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 4379 | return ERR_ALERT | ERR_FATAL; |
| 4380 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4381 | if (!*args[cur_arg + 1]) { |
| 4382 | if (err) |
| 4383 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 4384 | return ERR_ALERT | ERR_FATAL; |
| 4385 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4386 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4387 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 4388 | memprintf(&conf->crl_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 4389 | else |
| 4390 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 4391 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4392 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4393 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4394 | } |
| 4395 | |
| 4396 | /* parse the "ecdhe" bind keyword keywords */ |
| 4397 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4398 | { |
| 4399 | #if OPENSSL_VERSION_NUMBER < 0x0090800fL |
| 4400 | if (err) |
| 4401 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 4402 | return ERR_ALERT | ERR_FATAL; |
| 4403 | #elif defined(OPENSSL_NO_ECDH) |
| 4404 | if (err) |
| 4405 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 4406 | return ERR_ALERT | ERR_FATAL; |
| 4407 | #else |
| 4408 | if (!*args[cur_arg + 1]) { |
| 4409 | if (err) |
| 4410 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 4411 | return ERR_ALERT | ERR_FATAL; |
| 4412 | } |
| 4413 | |
| 4414 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4415 | |
| 4416 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4417 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4418 | } |
| 4419 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 4420 | /* parse the "crt_ignerr" and "ca_ignerr" bind keywords */ |
| 4421 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4422 | { |
| 4423 | int code; |
| 4424 | char *p = args[cur_arg + 1]; |
| 4425 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 4426 | |
| 4427 | if (!*p) { |
| 4428 | if (err) |
| 4429 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 4430 | return ERR_ALERT | ERR_FATAL; |
| 4431 | } |
| 4432 | |
| 4433 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 4434 | ignerr = &conf->ca_ignerr; |
| 4435 | |
| 4436 | if (strcmp(p, "all") == 0) { |
| 4437 | *ignerr = ~0ULL; |
| 4438 | return 0; |
| 4439 | } |
| 4440 | |
| 4441 | while (p) { |
| 4442 | code = atoi(p); |
| 4443 | if ((code <= 0) || (code > 63)) { |
| 4444 | if (err) |
| 4445 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 4446 | args[cur_arg], code, args[cur_arg + 1]); |
| 4447 | return ERR_ALERT | ERR_FATAL; |
| 4448 | } |
| 4449 | *ignerr |= 1ULL << code; |
| 4450 | p = strchr(p, ','); |
| 4451 | if (p) |
| 4452 | p++; |
| 4453 | } |
| 4454 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 4455 | return 0; |
| 4456 | } |
| 4457 | |
| 4458 | /* parse the "force-sslv3" bind keyword */ |
| 4459 | static int bind_parse_force_sslv3(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4460 | { |
| 4461 | conf->ssl_options |= BC_SSL_O_USE_SSLV3; |
| 4462 | return 0; |
| 4463 | } |
| 4464 | |
| 4465 | /* parse the "force-tlsv10" bind keyword */ |
| 4466 | static int bind_parse_force_tlsv10(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4467 | { |
| 4468 | conf->ssl_options |= BC_SSL_O_USE_TLSV10; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 4469 | return 0; |
| 4470 | } |
| 4471 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 4472 | /* parse the "force-tlsv11" bind keyword */ |
| 4473 | static int bind_parse_force_tlsv11(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4474 | { |
| 4475 | #if SSL_OP_NO_TLSv1_1 |
| 4476 | conf->ssl_options |= BC_SSL_O_USE_TLSV11; |
| 4477 | return 0; |
| 4478 | #else |
| 4479 | if (err) |
| 4480 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[cur_arg]); |
| 4481 | return ERR_ALERT | ERR_FATAL; |
| 4482 | #endif |
| 4483 | } |
| 4484 | |
| 4485 | /* parse the "force-tlsv12" bind keyword */ |
| 4486 | static int bind_parse_force_tlsv12(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4487 | { |
| 4488 | #if SSL_OP_NO_TLSv1_2 |
| 4489 | conf->ssl_options |= BC_SSL_O_USE_TLSV12; |
| 4490 | return 0; |
| 4491 | #else |
| 4492 | if (err) |
| 4493 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[cur_arg]); |
| 4494 | return ERR_ALERT | ERR_FATAL; |
| 4495 | #endif |
| 4496 | } |
| 4497 | |
| 4498 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 4499 | /* parse the "no-tls-tickets" bind keyword */ |
| 4500 | static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4501 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 4502 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 4503 | return 0; |
| 4504 | } |
| 4505 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 4506 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 4507 | /* parse the "no-sslv3" bind keyword */ |
| 4508 | 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] | 4509 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 4510 | conf->ssl_options |= BC_SSL_O_NO_SSLV3; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4511 | return 0; |
| 4512 | } |
| 4513 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 4514 | /* parse the "no-tlsv10" bind keyword */ |
| 4515 | 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] | 4516 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 4517 | conf->ssl_options |= BC_SSL_O_NO_TLSV10; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 4518 | return 0; |
| 4519 | } |
| 4520 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 4521 | /* parse the "no-tlsv11" bind keyword */ |
| 4522 | 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] | 4523 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 4524 | conf->ssl_options |= BC_SSL_O_NO_TLSV11; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 4525 | return 0; |
| 4526 | } |
| 4527 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 4528 | /* parse the "no-tlsv12" bind keyword */ |
| 4529 | 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] | 4530 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 4531 | conf->ssl_options |= BC_SSL_O_NO_TLSV12; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4532 | return 0; |
| 4533 | } |
| 4534 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4535 | /* parse the "npn" bind keyword */ |
| 4536 | static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4537 | { |
| 4538 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 4539 | char *p1, *p2; |
| 4540 | |
| 4541 | if (!*args[cur_arg + 1]) { |
| 4542 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]); |
| 4543 | return ERR_ALERT | ERR_FATAL; |
| 4544 | } |
| 4545 | |
| 4546 | free(conf->npn_str); |
| 4547 | |
| 4548 | /* the NPN string is built as a suite of (<len> <name>)* */ |
| 4549 | conf->npn_len = strlen(args[cur_arg + 1]) + 1; |
| 4550 | conf->npn_str = calloc(1, conf->npn_len); |
| 4551 | memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len); |
| 4552 | |
| 4553 | /* replace commas with the name length */ |
| 4554 | p1 = conf->npn_str; |
| 4555 | p2 = p1 + 1; |
| 4556 | while (1) { |
| 4557 | p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1)); |
| 4558 | if (!p2) |
| 4559 | p2 = p1 + 1 + strlen(p1 + 1); |
| 4560 | |
| 4561 | if (p2 - (p1 + 1) > 255) { |
| 4562 | *p2 = '\0'; |
| 4563 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 4564 | return ERR_ALERT | ERR_FATAL; |
| 4565 | } |
| 4566 | |
| 4567 | *p1 = p2 - (p1 + 1); |
| 4568 | p1 = p2; |
| 4569 | |
| 4570 | if (!*p2) |
| 4571 | break; |
| 4572 | |
| 4573 | *(p2++) = '\0'; |
| 4574 | } |
| 4575 | return 0; |
| 4576 | #else |
| 4577 | if (err) |
| 4578 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]); |
| 4579 | return ERR_ALERT | ERR_FATAL; |
| 4580 | #endif |
| 4581 | } |
| 4582 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4583 | /* parse the "alpn" bind keyword */ |
| 4584 | static int bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4585 | { |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4586 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4587 | char *p1, *p2; |
| 4588 | |
| 4589 | if (!*args[cur_arg + 1]) { |
| 4590 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[cur_arg]); |
| 4591 | return ERR_ALERT | ERR_FATAL; |
| 4592 | } |
| 4593 | |
| 4594 | free(conf->alpn_str); |
| 4595 | |
| 4596 | /* the ALPN string is built as a suite of (<len> <name>)* */ |
| 4597 | conf->alpn_len = strlen(args[cur_arg + 1]) + 1; |
| 4598 | conf->alpn_str = calloc(1, conf->alpn_len); |
| 4599 | memcpy(conf->alpn_str + 1, args[cur_arg + 1], conf->alpn_len); |
| 4600 | |
| 4601 | /* replace commas with the name length */ |
| 4602 | p1 = conf->alpn_str; |
| 4603 | p2 = p1 + 1; |
| 4604 | while (1) { |
| 4605 | p2 = memchr(p1 + 1, ',', conf->alpn_str + conf->alpn_len - (p1 + 1)); |
| 4606 | if (!p2) |
| 4607 | p2 = p1 + 1 + strlen(p1 + 1); |
| 4608 | |
| 4609 | if (p2 - (p1 + 1) > 255) { |
| 4610 | *p2 = '\0'; |
| 4611 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 4612 | return ERR_ALERT | ERR_FATAL; |
| 4613 | } |
| 4614 | |
| 4615 | *p1 = p2 - (p1 + 1); |
| 4616 | p1 = p2; |
| 4617 | |
| 4618 | if (!*p2) |
| 4619 | break; |
| 4620 | |
| 4621 | *(p2++) = '\0'; |
| 4622 | } |
| 4623 | return 0; |
| 4624 | #else |
| 4625 | if (err) |
| 4626 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[cur_arg]); |
| 4627 | return ERR_ALERT | ERR_FATAL; |
| 4628 | #endif |
| 4629 | } |
| 4630 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4631 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4632 | 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] | 4633 | { |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 4634 | struct listener *l; |
| 4635 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4636 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 4637 | |
| 4638 | if (global.listen_default_ciphers && !conf->ciphers) |
| 4639 | conf->ciphers = strdup(global.listen_default_ciphers); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 4640 | conf->ssl_options |= global.listen_default_ssloptions; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 4641 | |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 4642 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 4643 | l->xprt = &ssl_sock; |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 4644 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 4645 | return 0; |
| 4646 | } |
| 4647 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 4648 | /* parse the "generate-certificates" bind keyword */ |
| 4649 | static int bind_parse_generate_certs(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4650 | { |
| 4651 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 4652 | conf->generate_certs = 1; |
| 4653 | #else |
| 4654 | memprintf(err, "%sthis version of openssl cannot generate SSL certificates.\n", |
| 4655 | err && *err ? *err : ""); |
| 4656 | #endif |
| 4657 | return 0; |
| 4658 | } |
| 4659 | |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 4660 | /* parse the "strict-sni" bind keyword */ |
| 4661 | static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4662 | { |
| 4663 | conf->strict_sni = 1; |
| 4664 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4665 | } |
| 4666 | |
| 4667 | /* parse the "tls-ticket-keys" bind keyword */ |
| 4668 | static int bind_parse_tls_ticket_keys(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4669 | { |
| 4670 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 4671 | FILE *f; |
| 4672 | int i = 0; |
| 4673 | char thisline[LINESIZE]; |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4674 | struct tls_keys_ref *keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4675 | |
| 4676 | if (!*args[cur_arg + 1]) { |
| 4677 | if (err) |
| 4678 | memprintf(err, "'%s' : missing TLS ticket keys file path", args[cur_arg]); |
| 4679 | return ERR_ALERT | ERR_FATAL; |
| 4680 | } |
| 4681 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 4682 | keys_ref = tlskeys_ref_lookup(args[cur_arg + 1]); |
| 4683 | if(keys_ref) { |
| 4684 | conf->keys_ref = keys_ref; |
| 4685 | return 0; |
| 4686 | } |
| 4687 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4688 | keys_ref = malloc(sizeof(struct tls_keys_ref)); |
| 4689 | keys_ref->tlskeys = malloc(TLS_TICKETS_NO * sizeof(struct tls_sess_key)); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4690 | |
| 4691 | if ((f = fopen(args[cur_arg + 1], "r")) == NULL) { |
| 4692 | if (err) |
| 4693 | memprintf(err, "'%s' : unable to load ssl tickets keys file", args[cur_arg+1]); |
| 4694 | return ERR_ALERT | ERR_FATAL; |
| 4695 | } |
| 4696 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4697 | keys_ref->filename = strdup(args[cur_arg + 1]); |
| 4698 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4699 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 4700 | int len = strlen(thisline); |
| 4701 | /* Strip newline characters from the end */ |
| 4702 | if(thisline[len - 1] == '\n') |
| 4703 | thisline[--len] = 0; |
| 4704 | |
| 4705 | if(thisline[len - 1] == '\r') |
| 4706 | thisline[--len] = 0; |
| 4707 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4708 | 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] | 4709 | if (err) |
| 4710 | memprintf(err, "'%s' : unable to decode base64 key on line %d", args[cur_arg+1], i + 1); |
| 4711 | return ERR_ALERT | ERR_FATAL; |
| 4712 | } |
| 4713 | i++; |
| 4714 | } |
| 4715 | |
| 4716 | if (i < TLS_TICKETS_NO) { |
| 4717 | if (err) |
| 4718 | memprintf(err, "'%s' : please supply at least %d keys in the tls-tickets-file", args[cur_arg+1], TLS_TICKETS_NO); |
| 4719 | return ERR_ALERT | ERR_FATAL; |
| 4720 | } |
| 4721 | |
| 4722 | fclose(f); |
| 4723 | |
| 4724 | /* Use penultimate key for encryption, handle when TLS_TICKETS_NO = 1 */ |
| 4725 | i-=2; |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4726 | keys_ref->tls_ticket_enc_index = i < 0 ? 0 : i; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 4727 | keys_ref->unique_id = -1; |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4728 | conf->keys_ref = keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4729 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 4730 | LIST_ADD(&tlskeys_reference, &keys_ref->list); |
| 4731 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4732 | return 0; |
| 4733 | #else |
| 4734 | if (err) |
| 4735 | memprintf(err, "'%s' : TLS ticket callback extension not supported", args[cur_arg]); |
| 4736 | return ERR_ALERT | ERR_FATAL; |
| 4737 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 4738 | } |
| 4739 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4740 | /* parse the "verify" bind keyword */ |
| 4741 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 4742 | { |
| 4743 | if (!*args[cur_arg + 1]) { |
| 4744 | if (err) |
| 4745 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 4746 | return ERR_ALERT | ERR_FATAL; |
| 4747 | } |
| 4748 | |
| 4749 | if (strcmp(args[cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4750 | conf->verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4751 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4752 | conf->verify = SSL_SOCK_VERIFY_OPTIONAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4753 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4754 | conf->verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4755 | else { |
| 4756 | if (err) |
| 4757 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 4758 | args[cur_arg], args[cur_arg + 1]); |
| 4759 | return ERR_ALERT | ERR_FATAL; |
| 4760 | } |
| 4761 | |
| 4762 | return 0; |
| 4763 | } |
| 4764 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 4765 | /************** "server" keywords ****************/ |
| 4766 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4767 | /* parse the "ca-file" server keyword */ |
| 4768 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4769 | { |
| 4770 | if (!*args[*cur_arg + 1]) { |
| 4771 | if (err) |
| 4772 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 4773 | return ERR_ALERT | ERR_FATAL; |
| 4774 | } |
| 4775 | |
| 4776 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 4777 | memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 4778 | else |
| 4779 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 4780 | |
| 4781 | return 0; |
| 4782 | } |
| 4783 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 4784 | /* parse the "check-ssl" server keyword */ |
| 4785 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4786 | { |
| 4787 | newsrv->check.use_ssl = 1; |
| 4788 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 4789 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 4790 | newsrv->ssl_ctx.options |= global.connect_default_ssloptions; |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 4791 | return 0; |
| 4792 | } |
| 4793 | |
| 4794 | /* parse the "ciphers" server keyword */ |
| 4795 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4796 | { |
| 4797 | if (!*args[*cur_arg + 1]) { |
| 4798 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 4799 | return ERR_ALERT | ERR_FATAL; |
| 4800 | } |
| 4801 | |
| 4802 | free(newsrv->ssl_ctx.ciphers); |
| 4803 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 4804 | return 0; |
| 4805 | } |
| 4806 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4807 | /* parse the "crl-file" server keyword */ |
| 4808 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4809 | { |
| 4810 | #ifndef X509_V_FLAG_CRL_CHECK |
| 4811 | if (err) |
| 4812 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 4813 | return ERR_ALERT | ERR_FATAL; |
| 4814 | #else |
| 4815 | if (!*args[*cur_arg + 1]) { |
| 4816 | if (err) |
| 4817 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 4818 | return ERR_ALERT | ERR_FATAL; |
| 4819 | } |
| 4820 | |
| 4821 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 4822 | memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 4823 | else |
| 4824 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 4825 | |
| 4826 | return 0; |
| 4827 | #endif |
| 4828 | } |
| 4829 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4830 | /* parse the "crt" server keyword */ |
| 4831 | static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4832 | { |
| 4833 | if (!*args[*cur_arg + 1]) { |
| 4834 | if (err) |
| 4835 | memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]); |
| 4836 | return ERR_ALERT | ERR_FATAL; |
| 4837 | } |
| 4838 | |
| 4839 | if ((*args[*cur_arg + 1] != '/') && global.crt_base) |
| 4840 | memprintf(&newsrv->ssl_ctx.client_crt, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 4841 | else |
| 4842 | memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]); |
| 4843 | |
| 4844 | return 0; |
| 4845 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4846 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 4847 | /* parse the "force-sslv3" server keyword */ |
| 4848 | static int srv_parse_force_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4849 | { |
| 4850 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_SSLV3; |
| 4851 | return 0; |
| 4852 | } |
| 4853 | |
| 4854 | /* parse the "force-tlsv10" server keyword */ |
| 4855 | static int srv_parse_force_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4856 | { |
| 4857 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV10; |
| 4858 | return 0; |
| 4859 | } |
| 4860 | |
| 4861 | /* parse the "force-tlsv11" server keyword */ |
| 4862 | static int srv_parse_force_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4863 | { |
| 4864 | #if SSL_OP_NO_TLSv1_1 |
| 4865 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV11; |
| 4866 | return 0; |
| 4867 | #else |
| 4868 | if (err) |
| 4869 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[*cur_arg]); |
| 4870 | return ERR_ALERT | ERR_FATAL; |
| 4871 | #endif |
| 4872 | } |
| 4873 | |
| 4874 | /* parse the "force-tlsv12" server keyword */ |
| 4875 | static int srv_parse_force_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4876 | { |
| 4877 | #if SSL_OP_NO_TLSv1_2 |
| 4878 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV12; |
| 4879 | return 0; |
| 4880 | #else |
| 4881 | if (err) |
| 4882 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[*cur_arg]); |
| 4883 | return ERR_ALERT | ERR_FATAL; |
| 4884 | #endif |
| 4885 | } |
| 4886 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 4887 | /* parse the "no-ssl-reuse" server keyword */ |
| 4888 | static int srv_parse_no_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4889 | { |
| 4890 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_REUSE; |
| 4891 | return 0; |
| 4892 | } |
| 4893 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 4894 | /* parse the "no-sslv3" server keyword */ |
| 4895 | static int srv_parse_no_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4896 | { |
| 4897 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_SSLV3; |
| 4898 | return 0; |
| 4899 | } |
| 4900 | |
| 4901 | /* parse the "no-tlsv10" server keyword */ |
| 4902 | static int srv_parse_no_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4903 | { |
| 4904 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV10; |
| 4905 | return 0; |
| 4906 | } |
| 4907 | |
| 4908 | /* parse the "no-tlsv11" server keyword */ |
| 4909 | static int srv_parse_no_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4910 | { |
| 4911 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV11; |
| 4912 | return 0; |
| 4913 | } |
| 4914 | |
| 4915 | /* parse the "no-tlsv12" server keyword */ |
| 4916 | static int srv_parse_no_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4917 | { |
| 4918 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV12; |
| 4919 | return 0; |
| 4920 | } |
| 4921 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 4922 | /* parse the "no-tls-tickets" server keyword */ |
| 4923 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4924 | { |
| 4925 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 4926 | return 0; |
| 4927 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 4928 | /* parse the "send-proxy-v2-ssl" server keyword */ |
| 4929 | static int srv_parse_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4930 | { |
| 4931 | newsrv->pp_opts |= SRV_PP_V2; |
| 4932 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 4933 | return 0; |
| 4934 | } |
| 4935 | |
| 4936 | /* parse the "send-proxy-v2-ssl-cn" server keyword */ |
| 4937 | static int srv_parse_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4938 | { |
| 4939 | newsrv->pp_opts |= SRV_PP_V2; |
| 4940 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 4941 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
| 4942 | return 0; |
| 4943 | } |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 4944 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 4945 | /* parse the "ssl" server keyword */ |
| 4946 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4947 | { |
| 4948 | newsrv->use_ssl = 1; |
| 4949 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 4950 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
| 4951 | return 0; |
| 4952 | } |
| 4953 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4954 | /* parse the "verify" server keyword */ |
| 4955 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4956 | { |
| 4957 | if (!*args[*cur_arg + 1]) { |
| 4958 | if (err) |
| 4959 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 4960 | return ERR_ALERT | ERR_FATAL; |
| 4961 | } |
| 4962 | |
| 4963 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4964 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4965 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4966 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4967 | else { |
| 4968 | if (err) |
| 4969 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 4970 | args[*cur_arg], args[*cur_arg + 1]); |
| 4971 | return ERR_ALERT | ERR_FATAL; |
| 4972 | } |
| 4973 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4974 | return 0; |
| 4975 | } |
| 4976 | |
| 4977 | /* parse the "verifyhost" server keyword */ |
| 4978 | static int srv_parse_verifyhost(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 4979 | { |
| 4980 | if (!*args[*cur_arg + 1]) { |
| 4981 | if (err) |
| 4982 | memprintf(err, "'%s' : missing hostname to verify against", args[*cur_arg]); |
| 4983 | return ERR_ALERT | ERR_FATAL; |
| 4984 | } |
| 4985 | |
| 4986 | newsrv->ssl_ctx.verify_host = strdup(args[*cur_arg + 1]); |
| 4987 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4988 | return 0; |
| 4989 | } |
| 4990 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 4991 | /* parse the "ssl-default-bind-options" keyword in global section */ |
| 4992 | static int ssl_parse_default_bind_options(char **args, int section_type, struct proxy *curpx, |
| 4993 | struct proxy *defpx, const char *file, int line, |
| 4994 | char **err) { |
| 4995 | int i = 1; |
| 4996 | |
| 4997 | if (*(args[i]) == 0) { |
| 4998 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 4999 | return -1; |
| 5000 | } |
| 5001 | while (*(args[i])) { |
| 5002 | if (!strcmp(args[i], "no-sslv3")) |
| 5003 | global.listen_default_ssloptions |= BC_SSL_O_NO_SSLV3; |
| 5004 | else if (!strcmp(args[i], "no-tlsv10")) |
| 5005 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLSV10; |
| 5006 | else if (!strcmp(args[i], "no-tlsv11")) |
| 5007 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLSV11; |
| 5008 | else if (!strcmp(args[i], "no-tlsv12")) |
| 5009 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLSV12; |
| 5010 | else if (!strcmp(args[i], "force-sslv3")) |
| 5011 | global.listen_default_ssloptions |= BC_SSL_O_USE_SSLV3; |
| 5012 | else if (!strcmp(args[i], "force-tlsv10")) |
| 5013 | global.listen_default_ssloptions |= BC_SSL_O_USE_TLSV10; |
| 5014 | else if (!strcmp(args[i], "force-tlsv11")) { |
| 5015 | #if SSL_OP_NO_TLSv1_1 |
| 5016 | global.listen_default_ssloptions |= BC_SSL_O_USE_TLSV11; |
| 5017 | #else |
| 5018 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.1", args[0], args[i]); |
| 5019 | return -1; |
| 5020 | #endif |
| 5021 | } |
| 5022 | else if (!strcmp(args[i], "force-tlsv12")) { |
| 5023 | #if SSL_OP_NO_TLSv1_2 |
| 5024 | global.listen_default_ssloptions |= BC_SSL_O_USE_TLSV12; |
| 5025 | #else |
| 5026 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.2", args[0], args[i]); |
| 5027 | return -1; |
| 5028 | #endif |
| 5029 | } |
| 5030 | else if (!strcmp(args[i], "no-tls-tickets")) |
| 5031 | global.listen_default_ssloptions |= BC_SSL_O_NO_TLS_TICKETS; |
| 5032 | else { |
| 5033 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 5034 | return -1; |
| 5035 | } |
| 5036 | i++; |
| 5037 | } |
| 5038 | return 0; |
| 5039 | } |
| 5040 | |
| 5041 | /* parse the "ssl-default-server-options" keyword in global section */ |
| 5042 | static int ssl_parse_default_server_options(char **args, int section_type, struct proxy *curpx, |
| 5043 | struct proxy *defpx, const char *file, int line, |
| 5044 | char **err) { |
| 5045 | int i = 1; |
| 5046 | |
| 5047 | if (*(args[i]) == 0) { |
| 5048 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 5049 | return -1; |
| 5050 | } |
| 5051 | while (*(args[i])) { |
| 5052 | if (!strcmp(args[i], "no-sslv3")) |
| 5053 | global.connect_default_ssloptions |= SRV_SSL_O_NO_SSLV3; |
| 5054 | else if (!strcmp(args[i], "no-tlsv10")) |
| 5055 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLSV10; |
| 5056 | else if (!strcmp(args[i], "no-tlsv11")) |
| 5057 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLSV11; |
| 5058 | else if (!strcmp(args[i], "no-tlsv12")) |
| 5059 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLSV12; |
| 5060 | else if (!strcmp(args[i], "force-sslv3")) |
| 5061 | global.connect_default_ssloptions |= SRV_SSL_O_USE_SSLV3; |
| 5062 | else if (!strcmp(args[i], "force-tlsv10")) |
| 5063 | global.connect_default_ssloptions |= SRV_SSL_O_USE_TLSV10; |
| 5064 | else if (!strcmp(args[i], "force-tlsv11")) { |
| 5065 | #if SSL_OP_NO_TLSv1_1 |
| 5066 | global.connect_default_ssloptions |= SRV_SSL_O_USE_TLSV11; |
| 5067 | #else |
| 5068 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.1", args[0], args[i]); |
| 5069 | return -1; |
| 5070 | #endif |
| 5071 | } |
| 5072 | else if (!strcmp(args[i], "force-tlsv12")) { |
| 5073 | #if SSL_OP_NO_TLSv1_2 |
| 5074 | global.connect_default_ssloptions |= SRV_SSL_O_USE_TLSV12; |
| 5075 | #else |
| 5076 | memprintf(err, "'%s' '%s': library does not support protocol TLSv1.2", args[0], args[i]); |
| 5077 | return -1; |
| 5078 | #endif |
| 5079 | } |
| 5080 | else if (!strcmp(args[i], "no-tls-tickets")) |
| 5081 | global.connect_default_ssloptions |= SRV_SSL_O_NO_TLS_TICKETS; |
| 5082 | else { |
| 5083 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 5084 | return -1; |
| 5085 | } |
| 5086 | i++; |
| 5087 | } |
| 5088 | return 0; |
| 5089 | } |
| 5090 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 5091 | /* Note: must not be declared <const> as its list will be overwritten. |
| 5092 | * Please take care of keeping this list alphabetically sorted. |
| 5093 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 5094 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 5095 | { "ssl_bc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV }, |
| 5096 | { "ssl_bc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_UINT, SMP_USE_L5SRV }, |
| 5097 | { "ssl_bc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
| 5098 | { "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] | 5099 | { "ssl_bc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 5100 | { "ssl_bc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_UINT, SMP_USE_L5SRV }, |
| 5101 | { "ssl_bc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 5102 | { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 5103 | { "ssl_c_ca_err_depth", smp_fetch_ssl_c_ca_err_depth, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 5104 | { "ssl_c_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 5105 | { "ssl_c_err", smp_fetch_ssl_c_err, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 5106 | { "ssl_c_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5107 | { "ssl_c_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5108 | { "ssl_c_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5109 | { "ssl_c_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5110 | { "ssl_c_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5111 | { "ssl_c_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5112 | { "ssl_c_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 5113 | { "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] | 5114 | { "ssl_c_used", smp_fetch_ssl_c_used, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 5115 | { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 5116 | { "ssl_c_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 5117 | { "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] | 5118 | { "ssl_f_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5119 | { "ssl_f_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5120 | { "ssl_f_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5121 | { "ssl_f_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5122 | { "ssl_f_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5123 | { "ssl_f_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 5124 | { "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] | 5125 | { "ssl_f_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 5126 | { "ssl_f_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 5127 | { "ssl_fc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 5128 | { "ssl_fc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 5129 | { "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] | 5130 | { "ssl_fc_has_crt", smp_fetch_ssl_fc_has_crt, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 5131 | { "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] | 5132 | { "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] | 5133 | #ifdef OPENSSL_NPN_NEGOTIATED |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 5134 | { "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] | 5135 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 5136 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 5137 | { "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] | 5138 | #endif |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 5139 | { "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] | 5140 | { "ssl_fc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 5141 | { "ssl_fc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 5142 | { "ssl_fc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 5143 | { "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] | 5144 | { NULL, NULL, 0, 0, 0 }, |
| 5145 | }}; |
| 5146 | |
| 5147 | /* Note: must not be declared <const> as its list will be overwritten. |
| 5148 | * Please take care of keeping this list alphabetically sorted. |
| 5149 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 5150 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 5151 | { "ssl_fc_sni_end", "ssl_fc_sni", PAT_MATCH_END }, |
| 5152 | { "ssl_fc_sni_reg", "ssl_fc_sni", PAT_MATCH_REG }, |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 5153 | { /* END */ }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 5154 | }}; |
| 5155 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5156 | /* Note: must not be declared <const> as its list will be overwritten. |
| 5157 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 5158 | * all code contributors. |
| 5159 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 5160 | * the config parser can report an appropriate error when a known keyword was |
| 5161 | * not enabled. |
| 5162 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 5163 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5164 | { "alpn", bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 5165 | { "ca-file", bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 5166 | { "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] | 5167 | { "ca-sign-file", bind_parse_ca_sign_file, 1 }, /* set CAFile used to generate and sign server certs */ |
| 5168 | { "ca-sign-pass", bind_parse_ca_sign_pass, 1 }, /* set CAKey passphrase */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5169 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
| 5170 | { "crl-file", bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
| 5171 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 5172 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
| 5173 | { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */ |
| 5174 | { "ecdhe", bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
| 5175 | { "force-sslv3", bind_parse_force_sslv3, 0 }, /* force SSLv3 */ |
| 5176 | { "force-tlsv10", bind_parse_force_tlsv10, 0 }, /* force TLSv10 */ |
| 5177 | { "force-tlsv11", bind_parse_force_tlsv11, 0 }, /* force TLSv11 */ |
| 5178 | { "force-tlsv12", bind_parse_force_tlsv12, 0 }, /* force TLSv12 */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5179 | { "generate-certificates", bind_parse_generate_certs, 0 }, /* enable the server certificates generation */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 5180 | { "no-sslv3", bind_parse_no_sslv3, 0 }, /* disable SSLv3 */ |
| 5181 | { "no-tlsv10", bind_parse_no_tlsv10, 0 }, /* disable TLSv10 */ |
| 5182 | { "no-tlsv11", bind_parse_no_tlsv11, 0 }, /* disable TLSv11 */ |
| 5183 | { "no-tlsv12", bind_parse_no_tlsv12, 0 }, /* disable TLSv12 */ |
| 5184 | { "no-tls-tickets", bind_parse_no_tls_tickets, 0 }, /* disable session resumption tickets */ |
| 5185 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
| 5186 | { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */ |
| 5187 | { "tls-ticket-keys", bind_parse_tls_ticket_keys, 1 }, /* set file to load TLS ticket keys from */ |
| 5188 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
| 5189 | { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5190 | { NULL, NULL, 0 }, |
| 5191 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5192 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5193 | /* Note: must not be declared <const> as its list will be overwritten. |
| 5194 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 5195 | * all code contributors. |
| 5196 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 5197 | * the config parser can report an appropriate error when a known keyword was |
| 5198 | * not enabled. |
| 5199 | */ |
| 5200 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5201 | { "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] | 5202 | { "check-ssl", srv_parse_check_ssl, 0, 0 }, /* enable SSL for health checks */ |
| 5203 | { "ciphers", srv_parse_ciphers, 1, 0 }, /* select the cipher suite */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5204 | { "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] | 5205 | { "crt", srv_parse_crt, 1, 0 }, /* set client certificate */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 5206 | { "force-sslv3", srv_parse_force_sslv3, 0, 0 }, /* force SSLv3 */ |
| 5207 | { "force-tlsv10", srv_parse_force_tlsv10, 0, 0 }, /* force TLSv10 */ |
| 5208 | { "force-tlsv11", srv_parse_force_tlsv11, 0, 0 }, /* force TLSv11 */ |
| 5209 | { "force-tlsv12", srv_parse_force_tlsv12, 0, 0 }, /* force TLSv12 */ |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 5210 | { "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] | 5211 | { "no-sslv3", srv_parse_no_sslv3, 0, 0 }, /* disable SSLv3 */ |
| 5212 | { "no-tlsv10", srv_parse_no_tlsv10, 0, 0 }, /* disable TLSv10 */ |
| 5213 | { "no-tlsv11", srv_parse_no_tlsv11, 0, 0 }, /* disable TLSv11 */ |
| 5214 | { "no-tlsv12", srv_parse_no_tlsv12, 0, 0 }, /* disable TLSv12 */ |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 5215 | { "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] | 5216 | { "send-proxy-v2-ssl", srv_parse_send_proxy_ssl, 0, 0 }, /* send PROXY protocol header v2 with SSL info */ |
| 5217 | { "send-proxy-v2-ssl-cn", srv_parse_send_proxy_cn, 0, 0 }, /* send PROXY protocol header v2 with CN */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 5218 | { "ssl", srv_parse_ssl, 0, 0 }, /* enable SSL processing */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5219 | { "verify", srv_parse_verify, 1, 0 }, /* set SSL verify method */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5220 | { "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] | 5221 | { NULL, NULL, 0, 0 }, |
| 5222 | }}; |
| 5223 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 5224 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 5225 | { CFG_GLOBAL, "ssl-default-bind-options", ssl_parse_default_bind_options }, |
| 5226 | { CFG_GLOBAL, "ssl-default-server-options", ssl_parse_default_server_options }, |
| 5227 | { 0, NULL, NULL }, |
| 5228 | }}; |
| 5229 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5230 | /* transport-layer operations for SSL sockets */ |
| 5231 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5232 | .snd_buf = ssl_sock_from_buf, |
| 5233 | .rcv_buf = ssl_sock_to_buf, |
| 5234 | .rcv_pipe = NULL, |
| 5235 | .snd_pipe = NULL, |
| 5236 | .shutr = NULL, |
| 5237 | .shutw = ssl_sock_shutw, |
| 5238 | .close = ssl_sock_close, |
| 5239 | .init = ssl_sock_init, |
| 5240 | }; |
| 5241 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 5242 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
| 5243 | |
| 5244 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 5245 | { |
| 5246 | if (ptr) { |
| 5247 | chunk_destroy(ptr); |
| 5248 | free(ptr); |
| 5249 | } |
| 5250 | } |
| 5251 | |
| 5252 | #endif |
| 5253 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5254 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5255 | static void __ssl_sock_init(void) |
| 5256 | { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5257 | STACK_OF(SSL_COMP)* cm; |
| 5258 | |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 5259 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 5260 | global.listen_default_ciphers = LISTEN_DEFAULT_CIPHERS; |
| 5261 | #endif |
| 5262 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 5263 | global.connect_default_ciphers = CONNECT_DEFAULT_CIPHERS; |
| 5264 | #endif |
| 5265 | if (global.listen_default_ciphers) |
| 5266 | global.listen_default_ciphers = strdup(global.listen_default_ciphers); |
| 5267 | if (global.connect_default_ciphers) |
| 5268 | global.connect_default_ciphers = strdup(global.connect_default_ciphers); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 5269 | global.listen_default_ssloptions = BC_SSL_O_NONE; |
| 5270 | global.connect_default_ssloptions = SRV_SSL_O_NONE; |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 5271 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5272 | SSL_library_init(); |
| 5273 | cm = SSL_COMP_get_compression_methods(); |
| 5274 | sk_SSL_COMP_zero(cm); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 5275 | #if (OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
| 5276 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 5277 | #endif |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 5278 | sample_register_fetches(&sample_fetch_keywords); |
| 5279 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 5280 | bind_register_keywords(&bind_kws); |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 5281 | srv_register_keywords(&srv_kws); |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 5282 | cfg_register_keywords(&cfg_kws); |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 5283 | |
| 5284 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 5285 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 5286 | |
| 5287 | #ifndef OPENSSL_NO_DH |
| 5288 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 5289 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5290 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 5291 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5292 | /* Add a global parameter for the LRU cache size */ |
| 5293 | if (global.tune.ssl_ctx_cache) |
| 5294 | ssl_ctx_lru_tree = lru64_new(global.tune.ssl_ctx_cache); |
| 5295 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 5296 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5297 | } |
| 5298 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 5299 | __attribute__((destructor)) |
| 5300 | static void __ssl_sock_deinit(void) |
| 5301 | { |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 5302 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5303 | lru64_destroy(ssl_ctx_lru_tree); |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 5304 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5305 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 5306 | #ifndef OPENSSL_NO_DH |
| 5307 | if (local_dh_1024) { |
| 5308 | DH_free(local_dh_1024); |
| 5309 | local_dh_1024 = NULL; |
| 5310 | } |
| 5311 | |
| 5312 | if (local_dh_2048) { |
| 5313 | DH_free(local_dh_2048); |
| 5314 | local_dh_2048 = NULL; |
| 5315 | } |
| 5316 | |
| 5317 | if (local_dh_4096) { |
| 5318 | DH_free(local_dh_4096); |
| 5319 | local_dh_4096 = NULL; |
| 5320 | } |
| 5321 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 5322 | if (global_dh) { |
| 5323 | DH_free(global_dh); |
| 5324 | global_dh = NULL; |
| 5325 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 5326 | #endif |
| 5327 | |
| 5328 | ERR_remove_state(0); |
| 5329 | ERR_free_strings(); |
| 5330 | |
| 5331 | EVP_cleanup(); |
| 5332 | |
| 5333 | #if OPENSSL_VERSION_NUMBER >= 0x00907000L |
| 5334 | CRYPTO_cleanup_all_ex_data(); |
| 5335 | #endif |
| 5336 | } |
| 5337 | |
| 5338 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5339 | /* |
| 5340 | * Local variables: |
| 5341 | * c-indent-level: 8 |
| 5342 | * c-basic-offset: 8 |
| 5343 | * End: |
| 5344 | */ |