Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2 | * SSL/TLS transport layer over SOCK_STREAM sockets |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
Willy Tarreau | 69845df | 2012-09-10 09:43:09 +0200 | [diff] [blame] | 11 | * Acknowledgement: |
| 12 | * We'd like to specially thank the Stud project authors for a very clean |
| 13 | * and well documented code which helped us understand how the OpenSSL API |
| 14 | * ought to be used in non-blocking mode. This is one difficult part which |
| 15 | * is not easy to get from the OpenSSL doc, and reading the Stud code made |
| 16 | * it much more obvious than the examples in the OpenSSL package. Keep up |
| 17 | * the good works, guys ! |
| 18 | * |
| 19 | * Stud is an extremely efficient and scalable SSL/TLS proxy which combines |
| 20 | * particularly well with haproxy. For more info about this project, visit : |
| 21 | * https://github.com/bumptech/stud |
| 22 | * |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | #define _GNU_SOURCE |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 26 | #include <ctype.h> |
| 27 | #include <dirent.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 28 | #include <errno.h> |
| 29 | #include <fcntl.h> |
| 30 | #include <stdio.h> |
| 31 | #include <stdlib.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 32 | #include <string.h> |
| 33 | #include <unistd.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 34 | |
| 35 | #include <sys/socket.h> |
| 36 | #include <sys/stat.h> |
| 37 | #include <sys/types.h> |
| 38 | |
| 39 | #include <netinet/tcp.h> |
| 40 | |
| 41 | #include <openssl/ssl.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 42 | #include <openssl/x509.h> |
| 43 | #include <openssl/x509v3.h> |
| 44 | #include <openssl/x509.h> |
| 45 | #include <openssl/err.h> |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 46 | #include <openssl/rand.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 47 | |
| 48 | #include <common/buffer.h> |
| 49 | #include <common/compat.h> |
| 50 | #include <common/config.h> |
| 51 | #include <common/debug.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 52 | #include <common/errors.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 53 | #include <common/standard.h> |
| 54 | #include <common/ticks.h> |
| 55 | #include <common/time.h> |
| 56 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 57 | #include <ebsttree.h> |
| 58 | |
| 59 | #include <types/global.h> |
| 60 | #include <types/ssl_sock.h> |
| 61 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 62 | #include <proto/acl.h> |
| 63 | #include <proto/arg.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 64 | #include <proto/connection.h> |
| 65 | #include <proto/fd.h> |
| 66 | #include <proto/freq_ctr.h> |
| 67 | #include <proto/frontend.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 68 | #include <proto/listener.h> |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 69 | #include <proto/server.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 70 | #include <proto/log.h> |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 71 | #include <proto/proxy.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 72 | #include <proto/shctx.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 73 | #include <proto/ssl_sock.h> |
| 74 | #include <proto/task.h> |
| 75 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 76 | #define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001 |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 77 | /* bits 0xFFFF0000 are reserved to store verify errors */ |
| 78 | |
| 79 | /* Verify errors macros */ |
| 80 | #define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16)) |
| 81 | #define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16)) |
| 82 | #define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16)) |
| 83 | |
| 84 | #define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63) |
| 85 | #define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15) |
| 86 | #define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 87 | |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 88 | static int sslconns = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 89 | |
| 90 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 91 | { |
| 92 | struct connection *conn = (struct connection *)SSL_get_app_data(ssl); |
| 93 | (void)ret; /* shut gcc stupid warning */ |
| 94 | |
| 95 | if (where & SSL_CB_HANDSHAKE_START) { |
| 96 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 97 | if (conn->flags & CO_FL_CONNECTED) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 98 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 99 | conn->err_code = CO_ER_SSL_RENEG; |
| 100 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 101 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 102 | } |
| 103 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 104 | /* Callback is called for each certificate of the chain during a verify |
| 105 | ok is set to 1 if preverify detect no error on current certificate. |
| 106 | Returns 0 to break the handshake, 1 otherwise. */ |
| 107 | int ssl_sock_verifycbk(int ok, X509_STORE_CTX *x_store) |
| 108 | { |
| 109 | SSL *ssl; |
| 110 | struct connection *conn; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 111 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 112 | |
| 113 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
| 114 | conn = (struct connection *)SSL_get_app_data(ssl); |
| 115 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 116 | conn->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 117 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 118 | if (ok) /* no errors */ |
| 119 | return ok; |
| 120 | |
| 121 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 122 | err = X509_STORE_CTX_get_error(x_store); |
| 123 | |
| 124 | /* check if CA error needs to be ignored */ |
| 125 | if (depth > 0) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 126 | if (!SSL_SOCK_ST_TO_CA_ERROR(conn->xprt_st)) { |
| 127 | conn->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 128 | conn->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 129 | } |
| 130 | |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 131 | if (objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) { |
| 132 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 133 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 134 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 135 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 136 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 137 | return 0; |
| 138 | } |
| 139 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 140 | if (!SSL_SOCK_ST_TO_CRTERROR(conn->xprt_st)) |
| 141 | conn->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 142 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 143 | /* check if certificate error needs to be ignored */ |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 144 | if (objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) { |
| 145 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 146 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 147 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 148 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 149 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 150 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 151 | } |
| 152 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 153 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 154 | /* This callback is used so that the server advertises the list of |
| 155 | * negociable protocols for NPN. |
| 156 | */ |
| 157 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 158 | unsigned int *len, void *arg) |
| 159 | { |
| 160 | struct bind_conf *conf = arg; |
| 161 | |
| 162 | *data = (const unsigned char *)conf->npn_str; |
| 163 | *len = conf->npn_len; |
| 164 | return SSL_TLSEXT_ERR_OK; |
| 165 | } |
| 166 | #endif |
| 167 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 168 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 169 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 170 | * warning when no match is found, which implies the default (first) cert |
| 171 | * will keep being used. |
| 172 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 173 | 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] | 174 | { |
| 175 | const char *servername; |
| 176 | const char *wildp = NULL; |
| 177 | struct ebmb_node *node; |
| 178 | int i; |
| 179 | (void)al; /* shut gcc stupid warning */ |
| 180 | |
| 181 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 182 | if (!servername) { |
| 183 | if (s->strict_sni) |
| 184 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 185 | else |
| 186 | return SSL_TLSEXT_ERR_NOACK; |
| 187 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 188 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 189 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 190 | if (!servername[i]) |
| 191 | break; |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 192 | trash.str[i] = tolower(servername[i]); |
| 193 | if (!wildp && (trash.str[i] == '.')) |
| 194 | wildp = &trash.str[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 195 | } |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 196 | trash.str[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 197 | |
| 198 | /* lookup in full qualified names */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 199 | node = ebst_lookup(&s->sni_ctx, trash.str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 200 | if (!node) { |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 201 | if (!wildp) { |
| 202 | if (s->strict_sni) |
| 203 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 204 | else |
| 205 | return SSL_TLSEXT_ERR_ALERT_WARNING; |
| 206 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 207 | /* lookup in full wildcards names */ |
| 208 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 209 | if (!node) { |
| 210 | if (s->strict_sni) |
| 211 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 212 | else |
| 213 | return SSL_TLSEXT_ERR_ALERT_WARNING; |
| 214 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /* switch ctx */ |
| 218 | SSL_set_SSL_CTX(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 219 | return SSL_TLSEXT_ERR_OK; |
| 220 | } |
| 221 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 222 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 223 | #ifndef OPENSSL_NO_DH |
| 224 | /* Loads Diffie-Hellman parameter from a file. Returns 1 if loaded, else -1 |
| 225 | if an error occured, and 0 if parameter not found. */ |
| 226 | int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file) |
| 227 | { |
| 228 | int ret = -1; |
| 229 | BIO *in; |
| 230 | DH *dh = NULL; |
| 231 | |
| 232 | in = BIO_new(BIO_s_file()); |
| 233 | if (in == NULL) |
| 234 | goto end; |
| 235 | |
| 236 | if (BIO_read_filename(in, file) <= 0) |
| 237 | goto end; |
| 238 | |
| 239 | dh = PEM_read_bio_DHparams(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); |
| 240 | if (dh) { |
| 241 | SSL_CTX_set_tmp_dh(ctx, dh); |
| 242 | ret = 1; |
| 243 | goto end; |
| 244 | } |
| 245 | |
| 246 | ret = 0; /* DH params not found */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 247 | |
| 248 | /* Clear openssl global errors stack */ |
| 249 | ERR_clear_error(); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 250 | end: |
| 251 | if (dh) |
| 252 | DH_free(dh); |
| 253 | |
| 254 | if (in) |
| 255 | BIO_free(in); |
| 256 | |
| 257 | return ret; |
| 258 | } |
| 259 | #endif |
| 260 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 261 | int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, char *name, int len, int order) |
| 262 | { |
| 263 | struct sni_ctx *sc; |
| 264 | int wild = 0; |
| 265 | int j; |
| 266 | |
| 267 | if (len) { |
| 268 | if (*name == '*') { |
| 269 | wild = 1; |
| 270 | name++; |
| 271 | len--; |
| 272 | } |
| 273 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
| 274 | for (j = 0; j < len; j++) |
| 275 | sc->name.key[j] = tolower(name[j]); |
| 276 | sc->name.key[len] = 0; |
| 277 | sc->order = order++; |
| 278 | sc->ctx = ctx; |
| 279 | if (wild) |
| 280 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 281 | else |
| 282 | ebst_insert(&s->sni_ctx, &sc->name); |
| 283 | } |
| 284 | return order; |
| 285 | } |
| 286 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 287 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 288 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 289 | */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 290 | int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s, char *sni_filter) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 291 | { |
| 292 | BIO *in; |
| 293 | X509 *x = NULL, *ca; |
| 294 | int i, len, err; |
| 295 | int ret = -1; |
| 296 | int order = 0; |
| 297 | X509_NAME *xname; |
| 298 | char *str; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 299 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 300 | STACK_OF(GENERAL_NAME) *names; |
| 301 | #endif |
| 302 | |
| 303 | in = BIO_new(BIO_s_file()); |
| 304 | if (in == NULL) |
| 305 | goto end; |
| 306 | |
| 307 | if (BIO_read_filename(in, file) <= 0) |
| 308 | goto end; |
| 309 | |
| 310 | x = PEM_read_bio_X509_AUX(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata); |
| 311 | if (x == NULL) |
| 312 | goto end; |
| 313 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 314 | if (sni_filter) { |
| 315 | while (*sni_filter) { |
| 316 | while (isspace(*sni_filter)) |
| 317 | sni_filter++; |
| 318 | str = sni_filter; |
| 319 | while (!isspace(*sni_filter) && *sni_filter) |
| 320 | sni_filter++; |
| 321 | len = sni_filter - str; |
| 322 | order = ssl_sock_add_cert_sni(ctx, s, str, len, order); |
| 323 | } |
| 324 | } |
| 325 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 326 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 327 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 328 | if (names) { |
| 329 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 330 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 331 | if (name->type == GEN_DNS) { |
| 332 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
| 333 | len = strlen(str); |
| 334 | order = ssl_sock_add_cert_sni(ctx, s, str, len, order); |
| 335 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 336 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 337 | } |
| 338 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 339 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 340 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 341 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 342 | xname = X509_get_subject_name(x); |
| 343 | i = -1; |
| 344 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 345 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
| 346 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, entry->value) >= 0) { |
| 347 | len = strlen(str); |
| 348 | order = ssl_sock_add_cert_sni(ctx, s, str, len, order); |
| 349 | OPENSSL_free(str); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 350 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 351 | } |
| 352 | } |
| 353 | |
| 354 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 355 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 356 | goto end; |
| 357 | |
| 358 | if (ctx->extra_certs != NULL) { |
| 359 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 360 | ctx->extra_certs = NULL; |
| 361 | } |
| 362 | |
| 363 | while ((ca = PEM_read_bio_X509(in, NULL, ctx->default_passwd_callback, ctx->default_passwd_callback_userdata))) { |
| 364 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 365 | X509_free(ca); |
| 366 | goto end; |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | err = ERR_get_error(); |
| 371 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 372 | /* we successfully reached the last cert in the file */ |
| 373 | ret = 1; |
| 374 | } |
| 375 | ERR_clear_error(); |
| 376 | |
| 377 | end: |
| 378 | if (x) |
| 379 | X509_free(x); |
| 380 | |
| 381 | if (in) |
| 382 | BIO_free(in); |
| 383 | |
| 384 | return ret; |
| 385 | } |
| 386 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 387 | static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct proxy *curproxy, char *sni_filter, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 388 | { |
| 389 | int ret; |
| 390 | SSL_CTX *ctx; |
| 391 | |
| 392 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 393 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 394 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 395 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 396 | return 1; |
| 397 | } |
| 398 | |
| 399 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 400 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 401 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 402 | SSL_CTX_free(ctx); |
| 403 | return 1; |
| 404 | } |
| 405 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 406 | ret = ssl_sock_load_cert_chain_file(ctx, path, bind_conf, sni_filter); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 407 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 408 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 409 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 410 | if (ret < 0) /* serious error, must do that ourselves */ |
| 411 | SSL_CTX_free(ctx); |
| 412 | return 1; |
| 413 | } |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 414 | |
| 415 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 416 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 417 | err && *err ? *err : "", path); |
| 418 | return 1; |
| 419 | } |
| 420 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 421 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 422 | * the tree, so it will be discovered and cleaned in time. |
| 423 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 424 | #ifndef OPENSSL_NO_DH |
| 425 | ret = ssl_sock_load_dh_params(ctx, path); |
| 426 | if (ret < 0) { |
| 427 | if (err) |
| 428 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 429 | *err ? *err : "", path); |
| 430 | return 1; |
| 431 | } |
| 432 | #endif |
| 433 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 434 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 435 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 436 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 437 | err && *err ? *err : ""); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 438 | return 1; |
| 439 | } |
| 440 | #endif |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 441 | if (!bind_conf->default_ctx) |
| 442 | bind_conf->default_ctx = ctx; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 443 | |
| 444 | return 0; |
| 445 | } |
| 446 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 447 | 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] | 448 | { |
| 449 | struct dirent *de; |
| 450 | DIR *dir; |
| 451 | struct stat buf; |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 452 | char *end; |
| 453 | char fp[MAXPATHLEN+1]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 454 | int cfgerr = 0; |
| 455 | |
| 456 | if (!(dir = opendir(path))) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 457 | return ssl_sock_load_cert_file(path, bind_conf, curproxy, NULL, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 458 | |
| 459 | /* strip trailing slashes, including first one */ |
| 460 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 461 | *end = 0; |
| 462 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 463 | while ((de = readdir(dir))) { |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 464 | snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 465 | if (stat(fp, &buf) != 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 466 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 467 | err && *err ? *err : "", fp, strerror(errno)); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 468 | cfgerr++; |
| 469 | continue; |
| 470 | } |
| 471 | if (!S_ISREG(buf.st_mode)) |
| 472 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 473 | cfgerr += ssl_sock_load_cert_file(fp, bind_conf, curproxy, NULL, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 474 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 475 | closedir(dir); |
| 476 | return cfgerr; |
| 477 | } |
| 478 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 479 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 480 | * done once. Zero is returned if the operation fails. No error is returned |
| 481 | * if the random is said as not implemented, because we expect that openssl |
| 482 | * will use another method once needed. |
| 483 | */ |
| 484 | static int ssl_initialize_random() |
| 485 | { |
| 486 | unsigned char random; |
| 487 | static int random_initialized = 0; |
| 488 | |
| 489 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 490 | random_initialized = 1; |
| 491 | |
| 492 | return random_initialized; |
| 493 | } |
| 494 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 495 | int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
| 496 | { |
| 497 | char thisline[65536]; |
| 498 | FILE *f; |
| 499 | int linenum = 0; |
| 500 | int cfgerr = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 501 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 502 | if ((f = fopen(file, "r")) == NULL) { |
| 503 | memprintf(err, "cannot open file '%s' : %s", file, strerror(errno)); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 504 | return 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 505 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 506 | |
| 507 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 508 | int arg; |
| 509 | char *end; |
| 510 | char *args[MAX_LINE_ARGS + 1]; |
| 511 | char *line = thisline; |
| 512 | |
| 513 | linenum++; |
| 514 | end = line + strlen(line); |
| 515 | if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') { |
| 516 | /* Check if we reached the limit and the last char is not \n. |
| 517 | * Watch out for the last line without the terminating '\n'! |
| 518 | */ |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 519 | memprintf(err, "line %d too long in file '%s', limit is %d characters", |
| 520 | linenum, file, (int)sizeof(thisline)-1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 521 | cfgerr = 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 522 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | /* skip leading spaces */ |
| 526 | while (isspace(*line)) |
| 527 | line++; |
| 528 | |
| 529 | arg = 0; |
| 530 | args[arg] = line; |
| 531 | |
| 532 | while (*line && arg < MAX_LINE_ARGS) { |
| 533 | if (*line == '#' || *line == '\n' || *line == '\r') { |
| 534 | /* end of string, end of loop */ |
| 535 | *line = 0; |
| 536 | break; |
| 537 | } |
| 538 | else if (isspace(*line)) { |
| 539 | /* a non-escaped space is an argument separator */ |
| 540 | *line++ = '\0'; |
| 541 | while (isspace(*line)) |
| 542 | line++; |
| 543 | args[++arg] = line; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 544 | } |
| 545 | else { |
| 546 | line++; |
| 547 | } |
| 548 | } |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 549 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 550 | /* empty line */ |
| 551 | if (!**args) |
| 552 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 553 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 554 | if (arg > 2) { |
| 555 | memprintf(err, "too many args on line %d in file '%s', only one SNI filter is supported (was '%s')", |
| 556 | linenum, file, args[2]); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 557 | cfgerr = 1; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 558 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 559 | } |
| 560 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 561 | cfgerr = ssl_sock_load_cert_file(args[0], bind_conf, curproxy, arg > 1 ? args[1] : NULL, err); |
| 562 | if (cfgerr) { |
| 563 | memprintf(err, "error processing line %d in file '%s' : %s", linenum, file, *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 564 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 565 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 566 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 567 | fclose(f); |
| 568 | return cfgerr; |
| 569 | } |
| 570 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 571 | #ifndef SSL_OP_CIPHER_SERVER_PREFERENCE /* needs OpenSSL >= 0.9.7 */ |
| 572 | #define SSL_OP_CIPHER_SERVER_PREFERENCE 0 |
| 573 | #endif |
| 574 | |
| 575 | #ifndef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION /* needs OpenSSL >= 0.9.7 */ |
| 576 | #define SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION 0 |
Willy Tarreau | 7d588ee | 2012-11-26 18:47:31 +0100 | [diff] [blame] | 577 | #define SSL_renegotiate_pending(arg) 0 |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 578 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 579 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 0.9.8 */ |
| 580 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 581 | #endif |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 582 | #ifndef SSL_OP_NO_TICKET /* needs OpenSSL >= 0.9.8 */ |
| 583 | #define SSL_OP_NO_TICKET 0 |
| 584 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 585 | #ifndef SSL_OP_NO_COMPRESSION /* needs OpenSSL >= 0.9.9 */ |
| 586 | #define SSL_OP_NO_COMPRESSION 0 |
| 587 | #endif |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 588 | #ifndef SSL_OP_NO_TLSv1_1 /* needs OpenSSL >= 1.0.1 */ |
| 589 | #define SSL_OP_NO_TLSv1_1 0 |
| 590 | #endif |
| 591 | #ifndef SSL_OP_NO_TLSv1_2 /* needs OpenSSL >= 1.0.1 */ |
| 592 | #define SSL_OP_NO_TLSv1_2 0 |
| 593 | #endif |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 594 | #ifndef SSL_OP_SINGLE_DH_USE /* needs OpenSSL >= 0.9.6 */ |
| 595 | #define SSL_OP_SINGLE_DH_USE 0 |
| 596 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 597 | #ifndef SSL_OP_SINGLE_ECDH_USE /* needs OpenSSL >= 1.0.0 */ |
| 598 | #define SSL_OP_SINGLE_ECDH_USE 0 |
| 599 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 600 | #ifndef SSL_MODE_RELEASE_BUFFERS /* needs OpenSSL >= 1.0.0 */ |
| 601 | #define SSL_MODE_RELEASE_BUFFERS 0 |
| 602 | #endif |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 603 | 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] | 604 | { |
| 605 | int cfgerr = 0; |
| 606 | int ssloptions = |
| 607 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 608 | SSL_OP_NO_SSLv2 | |
| 609 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 610 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 611 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 612 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
| 613 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 614 | int sslmode = |
| 615 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 616 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 617 | SSL_MODE_RELEASE_BUFFERS; |
| 618 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 619 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 620 | if (!ssl_initialize_random()) { |
| 621 | Alert("OpenSSL random data generator initialization failed.\n"); |
| 622 | cfgerr++; |
| 623 | } |
| 624 | |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 625 | if (bind_conf->ssl_options & BC_SSL_O_NO_SSLV3) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 626 | ssloptions |= SSL_OP_NO_SSLv3; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 627 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV10) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 628 | ssloptions |= SSL_OP_NO_TLSv1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 629 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV11) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 630 | ssloptions |= SSL_OP_NO_TLSv1_1; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 631 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLSV12) |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 632 | ssloptions |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 633 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 634 | ssloptions |= SSL_OP_NO_TICKET; |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 635 | if (bind_conf->ssl_options & BC_SSL_O_USE_SSLV3) |
| 636 | SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()); |
| 637 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV10) |
| 638 | SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()); |
| 639 | #if SSL_OP_NO_TLSv1_1 |
| 640 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV11) |
| 641 | SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()); |
| 642 | #endif |
| 643 | #if SSL_OP_NO_TLSv1_2 |
| 644 | if (bind_conf->ssl_options & BC_SSL_O_USE_TLSV12) |
| 645 | SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()); |
| 646 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 647 | |
| 648 | SSL_CTX_set_options(ctx, ssloptions); |
| 649 | SSL_CTX_set_mode(ctx, sslmode); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 650 | 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] | 651 | if (bind_conf->verify & SSL_VERIFY_PEER) { |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 652 | if (bind_conf->ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 653 | /* load CAfile to verify */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 654 | if (!SSL_CTX_load_verify_locations(ctx, bind_conf->ca_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 655 | 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] | 656 | 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] | 657 | cfgerr++; |
| 658 | } |
| 659 | /* set CA names fo client cert request, function returns void */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 660 | 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] | 661 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 662 | #ifdef X509_V_FLAG_CRL_CHECK |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 663 | if (bind_conf->crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 664 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 665 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 666 | if (!store || !X509_STORE_load_locations(store, bind_conf->crl_file, NULL)) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 667 | 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] | 668 | 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] | 669 | cfgerr++; |
| 670 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 671 | else { |
| 672 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 673 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 674 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 675 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 676 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 677 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 678 | |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 679 | if (global.tune.ssllifetime) |
| 680 | SSL_CTX_set_timeout(ctx, global.tune.ssllifetime); |
| 681 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 682 | shared_context_set_cache(ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 683 | if (bind_conf->ciphers && |
| 684 | !SSL_CTX_set_cipher_list(ctx, bind_conf->ciphers)) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 685 | 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] | 686 | 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] | 687 | cfgerr++; |
| 688 | } |
| 689 | |
| 690 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 691 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 692 | if (bind_conf->npn_str) |
| 693 | SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, bind_conf); |
| 694 | #endif |
| 695 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 696 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 697 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 698 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 699 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 700 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 701 | { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 702 | int i; |
| 703 | EC_KEY *ecdh; |
| 704 | |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 705 | i = OBJ_sn2nid(bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 706 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
| 707 | Alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
Emeric Brun | 6924ef8 | 2013-03-06 14:08:53 +0100 | [diff] [blame] | 708 | curproxy->id, bind_conf->ecdhe ? bind_conf->ecdhe : ECDHE_DEFAULT_CURVE, |
| 709 | bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 710 | cfgerr++; |
| 711 | } |
| 712 | else { |
| 713 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 714 | EC_KEY_free(ecdh); |
| 715 | } |
| 716 | } |
| 717 | #endif |
| 718 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 719 | return cfgerr; |
| 720 | } |
| 721 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 722 | /* prepare ssl context from servers options. Returns an error count */ |
| 723 | int ssl_sock_prepare_srv_ctx(struct server *srv, struct proxy *curproxy) |
| 724 | { |
| 725 | int cfgerr = 0; |
| 726 | int options = |
| 727 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 728 | SSL_OP_NO_SSLv2 | |
| 729 | SSL_OP_NO_COMPRESSION; |
| 730 | int mode = |
| 731 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 732 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 733 | SSL_MODE_RELEASE_BUFFERS; |
| 734 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 735 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 736 | if (!ssl_initialize_random()) { |
| 737 | Alert("OpenSSL random data generator initialization failed.\n"); |
| 738 | cfgerr++; |
| 739 | } |
| 740 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 741 | /* Initiate SSL context for current server */ |
| 742 | srv->ssl_ctx.reused_sess = NULL; |
| 743 | if (srv->use_ssl) |
| 744 | srv->xprt = &ssl_sock; |
| 745 | if (srv->check.use_ssl) |
| 746 | srv->check.xprt = &ssl_sock; |
| 747 | |
| 748 | srv->ssl_ctx.ctx = SSL_CTX_new(SSLv23_client_method()); |
| 749 | if (!srv->ssl_ctx.ctx) { |
| 750 | Alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 751 | proxy_type_str(curproxy), curproxy->id, |
| 752 | srv->id); |
| 753 | cfgerr++; |
| 754 | return cfgerr; |
| 755 | } |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 756 | if (srv->ssl_ctx.client_crt) { |
| 757 | if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) { |
| 758 | Alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n", |
| 759 | proxy_type_str(curproxy), curproxy->id, |
| 760 | srv->id, srv->ssl_ctx.client_crt); |
| 761 | cfgerr++; |
| 762 | } |
| 763 | else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) { |
| 764 | Alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n", |
| 765 | proxy_type_str(curproxy), curproxy->id, |
| 766 | srv->id, srv->ssl_ctx.client_crt); |
| 767 | cfgerr++; |
| 768 | } |
| 769 | else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) { |
| 770 | Alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 771 | proxy_type_str(curproxy), curproxy->id, |
| 772 | srv->id, srv->ssl_ctx.client_crt); |
| 773 | cfgerr++; |
| 774 | } |
| 775 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 776 | |
| 777 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_SSLV3) |
| 778 | options |= SSL_OP_NO_SSLv3; |
| 779 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV10) |
| 780 | options |= SSL_OP_NO_TLSv1; |
| 781 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV11) |
| 782 | options |= SSL_OP_NO_TLSv1_1; |
| 783 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLSV12) |
| 784 | options |= SSL_OP_NO_TLSv1_2; |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 785 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 786 | options |= SSL_OP_NO_TICKET; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 787 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_SSLV3) |
| 788 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, SSLv3_client_method()); |
| 789 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV10) |
| 790 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_client_method()); |
| 791 | #if SSL_OP_NO_TLSv1_1 |
| 792 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV11) |
| 793 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_1_client_method()); |
| 794 | #endif |
| 795 | #if SSL_OP_NO_TLSv1_2 |
| 796 | if (srv->ssl_ctx.options & SRV_SSL_O_USE_TLSV12) |
| 797 | SSL_CTX_set_ssl_version(srv->ssl_ctx.ctx, TLSv1_2_client_method()); |
| 798 | #endif |
| 799 | |
| 800 | SSL_CTX_set_options(srv->ssl_ctx.ctx, options); |
| 801 | SSL_CTX_set_mode(srv->ssl_ctx.ctx, mode); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 802 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, srv->ssl_ctx.verify ? srv->ssl_ctx.verify : SSL_VERIFY_NONE, NULL); |
| 803 | if (srv->ssl_ctx.verify & SSL_VERIFY_PEER) { |
| 804 | if (srv->ssl_ctx.ca_file) { |
| 805 | /* load CAfile to verify */ |
| 806 | if (!SSL_CTX_load_verify_locations(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file, NULL)) { |
| 807 | Alert("Proxy '%s', server '%s' |%s:%d] unable to load CA file '%s'.\n", |
| 808 | curproxy->id, srv->id, |
| 809 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
| 810 | cfgerr++; |
| 811 | } |
| 812 | } |
| 813 | #ifdef X509_V_FLAG_CRL_CHECK |
| 814 | if (srv->ssl_ctx.crl_file) { |
| 815 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 816 | |
| 817 | if (!store || !X509_STORE_load_locations(store, srv->ssl_ctx.crl_file, NULL)) { |
| 818 | Alert("Proxy '%s', server '%s' |%s:%d] unable to configure CRL file '%s'.\n", |
| 819 | curproxy->id, srv->id, |
| 820 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
| 821 | cfgerr++; |
| 822 | } |
| 823 | else { |
| 824 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 825 | } |
| 826 | } |
| 827 | #endif |
| 828 | } |
| 829 | |
Emeric Brun | 4f65bff | 2012-11-16 15:11:00 +0100 | [diff] [blame] | 830 | if (global.tune.ssllifetime) |
| 831 | SSL_CTX_set_timeout(srv->ssl_ctx.ctx, global.tune.ssllifetime); |
| 832 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 833 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_OFF); |
| 834 | if (srv->ssl_ctx.ciphers && |
| 835 | !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) { |
| 836 | Alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 837 | curproxy->id, srv->id, |
| 838 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
| 839 | cfgerr++; |
| 840 | } |
| 841 | |
| 842 | return cfgerr; |
| 843 | } |
| 844 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 845 | /* 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] | 846 | * be NULL, in which case nothing is done. Returns the number of errors |
| 847 | * encountered. |
| 848 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 849 | 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] | 850 | { |
| 851 | struct ebmb_node *node; |
| 852 | struct sni_ctx *sni; |
| 853 | int err = 0; |
| 854 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 855 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 856 | return 0; |
| 857 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 858 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 859 | while (node) { |
| 860 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 861 | if (!sni->order) /* only initialize the CTX on its first occurrence */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 862 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 863 | node = ebmb_next(node); |
| 864 | } |
| 865 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 866 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 867 | while (node) { |
| 868 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 869 | if (!sni->order) /* only initialize the CTX on its first occurrence */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 870 | err += ssl_sock_prepare_ctx(bind_conf, sni->ctx, px); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 871 | node = ebmb_next(node); |
| 872 | } |
| 873 | return err; |
| 874 | } |
| 875 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 876 | /* 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] | 877 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 878 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 879 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 880 | { |
| 881 | struct ebmb_node *node, *back; |
| 882 | struct sni_ctx *sni; |
| 883 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 884 | if (!bind_conf || !bind_conf->is_ssl) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 885 | return; |
| 886 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 887 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 888 | while (node) { |
| 889 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 890 | back = ebmb_next(node); |
| 891 | ebmb_delete(node); |
| 892 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 893 | SSL_CTX_free(sni->ctx); |
| 894 | free(sni); |
| 895 | node = back; |
| 896 | } |
| 897 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 898 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 899 | while (node) { |
| 900 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 901 | back = ebmb_next(node); |
| 902 | ebmb_delete(node); |
| 903 | if (!sni->order) /* only free the CTX on its first occurrence */ |
| 904 | SSL_CTX_free(sni->ctx); |
| 905 | free(sni); |
| 906 | node = back; |
| 907 | } |
| 908 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 909 | bind_conf->default_ctx = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 910 | } |
| 911 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 912 | /* |
| 913 | * This function is called if SSL * context is not yet allocated. The function |
| 914 | * is designed to be called before any other data-layer operation and sets the |
| 915 | * handshake flag on the connection. It is safe to call it multiple times. |
| 916 | * It returns 0 on success and -1 in error case. |
| 917 | */ |
| 918 | static int ssl_sock_init(struct connection *conn) |
| 919 | { |
| 920 | /* already initialized */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 921 | if (conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 922 | return 0; |
| 923 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 924 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 925 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 926 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 927 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 928 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 929 | /* If it is in client mode initiate SSL session |
| 930 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 931 | if (objt_server(conn->target)) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 932 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 933 | conn->xprt_ctx = SSL_new(objt_server(conn->target)->ssl_ctx.ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 934 | if (!conn->xprt_ctx) { |
| 935 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 936 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 937 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 938 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 939 | SSL_set_connect_state(conn->xprt_ctx); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 940 | if (objt_server(conn->target)->ssl_ctx.reused_sess) |
| 941 | SSL_set_session(conn->xprt_ctx, objt_server(conn->target)->ssl_ctx.reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 942 | |
| 943 | /* set fd on SSL session context */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 944 | SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 945 | |
| 946 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 947 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 948 | |
| 949 | sslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 950 | return 0; |
| 951 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 952 | else if (objt_listener(conn->target)) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 953 | /* Alloc a new SSL session ctx */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 954 | conn->xprt_ctx = SSL_new(objt_listener(conn->target)->bind_conf->default_ctx); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 955 | if (!conn->xprt_ctx) { |
| 956 | conn->err_code = CO_ER_SSL_NO_MEM; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 957 | return -1; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 958 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 959 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 960 | SSL_set_accept_state(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 961 | |
| 962 | /* set fd on SSL session context */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 963 | SSL_set_fd(conn->xprt_ctx, conn->t.sock.fd); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 964 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 965 | /* set connection pointer */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 966 | SSL_set_app_data(conn->xprt_ctx, conn); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 967 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 968 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 969 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 970 | |
| 971 | sslconns++; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 972 | return 0; |
| 973 | } |
| 974 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 975 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 976 | return -1; |
| 977 | } |
| 978 | |
| 979 | |
| 980 | /* This is the callback which is used when an SSL handshake is pending. It |
| 981 | * updates the FD status if it wants some polling before being called again. |
| 982 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 983 | * otherwise it returns non-zero and removes itself from the connection's |
| 984 | * flags (the bit is provided in <flag> by the caller). |
| 985 | */ |
| 986 | int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
| 987 | { |
| 988 | int ret; |
| 989 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 990 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 991 | goto out_error; |
| 992 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 993 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 994 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 995 | * Usually SSL_write and SSL_read are used and process implicitly |
| 996 | * the reneg handshake. |
| 997 | * Here we use SSL_peek as a workaround for reneg. |
| 998 | */ |
| 999 | if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 1000 | char c; |
| 1001 | |
| 1002 | ret = SSL_peek(conn->xprt_ctx, &c, 1); |
| 1003 | if (ret <= 0) { |
| 1004 | /* handshake may have not been completed, let's find why */ |
| 1005 | ret = SSL_get_error(conn->xprt_ctx, ret); |
| 1006 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 1007 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 1008 | __conn_sock_stop_recv(conn); |
| 1009 | __conn_sock_poll_send(conn); |
| 1010 | return 0; |
| 1011 | } |
| 1012 | else if (ret == SSL_ERROR_WANT_READ) { |
| 1013 | /* handshake may have been completed but we have |
| 1014 | * no more data to read. |
| 1015 | */ |
| 1016 | if (!SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 1017 | ret = 1; |
| 1018 | goto reneg_ok; |
| 1019 | } |
| 1020 | /* SSL handshake needs to read, L4 connection is ready */ |
| 1021 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 1022 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 1023 | __conn_sock_stop_send(conn); |
| 1024 | __conn_sock_poll_recv(conn); |
| 1025 | return 0; |
| 1026 | } |
| 1027 | else if (ret == SSL_ERROR_SYSCALL) { |
| 1028 | /* if errno is null, then connection was successfully established */ |
| 1029 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 1030 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1031 | if (!conn->err_code) { |
| 1032 | if (!((SSL *)conn->xprt_ctx)->packet_length) |
| 1033 | if (!errno) |
| 1034 | conn->err_code = CO_ER_SSL_EMPTY; |
| 1035 | else |
| 1036 | conn->err_code = CO_ER_SSL_ABORT; |
| 1037 | else |
| 1038 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 1039 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 1040 | goto out_error; |
| 1041 | } |
| 1042 | else { |
| 1043 | /* Fail on all other handshake errors */ |
| 1044 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 1045 | * buffer, causing an RST to be emitted upon close() on |
| 1046 | * TCP sockets. We first try to drain possibly pending |
| 1047 | * data to avoid this as much as possible. |
| 1048 | */ |
| 1049 | ret = recv(conn->t.sock.fd, trash.str, trash.size, MSG_NOSIGNAL|MSG_DONTWAIT); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1050 | if (!conn->err_code) |
| 1051 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 1052 | goto out_error; |
| 1053 | } |
| 1054 | } |
| 1055 | /* read some data: consider handshake completed */ |
| 1056 | goto reneg_ok; |
| 1057 | } |
| 1058 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1059 | ret = SSL_do_handshake(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1060 | if (ret != 1) { |
| 1061 | /* handshake did not complete, let's find why */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1062 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1063 | |
| 1064 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 1065 | /* SSL handshake needs to write, L4 connection may not be ready */ |
| 1066 | __conn_sock_stop_recv(conn); |
| 1067 | __conn_sock_poll_send(conn); |
| 1068 | return 0; |
| 1069 | } |
| 1070 | else if (ret == SSL_ERROR_WANT_READ) { |
| 1071 | /* SSL handshake needs to read, L4 connection is ready */ |
| 1072 | if (conn->flags & CO_FL_WAIT_L4_CONN) |
| 1073 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
| 1074 | __conn_sock_stop_send(conn); |
| 1075 | __conn_sock_poll_recv(conn); |
| 1076 | return 0; |
| 1077 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 1078 | else if (ret == SSL_ERROR_SYSCALL) { |
| 1079 | /* if errno is null, then connection was successfully established */ |
| 1080 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 1081 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1082 | |
| 1083 | if (!((SSL *)conn->xprt_ctx)->packet_length) |
| 1084 | if (!errno) |
| 1085 | conn->err_code = CO_ER_SSL_EMPTY; |
| 1086 | else |
| 1087 | conn->err_code = CO_ER_SSL_ABORT; |
| 1088 | else |
| 1089 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 1090 | goto out_error; |
| 1091 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1092 | else { |
| 1093 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 1094 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 1095 | * buffer, causing an RST to be emitted upon close() on |
| 1096 | * TCP sockets. We first try to drain possibly pending |
| 1097 | * data to avoid this as much as possible. |
| 1098 | */ |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 1099 | ret = recv(conn->t.sock.fd, trash.str, trash.size, MSG_NOSIGNAL|MSG_DONTWAIT); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1100 | if (!conn->err_code) |
| 1101 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1102 | goto out_error; |
| 1103 | } |
| 1104 | } |
| 1105 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 1106 | reneg_ok: |
| 1107 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1108 | /* Handshake succeeded */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1109 | if (objt_server(conn->target)) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1110 | if (!SSL_session_reused(conn->xprt_ctx)) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1111 | /* check if session was reused, if not store current session on server for reuse */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1112 | if (objt_server(conn->target)->ssl_ctx.reused_sess) |
| 1113 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1114 | |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1115 | objt_server(conn->target)->ssl_ctx.reused_sess = SSL_get1_session(conn->xprt_ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1116 | } |
| 1117 | } |
| 1118 | |
| 1119 | /* The connection is now established at both layers, it's time to leave */ |
| 1120 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 1121 | return 1; |
| 1122 | |
| 1123 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1124 | /* Clear openssl global errors stack */ |
| 1125 | ERR_clear_error(); |
| 1126 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 1127 | /* free resumed session if exists */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 1128 | if (objt_server(conn->target) && objt_server(conn->target)->ssl_ctx.reused_sess) { |
| 1129 | SSL_SESSION_free(objt_server(conn->target)->ssl_ctx.reused_sess); |
| 1130 | objt_server(conn->target)->ssl_ctx.reused_sess = NULL; |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 1131 | } |
| 1132 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1133 | /* Fail on all other handshake errors */ |
| 1134 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1135 | if (!conn->err_code) |
| 1136 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1137 | return 0; |
| 1138 | } |
| 1139 | |
| 1140 | /* Receive up to <count> bytes from connection <conn>'s socket and store them |
| 1141 | * into buffer <buf>. The caller must ensure that <count> is always smaller |
| 1142 | * than the buffer's size. Only one call to recv() is performed, unless the |
| 1143 | * buffer wraps, in which case a second call may be performed. The connection's |
| 1144 | * flags are updated with whatever special event is detected (error, read0, |
| 1145 | * empty). The caller is responsible for taking care of those events and |
| 1146 | * avoiding the call if inappropriate. The function does not call the |
| 1147 | * connection's polling update function, so the caller is responsible for this. |
| 1148 | */ |
| 1149 | static int ssl_sock_to_buf(struct connection *conn, struct buffer *buf, int count) |
| 1150 | { |
| 1151 | int ret, done = 0; |
| 1152 | int try = count; |
| 1153 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1154 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1155 | goto out_error; |
| 1156 | |
| 1157 | if (conn->flags & CO_FL_HANDSHAKE) |
| 1158 | /* a handshake was requested */ |
| 1159 | return 0; |
| 1160 | |
| 1161 | /* compute the maximum block size we can read at once. */ |
| 1162 | if (buffer_empty(buf)) { |
| 1163 | /* let's realign the buffer to optimize I/O */ |
| 1164 | buf->p = buf->data; |
| 1165 | } |
| 1166 | else if (buf->data + buf->o < buf->p && |
| 1167 | buf->p + buf->i < buf->data + buf->size) { |
| 1168 | /* remaining space wraps at the end, with a moving limit */ |
| 1169 | if (try > buf->data + buf->size - (buf->p + buf->i)) |
| 1170 | try = buf->data + buf->size - (buf->p + buf->i); |
| 1171 | } |
| 1172 | |
| 1173 | /* read the largest possible block. For this, we perform only one call |
| 1174 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 1175 | * in which case we accept to do it once again. A new attempt is made on |
| 1176 | * EINTR too. |
| 1177 | */ |
| 1178 | while (try) { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1179 | ret = SSL_read(conn->xprt_ctx, bi_end(buf), try); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1180 | if (conn->flags & CO_FL_ERROR) { |
| 1181 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1182 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1183 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1184 | if (ret > 0) { |
| 1185 | buf->i += ret; |
| 1186 | done += ret; |
| 1187 | if (ret < try) |
| 1188 | break; |
| 1189 | count -= ret; |
| 1190 | try = count; |
| 1191 | } |
| 1192 | else if (ret == 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1193 | ret = SSL_get_error(conn->xprt_ctx, ret); |
| 1194 | if (ret != SSL_ERROR_ZERO_RETURN) { |
Emeric Brun | 1c64686 | 2012-12-14 12:33:41 +0100 | [diff] [blame] | 1195 | /* error on protocol or underlying transport */ |
| 1196 | if ((ret != SSL_ERROR_SYSCALL) |
| 1197 | || (errno && (errno != EAGAIN))) |
| 1198 | conn->flags |= CO_FL_ERROR; |
| 1199 | |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1200 | /* Clear openssl global errors stack */ |
| 1201 | ERR_clear_error(); |
| 1202 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1203 | goto read0; |
| 1204 | } |
| 1205 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1206 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1207 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 1208 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1209 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 1210 | __conn_sock_want_send(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1211 | break; |
| 1212 | } |
| 1213 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 1214 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 1215 | /* handshake is running, and it may need to re-enable read */ |
| 1216 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 1217 | __conn_sock_want_recv(conn); |
| 1218 | break; |
| 1219 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1220 | /* we need to poll for retry a read later */ |
| 1221 | __conn_data_poll_recv(conn); |
| 1222 | break; |
| 1223 | } |
| 1224 | /* otherwise it's a real error */ |
| 1225 | goto out_error; |
| 1226 | } |
| 1227 | } |
| 1228 | return done; |
| 1229 | |
| 1230 | read0: |
| 1231 | conn_sock_read0(conn); |
| 1232 | return done; |
| 1233 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1234 | /* Clear openssl global errors stack */ |
| 1235 | ERR_clear_error(); |
| 1236 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1237 | conn->flags |= CO_FL_ERROR; |
| 1238 | return done; |
| 1239 | } |
| 1240 | |
| 1241 | |
| 1242 | /* Send all pending bytes from buffer <buf> to connection <conn>'s socket. |
| 1243 | * <flags> may contain MSG_MORE to make the system hold on without sending |
| 1244 | * data too fast, but this flag is ignored at the moment. |
| 1245 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 1246 | * a second call may be performed. The connection's flags are updated with |
| 1247 | * whatever special event is detected (error, empty). The caller is responsible |
| 1248 | * for taking care of those events and avoiding the call if inappropriate. The |
| 1249 | * function does not call the connection's polling update function, so the caller |
| 1250 | * is responsible for this. |
| 1251 | */ |
| 1252 | static int ssl_sock_from_buf(struct connection *conn, struct buffer *buf, int flags) |
| 1253 | { |
| 1254 | int ret, try, done; |
| 1255 | |
| 1256 | done = 0; |
| 1257 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1258 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1259 | goto out_error; |
| 1260 | |
| 1261 | if (conn->flags & CO_FL_HANDSHAKE) |
| 1262 | /* a handshake was requested */ |
| 1263 | return 0; |
| 1264 | |
| 1265 | /* send the largest possible block. For this we perform only one call |
| 1266 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 1267 | * in which case we accept to do it once again. |
| 1268 | */ |
| 1269 | while (buf->o) { |
| 1270 | try = buf->o; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 1271 | |
| 1272 | if (global.tune.ssl_max_record && try > global.tune.ssl_max_record) |
| 1273 | try = global.tune.ssl_max_record; |
| 1274 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1275 | /* outgoing data may wrap at the end */ |
| 1276 | if (buf->data + try > buf->p) |
| 1277 | try = buf->data + try - buf->p; |
| 1278 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1279 | ret = SSL_write(conn->xprt_ctx, bo_ptr(buf), try); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1280 | if (conn->flags & CO_FL_ERROR) { |
| 1281 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1282 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1283 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1284 | if (ret > 0) { |
| 1285 | buf->o -= ret; |
| 1286 | done += ret; |
| 1287 | |
Willy Tarreau | 5fb3803 | 2012-12-16 19:39:09 +0100 | [diff] [blame] | 1288 | if (likely(buffer_empty(buf))) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1289 | /* optimize data alignment in the buffer */ |
| 1290 | buf->p = buf->data; |
| 1291 | |
| 1292 | /* if the system buffer is full, don't insist */ |
| 1293 | if (ret < try) |
| 1294 | break; |
| 1295 | } |
| 1296 | else { |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1297 | ret = SSL_get_error(conn->xprt_ctx, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1298 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 1299 | if (SSL_renegotiate_pending(conn->xprt_ctx)) { |
| 1300 | /* handshake is running, and it may need to re-enable write */ |
| 1301 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 1302 | __conn_sock_want_send(conn); |
| 1303 | break; |
| 1304 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1305 | /* we need to poll to retry a write later */ |
| 1306 | __conn_data_poll_send(conn); |
| 1307 | break; |
| 1308 | } |
| 1309 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 1310 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1311 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 1312 | __conn_sock_want_recv(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1313 | break; |
| 1314 | } |
| 1315 | goto out_error; |
| 1316 | } |
| 1317 | } |
| 1318 | return done; |
| 1319 | |
| 1320 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1321 | /* Clear openssl global errors stack */ |
| 1322 | ERR_clear_error(); |
| 1323 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1324 | conn->flags |= CO_FL_ERROR; |
| 1325 | return done; |
| 1326 | } |
| 1327 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1328 | static void ssl_sock_close(struct connection *conn) { |
| 1329 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1330 | if (conn->xprt_ctx) { |
| 1331 | SSL_free(conn->xprt_ctx); |
| 1332 | conn->xprt_ctx = NULL; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 1333 | sslconns--; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1334 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 1338 | * any case, flags the connection as reusable if no handshake was in progress. |
| 1339 | */ |
| 1340 | static void ssl_sock_shutw(struct connection *conn, int clean) |
| 1341 | { |
| 1342 | if (conn->flags & CO_FL_HANDSHAKE) |
| 1343 | return; |
| 1344 | /* no handshake was in progress, try a clean ssl shutdown */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 1345 | if (clean && (SSL_shutdown(conn->xprt_ctx) <= 0)) { |
| 1346 | /* Clear openssl global errors stack */ |
| 1347 | ERR_clear_error(); |
| 1348 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1349 | |
| 1350 | /* force flag on ssl to keep session in cache regardless shutdown result */ |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 1351 | SSL_set_shutdown(conn->xprt_ctx, SSL_SENT_SHUTDOWN); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 1352 | } |
| 1353 | |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 1354 | /* used for logging, may be changed for a sample fetch later */ |
| 1355 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 1356 | { |
| 1357 | if (!conn->xprt && !conn->xprt_ctx) |
| 1358 | return NULL; |
| 1359 | return SSL_get_cipher_name(conn->xprt_ctx); |
| 1360 | } |
| 1361 | |
| 1362 | /* used for logging, may be changed for a sample fetch later */ |
| 1363 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 1364 | { |
| 1365 | if (!conn->xprt && !conn->xprt_ctx) |
| 1366 | return NULL; |
| 1367 | return SSL_get_version(conn->xprt_ctx); |
| 1368 | } |
| 1369 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1370 | /* Extract a serial from a cert, and copy it to a chunk. |
| 1371 | * Returns 1 if serial is found and copied, 0 if no serial found and |
| 1372 | * -1 if output is not large enough. |
| 1373 | */ |
| 1374 | static int |
| 1375 | ssl_sock_get_serial(X509 *crt, struct chunk *out) |
| 1376 | { |
| 1377 | ASN1_INTEGER *serial; |
| 1378 | |
| 1379 | serial = X509_get_serialNumber(crt); |
| 1380 | if (!serial) |
| 1381 | return 0; |
| 1382 | |
| 1383 | if (out->size < serial->length) |
| 1384 | return -1; |
| 1385 | |
| 1386 | memcpy(out->str, serial->data, serial->length); |
| 1387 | out->len = serial->length; |
| 1388 | return 1; |
| 1389 | } |
| 1390 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1391 | |
| 1392 | /* Copy Date in ASN1_UTCTIME format in struct chunk out. |
| 1393 | * Returns 1 if serial is found and copied, 0 if no valid time found |
| 1394 | * and -1 if output is not large enough. |
| 1395 | */ |
| 1396 | static int |
| 1397 | ssl_sock_get_time(ASN1_TIME *tm, struct chunk *out) |
| 1398 | { |
| 1399 | if (tm->type == V_ASN1_GENERALIZEDTIME) { |
| 1400 | ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm; |
| 1401 | |
| 1402 | if (gentm->length < 12) |
| 1403 | return 0; |
| 1404 | if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30) |
| 1405 | return 0; |
| 1406 | if (out->size < gentm->length-2) |
| 1407 | return -1; |
| 1408 | |
| 1409 | memcpy(out->str, gentm->data+2, gentm->length-2); |
| 1410 | out->len = gentm->length-2; |
| 1411 | return 1; |
| 1412 | } |
| 1413 | else if (tm->type == V_ASN1_UTCTIME) { |
| 1414 | ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm; |
| 1415 | |
| 1416 | if (utctm->length < 10) |
| 1417 | return 0; |
| 1418 | if (utctm->data[0] >= 0x35) |
| 1419 | return 0; |
| 1420 | if (out->size < utctm->length) |
| 1421 | return -1; |
| 1422 | |
| 1423 | memcpy(out->str, utctm->data, utctm->length); |
| 1424 | out->len = utctm->length; |
| 1425 | return 1; |
| 1426 | } |
| 1427 | |
| 1428 | return 0; |
| 1429 | } |
| 1430 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1431 | /* Extract an entry from a X509_NAME and copy its value to an output chunk. |
| 1432 | * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough. |
| 1433 | */ |
| 1434 | static int |
| 1435 | ssl_sock_get_dn_entry(X509_NAME *a, const struct chunk *entry, int pos, struct chunk *out) |
| 1436 | { |
| 1437 | X509_NAME_ENTRY *ne; |
| 1438 | int i, j, n; |
| 1439 | int cur = 0; |
| 1440 | const char *s; |
| 1441 | char tmp[128]; |
| 1442 | |
| 1443 | out->len = 0; |
| 1444 | for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) { |
| 1445 | if (pos < 0) |
| 1446 | j = (sk_X509_NAME_ENTRY_num(a->entries)-1) - i; |
| 1447 | else |
| 1448 | j = i; |
| 1449 | |
| 1450 | ne = sk_X509_NAME_ENTRY_value(a->entries, j); |
| 1451 | n = OBJ_obj2nid(ne->object); |
| 1452 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
| 1453 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), ne->object); |
| 1454 | s = tmp; |
| 1455 | } |
| 1456 | |
| 1457 | if (chunk_strcasecmp(entry, s) != 0) |
| 1458 | continue; |
| 1459 | |
| 1460 | if (pos < 0) |
| 1461 | cur--; |
| 1462 | else |
| 1463 | cur++; |
| 1464 | |
| 1465 | if (cur != pos) |
| 1466 | continue; |
| 1467 | |
| 1468 | if (ne->value->length > out->size) |
| 1469 | return -1; |
| 1470 | |
| 1471 | memcpy(out->str, ne->value->data, ne->value->length); |
| 1472 | out->len = ne->value->length; |
| 1473 | return 1; |
| 1474 | } |
| 1475 | |
| 1476 | return 0; |
| 1477 | |
| 1478 | } |
| 1479 | |
| 1480 | /* Extract and format full DN from a X509_NAME and copy result into a chunk |
| 1481 | * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough. |
| 1482 | */ |
| 1483 | static int |
| 1484 | ssl_sock_get_dn_oneline(X509_NAME *a, struct chunk *out) |
| 1485 | { |
| 1486 | X509_NAME_ENTRY *ne; |
| 1487 | int i, n, ln; |
| 1488 | int l = 0; |
| 1489 | const char *s; |
| 1490 | char *p; |
| 1491 | char tmp[128]; |
| 1492 | |
| 1493 | out->len = 0; |
| 1494 | p = out->str; |
| 1495 | for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) { |
| 1496 | ne = sk_X509_NAME_ENTRY_value(a->entries, i); |
| 1497 | n = OBJ_obj2nid(ne->object); |
| 1498 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
| 1499 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), ne->object); |
| 1500 | s = tmp; |
| 1501 | } |
| 1502 | ln = strlen(s); |
| 1503 | |
| 1504 | l += 1 + ln + 1 + ne->value->length; |
| 1505 | if (l > out->size) |
| 1506 | return -1; |
| 1507 | out->len = l; |
| 1508 | |
| 1509 | *(p++)='/'; |
| 1510 | memcpy(p, s, ln); |
| 1511 | p += ln; |
| 1512 | *(p++)='='; |
| 1513 | memcpy(p, ne->value->data, ne->value->length); |
| 1514 | p += ne->value->length; |
| 1515 | } |
| 1516 | |
| 1517 | if (!out->len) |
| 1518 | return 0; |
| 1519 | |
| 1520 | return 1; |
| 1521 | } |
| 1522 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1523 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 1524 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1525 | /* boolean, returns true if client cert was present */ |
| 1526 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 1527 | smp_fetch_ssl_fc_has_crt(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1528 | const struct arg *args, struct sample *smp) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1529 | { |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1530 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1531 | return 0; |
| 1532 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1533 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1534 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1535 | return 0; |
| 1536 | } |
| 1537 | |
| 1538 | smp->flags = 0; |
| 1539 | smp->type = SMP_T_BOOL; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1540 | 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] | 1541 | |
| 1542 | return 1; |
| 1543 | } |
| 1544 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1545 | /* bin, returns serial in a binary chunk */ |
| 1546 | static int |
| 1547 | smp_fetch_ssl_c_serial(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1548 | const struct arg *args, struct sample *smp) |
| 1549 | { |
| 1550 | X509 *crt = NULL; |
| 1551 | int ret = 0; |
| 1552 | struct chunk *smp_trash; |
| 1553 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1554 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1555 | return 0; |
| 1556 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1557 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1558 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
| 1562 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1563 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1564 | if (!crt) |
| 1565 | goto out; |
| 1566 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1567 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1568 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 1569 | goto out; |
| 1570 | |
| 1571 | smp->data.str = *smp_trash; |
| 1572 | smp->type = SMP_T_BIN; |
| 1573 | ret = 1; |
| 1574 | out: |
| 1575 | if (crt) |
| 1576 | X509_free(crt); |
| 1577 | return ret; |
| 1578 | } |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1579 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1580 | /*str, returns notafter date in ASN1_UTCTIME format */ |
| 1581 | static int |
| 1582 | smp_fetch_ssl_c_notafter(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1583 | const struct arg *args, struct sample *smp) |
| 1584 | { |
| 1585 | X509 *crt = NULL; |
| 1586 | int ret = 0; |
| 1587 | struct chunk *smp_trash; |
| 1588 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1589 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1590 | return 0; |
| 1591 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1592 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1593 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1594 | return 0; |
| 1595 | } |
| 1596 | |
| 1597 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1598 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1599 | if (!crt) |
| 1600 | goto out; |
| 1601 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1602 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1603 | if (ssl_sock_get_time(X509_get_notAfter(crt), smp_trash) <= 0) |
| 1604 | goto out; |
| 1605 | |
| 1606 | smp->data.str = *smp_trash; |
| 1607 | smp->type = SMP_T_STR; |
| 1608 | ret = 1; |
| 1609 | out: |
| 1610 | if (crt) |
| 1611 | X509_free(crt); |
| 1612 | return ret; |
| 1613 | } |
| 1614 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1615 | /* str, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. */ |
| 1616 | static int |
| 1617 | smp_fetch_ssl_c_i_dn(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1618 | const struct arg *args, struct sample *smp) |
| 1619 | { |
| 1620 | X509 *crt = NULL; |
| 1621 | X509_NAME *name; |
| 1622 | int ret = 0; |
| 1623 | struct chunk *smp_trash; |
| 1624 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1625 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1626 | return 0; |
| 1627 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1628 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1629 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
| 1633 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1634 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1635 | if (!crt) |
| 1636 | goto out; |
| 1637 | |
| 1638 | name = X509_get_issuer_name(crt); |
| 1639 | if (!name) |
| 1640 | goto out; |
| 1641 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1642 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1643 | if (args && args[0].type == ARGT_STR) { |
| 1644 | int pos = 1; |
| 1645 | |
| 1646 | if (args[1].type == ARGT_SINT) |
| 1647 | pos = args[1].data.sint; |
| 1648 | else if (args[1].type == ARGT_UINT) |
| 1649 | pos =(int)args[1].data.uint; |
| 1650 | |
| 1651 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 1652 | goto out; |
| 1653 | } |
| 1654 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 1655 | goto out; |
| 1656 | |
| 1657 | smp->type = SMP_T_STR; |
| 1658 | smp->data.str = *smp_trash; |
| 1659 | ret = 1; |
| 1660 | out: |
| 1661 | if (crt) |
| 1662 | X509_free(crt); |
| 1663 | return ret; |
| 1664 | } |
| 1665 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1666 | /*str, returns notbefore date in ASN1_UTCTIME format */ |
| 1667 | static int |
| 1668 | smp_fetch_ssl_c_notbefore(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1669 | const struct arg *args, struct sample *smp) |
| 1670 | { |
| 1671 | X509 *crt = NULL; |
| 1672 | int ret = 0; |
| 1673 | struct chunk *smp_trash; |
| 1674 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1675 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1676 | return 0; |
| 1677 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1678 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1679 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1680 | return 0; |
| 1681 | } |
| 1682 | |
| 1683 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1684 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1685 | if (!crt) |
| 1686 | goto out; |
| 1687 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1688 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1689 | if (ssl_sock_get_time(X509_get_notBefore(crt), smp_trash) <= 0) |
| 1690 | goto out; |
| 1691 | |
| 1692 | smp->data.str = *smp_trash; |
| 1693 | smp->type = SMP_T_STR; |
| 1694 | ret = 1; |
| 1695 | out: |
| 1696 | if (crt) |
| 1697 | X509_free(crt); |
| 1698 | return ret; |
| 1699 | } |
| 1700 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1701 | /* str, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. */ |
| 1702 | static int |
| 1703 | smp_fetch_ssl_c_s_dn(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1704 | const struct arg *args, struct sample *smp) |
| 1705 | { |
| 1706 | X509 *crt = NULL; |
| 1707 | X509_NAME *name; |
| 1708 | int ret = 0; |
| 1709 | struct chunk *smp_trash; |
| 1710 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1711 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1712 | return 0; |
| 1713 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1714 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1715 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1716 | return 0; |
| 1717 | } |
| 1718 | |
| 1719 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1720 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1721 | if (!crt) |
| 1722 | goto out; |
| 1723 | |
| 1724 | name = X509_get_subject_name(crt); |
| 1725 | if (!name) |
| 1726 | goto out; |
| 1727 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1728 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 1729 | if (args && args[0].type == ARGT_STR) { |
| 1730 | int pos = 1; |
| 1731 | |
| 1732 | if (args[1].type == ARGT_SINT) |
| 1733 | pos = args[1].data.sint; |
| 1734 | else if (args[1].type == ARGT_UINT) |
| 1735 | pos =(int)args[1].data.uint; |
| 1736 | |
| 1737 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 1738 | goto out; |
| 1739 | } |
| 1740 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 1741 | goto out; |
| 1742 | |
| 1743 | smp->type = SMP_T_STR; |
| 1744 | smp->data.str = *smp_trash; |
| 1745 | ret = 1; |
| 1746 | out: |
| 1747 | if (crt) |
| 1748 | X509_free(crt); |
| 1749 | return ret; |
| 1750 | } |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 1751 | |
| 1752 | /* integer, returns true if current session use a client certificate */ |
| 1753 | static int |
| 1754 | smp_fetch_ssl_c_used(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1755 | const struct arg *args, struct sample *smp) |
| 1756 | { |
| 1757 | X509 *crt; |
| 1758 | |
| 1759 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
| 1760 | return 0; |
| 1761 | |
| 1762 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
| 1763 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1764 | return 0; |
| 1765 | } |
| 1766 | |
| 1767 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
| 1768 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
| 1769 | if (crt) { |
| 1770 | X509_free(crt); |
| 1771 | } |
| 1772 | |
| 1773 | smp->type = SMP_T_BOOL; |
| 1774 | smp->data.uint = (crt != NULL); |
| 1775 | return 1; |
| 1776 | } |
| 1777 | |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 1778 | /* integer, returns the client certificate version */ |
| 1779 | static int |
| 1780 | smp_fetch_ssl_c_version(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1781 | const struct arg *args, struct sample *smp) |
| 1782 | { |
| 1783 | X509 *crt; |
| 1784 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1785 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 1786 | return 0; |
| 1787 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1788 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 1789 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1790 | return 0; |
| 1791 | } |
| 1792 | |
| 1793 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1794 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 1795 | if (!crt) |
| 1796 | return 0; |
| 1797 | |
| 1798 | smp->data.uint = (unsigned int)(1 + X509_get_version(crt)); |
| 1799 | X509_free(crt); |
| 1800 | smp->type = SMP_T_UINT; |
| 1801 | |
| 1802 | return 1; |
| 1803 | } |
| 1804 | |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 1805 | /* str, returns the client certificate sig alg */ |
| 1806 | static int |
| 1807 | smp_fetch_ssl_c_sig_alg(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1808 | const struct arg *args, struct sample *smp) |
| 1809 | { |
| 1810 | X509 *crt; |
| 1811 | int nid; |
| 1812 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1813 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 1814 | return 0; |
| 1815 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1816 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 1817 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1818 | return 0; |
| 1819 | } |
| 1820 | |
| 1821 | /* SSL_get_peer_certificate increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1822 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 1823 | if (!crt) |
| 1824 | return 0; |
| 1825 | |
| 1826 | nid = OBJ_obj2nid((ASN1_OBJECT *)(crt->cert_info->signature->algorithm)); |
| 1827 | |
| 1828 | smp->data.str.str = (char *)OBJ_nid2sn(nid); |
| 1829 | if (!smp->data.str.str) |
| 1830 | return 0; |
| 1831 | |
| 1832 | smp->type = SMP_T_CSTR; |
| 1833 | smp->data.str.len = strlen(smp->data.str.str); |
| 1834 | X509_free(crt); |
| 1835 | |
| 1836 | return 1; |
| 1837 | } |
| 1838 | |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 1839 | /* str, returns the client certificate key alg */ |
| 1840 | static int |
| 1841 | smp_fetch_ssl_c_key_alg(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1842 | const struct arg *args, struct sample *smp) |
| 1843 | { |
| 1844 | X509 *crt; |
| 1845 | int nid; |
| 1846 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1847 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 1848 | return 0; |
| 1849 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1850 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 1851 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1852 | return 0; |
| 1853 | } |
| 1854 | |
| 1855 | /* SSL_get_peer_certificate increase X509 * ref count */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1856 | crt = SSL_get_peer_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 1857 | if (!crt) |
| 1858 | return 0; |
| 1859 | |
| 1860 | nid = OBJ_obj2nid((ASN1_OBJECT *)(crt->cert_info->key->algor->algorithm)); |
| 1861 | |
| 1862 | smp->data.str.str = (char *)OBJ_nid2sn(nid); |
| 1863 | if (!smp->data.str.str) |
| 1864 | return 0; |
| 1865 | |
| 1866 | smp->type = SMP_T_CSTR; |
| 1867 | smp->data.str.len = strlen(smp->data.str.str); |
| 1868 | X509_free(crt); |
| 1869 | |
| 1870 | return 1; |
| 1871 | } |
| 1872 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 1873 | /* boolean, returns true if front conn. transport layer is SSL */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1874 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 1875 | smp_fetch_ssl_fc(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1876 | const struct arg *args, struct sample *smp) |
| 1877 | { |
| 1878 | smp->type = SMP_T_BOOL; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1879 | smp->data.uint = (l4->si[0].conn->xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1880 | return 1; |
| 1881 | } |
| 1882 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 1883 | /* boolean, returns true if client present a SNI */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1884 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 1885 | smp_fetch_ssl_fc_has_sni(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1886 | const struct arg *args, struct sample *smp) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 1887 | { |
| 1888 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 1889 | smp->type = SMP_T_BOOL; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1890 | smp->data.uint = (l4->si[0].conn->xprt == &ssl_sock) && |
| 1891 | l4->si[0].conn->xprt_ctx && |
| 1892 | 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] | 1893 | return 1; |
| 1894 | #else |
| 1895 | return 0; |
| 1896 | #endif |
| 1897 | } |
| 1898 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1899 | /* bin, returns serial in a binary chunk */ |
| 1900 | static int |
| 1901 | smp_fetch_ssl_f_serial(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1902 | const struct arg *args, struct sample *smp) |
| 1903 | { |
| 1904 | X509 *crt = NULL; |
| 1905 | int ret = 0; |
| 1906 | struct chunk *smp_trash; |
| 1907 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1908 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1909 | return 0; |
| 1910 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1911 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1912 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1913 | return 0; |
| 1914 | } |
| 1915 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1916 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1917 | if (!crt) |
| 1918 | goto out; |
| 1919 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1920 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1921 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 1922 | goto out; |
| 1923 | |
| 1924 | smp->data.str = *smp_trash; |
| 1925 | smp->type = SMP_T_BIN; |
| 1926 | ret = 1; |
| 1927 | out: |
| 1928 | return ret; |
| 1929 | } |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1930 | /*str, returns notafter date in ASN1_UTCTIME format */ |
| 1931 | static int |
| 1932 | smp_fetch_ssl_f_notafter(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1933 | const struct arg *args, struct sample *smp) |
| 1934 | { |
| 1935 | X509 *crt = NULL; |
| 1936 | int ret = 0; |
| 1937 | struct chunk *smp_trash; |
| 1938 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1939 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1940 | return 0; |
| 1941 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1942 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1943 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1944 | return 0; |
| 1945 | } |
| 1946 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1947 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1948 | if (!crt) |
| 1949 | goto out; |
| 1950 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1951 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1952 | if (ssl_sock_get_time(X509_get_notAfter(crt), smp_trash) <= 0) |
| 1953 | goto out; |
| 1954 | |
| 1955 | smp->data.str = *smp_trash; |
| 1956 | smp->type = SMP_T_STR; |
| 1957 | ret = 1; |
| 1958 | out: |
| 1959 | return ret; |
| 1960 | } |
| 1961 | |
| 1962 | /*str, returns notbefore date in ASN1_UTCTIME format */ |
| 1963 | static int |
| 1964 | smp_fetch_ssl_f_notbefore(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1965 | const struct arg *args, struct sample *smp) |
| 1966 | { |
| 1967 | X509 *crt = NULL; |
| 1968 | int ret = 0; |
| 1969 | struct chunk *smp_trash; |
| 1970 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1971 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1972 | return 0; |
| 1973 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1974 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1975 | smp->flags |= SMP_F_MAY_CHANGE; |
| 1976 | return 0; |
| 1977 | } |
| 1978 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 1979 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1980 | if (!crt) |
| 1981 | goto out; |
| 1982 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 1983 | smp_trash = get_trash_chunk(); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 1984 | if (ssl_sock_get_time(X509_get_notBefore(crt), smp_trash) <= 0) |
| 1985 | goto out; |
| 1986 | |
| 1987 | smp->data.str = *smp_trash; |
| 1988 | smp->type = SMP_T_STR; |
| 1989 | ret = 1; |
| 1990 | out: |
| 1991 | return ret; |
| 1992 | } |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 1993 | |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 1994 | /* integer, returns the frontend certificate version */ |
| 1995 | static int |
| 1996 | smp_fetch_ssl_f_version(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 1997 | const struct arg *args, struct sample *smp) |
| 1998 | { |
| 1999 | X509 *crt; |
| 2000 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2001 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 2002 | return 0; |
| 2003 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2004 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 2005 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2006 | return 0; |
| 2007 | } |
| 2008 | |
| 2009 | /* SSL_get_certificate returns a ptr on an SSL * internal sub struct */ |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2010 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 2011 | if (!crt) |
| 2012 | return 0; |
| 2013 | |
| 2014 | smp->data.uint = (unsigned int)(1 + X509_get_version(crt)); |
| 2015 | smp->type = SMP_T_UINT; |
| 2016 | |
| 2017 | return 1; |
| 2018 | } |
| 2019 | |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 2020 | /* str, returns the client certificate sig alg */ |
| 2021 | static int |
| 2022 | smp_fetch_ssl_f_sig_alg(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2023 | const struct arg *args, struct sample *smp) |
| 2024 | { |
| 2025 | X509 *crt; |
| 2026 | int nid; |
| 2027 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2028 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 2029 | return 0; |
| 2030 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2031 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 2032 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2033 | return 0; |
| 2034 | } |
| 2035 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2036 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 2037 | if (!crt) |
| 2038 | return 0; |
| 2039 | |
| 2040 | nid = OBJ_obj2nid((ASN1_OBJECT *)(crt->cert_info->signature->algorithm)); |
| 2041 | |
| 2042 | smp->data.str.str = (char *)OBJ_nid2sn(nid); |
| 2043 | if (!smp->data.str.str) |
| 2044 | return 0; |
| 2045 | |
| 2046 | smp->type = SMP_T_CSTR; |
| 2047 | smp->data.str.len = strlen(smp->data.str.str); |
| 2048 | |
| 2049 | return 1; |
| 2050 | } |
| 2051 | |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 2052 | /* str, returns the client certificate key alg */ |
| 2053 | static int |
| 2054 | smp_fetch_ssl_f_key_alg(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2055 | const struct arg *args, struct sample *smp) |
| 2056 | { |
| 2057 | X509 *crt; |
| 2058 | int nid; |
| 2059 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2060 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 2061 | return 0; |
| 2062 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2063 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 2064 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2065 | return 0; |
| 2066 | } |
| 2067 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2068 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 2069 | if (!crt) |
| 2070 | return 0; |
| 2071 | |
| 2072 | nid = OBJ_obj2nid((ASN1_OBJECT *)(crt->cert_info->key->algor->algorithm)); |
| 2073 | |
| 2074 | smp->data.str.str = (char *)OBJ_nid2sn(nid); |
| 2075 | if (!smp->data.str.str) |
| 2076 | return 0; |
| 2077 | |
| 2078 | smp->type = SMP_T_CSTR; |
| 2079 | smp->data.str.len = strlen(smp->data.str.str); |
| 2080 | |
| 2081 | return 1; |
| 2082 | } |
| 2083 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2084 | /* str, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. */ |
| 2085 | static int |
| 2086 | smp_fetch_ssl_f_i_dn(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2087 | const struct arg *args, struct sample *smp) |
| 2088 | { |
| 2089 | X509 *crt = NULL; |
| 2090 | X509_NAME *name; |
| 2091 | int ret = 0; |
| 2092 | struct chunk *smp_trash; |
| 2093 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2094 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2095 | return 0; |
| 2096 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2097 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2098 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2099 | return 0; |
| 2100 | } |
| 2101 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2102 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2103 | if (!crt) |
| 2104 | goto out; |
| 2105 | |
| 2106 | name = X509_get_issuer_name(crt); |
| 2107 | if (!name) |
| 2108 | goto out; |
| 2109 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 2110 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2111 | if (args && args[0].type == ARGT_STR) { |
| 2112 | int pos = 1; |
| 2113 | |
| 2114 | if (args[1].type == ARGT_SINT) |
| 2115 | pos = args[1].data.sint; |
| 2116 | else if (args[1].type == ARGT_UINT) |
| 2117 | pos =(int)args[1].data.uint; |
| 2118 | |
| 2119 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 2120 | goto out; |
| 2121 | } |
| 2122 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 2123 | goto out; |
| 2124 | |
| 2125 | smp->type = SMP_T_STR; |
| 2126 | smp->data.str = *smp_trash; |
| 2127 | ret = 1; |
| 2128 | out: |
| 2129 | return ret; |
| 2130 | } |
| 2131 | |
| 2132 | /* str, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. */ |
| 2133 | static int |
| 2134 | smp_fetch_ssl_f_s_dn(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2135 | const struct arg *args, struct sample *smp) |
| 2136 | { |
| 2137 | X509 *crt = NULL; |
| 2138 | X509_NAME *name; |
| 2139 | int ret = 0; |
| 2140 | struct chunk *smp_trash; |
| 2141 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2142 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2143 | return 0; |
| 2144 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2145 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2146 | smp->flags |= SMP_F_MAY_CHANGE; |
| 2147 | return 0; |
| 2148 | } |
| 2149 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2150 | crt = SSL_get_certificate(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2151 | if (!crt) |
| 2152 | goto out; |
| 2153 | |
| 2154 | name = X509_get_subject_name(crt); |
| 2155 | if (!name) |
| 2156 | goto out; |
| 2157 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 2158 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 2159 | if (args && args[0].type == ARGT_STR) { |
| 2160 | int pos = 1; |
| 2161 | |
| 2162 | if (args[1].type == ARGT_SINT) |
| 2163 | pos = args[1].data.sint; |
| 2164 | else if (args[1].type == ARGT_UINT) |
| 2165 | pos =(int)args[1].data.uint; |
| 2166 | |
| 2167 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 2168 | goto out; |
| 2169 | } |
| 2170 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 2171 | goto out; |
| 2172 | |
| 2173 | smp->type = SMP_T_STR; |
| 2174 | smp->data.str = *smp_trash; |
| 2175 | ret = 1; |
| 2176 | out: |
| 2177 | return ret; |
| 2178 | } |
| 2179 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2180 | static int |
| 2181 | smp_fetch_ssl_fc_cipher(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2182 | const struct arg *args, struct sample *smp) |
| 2183 | { |
| 2184 | smp->flags = 0; |
| 2185 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2186 | if (!l4 || !l4->si[0].conn->xprt_ctx || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2187 | return 0; |
| 2188 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2189 | smp->data.str.str = (char *)SSL_get_cipher_name(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2190 | if (!smp->data.str.str) |
| 2191 | return 0; |
| 2192 | |
| 2193 | smp->type = SMP_T_CSTR; |
| 2194 | smp->data.str.len = strlen(smp->data.str.str); |
| 2195 | |
| 2196 | return 1; |
| 2197 | } |
| 2198 | |
| 2199 | static int |
| 2200 | smp_fetch_ssl_fc_alg_keysize(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2201 | const struct arg *args, struct sample *smp) |
| 2202 | { |
| 2203 | smp->flags = 0; |
| 2204 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2205 | if (!l4 || !l4->si[0].conn->xprt_ctx || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2206 | return 0; |
| 2207 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2208 | if (!SSL_get_cipher_bits(l4->si[0].conn->xprt_ctx, (int *)&smp->data.uint)) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2209 | return 0; |
| 2210 | |
| 2211 | smp->type = SMP_T_UINT; |
| 2212 | |
| 2213 | return 1; |
| 2214 | } |
| 2215 | |
| 2216 | static int |
| 2217 | smp_fetch_ssl_fc_use_keysize(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2218 | const struct arg *args, struct sample *smp) |
| 2219 | { |
| 2220 | smp->flags = 0; |
| 2221 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2222 | if (!l4 || !l4->si[0].conn->xprt_ctx || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2223 | return 0; |
| 2224 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2225 | smp->data.uint = (unsigned int)SSL_get_cipher_bits(l4->si[0].conn->xprt_ctx, NULL); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2226 | if (!smp->data.uint) |
| 2227 | return 0; |
| 2228 | |
| 2229 | smp->type = SMP_T_UINT; |
| 2230 | |
| 2231 | return 1; |
| 2232 | } |
| 2233 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2234 | #ifdef OPENSSL_NPN_NEGOTIATED |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 2235 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2236 | smp_fetch_ssl_fc_npn(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2237 | const struct arg *args, struct sample *smp) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2238 | { |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2239 | smp->flags = 0; |
| 2240 | smp->type = SMP_T_CSTR; |
| 2241 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2242 | if (!l4 || !l4->si[0].conn->xprt_ctx || l4->si[0].conn->xprt != &ssl_sock) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2243 | return 0; |
| 2244 | |
| 2245 | smp->data.str.str = NULL; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2246 | SSL_get0_next_proto_negotiated(l4->si[0].conn->xprt_ctx, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2247 | (const unsigned char **)&smp->data.str.str, (unsigned *)&smp->data.str.len); |
| 2248 | |
| 2249 | if (!smp->data.str.str) |
| 2250 | return 0; |
| 2251 | |
| 2252 | return 1; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2253 | } |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2254 | #endif |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2255 | |
| 2256 | static int |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2257 | smp_fetch_ssl_fc_protocol(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2258 | const struct arg *args, struct sample *smp) |
| 2259 | { |
| 2260 | smp->flags = 0; |
| 2261 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2262 | if (!l4 || !l4->si[0].conn->xprt_ctx || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2263 | return 0; |
| 2264 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2265 | smp->data.str.str = (char *)SSL_get_version(l4->si[0].conn->xprt_ctx); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 2266 | if (!smp->data.str.str) |
| 2267 | return 0; |
| 2268 | |
| 2269 | smp->type = SMP_T_CSTR; |
| 2270 | smp->data.str.len = strlen(smp->data.str.str); |
| 2271 | |
| 2272 | return 1; |
| 2273 | } |
| 2274 | |
| 2275 | static int |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 2276 | smp_fetch_ssl_fc_session_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2277 | const struct arg *args, struct sample *smp) |
| 2278 | { |
| 2279 | #if OPENSSL_VERSION_NUMBER > 0x0090800fL |
| 2280 | SSL_SESSION *sess; |
| 2281 | |
| 2282 | smp->flags = 0; |
| 2283 | smp->type = SMP_T_CBIN; |
| 2284 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2285 | if (!l4 || !l4->si[0].conn->xprt_ctx || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 2286 | return 0; |
| 2287 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2288 | sess = SSL_get_session(l4->si[0].conn->xprt_ctx); |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 2289 | if (!sess) |
| 2290 | return 0; |
| 2291 | |
| 2292 | smp->data.str.str = (char *)SSL_SESSION_get_id(sess, (unsigned int *)&smp->data.str.len); |
| 2293 | if (!smp->data.str.str || !&smp->data.str.len) |
| 2294 | return 0; |
| 2295 | |
| 2296 | return 1; |
| 2297 | #else |
| 2298 | return 0; |
| 2299 | #endif |
| 2300 | } |
| 2301 | |
| 2302 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2303 | smp_fetch_ssl_fc_sni(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2304 | const struct arg *args, struct sample *smp) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 2305 | { |
| 2306 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 2307 | smp->flags = 0; |
| 2308 | smp->type = SMP_T_CSTR; |
| 2309 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2310 | 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] | 2311 | return 0; |
| 2312 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2313 | 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] | 2314 | if (!smp->data.str.str) |
| 2315 | return 0; |
| 2316 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 2317 | smp->data.str.len = strlen(smp->data.str.str); |
| 2318 | return 1; |
| 2319 | #else |
| 2320 | return 0; |
| 2321 | #endif |
| 2322 | } |
| 2323 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2324 | /* integer, returns the first verify error in CA chain of client certificate chain. */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2325 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2326 | smp_fetch_ssl_c_ca_err(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2327 | const struct arg *args, struct sample *smp) |
| 2328 | { |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2329 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2330 | return 0; |
| 2331 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2332 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2333 | smp->flags = SMP_F_MAY_CHANGE; |
| 2334 | return 0; |
| 2335 | } |
| 2336 | |
| 2337 | smp->type = SMP_T_UINT; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2338 | 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] | 2339 | smp->flags = 0; |
| 2340 | |
| 2341 | return 1; |
| 2342 | } |
| 2343 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2344 | /* integer, returns the depth of the first verify error in CA chain of client certificate chain. */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2345 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2346 | smp_fetch_ssl_c_ca_err_depth(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2347 | const struct arg *args, struct sample *smp) |
| 2348 | { |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2349 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2350 | return 0; |
| 2351 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2352 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2353 | smp->flags = SMP_F_MAY_CHANGE; |
| 2354 | return 0; |
| 2355 | } |
| 2356 | |
| 2357 | smp->type = SMP_T_UINT; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2358 | 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] | 2359 | smp->flags = 0; |
| 2360 | |
| 2361 | return 1; |
| 2362 | } |
| 2363 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2364 | /* integer, returns the first verify error on client certificate */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2365 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2366 | smp_fetch_ssl_c_err(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2367 | const struct arg *args, struct sample *smp) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2368 | { |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2369 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2370 | return 0; |
| 2371 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2372 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 2373 | smp->flags = SMP_F_MAY_CHANGE; |
| 2374 | return 0; |
| 2375 | } |
| 2376 | |
| 2377 | smp->type = SMP_T_UINT; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2378 | 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] | 2379 | smp->flags = 0; |
| 2380 | |
| 2381 | return 1; |
| 2382 | } |
| 2383 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2384 | /* integer, returns the verify result on client cert */ |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 2385 | static int |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 2386 | smp_fetch_ssl_c_verify(struct proxy *px, struct session *l4, void *l7, unsigned int opt, |
| 2387 | const struct arg *args, struct sample *smp) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 2388 | { |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2389 | if (!l4 || l4->si[0].conn->xprt != &ssl_sock) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 2390 | return 0; |
| 2391 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2392 | if (!(l4->si[0].conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 2393 | smp->flags = SMP_F_MAY_CHANGE; |
| 2394 | return 0; |
| 2395 | } |
| 2396 | |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2397 | if (!l4->si[0].conn->xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 2398 | return 0; |
| 2399 | |
| 2400 | smp->type = SMP_T_UINT; |
Willy Tarreau | f2943dc | 2012-10-26 20:10:28 +0200 | [diff] [blame] | 2401 | 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] | 2402 | smp->flags = 0; |
| 2403 | |
| 2404 | return 1; |
| 2405 | } |
| 2406 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2407 | /* parse the "ca-file" bind keyword */ |
| 2408 | 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] | 2409 | { |
| 2410 | if (!*args[cur_arg + 1]) { |
| 2411 | if (err) |
| 2412 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 2413 | return ERR_ALERT | ERR_FATAL; |
| 2414 | } |
| 2415 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2416 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 2417 | memprintf(&conf->ca_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 2418 | else |
| 2419 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 2420 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2421 | return 0; |
| 2422 | } |
| 2423 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2424 | /* parse the "ciphers" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2425 | 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] | 2426 | { |
| 2427 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 2428 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2429 | return ERR_ALERT | ERR_FATAL; |
| 2430 | } |
| 2431 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 2432 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2433 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2434 | return 0; |
| 2435 | } |
| 2436 | |
| 2437 | /* parse the "crt" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2438 | 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] | 2439 | { |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 2440 | char path[PATH_MAX]; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2441 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 2442 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2443 | return ERR_ALERT | ERR_FATAL; |
| 2444 | } |
| 2445 | |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 2446 | if ((*args[cur_arg + 1] != '/' ) && global.crt_base) { |
| 2447 | if ((strlen(global.crt_base) + 1 + strlen(args[cur_arg + 1]) + 1) > PATH_MAX) { |
| 2448 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 2449 | return ERR_ALERT | ERR_FATAL; |
| 2450 | } |
| 2451 | sprintf(path, "%s/%s", global.crt_base, args[cur_arg + 1]); |
| 2452 | if (ssl_sock_load_cert(path, conf, px, err) > 0) |
| 2453 | return ERR_ALERT | ERR_FATAL; |
| 2454 | |
| 2455 | return 0; |
| 2456 | } |
| 2457 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2458 | 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] | 2459 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2460 | |
| 2461 | return 0; |
| 2462 | } |
| 2463 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2464 | /* parse the "crt-list" bind keyword */ |
| 2465 | static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2466 | { |
| 2467 | if (!*args[cur_arg + 1]) { |
| 2468 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
| 2469 | return ERR_ALERT | ERR_FATAL; |
| 2470 | } |
| 2471 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2472 | if (ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err) > 0) { |
| 2473 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2474 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 2475 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2476 | |
| 2477 | return 0; |
| 2478 | } |
| 2479 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 2480 | /* parse the "crl-file" bind keyword */ |
| 2481 | 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] | 2482 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 2483 | #ifndef X509_V_FLAG_CRL_CHECK |
| 2484 | if (err) |
| 2485 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 2486 | return ERR_ALERT | ERR_FATAL; |
| 2487 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2488 | if (!*args[cur_arg + 1]) { |
| 2489 | if (err) |
| 2490 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 2491 | return ERR_ALERT | ERR_FATAL; |
| 2492 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2493 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2494 | if ((*args[cur_arg + 1] != '/') && global.ca_base) |
| 2495 | memprintf(&conf->crl_file, "%s/%s", global.ca_base, args[cur_arg + 1]); |
| 2496 | else |
| 2497 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 2498 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2499 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 2500 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2501 | } |
| 2502 | |
| 2503 | /* parse the "ecdhe" bind keyword keywords */ |
| 2504 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2505 | { |
| 2506 | #if OPENSSL_VERSION_NUMBER < 0x0090800fL |
| 2507 | if (err) |
| 2508 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 2509 | return ERR_ALERT | ERR_FATAL; |
| 2510 | #elif defined(OPENSSL_NO_ECDH) |
| 2511 | if (err) |
| 2512 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 2513 | return ERR_ALERT | ERR_FATAL; |
| 2514 | #else |
| 2515 | if (!*args[cur_arg + 1]) { |
| 2516 | if (err) |
| 2517 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 2518 | return ERR_ALERT | ERR_FATAL; |
| 2519 | } |
| 2520 | |
| 2521 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2522 | |
| 2523 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 2524 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2525 | } |
| 2526 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 2527 | /* parse the "crt_ignerr" and "ca_ignerr" bind keywords */ |
| 2528 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2529 | { |
| 2530 | int code; |
| 2531 | char *p = args[cur_arg + 1]; |
| 2532 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 2533 | |
| 2534 | if (!*p) { |
| 2535 | if (err) |
| 2536 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 2537 | return ERR_ALERT | ERR_FATAL; |
| 2538 | } |
| 2539 | |
| 2540 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 2541 | ignerr = &conf->ca_ignerr; |
| 2542 | |
| 2543 | if (strcmp(p, "all") == 0) { |
| 2544 | *ignerr = ~0ULL; |
| 2545 | return 0; |
| 2546 | } |
| 2547 | |
| 2548 | while (p) { |
| 2549 | code = atoi(p); |
| 2550 | if ((code <= 0) || (code > 63)) { |
| 2551 | if (err) |
| 2552 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 2553 | args[cur_arg], code, args[cur_arg + 1]); |
| 2554 | return ERR_ALERT | ERR_FATAL; |
| 2555 | } |
| 2556 | *ignerr |= 1ULL << code; |
| 2557 | p = strchr(p, ','); |
| 2558 | if (p) |
| 2559 | p++; |
| 2560 | } |
| 2561 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 2562 | return 0; |
| 2563 | } |
| 2564 | |
| 2565 | /* parse the "force-sslv3" bind keyword */ |
| 2566 | static int bind_parse_force_sslv3(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2567 | { |
| 2568 | conf->ssl_options |= BC_SSL_O_USE_SSLV3; |
| 2569 | return 0; |
| 2570 | } |
| 2571 | |
| 2572 | /* parse the "force-tlsv10" bind keyword */ |
| 2573 | static int bind_parse_force_tlsv10(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2574 | { |
| 2575 | conf->ssl_options |= BC_SSL_O_USE_TLSV10; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 2576 | return 0; |
| 2577 | } |
| 2578 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 2579 | /* parse the "force-tlsv11" bind keyword */ |
| 2580 | static int bind_parse_force_tlsv11(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2581 | { |
| 2582 | #if SSL_OP_NO_TLSv1_1 |
| 2583 | conf->ssl_options |= BC_SSL_O_USE_TLSV11; |
| 2584 | return 0; |
| 2585 | #else |
| 2586 | if (err) |
| 2587 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[cur_arg]); |
| 2588 | return ERR_ALERT | ERR_FATAL; |
| 2589 | #endif |
| 2590 | } |
| 2591 | |
| 2592 | /* parse the "force-tlsv12" bind keyword */ |
| 2593 | static int bind_parse_force_tlsv12(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2594 | { |
| 2595 | #if SSL_OP_NO_TLSv1_2 |
| 2596 | conf->ssl_options |= BC_SSL_O_USE_TLSV12; |
| 2597 | return 0; |
| 2598 | #else |
| 2599 | if (err) |
| 2600 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[cur_arg]); |
| 2601 | return ERR_ALERT | ERR_FATAL; |
| 2602 | #endif |
| 2603 | } |
| 2604 | |
| 2605 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 2606 | /* parse the "no-tls-tickets" bind keyword */ |
| 2607 | static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2608 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2609 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 2610 | return 0; |
| 2611 | } |
| 2612 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 2613 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 2614 | /* parse the "no-sslv3" bind keyword */ |
| 2615 | 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] | 2616 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2617 | conf->ssl_options |= BC_SSL_O_NO_SSLV3; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2618 | return 0; |
| 2619 | } |
| 2620 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 2621 | /* parse the "no-tlsv10" bind keyword */ |
| 2622 | 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] | 2623 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2624 | conf->ssl_options |= BC_SSL_O_NO_TLSV10; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 2625 | return 0; |
| 2626 | } |
| 2627 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 2628 | /* parse the "no-tlsv11" bind keyword */ |
| 2629 | 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] | 2630 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2631 | conf->ssl_options |= BC_SSL_O_NO_TLSV11; |
Emeric Brun | c0ff492 | 2012-09-28 19:37:02 +0200 | [diff] [blame] | 2632 | return 0; |
| 2633 | } |
| 2634 | |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 2635 | /* parse the "no-tlsv12" bind keyword */ |
| 2636 | 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] | 2637 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 2638 | conf->ssl_options |= BC_SSL_O_NO_TLSV12; |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2639 | return 0; |
| 2640 | } |
| 2641 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 2642 | /* parse the "npn" bind keyword */ |
| 2643 | static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2644 | { |
| 2645 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 2646 | char *p1, *p2; |
| 2647 | |
| 2648 | if (!*args[cur_arg + 1]) { |
| 2649 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]); |
| 2650 | return ERR_ALERT | ERR_FATAL; |
| 2651 | } |
| 2652 | |
| 2653 | free(conf->npn_str); |
| 2654 | |
| 2655 | /* the NPN string is built as a suite of (<len> <name>)* */ |
| 2656 | conf->npn_len = strlen(args[cur_arg + 1]) + 1; |
| 2657 | conf->npn_str = calloc(1, conf->npn_len); |
| 2658 | memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len); |
| 2659 | |
| 2660 | /* replace commas with the name length */ |
| 2661 | p1 = conf->npn_str; |
| 2662 | p2 = p1 + 1; |
| 2663 | while (1) { |
| 2664 | p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1)); |
| 2665 | if (!p2) |
| 2666 | p2 = p1 + 1 + strlen(p1 + 1); |
| 2667 | |
| 2668 | if (p2 - (p1 + 1) > 255) { |
| 2669 | *p2 = '\0'; |
| 2670 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 2671 | return ERR_ALERT | ERR_FATAL; |
| 2672 | } |
| 2673 | |
| 2674 | *p1 = p2 - (p1 + 1); |
| 2675 | p1 = p2; |
| 2676 | |
| 2677 | if (!*p2) |
| 2678 | break; |
| 2679 | |
| 2680 | *(p2++) = '\0'; |
| 2681 | } |
| 2682 | return 0; |
| 2683 | #else |
| 2684 | if (err) |
| 2685 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]); |
| 2686 | return ERR_ALERT | ERR_FATAL; |
| 2687 | #endif |
| 2688 | } |
| 2689 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2690 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2691 | 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] | 2692 | { |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 2693 | struct listener *l; |
| 2694 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 2695 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 2696 | |
| 2697 | if (global.listen_default_ciphers && !conf->ciphers) |
| 2698 | conf->ciphers = strdup(global.listen_default_ciphers); |
| 2699 | |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 2700 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 2701 | l->xprt = &ssl_sock; |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 2702 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 2703 | return 0; |
| 2704 | } |
| 2705 | |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2706 | /* parse the "strict-sni" bind keyword */ |
| 2707 | static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2708 | { |
| 2709 | conf->strict_sni = 1; |
| 2710 | return 0; |
| 2711 | } |
| 2712 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 2713 | /* parse the "verify" bind keyword */ |
| 2714 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 2715 | { |
| 2716 | if (!*args[cur_arg + 1]) { |
| 2717 | if (err) |
| 2718 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 2719 | return ERR_ALERT | ERR_FATAL; |
| 2720 | } |
| 2721 | |
| 2722 | if (strcmp(args[cur_arg + 1], "none") == 0) |
| 2723 | conf->verify = SSL_VERIFY_NONE; |
| 2724 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
| 2725 | conf->verify = SSL_VERIFY_PEER; |
| 2726 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
| 2727 | conf->verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 2728 | else { |
| 2729 | if (err) |
| 2730 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 2731 | args[cur_arg], args[cur_arg + 1]); |
| 2732 | return ERR_ALERT | ERR_FATAL; |
| 2733 | } |
| 2734 | |
| 2735 | return 0; |
| 2736 | } |
| 2737 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 2738 | /************** "server" keywords ****************/ |
| 2739 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2740 | /* parse the "ca-file" server keyword */ |
| 2741 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2742 | { |
| 2743 | if (!*args[*cur_arg + 1]) { |
| 2744 | if (err) |
| 2745 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 2746 | return ERR_ALERT | ERR_FATAL; |
| 2747 | } |
| 2748 | |
| 2749 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 2750 | memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 2751 | else |
| 2752 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 2753 | |
| 2754 | return 0; |
| 2755 | } |
| 2756 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 2757 | /* parse the "check-ssl" server keyword */ |
| 2758 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2759 | { |
| 2760 | newsrv->check.use_ssl = 1; |
| 2761 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 2762 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
| 2763 | return 0; |
| 2764 | } |
| 2765 | |
| 2766 | /* parse the "ciphers" server keyword */ |
| 2767 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2768 | { |
| 2769 | if (!*args[*cur_arg + 1]) { |
| 2770 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 2771 | return ERR_ALERT | ERR_FATAL; |
| 2772 | } |
| 2773 | |
| 2774 | free(newsrv->ssl_ctx.ciphers); |
| 2775 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 2776 | return 0; |
| 2777 | } |
| 2778 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2779 | /* parse the "crl-file" server keyword */ |
| 2780 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2781 | { |
| 2782 | #ifndef X509_V_FLAG_CRL_CHECK |
| 2783 | if (err) |
| 2784 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 2785 | return ERR_ALERT | ERR_FATAL; |
| 2786 | #else |
| 2787 | if (!*args[*cur_arg + 1]) { |
| 2788 | if (err) |
| 2789 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 2790 | return ERR_ALERT | ERR_FATAL; |
| 2791 | } |
| 2792 | |
| 2793 | if ((*args[*cur_arg + 1] != '/') && global.ca_base) |
| 2794 | memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 2795 | else |
| 2796 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 2797 | |
| 2798 | return 0; |
| 2799 | #endif |
| 2800 | } |
| 2801 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 2802 | /* parse the "crt" server keyword */ |
| 2803 | static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2804 | { |
| 2805 | if (!*args[*cur_arg + 1]) { |
| 2806 | if (err) |
| 2807 | memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]); |
| 2808 | return ERR_ALERT | ERR_FATAL; |
| 2809 | } |
| 2810 | |
| 2811 | if ((*args[*cur_arg + 1] != '/') && global.crt_base) |
| 2812 | memprintf(&newsrv->ssl_ctx.client_crt, "%s/%s", global.ca_base, args[*cur_arg + 1]); |
| 2813 | else |
| 2814 | memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]); |
| 2815 | |
| 2816 | return 0; |
| 2817 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2818 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 2819 | /* parse the "force-sslv3" server keyword */ |
| 2820 | static int srv_parse_force_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2821 | { |
| 2822 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_SSLV3; |
| 2823 | return 0; |
| 2824 | } |
| 2825 | |
| 2826 | /* parse the "force-tlsv10" server keyword */ |
| 2827 | static int srv_parse_force_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2828 | { |
| 2829 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV10; |
| 2830 | return 0; |
| 2831 | } |
| 2832 | |
| 2833 | /* parse the "force-tlsv11" server keyword */ |
| 2834 | static int srv_parse_force_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2835 | { |
| 2836 | #if SSL_OP_NO_TLSv1_1 |
| 2837 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV11; |
| 2838 | return 0; |
| 2839 | #else |
| 2840 | if (err) |
| 2841 | memprintf(err, "'%s' : library does not support protocol TLSv1.1", args[*cur_arg]); |
| 2842 | return ERR_ALERT | ERR_FATAL; |
| 2843 | #endif |
| 2844 | } |
| 2845 | |
| 2846 | /* parse the "force-tlsv12" server keyword */ |
| 2847 | static int srv_parse_force_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2848 | { |
| 2849 | #if SSL_OP_NO_TLSv1_2 |
| 2850 | newsrv->ssl_ctx.options |= SRV_SSL_O_USE_TLSV12; |
| 2851 | return 0; |
| 2852 | #else |
| 2853 | if (err) |
| 2854 | memprintf(err, "'%s' : library does not support protocol TLSv1.2", args[*cur_arg]); |
| 2855 | return ERR_ALERT | ERR_FATAL; |
| 2856 | #endif |
| 2857 | } |
| 2858 | |
| 2859 | /* parse the "no-sslv3" server keyword */ |
| 2860 | static int srv_parse_no_sslv3(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2861 | { |
| 2862 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_SSLV3; |
| 2863 | return 0; |
| 2864 | } |
| 2865 | |
| 2866 | /* parse the "no-tlsv10" server keyword */ |
| 2867 | static int srv_parse_no_tlsv10(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2868 | { |
| 2869 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV10; |
| 2870 | return 0; |
| 2871 | } |
| 2872 | |
| 2873 | /* parse the "no-tlsv11" server keyword */ |
| 2874 | static int srv_parse_no_tlsv11(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2875 | { |
| 2876 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV11; |
| 2877 | return 0; |
| 2878 | } |
| 2879 | |
| 2880 | /* parse the "no-tlsv12" server keyword */ |
| 2881 | static int srv_parse_no_tlsv12(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2882 | { |
| 2883 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLSV12; |
| 2884 | return 0; |
| 2885 | } |
| 2886 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 2887 | /* parse the "no-tls-tickets" server keyword */ |
| 2888 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2889 | { |
| 2890 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 2891 | return 0; |
| 2892 | } |
| 2893 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 2894 | /* parse the "ssl" server keyword */ |
| 2895 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2896 | { |
| 2897 | newsrv->use_ssl = 1; |
| 2898 | if (global.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 2899 | newsrv->ssl_ctx.ciphers = strdup(global.connect_default_ciphers); |
| 2900 | return 0; |
| 2901 | } |
| 2902 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 2903 | /* parse the "verify" server keyword */ |
| 2904 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 2905 | { |
| 2906 | if (!*args[*cur_arg + 1]) { |
| 2907 | if (err) |
| 2908 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 2909 | return ERR_ALERT | ERR_FATAL; |
| 2910 | } |
| 2911 | |
| 2912 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
| 2913 | newsrv->ssl_ctx.verify = SSL_VERIFY_NONE; |
| 2914 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
| 2915 | newsrv->ssl_ctx.verify = SSL_VERIFY_PEER; |
| 2916 | else { |
| 2917 | if (err) |
| 2918 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 2919 | args[*cur_arg], args[*cur_arg + 1]); |
| 2920 | return ERR_ALERT | ERR_FATAL; |
| 2921 | } |
| 2922 | |
| 2923 | return 0; |
| 2924 | } |
| 2925 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 2926 | /* Note: must not be declared <const> as its list will be overwritten. |
| 2927 | * Please take care of keeping this list alphabetically sorted. |
| 2928 | */ |
| 2929 | static struct sample_fetch_kw_list sample_fetch_keywords = {{ },{ |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 2930 | { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2931 | { "ssl_c_ca_err_depth", smp_fetch_ssl_c_ca_err_depth, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2932 | { "ssl_c_err", smp_fetch_ssl_c_err, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2933 | { "ssl_c_i_dn", smp_fetch_ssl_c_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2934 | { "ssl_c_key_alg", smp_fetch_ssl_c_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2935 | { "ssl_c_notafter", smp_fetch_ssl_c_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2936 | { "ssl_c_notbefore", smp_fetch_ssl_c_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2937 | { "ssl_c_sig_alg", smp_fetch_ssl_c_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2938 | { "ssl_c_s_dn", smp_fetch_ssl_c_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2939 | { "ssl_c_serial", smp_fetch_ssl_c_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 2940 | { "ssl_c_used", smp_fetch_ssl_c_used, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 2941 | { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2942 | { "ssl_c_version", smp_fetch_ssl_c_version, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2943 | { "ssl_f_i_dn", smp_fetch_ssl_f_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2944 | { "ssl_f_key_alg", smp_fetch_ssl_f_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2945 | { "ssl_f_notafter", smp_fetch_ssl_f_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2946 | { "ssl_f_notbefore", smp_fetch_ssl_f_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2947 | { "ssl_f_sig_alg", smp_fetch_ssl_f_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2948 | { "ssl_f_s_dn", smp_fetch_ssl_f_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 2949 | { "ssl_f_serial", smp_fetch_ssl_f_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 2950 | { "ssl_f_version", smp_fetch_ssl_f_version, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2951 | { "ssl_fc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 2952 | { "ssl_fc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2953 | { "ssl_fc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_CSTR, SMP_USE_L5CLI }, |
| 2954 | { "ssl_fc_has_crt", smp_fetch_ssl_fc_has_crt, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
| 2955 | { "ssl_fc_has_sni", smp_fetch_ssl_fc_has_sni, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2956 | #ifdef OPENSSL_NPN_NEGOTIATED |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 2957 | { "ssl_fc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_CSTR, SMP_USE_L5CLI }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2958 | #endif |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 2959 | { "ssl_fc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_CSTR, SMP_USE_L5CLI }, |
| 2960 | { "ssl_fc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_UINT, SMP_USE_L5CLI }, |
| 2961 | { "ssl_fc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_CBIN, SMP_USE_L5CLI }, |
| 2962 | { "ssl_fc_sni", smp_fetch_ssl_fc_sni, 0, NULL, SMP_T_CSTR, SMP_USE_L5CLI }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 2963 | { NULL, NULL, 0, 0, 0 }, |
| 2964 | }}; |
| 2965 | |
| 2966 | /* Note: must not be declared <const> as its list will be overwritten. |
| 2967 | * Please take care of keeping this list alphabetically sorted. |
| 2968 | */ |
| 2969 | static struct acl_kw_list acl_kws = {{ },{ |
Willy Tarreau | d86e29d | 2013-03-25 08:21:05 +0100 | [diff] [blame^] | 2970 | { "ssl_c_ca_err", NULL, acl_parse_int, acl_match_int }, |
| 2971 | { "ssl_c_ca_err_depth", NULL, acl_parse_int, acl_match_int }, |
| 2972 | { "ssl_c_err", NULL, acl_parse_int, acl_match_int }, |
| 2973 | { "ssl_c_i_dn", NULL, acl_parse_str, acl_match_str }, |
| 2974 | { "ssl_c_key_alg", NULL, acl_parse_str, acl_match_str }, |
| 2975 | { "ssl_c_notafter", NULL, acl_parse_str, acl_match_str }, |
| 2976 | { "ssl_c_notbefore", NULL, acl_parse_str, acl_match_str }, |
| 2977 | { "ssl_c_sig_alg", NULL, acl_parse_str, acl_match_str }, |
| 2978 | { "ssl_c_s_dn", NULL, acl_parse_str, acl_match_str }, |
| 2979 | { "ssl_c_serial", NULL, acl_parse_bin, acl_match_bin }, |
| 2980 | { "ssl_c_used", NULL, acl_parse_nothing, acl_match_nothing }, |
| 2981 | { "ssl_c_verify", NULL, acl_parse_int, acl_match_int }, |
| 2982 | { "ssl_c_version", NULL, acl_parse_int, acl_match_int }, |
| 2983 | { "ssl_f_i_dn", NULL, acl_parse_str, acl_match_str }, |
| 2984 | { "ssl_f_key_alg", NULL, acl_parse_str, acl_match_str }, |
| 2985 | { "ssl_f_notafter", NULL, acl_parse_str, acl_match_str }, |
| 2986 | { "ssl_f_notbefore", NULL, acl_parse_str, acl_match_str }, |
| 2987 | { "ssl_f_sig_alg", NULL, acl_parse_str, acl_match_str }, |
| 2988 | { "ssl_f_s_dn", NULL, acl_parse_str, acl_match_str }, |
| 2989 | { "ssl_f_serial", NULL, acl_parse_bin, acl_match_bin }, |
| 2990 | { "ssl_f_version", NULL, acl_parse_int, acl_match_int }, |
| 2991 | { "ssl_fc", NULL, acl_parse_nothing, acl_match_nothing }, |
| 2992 | { "ssl_fc_alg_keysize", NULL, acl_parse_int, acl_match_int }, |
| 2993 | { "ssl_fc_cipher", NULL, acl_parse_str, acl_match_str }, |
| 2994 | { "ssl_fc_has_crt", NULL, acl_parse_nothing, acl_match_nothing }, |
| 2995 | { "ssl_fc_has_sni", NULL, acl_parse_nothing, acl_match_nothing }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2996 | #ifdef OPENSSL_NPN_NEGOTIATED |
Willy Tarreau | d86e29d | 2013-03-25 08:21:05 +0100 | [diff] [blame^] | 2997 | { "ssl_fc_npn", NULL, acl_parse_str, acl_match_str }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 2998 | #endif |
Willy Tarreau | d86e29d | 2013-03-25 08:21:05 +0100 | [diff] [blame^] | 2999 | { "ssl_fc_protocol", NULL, acl_parse_str, acl_match_str }, |
| 3000 | { "ssl_fc_use_keysize", NULL, acl_parse_int, acl_match_int }, |
| 3001 | { "ssl_fc_sni", "ssl_fc_sni", acl_parse_str, acl_match_str }, |
| 3002 | { "ssl_fc_sni_end", "ssl_fc_sni", acl_parse_str, acl_match_end }, |
| 3003 | { "ssl_fc_sni_reg", "ssl_fc_sni", acl_parse_reg, acl_match_reg }, |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 3004 | { /* END */ }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3005 | }}; |
| 3006 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 3007 | /* Note: must not be declared <const> as its list will be overwritten. |
| 3008 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 3009 | * all code contributors. |
| 3010 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 3011 | * the config parser can report an appropriate error when a known keyword was |
| 3012 | * not enabled. |
| 3013 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 3014 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 3015 | { "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] | 3016 | { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */ |
| 3017 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 3018 | { "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] | 3019 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 3020 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3021 | { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */ |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 3022 | { "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] | 3023 | { "force-sslv3", bind_parse_force_sslv3, 0 }, /* force SSLv3 */ |
| 3024 | { "force-tlsv10", bind_parse_force_tlsv10, 0 }, /* force TLSv10 */ |
| 3025 | { "force-tlsv11", bind_parse_force_tlsv11, 0 }, /* force TLSv11 */ |
| 3026 | { "force-tlsv12", bind_parse_force_tlsv12, 0 }, /* force TLSv12 */ |
Emeric Brun | 9b3009b | 2012-10-05 11:55:06 +0200 | [diff] [blame] | 3027 | { "no-sslv3", bind_parse_no_sslv3, 0 }, /* disable SSLv3 */ |
| 3028 | { "no-tlsv10", bind_parse_no_tlsv10, 0 }, /* disable TLSv10 */ |
| 3029 | { "no-tlsv11", bind_parse_no_tlsv11, 0 }, /* disable TLSv11 */ |
| 3030 | { "no-tlsv12", bind_parse_no_tlsv12, 0 }, /* disable TLSv12 */ |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 3031 | { "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] | 3032 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 3033 | { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */ |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 3034 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 3035 | { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 3036 | { NULL, NULL, 0 }, |
| 3037 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3038 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 3039 | /* Note: must not be declared <const> as its list will be overwritten. |
| 3040 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 3041 | * all code contributors. |
| 3042 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 3043 | * the config parser can report an appropriate error when a known keyword was |
| 3044 | * not enabled. |
| 3045 | */ |
| 3046 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3047 | { "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] | 3048 | { "check-ssl", srv_parse_check_ssl, 0, 0 }, /* enable SSL for health checks */ |
| 3049 | { "ciphers", srv_parse_ciphers, 1, 0 }, /* select the cipher suite */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3050 | { "crl-file", srv_parse_crl_file, 1, 0 }, /* set certificate revocation list file use on server cert verify */ |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 3051 | { "crt", srv_parse_crt, 1, 0 }, /* set client certificate */ |
Emeric Brun | ecc91fe | 2012-10-11 15:05:10 +0200 | [diff] [blame] | 3052 | { "force-sslv3", srv_parse_force_sslv3, 0, 0 }, /* force SSLv3 */ |
| 3053 | { "force-tlsv10", srv_parse_force_tlsv10, 0, 0 }, /* force TLSv10 */ |
| 3054 | { "force-tlsv11", srv_parse_force_tlsv11, 0, 0 }, /* force TLSv11 */ |
| 3055 | { "force-tlsv12", srv_parse_force_tlsv12, 0, 0 }, /* force TLSv12 */ |
| 3056 | { "no-sslv3", srv_parse_no_sslv3, 0, 0 }, /* disable SSLv3 */ |
| 3057 | { "no-tlsv10", srv_parse_no_tlsv10, 0, 0 }, /* disable TLSv10 */ |
| 3058 | { "no-tlsv11", srv_parse_no_tlsv11, 0, 0 }, /* disable TLSv11 */ |
| 3059 | { "no-tlsv12", srv_parse_no_tlsv12, 0, 0 }, /* disable TLSv12 */ |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 3060 | { "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] | 3061 | { "ssl", srv_parse_ssl, 0, 0 }, /* enable SSL processing */ |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 3062 | { "verify", srv_parse_verify, 1, 0 }, /* set SSL verify method */ |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 3063 | { NULL, NULL, 0, 0 }, |
| 3064 | }}; |
| 3065 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3066 | /* transport-layer operations for SSL sockets */ |
| 3067 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3068 | .snd_buf = ssl_sock_from_buf, |
| 3069 | .rcv_buf = ssl_sock_to_buf, |
| 3070 | .rcv_pipe = NULL, |
| 3071 | .snd_pipe = NULL, |
| 3072 | .shutr = NULL, |
| 3073 | .shutw = ssl_sock_shutw, |
| 3074 | .close = ssl_sock_close, |
| 3075 | .init = ssl_sock_init, |
| 3076 | }; |
| 3077 | |
| 3078 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 3079 | static void __ssl_sock_init(void) |
| 3080 | { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3081 | STACK_OF(SSL_COMP)* cm; |
| 3082 | |
| 3083 | SSL_library_init(); |
| 3084 | cm = SSL_COMP_get_compression_methods(); |
| 3085 | sk_SSL_COMP_zero(cm); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 3086 | sample_register_fetches(&sample_fetch_keywords); |
| 3087 | acl_register_keywords(&acl_kws); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 3088 | bind_register_keywords(&bind_kws); |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 3089 | srv_register_keywords(&srv_kws); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 3090 | } |
| 3091 | |
| 3092 | /* |
| 3093 | * Local variables: |
| 3094 | * c-indent-level: 8 |
| 3095 | * c-basic-offset: 8 |
| 3096 | * End: |
| 3097 | */ |