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> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 46 | |
| 47 | #include <common/buffer.h> |
| 48 | #include <common/compat.h> |
| 49 | #include <common/config.h> |
| 50 | #include <common/debug.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 51 | #include <common/errors.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 52 | #include <common/standard.h> |
| 53 | #include <common/ticks.h> |
| 54 | #include <common/time.h> |
| 55 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 56 | #include <ebsttree.h> |
| 57 | |
| 58 | #include <types/global.h> |
| 59 | #include <types/ssl_sock.h> |
| 60 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 61 | #include <proto/acl.h> |
| 62 | #include <proto/arg.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 63 | #include <proto/connection.h> |
| 64 | #include <proto/fd.h> |
| 65 | #include <proto/freq_ctr.h> |
| 66 | #include <proto/frontend.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 67 | #include <proto/listener.h> |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 68 | #include <proto/server.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 69 | #include <proto/log.h> |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 70 | #include <proto/proxy.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 71 | #include <proto/shctx.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 72 | #include <proto/ssl_sock.h> |
| 73 | #include <proto/task.h> |
| 74 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 75 | #define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001 |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 76 | /* bits 0xFFFF0000 are reserved to store verify errors */ |
| 77 | |
| 78 | /* Verify errors macros */ |
| 79 | #define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16)) |
| 80 | #define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16)) |
| 81 | #define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16)) |
| 82 | |
| 83 | #define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63) |
| 84 | #define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15) |
| 85 | #define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 86 | |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 87 | static int sslconns = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 88 | |
| 89 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 90 | { |
| 91 | struct connection *conn = (struct connection *)SSL_get_app_data(ssl); |
| 92 | (void)ret; /* shut gcc stupid warning */ |
| 93 | |
| 94 | if (where & SSL_CB_HANDSHAKE_START) { |
| 95 | /* Disable renegotiation (CVE-2009-3555) */ |
| 96 | if (conn->flags & CO_FL_CONNECTED) |
| 97 | conn->flags |= CO_FL_ERROR; |
| 98 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 99 | } |
| 100 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 101 | /* Callback is called for each certificate of the chain during a verify |
| 102 | ok is set to 1 if preverify detect no error on current certificate. |
| 103 | Returns 0 to break the handshake, 1 otherwise. */ |
| 104 | int ssl_sock_verifycbk(int ok, X509_STORE_CTX *x_store) |
| 105 | { |
| 106 | SSL *ssl; |
| 107 | struct connection *conn; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 108 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 109 | |
| 110 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
| 111 | conn = (struct connection *)SSL_get_app_data(ssl); |
| 112 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 113 | conn->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 114 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 115 | if (ok) /* no errors */ |
| 116 | return ok; |
| 117 | |
| 118 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 119 | err = X509_STORE_CTX_get_error(x_store); |
| 120 | |
| 121 | /* check if CA error needs to be ignored */ |
| 122 | if (depth > 0) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 123 | if (!SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st)) { |
| 124 | conn->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 125 | conn->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 126 | } |
| 127 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 128 | if (target_client(&conn->target)->bind_conf->ca_ignerr & (1ULL << err)) |
| 129 | return 1; |
| 130 | |
| 131 | return 0; |
| 132 | } |
| 133 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 134 | if (!SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st)) |
| 135 | conn->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 136 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 137 | /* check if certificate error needs to be ignored */ |
| 138 | if (target_client(&conn->target)->bind_conf->crt_ignerr & (1ULL << err)) |
| 139 | return 1; |
| 140 | |
| 141 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 144 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 145 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 146 | * warning when no match is found, which implies the default (first) cert |
| 147 | * will keep being used. |
| 148 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 149 | 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] | 150 | { |
| 151 | const char *servername; |
| 152 | const char *wildp = NULL; |
| 153 | struct ebmb_node *node; |
| 154 | int i; |
| 155 | (void)al; /* shut gcc stupid warning */ |
| 156 | |
| 157 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
| 158 | if (!servername) |
| 159 | return SSL_TLSEXT_ERR_NOACK; |
| 160 | |
| 161 | for (i = 0; i < trashlen; i++) { |
| 162 | if (!servername[i]) |
| 163 | break; |
| 164 | trash[i] = tolower(servername[i]); |
| 165 | if (!wildp && (trash[i] == '.')) |
| 166 | wildp = &trash[i]; |
| 167 | } |
| 168 | trash[i] = 0; |
| 169 | |
| 170 | /* lookup in full qualified names */ |
| 171 | node = ebst_lookup(&s->sni_ctx, trash); |
| 172 | if (!node) { |
| 173 | if (!wildp) |
| 174 | return SSL_TLSEXT_ERR_ALERT_WARNING; |
| 175 | |
| 176 | /* lookup in full wildcards names */ |
| 177 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 178 | if (!node) |
| 179 | return SSL_TLSEXT_ERR_ALERT_WARNING; |
| 180 | } |
| 181 | |
| 182 | /* switch ctx */ |
| 183 | SSL_set_SSL_CTX(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 184 | return SSL_TLSEXT_ERR_OK; |
| 185 | } |
| 186 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 187 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 188 | #ifndef OPENSSL_NO_DH |
| 189 | /* Loads Diffie-Hellman parameter from a file. Returns 1 if loaded, else -1 |
| 190 | if an error occured, and 0 if parameter not found. */ |
| 191 | int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file) |
| 192 | { |
| 193 | int ret = -1; |
| 194 | BIO *in; |
| 195 | DH *dh = NULL; |
| 196 | |
| 197 | in = BIO_new(BIO_s_file()); |
| 198 | if (in == NULL) |
| 199 | goto end; |
| 200 | |
| 201 | if (BIO_read_filename(in, file) <= 0) |
| 202 | goto end; |
| 203 | |
| 204 | dh = PEM_read_bio_DHparams(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); |
| 205 | if (dh) { |
| 206 | SSL_CTX_set_tmp_dh(ctx, dh); |
| 207 | ret = 1; |
| 208 | goto end; |
| 209 | } |
| 210 | |
| 211 | ret = 0; /* DH params not found */ |
| 212 | end: |
| 213 | if (dh) |
| 214 | DH_free(dh); |
| 215 | |
| 216 | if (in) |
| 217 | BIO_free(in); |
| 218 | |
| 219 | return ret; |
| 220 | } |
| 221 | #endif |
| 222 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 223 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 224 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 225 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 226 | int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 227 | { |
| 228 | BIO *in; |
| 229 | X509 *x = NULL, *ca; |
| 230 | int i, len, err; |
| 231 | int ret = -1; |
| 232 | int order = 0; |
| 233 | X509_NAME *xname; |
| 234 | char *str; |
| 235 | struct sni_ctx *sc; |
| 236 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 237 | STACK_OF(GENERAL_NAME) *names; |
| 238 | #endif |
| 239 | |
| 240 | in = BIO_new(BIO_s_file()); |
| 241 | if (in == NULL) |
| 242 | goto end; |
| 243 | |
| 244 | if (BIO_read_filename(in, file) <= 0) |
| 245 | goto end; |
| 246 | |
| 247 | x = PEM_read_bio_X509_AUX(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); |
| 248 | if (x == NULL) |
| 249 | goto end; |
| 250 | |
| 251 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 252 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 253 | if (names) { |
| 254 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 255 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 256 | if (name->type == GEN_DNS) { |
| 257 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
| 258 | if ((len = strlen(str))) { |
| 259 | int j; |
| 260 | |
| 261 | if (*str != '*') { |
| 262 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
| 263 | for (j = 0; j < len; j++) |
| 264 | sc->name.key[j] = tolower(str[j]); |
| 265 | sc->name.key[len] = 0; |
| 266 | sc->order = order++; |
| 267 | sc->ctx = ctx; |
| 268 | ebst_insert(&s->sni_ctx, &sc->name); |
| 269 | } |
| 270 | else { |
| 271 | sc = malloc(sizeof(struct sni_ctx) + len); |
| 272 | for (j = 1; j < len; j++) |
| 273 | sc->name.key[j-1] = tolower(str[j]); |
| 274 | sc->name.key[len-1] = 0; |
| 275 | sc->order = order++; |
| 276 | sc->ctx = ctx; |
| 277 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 278 | } |
| 279 | } |
| 280 | OPENSSL_free(str); |
| 281 | } |
| 282 | } |
| 283 | } |
| 284 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
| 285 | } |
| 286 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 287 | |
| 288 | xname = X509_get_subject_name(x); |
| 289 | i = -1; |
| 290 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 291 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
| 292 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, entry->value) >= 0) { |
| 293 | if ((len = strlen(str))) { |
| 294 | int j; |
| 295 | |
| 296 | if (*str != '*') { |
| 297 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
| 298 | for (j = 0; j < len; j++) |
| 299 | sc->name.key[j] = tolower(str[j]); |
| 300 | sc->name.key[len] = 0; |
| 301 | sc->order = order++; |
| 302 | sc->ctx = ctx; |
| 303 | ebst_insert(&s->sni_ctx, &sc->name); |
| 304 | } |
| 305 | else { |
| 306 | sc = malloc(sizeof(struct sni_ctx) + len); |
| 307 | for (j = 1; j < len; j++) |
| 308 | sc->name.key[j-1] = tolower(str[j]); |
| 309 | sc->name.key[len-1] = 0; |
| 310 | sc->order = order++; |
| 311 | sc->ctx = ctx; |
| 312 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 313 | } |
| 314 | } |
| 315 | OPENSSL_free(str); |
| 316 | } |
| 317 | } |
| 318 | |
| 319 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 320 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 321 | goto end; |
| 322 | |
| 323 | if (ctx->extra_certs != NULL) { |
| 324 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 325 | ctx->extra_certs = NULL; |
| 326 | } |
| 327 | |
| 328 | while ((ca = PEM_read_bio_X509(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata))) { |
| 329 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 330 | X509_free(ca); |
| 331 | goto end; |
| 332 | } |
| 333 | } |
| 334 | |
| 335 | err = ERR_get_error(); |
| 336 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 337 | /* we successfully reached the last cert in the file */ |
| 338 | ret = 1; |
| 339 | } |
| 340 | ERR_clear_error(); |
| 341 | |
| 342 | end: |
| 343 | if (x) |
| 344 | X509_free(x); |
| 345 | |
| 346 | if (in) |
| 347 | BIO_free(in); |
| 348 | |
| 349 | return ret; |
| 350 | } |
| 351 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 352 | static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 353 | { |
| 354 | int ret; |
| 355 | SSL_CTX *ctx; |
| 356 | |
| 357 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 358 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 359 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 360 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 361 | return 1; |
| 362 | } |
| 363 | |
| 364 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 365 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 366 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 367 | SSL_CTX_free(ctx); |
| 368 | return 1; |
| 369 | } |
| 370 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 371 | ret = ssl_sock_load_cert_chain_file(ctx, path, bind_conf); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 372 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 373 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 374 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 375 | if (ret < 0) /* serious error, must do that ourselves */ |
| 376 | SSL_CTX_free(ctx); |
| 377 | return 1; |
| 378 | } |
| 379 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 380 | * the tree, so it will be discovered and cleaned in time. |
| 381 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 382 | #ifndef OPENSSL_NO_DH |
| 383 | ret = ssl_sock_load_dh_params(ctx, path); |
| 384 | if (ret < 0) { |
| 385 | if (err) |
| 386 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 387 | *err ? *err : "", path); |
| 388 | return 1; |
| 389 | } |
| 390 | #endif |
| 391 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 392 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 393 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 394 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 395 | err && *err ? *err : ""); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 396 | return 1; |
| 397 | } |
| 398 | #endif |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 399 | if (!bind_conf->default_ctx) |
| 400 | bind_conf->default_ctx = ctx; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 401 | |
| 402 | return 0; |
| 403 | } |
| 404 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 405 | 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] | 406 | { |
| 407 | struct dirent *de; |
| 408 | DIR *dir; |
| 409 | struct stat buf; |
| 410 | int pathlen = 0; |
| 411 | char *end, *fp; |
| 412 | int cfgerr = 0; |
| 413 | |
| 414 | if (!(dir = opendir(path))) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 415 | return ssl_sock_load_cert_file(path, bind_conf, curproxy, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 416 | |
| 417 | /* strip trailing slashes, including first one */ |
| 418 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 419 | *end = 0; |
| 420 | |
| 421 | if (end >= path) |
| 422 | pathlen = end + 1 - path; |
| 423 | fp = malloc(pathlen + 1 + NAME_MAX + 1); |
| 424 | |
| 425 | while ((de = readdir(dir))) { |
| 426 | snprintf(fp, pathlen + 1 + NAME_MAX + 1, "%s/%s", path, de->d_name); |
| 427 | if (stat(fp, &buf) != 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 428 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 429 | err && *err ? *err : "", fp, strerror(errno)); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 430 | cfgerr++; |
| 431 | continue; |
| 432 | } |
| 433 | if (!S_ISREG(buf.st_mode)) |
| 434 | continue; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 435 | cfgerr += ssl_sock_load_cert_file(fp, bind_conf, curproxy, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 436 | } |
| 437 | free(fp); |
| 438 | closedir(dir); |
| 439 | return cfgerr; |
| 440 | } |
| 441 | |
| 442 | #ifndef SSL_OP_CIPHER_SERVER_PREFERENCE /* needs OpenSSL >= 0.9.7 */ |
| 443 | #define SSL_OP_CIPHER_SERVER_PREFERENCE 0 |
| 444 | #endif |
| 445 | |
| 446 | #ifndef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION /* needs OpenSSL >= 0.9.7 */ |
| 447 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 |
| 448 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 449 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 0.9.8 */ |
| 450 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 451 | #endif |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 452 | #ifndef SSL_OP_NO_TICKET /* needs OpenSSL >= 0.9.8 */ |
| 453 | #define SSL_OP_NO_TICKET 0 |
| 454 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 455 | #ifndef SSL_OP_NO_COMPRESSION /* needs OpenSSL >= 0.9.9 */ |
| 456 | #define SSL_OP_NO_COMPRESSION 0 |
| 457 | #endif |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 458 | #ifndef SSL_OP_NO_TLSv1_1 /* needs OpenSSL >= 1.0.1 */ |
| 459 | #define SSL_OP_NO_TLSv1_1 0 |
| 460 | #endif |
| 461 | #ifndef SSL_OP_NO_TLSv1_2 /* needs OpenSSL >= 1.0.1 */ |
| 462 | #define SSL_OP_NO_TLSv1_2 0 |
| 463 | #endif |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 464 | #ifndef SSL_OP_SINGLE_DH_USE /* needs OpenSSL >= 0.9.6 */ |
| 465 | #define SSL_OP_SINGLE_DH_USE 0 |
| 466 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 467 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 1.0.0 */ |
| 468 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 469 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 470 | #ifndef SSL_MODE_RELEASE_BUFFERS /* needs OpenSSL >= 1.0.0 */ |
| 471 | #define SSL_MODE_RELEASE_BUFFERS 0 |
| 472 | #endif |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 473 | 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] | 474 | { |
| 475 | int cfgerr = 0; |
| 476 | int ssloptions = |
| 477 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 478 | SSL_OP_NO_SSLv2 | |
| 479 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 480 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 481 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 482 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
| 483 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 484 | int sslmode = |
| 485 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 486 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 487 | SSL_MODE_RELEASE_BUFFERS; |
| 488 | |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 489 | if (bind_conf->ssl_options & BC_SSL_O_NO_SSLV3) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 490 | ssloptions |= SSL_OP_NO_SSLv3; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 491 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV10) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 492 | ssloptions |= SSL_OP_NO_TLSv1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 493 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV11) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 494 | ssloptions |= SSL_OP_NO_TLSv1_1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 495 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV12) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 496 | ssloptions |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 497 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 498 | ssloptions |= SSL_OP_NO_TICKET; |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 499 | if (bind_conf->ssl_options & BC_SSL_O_USE_SSLV3) |
| 500 | SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()); |
| 501 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV10) |
| 502 | SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()); |
| 503 | #if SSL_OP_NO_TLSv1_1 |
| 504 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV11) |
| 505 | SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()); |
| 506 | #endif |
| 507 | #if SSL_OP_NO_TLSv1_2 |
| 508 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV12) |
| 509 | SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()); |
| 510 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 511 | |
| 512 | SSL_CTX_set_options(ctx, ssloptions); |
| 513 | SSL_CTX_set_mode(ctx, sslmode); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 514 | SSL_CTX_set_verify(ctx, bind_conf->verify ? bind_conf->verify : SSL_VERIFY_NONE, ssl_sock_verifycbk); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 515 | if (bind_conf->verify & SSL_VERIFY_PEER) { |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 516 | if (bind_conf->ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 517 | /* load CAfile to verify */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 518 | if (!SSL_CTX_load_verify_locations(ctx, bind_conf->ca_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 519 | 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] | 520 | 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] | 521 | cfgerr++; |
| 522 | } |
| 523 | /* set CA names fo client cert request, function returns void */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 524 | 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] | 525 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 526 | #ifdef X509_V_FLAG_CRL_CHECK |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 527 | if (bind_conf->crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 528 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 529 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 530 | if (!store || !X509_STORE_load_locations(store, bind_conf->crl_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 531 | Alert("Proxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 532 | 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] | 533 | cfgerr++; |
| 534 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 535 | else { |
| 536 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 537 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 538 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 539 | #endif |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 540 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 541 | |
| 542 | shared_context_set_cache(ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 543 | if (bind_conf->ciphers && |
| 544 | !SSL_CTX_set_cipher_list(ctx, bind_conf->ciphers)) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 545 | 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] | 546 | 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] | 547 | cfgerr++; |
| 548 | } |
| 549 | |
| 550 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
| 551 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 552 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 553 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 554 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 555 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 556 | if (bind_conf->ecdhe) { |
| 557 | int i; |
| 558 | EC_KEY *ecdh; |
| 559 | |
| 560 | i = OBJ_sn2nid(bind_conf->ecdhe); |
| 561 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
| 562 | Alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 563 | curproxy->id, bind_conf->ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 564 | cfgerr++; |
| 565 | } |
| 566 | else { |
| 567 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 568 | EC_KEY_free(ecdh); |
| 569 | } |
| 570 | } |
| 571 | #endif |
| 572 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 573 | return cfgerr; |
| 574 | } |
| 575 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 576 | /* prepare ssl context from servers options. Returns an error count */ |
| 577 | int ssl_sock_prepare_srv_ctx(struct server *srv, struct proxy *curproxy) |
| 578 | { |
| 579 | int cfgerr = 0; |
| 580 | int options = |
| 581 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 582 | SSL_OP_NO_SSLv2 | |
| 583 | SSL_OP_NO_COMPRESSION; |
| 584 | int mode = |
| 585 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 586 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 587 | SSL_MODE_RELEASE_BUFFERS; |
| 588 | |
| 589 | /* Initiate SSL context for current server */ |
| 590 | srv->ssl_ctx.reused_sess = NULL; |
| 591 | if (srv->use_ssl) |
| 592 | srv->xprt = &ssl_sock; |
| 593 | if (srv->check.use_ssl) |
| 594 | srv->check.xprt = &ssl_sock; |
| 595 | |
| 596 | srv->ssl_ctx.ctx = SSL_CTX_new(SSLv23_client_method()); |
| 597 | if (!srv->ssl_ctx.ctx) { |
| 598 | Alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 599 | proxy_type_str(curproxy), curproxy->id, |
| 600 | srv->id); |
| 601 | cfgerr++; |
| 602 | return cfgerr; |
| 603 | } |
| 604 | |
| 605 | |
| 606 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_SSLV3) |
| 607 | options |= SSL_OP_NO_SSLv3; |
| 608 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV10) |
| 609 | options |= SSL_OP_NO_TLSv1; |
| 610 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV11) |
| 611 | options |= SSL_OP_NO_TLSv1_1; |
| 612 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV12) |
| 613 | options |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 614 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 615 | options |= SSL_OP_NO_TICKET; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 616 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_SSLV3) |
| 617 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, SSLv3_client_method()); |
| 618 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV10) |
| 619 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_client_method()); |
| 620 | #if SSL_OP_NO_TLSv1_1 |
| 621 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV11) |
| 622 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_1_client_method()); |
| 623 | #endif |
| 624 | #if SSL_OP_NO_TLSv1_2 |
| 625 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV12) |
| 626 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_2_client_method()); |
| 627 | #endif |
| 628 | |
| 629 | SSL_CTX_set_options(srv->ssl_ctx.ctx, options); |
| 630 | SSL_CTX_set_mode(srv->ssl_ctx.ctx, mode); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 631 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, srv->ssl_ctx.verify ? srv->ssl_ctx.verify : SSL_VERIFY_NONE, NULL); |
| 632 | if (srv->ssl_ctx.verify & SSL_VERIFY_PEER) { |
| 633 | if (srv->ssl_ctx.ca_file) { |
| 634 | /* load CAfile to verify */ |
| 635 | if (!SSL_CTX_load_verify_locations(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file, NULL)) { |
| 636 | Alert("Proxy '%s', server '%s' |%s:%d] unable to load CA file '%s'.\n", |
| 637 | curproxy->id, srv->id, |
| 638 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
| 639 | cfgerr++; |
| 640 | } |
| 641 | } |
| 642 | #ifdef X509_V_FLAG_CRL_CHECK |
| 643 | if (srv->ssl_ctx.crl_file) { |
| 644 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 645 | |
| 646 | if (!store || !X509_STORE_load_locations(store, srv->ssl_ctx.crl_file, NULL)) { |
| 647 | Alert("Proxy '%s', server '%s' |%s:%d] unable to configure CRL file '%s'.\n", |
| 648 | curproxy->id, srv->id, |
| 649 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
| 650 | cfgerr++; |
| 651 | } |
| 652 | else { |
| 653 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 654 | } |
| 655 | } |
| 656 | #endif |
| 657 | } |
| 658 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 659 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_OFF); |
| 660 | if (srv->ssl_ctx.ciphers && |
| 661 | !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) { |
| 662 | Alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 663 | curproxy->id, srv->id, |
| 664 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
| 665 | cfgerr++; |
| 666 | } |
| 667 | |
| 668 | return cfgerr; |
| 669 | } |
| 670 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 671 | /* 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] | 672 | * be NULL, in which case nothing is done. Returns the number of errors |
| 673 | * encountered. |
| 674 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 675 | 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] | 676 | { |
| 677 | struct ebmb_node *node; |
| 678 | struct sni_ctx *sni; |
| 679 | int err = 0; |
| 680 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 681 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 682 | return 0; |
| 683 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 684 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 685 | while (node) { |
| 686 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 687 | if (!sni->order) /* only initialize the CTX on its first occurrence */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 688 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 689 | node = ebmb_next(node); |
| 690 | } |
| 691 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 692 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 693 | while (node) { |
| 694 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 695 | if (!sni->order) /* only initialize the CTX on its first occurrence */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 696 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 697 | node = ebmb_next(node); |
| 698 | } |
| 699 | return err; |
| 700 | } |
| 701 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 702 | /* 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] | 703 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 704 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 705 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 706 | { |
| 707 | struct ebmb_node *node, *back; |
| 708 | struct sni_ctx *sni; |
| 709 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 710 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 711 | return; |
| 712 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 713 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 714 | while (node) { |
| 715 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 716 | back = ebmb_next(node); |
| 717 | ebmb_delete(node); |
| 718 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 719 | SSL_CTX_free(sni->ctx); |
| 720 | free(sni); |
| 721 | node = back; |
| 722 | } |
| 723 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 724 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 725 | while (node) { |
| 726 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 727 | back = ebmb_next(node); |
| 728 | ebmb_delete(node); |
| 729 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 730 | SSL_CTX_free(sni->ctx); |
| 731 | free(sni); |
| 732 | node = back; |
| 733 | } |
| 734 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 735 | bind_conf->default_ctx = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 736 | } |
| 737 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 738 | /* |
| 739 | * This function is called if SSL * context is not yet allocated. The function |
| 740 | * is designed to be called before any other data-layer operation and sets the |
| 741 | * handshake flag on the connection. It is safe to call it multiple times. |
| 742 | * It returns 0 on success and -1 in error case. |
| 743 | */ |
| 744 | static int ssl_sock_init(struct connection *conn) |
| 745 | { |
| 746 | /* already initialized */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 747 | if (conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 748 | return 0; |
| 749 | |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 750 | if (global.maxsslconn && sslconns >= global.maxsslconn) |
| 751 | return -1; |
| 752 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 753 | /* If it is in client mode initiate SSL session |
| 754 | in connect state otherwise accept state */ |
| 755 | if (target_srv(&conn->target)) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 756 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 757 | conn->xprt_ctx = SSL_new(target_srv(&conn->target)->ssl_ctx.ctx); |
| 758 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 759 | return -1; |
| 760 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 761 | SSL_set_connect_state(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 762 | if (target_srv(&conn->target)->ssl_ctx.reused_sess) |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 763 | SSL_set_session(conn->xprt_ctx, target_srv(&conn->target)->ssl_ctx.reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 764 | |
| 765 | /* set fd on SSL session context */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 766 | SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 767 | |
| 768 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 769 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 770 | |
| 771 | sslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 772 | return 0; |
| 773 | } |
| 774 | else if (target_client(&conn->target)) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 775 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 776 | conn->xprt_ctx = SSL_new(target_client(&conn->target)->bind_conf->default_ctx); |
| 777 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 778 | return -1; |
| 779 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 780 | SSL_set_accept_state(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 781 | |
| 782 | /* set fd on SSL session context */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 783 | SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 784 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 785 | /* set connection pointer */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 786 | SSL_set_app_data(conn->xprt_ctx, conn); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 787 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 788 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 789 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 790 | |
| 791 | sslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 792 | return 0; |
| 793 | } |
| 794 | /* don't know how to handle such a target */ |
| 795 | return -1; |
| 796 | } |
| 797 | |
| 798 | |
| 799 | /* This is the callback which is used when an SSL handshake is pending. It |
| 800 | * updates the FD status if it wants some polling before being called again. |
| 801 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 802 | * otherwise it returns non-zero and removes itself from the connection's |
| 803 | * flags (the bit is provided in <flag> by the caller). |
| 804 | */ |
| 805 | int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
| 806 | { |
| 807 | int ret; |
| 808 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 809 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 810 | goto out_error; |
| 811 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 812 | ret = SSL_do_handshake(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 813 | if (ret != 1) { |
| 814 | /* handshake did not complete, let's find why */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 815 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 816 | |
| 817 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 818 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 819 | __conn_sock_stop_recv(conn); |
| 820 | __conn_sock_poll_send(conn); |
| 821 | return 0; |
| 822 | } |
| 823 | else if (ret == SSL_ERROR_WANT_READ) { |
| 824 | /* SSL handshake needs to read, L4 connection is ready */ |
| 825 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 826 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 827 | __conn_sock_stop_send(conn); |
| 828 | __conn_sock_poll_recv(conn); |
| 829 | return 0; |
| 830 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 831 | else if (ret == SSL_ERROR_SYSCALL) { |
| 832 | /* if errno is null, then connection was successfully established */ |
| 833 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 834 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 835 | goto out_error; |
| 836 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 837 | else { |
| 838 | /* Fail on all other handshake errors */ |
| 839 | goto out_error; |
| 840 | } |
| 841 | } |
| 842 | |
| 843 | /* Handshake succeeded */ |
| 844 | if (target_srv(&conn->target)) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 845 | if (!SSL_session_reused(conn->xprt_ctx)) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 846 | /* check if session was reused, if not store current session on server for reuse */ |
| 847 | if (target_srv(&conn->target)->ssl_ctx.reused_sess) |
| 848 | SSL_SESSION_free(target_srv(&conn->target)->ssl_ctx.reused_sess); |
| 849 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 850 | target_srv(&conn->target)->ssl_ctx.reused_sess = SSL_get1_session(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 851 | } |
| 852 | } |
| 853 | |
| 854 | /* The connection is now established at both layers, it's time to leave */ |
| 855 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 856 | return 1; |
| 857 | |
| 858 | out_error: |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 859 | /* free resumed session if exists */ |
| 860 | if (target_srv(&conn->target) && target_srv(&conn->target)->ssl_ctx.reused_sess) { |
| 861 | SSL_SESSION_free(target_srv(&conn->target)->ssl_ctx.reused_sess); |
| 862 | target_srv(&conn->target)->ssl_ctx.reused_sess = NULL; |
| 863 | } |
| 864 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 865 | /* Fail on all other handshake errors */ |
| 866 | conn->flags |= CO_FL_ERROR; |
| 867 | conn->flags &= ~flag; |
| 868 | return 0; |
| 869 | } |
| 870 | |
| 871 | /* Receive up to <count> bytes from connection <conn>'s socket and store them |
| 872 | * into buffer <buf>. The caller must ensure that <count> is always smaller |
| 873 | * than the buffer's size. Only one call to recv() is performed, unless the |
| 874 | * buffer wraps, in which case a second call may be performed. The connection's |
| 875 | * flags are updated with whatever special event is detected (error, read0, |
| 876 | * empty). The caller is responsible for taking care of those events and |
| 877 | * avoiding the call if inappropriate. The function does not call the |
| 878 | * connection's polling update function, so the caller is responsible for this. |
| 879 | */ |
| 880 | static int ssl_sock_to_buf(struct connection *conn, struct buffer *buf, int count) |
| 881 | { |
| 882 | int ret, done = 0; |
| 883 | int try = count; |
| 884 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 885 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 886 | goto out_error; |
| 887 | |
| 888 | if (conn->flags & CO_FL_HANDSHAKE) |
| 889 | /* a handshake was requested */ |
| 890 | return 0; |
| 891 | |
| 892 | /* compute the maximum block size we can read at once. */ |
| 893 | if (buffer_empty(buf)) { |
| 894 | /* let's realign the buffer to optimize I/O */ |
| 895 | buf->p = buf->data; |
| 896 | } |
| 897 | else if (buf->data + buf->o < buf->p && |
| 898 | buf->p + buf->i < buf->data + buf->size) { |
| 899 | /* remaining space wraps at the end, with a moving limit */ |
| 900 | if (try > buf->data + buf->size - (buf->p + buf->i)) |
| 901 | try = buf->data + buf->size - (buf->p + buf->i); |
| 902 | } |
| 903 | |
| 904 | /* read the largest possible block. For this, we perform only one call |
| 905 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 906 | * in which case we accept to do it once again. A new attempt is made on |
| 907 | * EINTR too. |
| 908 | */ |
| 909 | while (try) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 910 | ret = SSL_read(conn->xprt_ctx, bi_end(buf), try); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 911 | if (conn->flags & CO_FL_ERROR) { |
| 912 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
| 913 | break; |
| 914 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 915 | if (ret > 0) { |
| 916 | buf->i += ret; |
| 917 | done += ret; |
| 918 | if (ret < try) |
| 919 | break; |
| 920 | count -= ret; |
| 921 | try = count; |
| 922 | } |
| 923 | else if (ret == 0) { |
| 924 | goto read0; |
| 925 | } |
| 926 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 927 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 928 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 929 | /* handshake is running, and it needs to poll for a write event */ |
| 930 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 931 | __conn_sock_poll_send(conn); |
| 932 | break; |
| 933 | } |
| 934 | else if (ret == SSL_ERROR_WANT_READ) { |
| 935 | /* we need to poll for retry a read later */ |
| 936 | __conn_data_poll_recv(conn); |
| 937 | break; |
| 938 | } |
| 939 | /* otherwise it's a real error */ |
| 940 | goto out_error; |
| 941 | } |
| 942 | } |
| 943 | return done; |
| 944 | |
| 945 | read0: |
| 946 | conn_sock_read0(conn); |
| 947 | return done; |
| 948 | out_error: |
| 949 | conn->flags |= CO_FL_ERROR; |
| 950 | return done; |
| 951 | } |
| 952 | |
| 953 | |
| 954 | /* Send all pending bytes from buffer <buf> to connection <conn>'s socket. |
| 955 | * <flags> may contain MSG_MORE to make the system hold on without sending |
| 956 | * data too fast, but this flag is ignored at the moment. |
| 957 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 958 | * a second call may be performed. The connection's flags are updated with |
| 959 | * whatever special event is detected (error, empty). The caller is responsible |
| 960 | * for taking care of those events and avoiding the call if inappropriate. The |
| 961 | * function does not call the connection's polling update function, so the caller |
| 962 | * is responsible for this. |
| 963 | */ |
| 964 | static int ssl_sock_from_buf(struct connection *conn, struct buffer *buf, int flags) |
| 965 | { |
| 966 | int ret, try, done; |
| 967 | |
| 968 | done = 0; |
| 969 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 970 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 971 | goto out_error; |
| 972 | |
| 973 | if (conn->flags & CO_FL_HANDSHAKE) |
| 974 | /* a handshake was requested */ |
| 975 | return 0; |
| 976 | |
| 977 | /* send the largest possible block. For this we perform only one call |
| 978 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 979 | * in which case we accept to do it once again. |
| 980 | */ |
| 981 | while (buf->o) { |
| 982 | try = buf->o; |
| 983 | /* outgoing data may wrap at the end */ |
| 984 | if (buf->data + try > buf->p) |
| 985 | try = buf->data + try - buf->p; |
| 986 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 987 | ret = SSL_write(conn->xprt_ctx, bo_ptr(buf), try); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 988 | if (conn->flags & CO_FL_ERROR) { |
| 989 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
| 990 | break; |
| 991 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 992 | if (ret > 0) { |
| 993 | buf->o -= ret; |
| 994 | done += ret; |
| 995 | |
| 996 | if (likely(!buffer_len(buf))) |
| 997 | /* optimize data alignment in the buffer */ |
| 998 | buf->p = buf->data; |
| 999 | |
| 1000 | /* if the system buffer is full, don't insist */ |
| 1001 | if (ret < try) |
| 1002 | break; |
| 1003 | } |
| 1004 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1005 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1006 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 1007 | /* we need to poll to retry a write later */ |
| 1008 | __conn_data_poll_send(conn); |
| 1009 | break; |
| 1010 | } |
| 1011 | else if (ret == SSL_ERROR_WANT_READ) { |
| 1012 | /* handshake is running, and |
| 1013 | it needs to poll for a read event, |
| 1014 | write polling must be disabled cause |
| 1015 | we are sure we can't write anything more |
| 1016 | before handshake re-performed */ |
| 1017 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 1018 | __conn_sock_poll_recv(conn); |
| 1019 | break; |
| 1020 | } |
| 1021 | goto out_error; |
| 1022 | } |
| 1023 | } |
| 1024 | return done; |
| 1025 | |
| 1026 | out_error: |
| 1027 | conn->flags |= CO_FL_ERROR; |
| 1028 | return done; |
| 1029 | } |
| 1030 | |
| 1031 | |
| 1032 | static void ssl_sock_close(struct connection *conn) { |
| 1033 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1034 | if (conn->xprt_ctx) { |
| 1035 | SSL_free(conn->xprt_ctx); |
| 1036 | conn->xprt_ctx = NULL; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 1037 | sslconns--; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1038 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1039 | } |
| 1040 | |
| 1041 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 1042 | * any case, flags the connection as reusable if no handshake was in progress. |
| 1043 | */ |
| 1044 | static void ssl_sock_shutw(struct connection *conn, int clean) |
| 1045 | { |
| 1046 | if (conn->flags & CO_FL_HANDSHAKE) |
| 1047 | return; |
| 1048 | /* no handshake was in progress, try a clean ssl shutdown */ |
| 1049 | if (clean) |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1050 | SSL_shutdown(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1051 | |
| 1052 | /* force flag on ssl to keep session in cache regardless shutdown result */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1053 | SSL_set_shutdown(conn->xprt_ctx, SSL_SENT_SHUTDOWN); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1054 | } |
| 1055 | |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 1056 | /* used for logging, may be changed for a sample fetch later */ |
| 1057 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 1058 | { |
| 1059 | if (!conn->xprt && !conn->xprt_ctx) |
| 1060 | return NULL; |
| 1061 | return SSL_get_cipher_name(conn->xprt_ctx); |
| 1062 | } |
| 1063 | |
| 1064 | /* used for logging, may be changed for a sample fetch later */ |
| 1065 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 1066 | { |
| 1067 | if (!conn->xprt && !conn->xprt_ctx) |
| 1068 | return NULL; |
| 1069 | return SSL_get_version(conn->xprt_ctx); |
| 1070 | } |
| 1071 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1072 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 1073 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1074 | /* boolean, returns true if client cert was present */ |
| 1075 | static int |
| 1076 | smp_fetch_client_crt(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1077 | const struct arg *args, struct sample *smp) |
| 1078 | { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1079 | if (!l4 || l4->si[0].conn.xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1080 | return 0; |
| 1081 | |
| 1082 | if (!(l4->si[0].conn.flags & CO_FL_CONNECTED)) { |
| 1083 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1084 | return 0; |
| 1085 | } |
| 1086 | |
| 1087 | smp->flags = 0; |
| 1088 | smp->type = SMP_T_BOOL; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1089 | smp->data.uint = SSL_SOCK_ST_FL_VERIFY_DONE & l4->si[0].conn.xprt_st ? 1 : 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1090 | |
| 1091 | return 1; |
| 1092 | } |
| 1093 | |
| 1094 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1095 | /* boolean, returns true if transport layer is SSL */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1096 | static int |
| 1097 | smp_fetch_is_ssl(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1098 | const struct arg *args, struct sample *smp) |
| 1099 | { |
| 1100 | smp->type = SMP_T_BOOL; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1101 | smp->data.uint = (l4->si[0].conn.xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1102 | return 1; |
| 1103 | } |
| 1104 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1105 | /* boolean, returns true if transport layer is SSL */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1106 | static int |
| 1107 | smp_fetch_has_sni(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1108 | const struct arg *args, struct sample *smp) |
| 1109 | { |
| 1110 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 1111 | smp->type = SMP_T_BOOL; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1112 | smp->data.uint = (l4->si[0].conn.xprt == &ssl_sock) && |
| 1113 | l4->si[0].conn.xprt_ctx && |
| 1114 | SSL_get_servername(l4->si[0].conn.xprt_ctx, TLSEXT_NAMETYPE_host_name) != NULL; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1115 | return 1; |
| 1116 | #else |
| 1117 | return 0; |
| 1118 | #endif |
| 1119 | } |
| 1120 | |
| 1121 | static int |
| 1122 | smp_fetch_ssl_sni(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1123 | const struct arg *args, struct sample *smp) |
| 1124 | { |
| 1125 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 1126 | smp->flags = 0; |
| 1127 | smp->type = SMP_T_CSTR; |
| 1128 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1129 | if (!l4 || !l4->si[0].conn.xprt_ctx || l4->si[0].conn.xprt != &ssl_sock) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1130 | return 0; |
| 1131 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1132 | smp->data.str.str = (char *)SSL_get_servername(l4->si[0].conn.xprt_ctx, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 3e394c9 | 2012-09-14 23:56:58 +0200 | [diff] [blame] | 1133 | if (!smp->data.str.str) |
| 1134 | return 0; |
| 1135 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1136 | smp->data.str.len = strlen(smp->data.str.str); |
| 1137 | return 1; |
| 1138 | #else |
| 1139 | return 0; |
| 1140 | #endif |
| 1141 | } |
| 1142 | |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1143 | /* integer, returns the first verify error ID in CA */ |
| 1144 | static int |
| 1145 | smp_fetch_verify_caerr(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1146 | const struct arg *args, struct sample *smp) |
| 1147 | { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1148 | if (!l4 || l4->si[0].conn.xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1149 | return 0; |
| 1150 | |
| 1151 | if (!(l4->si[0].conn.flags & CO_FL_CONNECTED)) { |
| 1152 | smp->flags = SMP_F_MAY_CHANGE; |
| 1153 | return 0; |
| 1154 | } |
| 1155 | |
| 1156 | smp->type = SMP_T_UINT; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1157 | smp->data.uint = (unsigned int)SSL_SOCK_ST_TO_CA_ERROR(l4->si[0].conn.xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1158 | smp->flags = 0; |
| 1159 | |
| 1160 | return 1; |
| 1161 | } |
| 1162 | |
| 1163 | /* integer, returns the depth of the first verify error in CA */ |
| 1164 | static int |
| 1165 | smp_fetch_verify_caerr_depth(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1166 | const struct arg *args, struct sample *smp) |
| 1167 | { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1168 | if (!l4 || l4->si[0].conn.xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1169 | return 0; |
| 1170 | |
| 1171 | if (!(l4->si[0].conn.flags & CO_FL_CONNECTED)) { |
| 1172 | smp->flags = SMP_F_MAY_CHANGE; |
| 1173 | return 0; |
| 1174 | } |
| 1175 | |
| 1176 | smp->type = SMP_T_UINT; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1177 | smp->data.uint = (unsigned int)SSL_SOCK_ST_TO_CAEDEPTH(l4->si[0].conn.xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1178 | smp->flags = 0; |
| 1179 | |
| 1180 | return 1; |
| 1181 | } |
| 1182 | |
| 1183 | /* integer, returns the depth of the first verify error in CA */ |
| 1184 | static int |
| 1185 | smp_fetch_verify_crterr(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1186 | const struct arg *args, struct sample *smp) |
| 1187 | { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1188 | if (!l4 || l4->si[0].conn.xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1189 | return 0; |
| 1190 | |
| 1191 | if (!(l4->si[0].conn.flags & CO_FL_CONNECTED)) { |
| 1192 | smp->flags = SMP_F_MAY_CHANGE; |
| 1193 | return 0; |
| 1194 | } |
| 1195 | |
| 1196 | smp->type = SMP_T_UINT; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1197 | smp->data.uint = (unsigned int)SSL_SOCK_ST_TO_CRTERROR(l4->si[0].conn.xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1198 | smp->flags = 0; |
| 1199 | |
| 1200 | return 1; |
| 1201 | } |
| 1202 | |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 1203 | /* integer, returns the verify result */ |
| 1204 | static int |
| 1205 | smp_fetch_verify_result(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1206 | const struct arg *args, struct sample *smp) |
| 1207 | { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1208 | if (!l4 || l4->si[0].conn.xprt != &ssl_sock) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 1209 | return 0; |
| 1210 | |
| 1211 | if (!(l4->si[0].conn.flags & CO_FL_CONNECTED)) { |
| 1212 | smp->flags = SMP_F_MAY_CHANGE; |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1216 | if (!l4->si[0].conn.xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 1217 | return 0; |
| 1218 | |
| 1219 | smp->type = SMP_T_UINT; |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1220 | smp->data.uint = (unsigned int)SSL_get_verify_result(l4->si[0].conn.xprt_ctx); |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 1221 | smp->flags = 0; |
| 1222 | |
| 1223 | return 1; |
| 1224 | } |
| 1225 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1226 | /* parse the "ca-file" bind keyword */ |
| 1227 | 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] | 1228 | { |
| 1229 | if (!*args[cur_arg + 1]) { |
| 1230 | if (err) |
| 1231 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 1232 | return ERR_ALERT | ERR_FATAL; |
| 1233 | } |
| 1234 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1235 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 1236 | memprintf(&conf->ca_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 1237 | else |
| 1238 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 1239 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1240 | return 0; |
| 1241 | } |
| 1242 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1243 | /* parse the "ciphers" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1244 | 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] | 1245 | { |
| 1246 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1247 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1248 | return ERR_ALERT | ERR_FATAL; |
| 1249 | } |
| 1250 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 1251 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1252 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1253 | return 0; |
| 1254 | } |
| 1255 | |
| 1256 | /* parse the "crt" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1257 | 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] | 1258 | { |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 1259 | char path[PATH_MAX]; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1260 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1261 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1262 | return ERR_ALERT | ERR_FATAL; |
| 1263 | } |
| 1264 | |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 1265 | if ((*args[cur_arg + 1] != '/' ) && global.crt_base) { |
| 1266 | if ((strlen(global.crt_base) + 1 + strlen(args[cur_arg + 1]) + 1) > PATH_MAX) { |
| 1267 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 1268 | return ERR_ALERT | ERR_FATAL; |
| 1269 | } |
| 1270 | sprintf(path, "%s/%s", global.crt_base, args[cur_arg + 1]); |
| 1271 | if (ssl_sock_load_cert(path, conf, px, err) > 0) |
| 1272 | return ERR_ALERT | ERR_FATAL; |
| 1273 | |
| 1274 | return 0; |
| 1275 | } |
| 1276 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1277 | 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] | 1278 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1279 | |
| 1280 | return 0; |
| 1281 | } |
| 1282 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1283 | /* parse the "crl-file" bind keyword */ |
| 1284 | 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] | 1285 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 1286 | #ifndef X509_V_FLAG_CRL_CHECK |
| 1287 | if (err) |
| 1288 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 1289 | return ERR_ALERT | ERR_FATAL; |
| 1290 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1291 | if (!*args[cur_arg + 1]) { |
| 1292 | if (err) |
| 1293 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 1294 | return ERR_ALERT | ERR_FATAL; |
| 1295 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1296 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1297 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 1298 | memprintf(&conf->crl_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 1299 | else |
| 1300 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 1301 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1302 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 1303 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1304 | } |
| 1305 | |
| 1306 | /* parse the "ecdhe" bind keyword keywords */ |
| 1307 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1308 | { |
| 1309 | #if OPENSSL_VERSION_NUMBER < 0x0090800fL |
| 1310 | if (err) |
| 1311 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 1312 | return ERR_ALERT | ERR_FATAL; |
| 1313 | #elif defined(OPENSSL_NO_ECDH) |
| 1314 | if (err) |
| 1315 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 1316 | return ERR_ALERT | ERR_FATAL; |
| 1317 | #else |
| 1318 | if (!*args[cur_arg + 1]) { |
| 1319 | if (err) |
| 1320 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 1321 | return ERR_ALERT | ERR_FATAL; |
| 1322 | } |
| 1323 | |
| 1324 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1325 | |
| 1326 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 1327 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1328 | } |
| 1329 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1330 | /* parse the "crt_ignerr" and "ca_ignerr" bind keywords */ |
| 1331 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1332 | { |
| 1333 | int code; |
| 1334 | char *p = args[cur_arg + 1]; |
| 1335 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 1336 | |
| 1337 | if (!*p) { |
| 1338 | if (err) |
| 1339 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 1340 | return ERR_ALERT | ERR_FATAL; |
| 1341 | } |
| 1342 | |
| 1343 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 1344 | ignerr = &conf->ca_ignerr; |
| 1345 | |
| 1346 | if (strcmp(p, "all") == 0) { |
| 1347 | *ignerr = ~0ULL; |
| 1348 | return 0; |
| 1349 | } |
| 1350 | |
| 1351 | while (p) { |
| 1352 | code = atoi(p); |
| 1353 | if ((code <= 0) || (code > 63)) { |
| 1354 | if (err) |
| 1355 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 1356 | args[cur_arg], code, args[cur_arg + 1]); |
| 1357 | return ERR_ALERT | ERR_FATAL; |
| 1358 | } |
| 1359 | *ignerr |= 1ULL << code; |
| 1360 | p = strchr(p, ','); |
| 1361 | if (p) |
| 1362 | p++; |
| 1363 | } |
| 1364 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 1365 | return 0; |
| 1366 | } |
| 1367 | |
| 1368 | /* parse the "force-sslv3" bind keyword */ |
| 1369 | static int bind_parse_force_sslv3(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1370 | { |
| 1371 | conf->ssl_options |= BC_SSL_O_USE_SSLV3; |
| 1372 | return 0; |
| 1373 | } |
| 1374 | |
| 1375 | /* parse the "force-tlsv10" bind keyword */ |
| 1376 | static int bind_parse_force_tlsv10(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1377 | { |
| 1378 | conf->ssl_options |= BC_SSL_O_USE_TLSV10; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 1379 | return 0; |
| 1380 | } |
| 1381 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 1382 | /* parse the "force-tlsv11" bind keyword */ |
| 1383 | static int bind_parse_force_tlsv11(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1384 | { |
| 1385 | #if SSL_OP_NO_TLSv1_1 |
| 1386 | conf->ssl_options |= BC_SSL_O_USE_TLSV11; |
| 1387 | return 0; |
| 1388 | #else |
| 1389 | if (err) |
| 1390 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[cur_arg]); |
| 1391 | return ERR_ALERT | ERR_FATAL; |
| 1392 | #endif |
| 1393 | } |
| 1394 | |
| 1395 | /* parse the "force-tlsv12" bind keyword */ |
| 1396 | static int bind_parse_force_tlsv12(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1397 | { |
| 1398 | #if SSL_OP_NO_TLSv1_2 |
| 1399 | conf->ssl_options |= BC_SSL_O_USE_TLSV12; |
| 1400 | return 0; |
| 1401 | #else |
| 1402 | if (err) |
| 1403 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[cur_arg]); |
| 1404 | return ERR_ALERT | ERR_FATAL; |
| 1405 | #endif |
| 1406 | } |
| 1407 | |
| 1408 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 1409 | /* parse the "no-tls-tickets" bind keyword */ |
| 1410 | static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1411 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1412 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1413 | return 0; |
| 1414 | } |
| 1415 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 1416 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 1417 | /* parse the "no-sslv3" bind keyword */ |
| 1418 | 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] | 1419 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1420 | conf->ssl_options |= BC_SSL_O_NO_SSLV3; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1421 | return 0; |
| 1422 | } |
| 1423 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 1424 | /* parse the "no-tlsv10" bind keyword */ |
| 1425 | 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] | 1426 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1427 | conf->ssl_options |= BC_SSL_O_NO_TLSV10; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 1428 | return 0; |
| 1429 | } |
| 1430 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 1431 | /* parse the "no-tlsv11" bind keyword */ |
| 1432 | 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] | 1433 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1434 | conf->ssl_options |= BC_SSL_O_NO_TLSV11; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 1435 | return 0; |
| 1436 | } |
| 1437 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 1438 | /* parse the "no-tlsv12" bind keyword */ |
| 1439 | 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] | 1440 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 1441 | conf->ssl_options |= BC_SSL_O_NO_TLSV12; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1442 | return 0; |
| 1443 | } |
| 1444 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1445 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1446 | 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] | 1447 | { |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 1448 | struct listener *l; |
| 1449 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1450 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 1451 | |
| 1452 | if (global.listen_default_ciphers && !conf->ciphers) |
| 1453 | conf->ciphers = strdup(global.listen_default_ciphers); |
| 1454 | |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 1455 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1456 | l->xprt = &ssl_sock; |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 1457 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1458 | return 0; |
| 1459 | } |
| 1460 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 1461 | /* parse the "verify" bind keyword */ |
| 1462 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1463 | { |
| 1464 | if (!*args[cur_arg + 1]) { |
| 1465 | if (err) |
| 1466 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 1467 | return ERR_ALERT | ERR_FATAL; |
| 1468 | } |
| 1469 | |
| 1470 | if (strcmp(args[cur_arg + 1], "none") == 0) |
| 1471 | conf->verify = SSL_VERIFY_NONE; |
| 1472 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
| 1473 | conf->verify = SSL_VERIFY_PEER; |
| 1474 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
| 1475 | conf->verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 1476 | else { |
| 1477 | if (err) |
| 1478 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 1479 | args[cur_arg], args[cur_arg + 1]); |
| 1480 | return ERR_ALERT | ERR_FATAL; |
| 1481 | } |
| 1482 | |
| 1483 | return 0; |
| 1484 | } |
| 1485 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1486 | /************** "server" keywords ****************/ |
| 1487 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1488 | /* parse the "ca-file" server keyword */ |
| 1489 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1490 | { |
| 1491 | if (!*args[*cur_arg + 1]) { |
| 1492 | if (err) |
| 1493 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 1494 | return ERR_ALERT | ERR_FATAL; |
| 1495 | } |
| 1496 | |
| 1497 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 1498 | memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 1499 | else |
| 1500 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 1501 | |
| 1502 | return 0; |
| 1503 | } |
| 1504 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1505 | /* parse the "check-ssl" server keyword */ |
| 1506 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1507 | { |
| 1508 | newsrv->check.use_ssl = 1; |
| 1509 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 1510 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
| 1511 | return 0; |
| 1512 | } |
| 1513 | |
| 1514 | /* parse the "ciphers" server keyword */ |
| 1515 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1516 | { |
| 1517 | if (!*args[*cur_arg + 1]) { |
| 1518 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 1519 | return ERR_ALERT | ERR_FATAL; |
| 1520 | } |
| 1521 | |
| 1522 | free(newsrv->ssl_ctx.ciphers); |
| 1523 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 1524 | return 0; |
| 1525 | } |
| 1526 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1527 | /* parse the "crl-file" server keyword */ |
| 1528 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1529 | { |
| 1530 | #ifndef X509_V_FLAG_CRL_CHECK |
| 1531 | if (err) |
| 1532 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 1533 | return ERR_ALERT | ERR_FATAL; |
| 1534 | #else |
| 1535 | if (!*args[*cur_arg + 1]) { |
| 1536 | if (err) |
| 1537 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 1538 | return ERR_ALERT | ERR_FATAL; |
| 1539 | } |
| 1540 | |
| 1541 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 1542 | memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 1543 | else |
| 1544 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 1545 | |
| 1546 | return 0; |
| 1547 | #endif |
| 1548 | } |
| 1549 | |
| 1550 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1551 | /* parse the "force-sslv3" server keyword */ |
| 1552 | static int srv_parse_force_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1553 | { |
| 1554 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_SSLV3; |
| 1555 | return 0; |
| 1556 | } |
| 1557 | |
| 1558 | /* parse the "force-tlsv10" server keyword */ |
| 1559 | static int srv_parse_force_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1560 | { |
| 1561 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV10; |
| 1562 | return 0; |
| 1563 | } |
| 1564 | |
| 1565 | /* parse the "force-tlsv11" server keyword */ |
| 1566 | static int srv_parse_force_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1567 | { |
| 1568 | #if SSL_OP_NO_TLSv1_1 |
| 1569 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV11; |
| 1570 | return 0; |
| 1571 | #else |
| 1572 | if (err) |
| 1573 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[*cur_arg]); |
| 1574 | return ERR_ALERT | ERR_FATAL; |
| 1575 | #endif |
| 1576 | } |
| 1577 | |
| 1578 | /* parse the "force-tlsv12" server keyword */ |
| 1579 | static int srv_parse_force_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1580 | { |
| 1581 | #if SSL_OP_NO_TLSv1_2 |
| 1582 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV12; |
| 1583 | return 0; |
| 1584 | #else |
| 1585 | if (err) |
| 1586 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[*cur_arg]); |
| 1587 | return ERR_ALERT | ERR_FATAL; |
| 1588 | #endif |
| 1589 | } |
| 1590 | |
| 1591 | /* parse the "no-sslv3" server keyword */ |
| 1592 | static int srv_parse_no_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1593 | { |
| 1594 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_SSLV3; |
| 1595 | return 0; |
| 1596 | } |
| 1597 | |
| 1598 | /* parse the "no-tlsv10" server keyword */ |
| 1599 | static int srv_parse_no_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1600 | { |
| 1601 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV10; |
| 1602 | return 0; |
| 1603 | } |
| 1604 | |
| 1605 | /* parse the "no-tlsv11" server keyword */ |
| 1606 | static int srv_parse_no_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1607 | { |
| 1608 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV11; |
| 1609 | return 0; |
| 1610 | } |
| 1611 | |
| 1612 | /* parse the "no-tlsv12" server keyword */ |
| 1613 | static int srv_parse_no_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1614 | { |
| 1615 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV12; |
| 1616 | return 0; |
| 1617 | } |
| 1618 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 1619 | /* parse the "no-tls-tickets" server keyword */ |
| 1620 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1621 | { |
| 1622 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 1623 | return 0; |
| 1624 | } |
| 1625 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1626 | /* parse the "ssl" server keyword */ |
| 1627 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1628 | { |
| 1629 | newsrv->use_ssl = 1; |
| 1630 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 1631 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
| 1632 | return 0; |
| 1633 | } |
| 1634 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1635 | /* parse the "verify" server keyword */ |
| 1636 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 1637 | { |
| 1638 | if (!*args[*cur_arg + 1]) { |
| 1639 | if (err) |
| 1640 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 1641 | return ERR_ALERT | ERR_FATAL; |
| 1642 | } |
| 1643 | |
| 1644 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
| 1645 | newsrv->ssl_ctx.verify = SSL_VERIFY_NONE; |
| 1646 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
| 1647 | newsrv->ssl_ctx.verify = SSL_VERIFY_PEER; |
| 1648 | else { |
| 1649 | if (err) |
| 1650 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 1651 | args[*cur_arg], args[*cur_arg + 1]); |
| 1652 | return ERR_ALERT | ERR_FATAL; |
| 1653 | } |
| 1654 | |
| 1655 | return 0; |
| 1656 | } |
| 1657 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1658 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1659 | * Please take care of keeping this list alphabetically sorted. |
| 1660 | */ |
| 1661 | static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1662 | { "client_crt", smp_fetch_client_crt, 0, NULL, SMP_T_BOOL, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1663 | { "is_ssl", smp_fetch_is_ssl, 0, NULL, SMP_T_BOOL, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1664 | { "ssl_has_sni", smp_fetch_has_sni, 0, NULL, SMP_T_BOOL, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1665 | { "ssl_sni", smp_fetch_ssl_sni, 0, NULL, SMP_T_CSTR, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1666 | { "ssl_verify_caerr", smp_fetch_verify_caerr, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1667 | { "ssl_verify_caerr_depth", smp_fetch_verify_caerr_depth, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1668 | { "ssl_verify_crterr", smp_fetch_verify_crterr, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES }, |
| 1669 | { "ssl_verify_result", smp_fetch_verify_result, 0, NULL, SMP_T_UINT, SMP_CAP_REQ|SMP_CAP_RES }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1670 | { NULL, NULL, 0, 0, 0 }, |
| 1671 | }}; |
| 1672 | |
| 1673 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1674 | * Please take care of keeping this list alphabetically sorted. |
| 1675 | */ |
| 1676 | static struct acl_kw_list acl_kws = {{ },{ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1677 | { "client_crt", acl_parse_int, smp_fetch_client_crt, acl_match_nothing, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1678 | { "is_ssl", acl_parse_int, smp_fetch_is_ssl, acl_match_nothing, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1679 | { "ssl_has_sni", acl_parse_int, smp_fetch_has_sni, acl_match_nothing, ACL_USE_L6REQ_PERMANENT, 0 }, |
| 1680 | { "ssl_sni", acl_parse_str, smp_fetch_ssl_sni, acl_match_str, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1681 | { "ssl_sni_end", acl_parse_str, smp_fetch_ssl_sni, acl_match_end, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1682 | { "ssl_sni_reg", acl_parse_str, smp_fetch_ssl_sni, acl_match_reg, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1683 | { "ssl_verify_caerr", acl_parse_int, smp_fetch_verify_caerr, acl_match_int, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1684 | { "ssl_verify_caerr_depth", acl_parse_int, smp_fetch_verify_caerr_depth, acl_match_int, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1685 | { "ssl_verify_crterr", acl_parse_int, smp_fetch_verify_crterr, acl_match_int, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
| 1686 | { "ssl_verify_result", acl_parse_int, smp_fetch_verify_result, acl_match_int, ACL_USE_L6REQ_PERMANENT|ACL_MAY_LOOKUP, 0 }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1687 | { NULL, NULL, NULL, NULL }, |
| 1688 | }}; |
| 1689 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1690 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1691 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1692 | * all code contributors. |
| 1693 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1694 | * the config parser can report an appropriate error when a known keyword was |
| 1695 | * not enabled. |
| 1696 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1697 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1698 | { "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] | 1699 | { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */ |
| 1700 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 1701 | { "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] | 1702 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 1703 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
| 1704 | { "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] | 1705 | { "force-sslv3", bind_parse_force_sslv3, 0 }, /* force SSLv3 */ |
| 1706 | { "force-tlsv10", bind_parse_force_tlsv10, 0 }, /* force TLSv10 */ |
| 1707 | { "force-tlsv11", bind_parse_force_tlsv11, 0 }, /* force TLSv11 */ |
| 1708 | { "force-tlsv12", bind_parse_force_tlsv12, 0 }, /* force TLSv12 */ |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 1709 | { "no-sslv3", bind_parse_no_sslv3, 0 }, /* disable SSLv3 */ |
| 1710 | { "no-tlsv10", bind_parse_no_tlsv10, 0 }, /* disable TLSv10 */ |
| 1711 | { "no-tlsv11", bind_parse_no_tlsv11, 0 }, /* disable TLSv11 */ |
| 1712 | { "no-tlsv12", bind_parse_no_tlsv12, 0 }, /* disable TLSv12 */ |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 1713 | { "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] | 1714 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
| 1715 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1716 | { NULL, NULL, 0 }, |
| 1717 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1718 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1719 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1720 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1721 | * all code contributors. |
| 1722 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1723 | * the config parser can report an appropriate error when a known keyword was |
| 1724 | * not enabled. |
| 1725 | */ |
| 1726 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1727 | { "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] | 1728 | { "check-ssl", srv_parse_check_ssl, 0, 0 }, /* enable SSL for health checks */ |
| 1729 | { "ciphers", srv_parse_ciphers, 1, 0 }, /* select the cipher suite */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1730 | { "crl-file", srv_parse_crl_file, 1, 0 }, /* set certificate revocation list file use on server cert verify */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 1731 | { "force-sslv3", srv_parse_force_sslv3, 0, 0 }, /* force SSLv3 */ |
| 1732 | { "force-tlsv10", srv_parse_force_tlsv10, 0, 0 }, /* force TLSv10 */ |
| 1733 | { "force-tlsv11", srv_parse_force_tlsv11, 0, 0 }, /* force TLSv11 */ |
| 1734 | { "force-tlsv12", srv_parse_force_tlsv12, 0, 0 }, /* force TLSv12 */ |
| 1735 | { "no-sslv3", srv_parse_no_sslv3, 0, 0 }, /* disable SSLv3 */ |
| 1736 | { "no-tlsv10", srv_parse_no_tlsv10, 0, 0 }, /* disable TLSv10 */ |
| 1737 | { "no-tlsv11", srv_parse_no_tlsv11, 0, 0 }, /* disable TLSv11 */ |
| 1738 | { "no-tlsv12", srv_parse_no_tlsv12, 0, 0 }, /* disable TLSv12 */ |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 1739 | { "no-tls-tickets", srv_parse_no_tls_tickets, 0, 0 }, /* disable session resumption tickets */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 1740 | { "ssl", srv_parse_ssl, 0, 0 }, /* enable SSL processing */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 1741 | { "verify", srv_parse_verify, 1, 0 }, /* set SSL verify method */ |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1742 | { NULL, NULL, 0, 0 }, |
| 1743 | }}; |
| 1744 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1745 | /* transport-layer operations for SSL sockets */ |
| 1746 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1747 | .snd_buf = ssl_sock_from_buf, |
| 1748 | .rcv_buf = ssl_sock_to_buf, |
| 1749 | .rcv_pipe = NULL, |
| 1750 | .snd_pipe = NULL, |
| 1751 | .shutr = NULL, |
| 1752 | .shutw = ssl_sock_shutw, |
| 1753 | .close = ssl_sock_close, |
| 1754 | .init = ssl_sock_init, |
| 1755 | }; |
| 1756 | |
| 1757 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1758 | static void __ssl_sock_init(void) |
| 1759 | { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1760 | STACK_OF(SSL_COMP)* cm; |
| 1761 | |
| 1762 | SSL_library_init(); |
| 1763 | cm = SSL_COMP_get_compression_methods(); |
| 1764 | sk_SSL_COMP_zero(cm); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1765 | sample_register_fetches(&sample_fetch_keywords); |
| 1766 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 1767 | bind_register_keywords(&bind_kws); |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 1768 | srv_register_keywords(&srv_kws); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1769 | } |
| 1770 | |
| 1771 | /* |
| 1772 | * Local variables: |
| 1773 | * c-indent-level: 8 |
| 1774 | * c-basic-offset: 8 |
| 1775 | * End: |
| 1776 | */ |