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