yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 1 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2 | /* |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3 | * SSL/TLS transport layer over SOCK_STREAM sockets |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | * |
Willy Tarreau | 69845df | 2012-09-10 09:43:09 +0200 | [diff] [blame] | 12 | * Acknowledgement: |
| 13 | * We'd like to specially thank the Stud project authors for a very clean |
| 14 | * and well documented code which helped us understand how the OpenSSL API |
| 15 | * ought to be used in non-blocking mode. This is one difficult part which |
| 16 | * is not easy to get from the OpenSSL doc, and reading the Stud code made |
| 17 | * it much more obvious than the examples in the OpenSSL package. Keep up |
| 18 | * the good works, guys ! |
| 19 | * |
| 20 | * Stud is an extremely efficient and scalable SSL/TLS proxy which combines |
| 21 | * particularly well with haproxy. For more info about this project, visit : |
| 22 | * https://github.com/bumptech/stud |
| 23 | * |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 24 | */ |
| 25 | |
Willy Tarreau | 8d164dc | 2019-05-10 09:35:00 +0200 | [diff] [blame] | 26 | /* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 27 | #define _GNU_SOURCE |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 28 | #include <ctype.h> |
| 29 | #include <dirent.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 30 | #include <errno.h> |
| 31 | #include <fcntl.h> |
| 32 | #include <stdio.h> |
| 33 | #include <stdlib.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 34 | #include <string.h> |
| 35 | #include <unistd.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 36 | |
| 37 | #include <sys/socket.h> |
| 38 | #include <sys/stat.h> |
| 39 | #include <sys/types.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 40 | #include <netdb.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 41 | #include <netinet/tcp.h> |
| 42 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 43 | #include <import/lru.h> |
| 44 | #include <import/xxhash.h> |
| 45 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 46 | #include <common/buffer.h> |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 47 | #include <common/chunk.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 48 | #include <common/compat.h> |
| 49 | #include <common/config.h> |
| 50 | #include <common/debug.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 51 | #include <common/errors.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 52 | #include <common/initcall.h> |
Willy Tarreau | 5599456 | 2019-05-09 14:52:44 +0200 | [diff] [blame] | 53 | #include <common/openssl-compat.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 54 | #include <common/standard.h> |
| 55 | #include <common/ticks.h> |
| 56 | #include <common/time.h> |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 57 | #include <common/cfgparse.h> |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 58 | #include <common/base64.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 59 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 60 | #include <ebsttree.h> |
| 61 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 62 | #include <types/applet.h> |
| 63 | #include <types/cli.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 64 | #include <types/global.h> |
| 65 | #include <types/ssl_sock.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 66 | #include <types/stats.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 67 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 68 | #include <proto/acl.h> |
| 69 | #include <proto/arg.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 70 | #include <proto/channel.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 71 | #include <proto/connection.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 72 | #include <proto/cli.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 73 | #include <proto/fd.h> |
| 74 | #include <proto/freq_ctr.h> |
| 75 | #include <proto/frontend.h> |
Willy Tarreau | 61c112a | 2018-10-02 16:43:32 +0200 | [diff] [blame] | 76 | #include <proto/http_rules.h> |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 77 | #include <proto/listener.h> |
Thierry FOURNIER | ed66c29 | 2013-11-28 11:05:19 +0100 | [diff] [blame] | 78 | #include <proto/pattern.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 79 | #include <proto/proto_tcp.h> |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 80 | #include <proto/proto_http.h> |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 81 | #include <proto/server.h> |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 82 | #include <proto/stream_interface.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 83 | #include <proto/log.h> |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 84 | #include <proto/proxy.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 85 | #include <proto/shctx.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 86 | #include <proto/ssl_sock.h> |
Willy Tarreau | 9ad7bd4 | 2015-04-03 19:19:59 +0200 | [diff] [blame] | 87 | #include <proto/stream.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 88 | #include <proto/task.h> |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 89 | #include <proto/vars.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 90 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 91 | /* ***** READ THIS before adding code here! ***** |
| 92 | * |
| 93 | * Due to API incompatibilities between multiple OpenSSL versions and their |
| 94 | * derivatives, it's often tempting to add macros to (re-)define certain |
| 95 | * symbols. Please do not do this here, and do it in common/openssl-compat.h |
| 96 | * exclusively so that the whole code consistently uses the same macros. |
| 97 | * |
| 98 | * Whenever possible if a macro is missing in certain versions, it's better |
| 99 | * to conditionally define it in openssl-compat.h than using lots of ifdefs. |
| 100 | */ |
| 101 | |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 102 | /* Warning, these are bits, not integers! */ |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 103 | #define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001 |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 104 | #define SSL_SOCK_ST_FL_16K_WBFSIZE 0x00000002 |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 105 | #define SSL_SOCK_SEND_UNLIMITED 0x00000004 |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 106 | #define SSL_SOCK_RECV_HEARTBEAT 0x00000008 |
| 107 | |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 108 | /* bits 0xFFFF0000 are reserved to store verify errors */ |
| 109 | |
| 110 | /* Verify errors macros */ |
| 111 | #define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16)) |
| 112 | #define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16)) |
| 113 | #define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16)) |
| 114 | |
| 115 | #define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63) |
| 116 | #define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15) |
| 117 | #define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 118 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 119 | /* ssl_methods flags for ssl options */ |
| 120 | #define MC_SSL_O_ALL 0x0000 |
| 121 | #define MC_SSL_O_NO_SSLV3 0x0001 /* disable SSLv3 */ |
| 122 | #define MC_SSL_O_NO_TLSV10 0x0002 /* disable TLSv10 */ |
| 123 | #define MC_SSL_O_NO_TLSV11 0x0004 /* disable TLSv11 */ |
| 124 | #define MC_SSL_O_NO_TLSV12 0x0008 /* disable TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 125 | #define MC_SSL_O_NO_TLSV13 0x0010 /* disable TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 126 | |
| 127 | /* ssl_methods versions */ |
| 128 | enum { |
| 129 | CONF_TLSV_NONE = 0, |
| 130 | CONF_TLSV_MIN = 1, |
| 131 | CONF_SSLV3 = 1, |
| 132 | CONF_TLSV10 = 2, |
| 133 | CONF_TLSV11 = 3, |
| 134 | CONF_TLSV12 = 4, |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 135 | CONF_TLSV13 = 5, |
| 136 | CONF_TLSV_MAX = 5, |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 137 | }; |
| 138 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 139 | /* server and bind verify method, it uses a global value as default */ |
| 140 | enum { |
| 141 | SSL_SOCK_VERIFY_DEFAULT = 0, |
| 142 | SSL_SOCK_VERIFY_REQUIRED = 1, |
| 143 | SSL_SOCK_VERIFY_OPTIONAL = 2, |
| 144 | SSL_SOCK_VERIFY_NONE = 3, |
| 145 | }; |
| 146 | |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 147 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 148 | int sslconns = 0; |
| 149 | int totalsslconns = 0; |
Willy Tarreau | d9f5cca | 2016-12-22 21:08:52 +0100 | [diff] [blame] | 150 | static struct xprt_ops ssl_sock; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 151 | int nb_engines = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 152 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 153 | static struct { |
| 154 | char *crt_base; /* base directory path for certificates */ |
| 155 | char *ca_base; /* base directory path for CAs and CRLs */ |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 156 | int async; /* whether we use ssl async mode */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 157 | |
| 158 | char *listen_default_ciphers; |
| 159 | char *connect_default_ciphers; |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 160 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 161 | char *listen_default_ciphersuites; |
| 162 | char *connect_default_ciphersuites; |
| 163 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 164 | int listen_default_ssloptions; |
| 165 | int connect_default_ssloptions; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 166 | struct tls_version_filter listen_default_sslmethods; |
| 167 | struct tls_version_filter connect_default_sslmethods; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 168 | |
| 169 | int private_cache; /* Force to use a private session cache even if nbproc > 1 */ |
| 170 | unsigned int life_time; /* SSL session lifetime in seconds */ |
| 171 | unsigned int max_record; /* SSL max record size */ |
| 172 | unsigned int default_dh_param; /* SSL maximum DH parameter size */ |
| 173 | int ctx_cache; /* max number of entries in the ssl_ctx cache. */ |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 174 | int capture_cipherlist; /* Size of the cipherlist buffer. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 175 | } global_ssl = { |
| 176 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 177 | .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS, |
| 178 | #endif |
| 179 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 180 | .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS, |
| 181 | #endif |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 182 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 183 | #ifdef LISTEN_DEFAULT_CIPHERSUITES |
| 184 | .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES, |
| 185 | #endif |
| 186 | #ifdef CONNECT_DEFAULT_CIPHERSUITES |
| 187 | .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES, |
| 188 | #endif |
| 189 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 190 | .listen_default_ssloptions = BC_SSL_O_NONE, |
| 191 | .connect_default_ssloptions = SRV_SSL_O_NONE, |
| 192 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 193 | .listen_default_sslmethods.flags = MC_SSL_O_ALL, |
| 194 | .listen_default_sslmethods.min = CONF_TLSV_NONE, |
| 195 | .listen_default_sslmethods.max = CONF_TLSV_NONE, |
| 196 | .connect_default_sslmethods.flags = MC_SSL_O_ALL, |
| 197 | .connect_default_sslmethods.min = CONF_TLSV_NONE, |
| 198 | .connect_default_sslmethods.max = CONF_TLSV_NONE, |
| 199 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 200 | #ifdef DEFAULT_SSL_MAX_RECORD |
| 201 | .max_record = DEFAULT_SSL_MAX_RECORD, |
| 202 | #endif |
| 203 | .default_dh_param = SSL_DEFAULT_DH_PARAM, |
| 204 | .ctx_cache = DEFAULT_SSL_CTX_CACHE, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 205 | .capture_cipherlist = 0, |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 206 | }; |
| 207 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 208 | static BIO_METHOD *ha_meth; |
| 209 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 210 | struct ssl_sock_ctx { |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 211 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 212 | SSL *ssl; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 213 | BIO *bio; |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 214 | const struct xprt_ops *xprt; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 215 | void *xprt_ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 216 | struct wait_event wait_event; |
| 217 | struct wait_event *recv_wait; |
| 218 | struct wait_event *send_wait; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 219 | int xprt_st; /* transport layer state, initialized to zero */ |
| 220 | int tmp_early_data; /* 1st byte of early data, if any */ |
| 221 | int sent_early_data; /* Amount of early data we sent so far */ |
| 222 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx)); |
| 226 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 227 | static struct task *ssl_sock_io_cb(struct task *, void *, unsigned short); |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 228 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 229 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 230 | /* Methods to implement OpenSSL BIO */ |
| 231 | static int ha_ssl_write(BIO *h, const char *buf, int num) |
| 232 | { |
| 233 | struct buffer tmpbuf; |
| 234 | struct ssl_sock_ctx *ctx; |
| 235 | int ret; |
| 236 | |
| 237 | ctx = BIO_get_data(h); |
| 238 | tmpbuf.size = num; |
| 239 | tmpbuf.area = (void *)(uintptr_t)buf; |
| 240 | tmpbuf.data = num; |
| 241 | tmpbuf.head = 0; |
| 242 | ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0); |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 243 | if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) { |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 244 | BIO_set_retry_write(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 245 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 246 | } else if (ret == 0) |
| 247 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 248 | return ret; |
| 249 | } |
| 250 | |
| 251 | static int ha_ssl_gets(BIO *h, char *buf, int size) |
| 252 | { |
| 253 | |
| 254 | return 0; |
| 255 | } |
| 256 | |
| 257 | static int ha_ssl_puts(BIO *h, const char *str) |
| 258 | { |
| 259 | |
| 260 | return ha_ssl_write(h, str, strlen(str)); |
| 261 | } |
| 262 | |
| 263 | static int ha_ssl_read(BIO *h, char *buf, int size) |
| 264 | { |
| 265 | struct buffer tmpbuf; |
| 266 | struct ssl_sock_ctx *ctx; |
| 267 | int ret; |
| 268 | |
| 269 | ctx = BIO_get_data(h); |
| 270 | tmpbuf.size = size; |
| 271 | tmpbuf.area = buf; |
| 272 | tmpbuf.data = 0; |
| 273 | tmpbuf.head = 0; |
| 274 | ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0); |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 275 | if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) { |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 276 | BIO_set_retry_read(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 277 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 278 | } else if (ret == 0) |
| 279 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 280 | |
| 281 | return ret; |
| 282 | } |
| 283 | |
| 284 | static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2) |
| 285 | { |
| 286 | int ret = 0; |
| 287 | switch (cmd) { |
| 288 | case BIO_CTRL_DUP: |
| 289 | case BIO_CTRL_FLUSH: |
| 290 | ret = 1; |
| 291 | break; |
| 292 | } |
| 293 | return ret; |
| 294 | } |
| 295 | |
| 296 | static int ha_ssl_new(BIO *h) |
| 297 | { |
| 298 | BIO_set_init(h, 1); |
| 299 | BIO_set_data(h, NULL); |
| 300 | BIO_clear_flags(h, ~0); |
| 301 | return 1; |
| 302 | } |
| 303 | |
| 304 | static int ha_ssl_free(BIO *data) |
| 305 | { |
| 306 | |
| 307 | return 1; |
| 308 | } |
| 309 | |
| 310 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 311 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 312 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 313 | static HA_RWLOCK_T *ssl_rwlocks; |
| 314 | |
| 315 | |
| 316 | unsigned long ssl_id_function(void) |
| 317 | { |
| 318 | return (unsigned long)tid; |
| 319 | } |
| 320 | |
| 321 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 322 | { |
| 323 | if (mode & CRYPTO_LOCK) { |
| 324 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 325 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 326 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 327 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 328 | } |
| 329 | else { |
| 330 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 331 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 332 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 333 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 334 | } |
| 335 | } |
| 336 | |
| 337 | static int ssl_locking_init(void) |
| 338 | { |
| 339 | int i; |
| 340 | |
| 341 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 342 | if (!ssl_rwlocks) |
| 343 | return -1; |
| 344 | |
| 345 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 346 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 347 | |
| 348 | CRYPTO_set_id_callback(ssl_id_function); |
| 349 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 350 | |
| 351 | return 0; |
| 352 | } |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 353 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 354 | #endif |
| 355 | |
| 356 | |
| 357 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 358 | /* This memory pool is used for capturing clienthello parameters. */ |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 359 | struct ssl_capture { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 360 | unsigned long long int xxh64; |
| 361 | unsigned char ciphersuite_len; |
| 362 | char ciphersuite[0]; |
| 363 | }; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 364 | struct pool_head *pool_head_ssl_capture = NULL; |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 365 | static int ssl_capture_ptr_index = -1; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 366 | static int ssl_app_data_index = -1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 367 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 368 | static int ssl_pkey_info_index = -1; |
| 369 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 370 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 371 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 372 | #endif |
| 373 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 374 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 375 | static unsigned int openssl_engines_initialized; |
| 376 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 377 | struct ssl_engine_list { |
| 378 | struct list list; |
| 379 | ENGINE *e; |
| 380 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 381 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 382 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 383 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 384 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 385 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 386 | static DH *local_dh_1024 = NULL; |
| 387 | static DH *local_dh_2048 = NULL; |
| 388 | static DH *local_dh_4096 = NULL; |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 389 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 390 | #endif /* OPENSSL_NO_DH */ |
| 391 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 392 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 393 | /* X509V3 Extensions that will be added on generated certificates */ |
| 394 | #define X509V3_EXT_SIZE 5 |
| 395 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 396 | "basicConstraints", |
| 397 | "nsComment", |
| 398 | "subjectKeyIdentifier", |
| 399 | "authorityKeyIdentifier", |
| 400 | "keyUsage", |
| 401 | }; |
| 402 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 403 | "CA:FALSE", |
| 404 | "\"OpenSSL Generated Certificate\"", |
| 405 | "hash", |
| 406 | "keyid,issuer:always", |
| 407 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 408 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 409 | /* LRU cache to store generated certificate */ |
| 410 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 411 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 412 | static unsigned int ssl_ctx_serial; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 413 | __decl_rwlock(ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 414 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 415 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 416 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 417 | static struct ssl_bind_kw ssl_bind_kws[]; |
| 418 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 419 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 420 | /* The order here matters for picking a default context, |
| 421 | * keep the most common keytype at the bottom of the list |
| 422 | */ |
| 423 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 424 | "dsa", |
| 425 | "ecdsa", |
| 426 | "rsa" |
| 427 | }; |
| 428 | #define SSL_SOCK_NUM_KEYTYPES 3 |
Willy Tarreau | 30da7ad | 2015-12-14 11:28:33 +0100 | [diff] [blame] | 429 | #else |
| 430 | #define SSL_SOCK_NUM_KEYTYPES 1 |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 431 | #endif |
| 432 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 433 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 434 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 435 | |
| 436 | #define sh_ssl_sess_tree_delete(s) ebmb_delete(&(s)->key); |
| 437 | |
| 438 | #define sh_ssl_sess_tree_insert(s) (struct sh_ssl_sess_hdr *)ebmb_insert(sh_ssl_sess_tree, \ |
| 439 | &(s)->key, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 440 | |
| 441 | #define sh_ssl_sess_tree_lookup(k) (struct sh_ssl_sess_hdr *)ebmb_lookup(sh_ssl_sess_tree, \ |
| 442 | (k), SSL_MAX_SSL_SESSION_ID_LENGTH); |
William Lallemand | 3f85c9a | 2017-10-09 16:30:50 +0200 | [diff] [blame] | 443 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 444 | /* |
| 445 | * This function gives the detail of the SSL error. It is used only |
| 446 | * if the debug mode and the verbose mode are activated. It dump all |
| 447 | * the SSL error until the stack was empty. |
| 448 | */ |
| 449 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 450 | { |
| 451 | unsigned long ret; |
| 452 | |
| 453 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 454 | while(1) { |
| 455 | ret = ERR_get_error(); |
| 456 | if (ret == 0) |
| 457 | return; |
| 458 | fprintf(stderr, "fd[%04x] OpenSSL error[0x%lx] %s: %s\n", |
Willy Tarreau | 585744b | 2017-08-24 14:31:19 +0200 | [diff] [blame] | 459 | (unsigned short)conn->handle.fd, ret, |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 460 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 461 | } |
| 462 | } |
| 463 | } |
| 464 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 465 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 466 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 467 | static int ssl_init_single_engine(const char *engine_id, const char *def_algorithms) |
| 468 | { |
| 469 | int err_code = ERR_ABORT; |
| 470 | ENGINE *engine; |
| 471 | struct ssl_engine_list *el; |
| 472 | |
| 473 | /* grab the structural reference to the engine */ |
| 474 | engine = ENGINE_by_id(engine_id); |
| 475 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 476 | ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 477 | goto fail_get; |
| 478 | } |
| 479 | |
| 480 | if (!ENGINE_init(engine)) { |
| 481 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 482 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 483 | goto fail_init; |
| 484 | } |
| 485 | |
| 486 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 487 | ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 488 | goto fail_set_method; |
| 489 | } |
| 490 | |
| 491 | el = calloc(1, sizeof(*el)); |
| 492 | el->e = engine; |
| 493 | LIST_ADD(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 494 | nb_engines++; |
| 495 | if (global_ssl.async) |
| 496 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 497 | return 0; |
| 498 | |
| 499 | fail_set_method: |
| 500 | /* release the functional reference from ENGINE_init() */ |
| 501 | ENGINE_finish(engine); |
| 502 | |
| 503 | fail_init: |
| 504 | /* release the structural reference from ENGINE_by_id() */ |
| 505 | ENGINE_free(engine); |
| 506 | |
| 507 | fail_get: |
| 508 | return err_code; |
| 509 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 510 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 511 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 512 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 513 | /* |
| 514 | * openssl async fd handler |
| 515 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 516 | void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 517 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 518 | struct ssl_sock_ctx *ctx = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 519 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 520 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 521 | * to poll this fd until it is requested |
| 522 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 523 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 524 | fd_cant_recv(fd); |
| 525 | |
| 526 | /* crypto engine is available, let's notify the associated |
| 527 | * connection that it can pursue its processing. |
| 528 | */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 529 | ssl_sock_io_cb(NULL, ctx, 0); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 530 | } |
| 531 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 532 | /* |
| 533 | * openssl async delayed SSL_free handler |
| 534 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 535 | void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 536 | { |
| 537 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 538 | OSSL_ASYNC_FD all_fd[32]; |
| 539 | size_t num_all_fds = 0; |
| 540 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 541 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 542 | /* We suppose that the async job for a same SSL * |
| 543 | * are serialized. So if we are awake it is |
| 544 | * because the running job has just finished |
| 545 | * and we can remove all async fds safely |
| 546 | */ |
| 547 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 548 | if (num_all_fds > 32) { |
| 549 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 550 | return; |
| 551 | } |
| 552 | |
| 553 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
| 554 | for (i=0 ; i < num_all_fds ; i++) |
| 555 | fd_remove(all_fd[i]); |
| 556 | |
| 557 | /* Now we can safely call SSL_free, no more pending job in engines */ |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 558 | SSL_free(ssl); |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 559 | _HA_ATOMIC_SUB(&sslconns, 1); |
| 560 | _HA_ATOMIC_SUB(&jobs, 1); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 561 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 562 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 563 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 564 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 565 | */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 566 | static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 567 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 568 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 569 | OSSL_ASYNC_FD del_fd[32]; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 570 | SSL *ssl = ctx->ssl; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 571 | size_t num_add_fds = 0; |
| 572 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 573 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 574 | |
| 575 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 576 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 577 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 578 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 579 | return; |
| 580 | } |
| 581 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 582 | SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 583 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 584 | /* We remove unused fds from the fdtab */ |
| 585 | for (i=0 ; i < num_del_fds ; i++) |
| 586 | fd_remove(del_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 587 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 588 | /* We add new fds to the fdtab */ |
| 589 | for (i=0 ; i < num_add_fds ; i++) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 590 | fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 593 | num_add_fds = 0; |
| 594 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 595 | if (num_add_fds > 32) { |
| 596 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 597 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 598 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 599 | |
| 600 | /* We activate the polling for all known async fds */ |
| 601 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 602 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 603 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 604 | /* To ensure that the fd cache won't be used |
| 605 | * We'll prefer to catch a real RD event |
| 606 | * because handling an EAGAIN on this fd will |
| 607 | * result in a context switch and also |
| 608 | * some engines uses a fd in blocking mode. |
| 609 | */ |
| 610 | fd_cant_recv(add_fd[i]); |
| 611 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 612 | |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 613 | } |
| 614 | #endif |
| 615 | |
William Lallemand | c33d83d | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 616 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 617 | /* |
| 618 | * This function returns the number of seconds elapsed |
| 619 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 620 | * date presented un ASN1_GENERALIZEDTIME. |
| 621 | * |
| 622 | * In parsing error case, it returns -1. |
| 623 | */ |
| 624 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 625 | { |
| 626 | long epoch; |
| 627 | char *p, *end; |
| 628 | const unsigned short month_offset[12] = { |
| 629 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 630 | }; |
| 631 | int year, month; |
| 632 | |
| 633 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 634 | |
| 635 | p = (char *)d->data; |
| 636 | end = p + d->length; |
| 637 | |
| 638 | if (end - p < 4) return -1; |
| 639 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 640 | p += 4; |
| 641 | if (end - p < 2) return -1; |
| 642 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 643 | if (month < 1 || month > 12) return -1; |
| 644 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 645 | We consider leap years and the current month (<marsh or not) */ |
| 646 | epoch = ( ((year - 1970) * 365) |
| 647 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 648 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 649 | + month_offset[month-1] |
| 650 | ) * 24 * 60 * 60; |
| 651 | p += 2; |
| 652 | if (end - p < 2) return -1; |
| 653 | /* Add the number of seconds of completed days of current month */ |
| 654 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 655 | p += 2; |
| 656 | if (end - p < 2) return -1; |
| 657 | /* Add the completed hours of the current day */ |
| 658 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 659 | p += 2; |
| 660 | if (end - p < 2) return -1; |
| 661 | /* Add the completed minutes of the current hour */ |
| 662 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 663 | p += 2; |
| 664 | if (p == end) return -1; |
| 665 | /* Test if there is available seconds */ |
| 666 | if (p[0] < '0' || p[0] > '9') |
| 667 | goto nosec; |
| 668 | if (end - p < 2) return -1; |
| 669 | /* Add the seconds of the current minute */ |
| 670 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 671 | p += 2; |
| 672 | if (p == end) return -1; |
| 673 | /* Ignore seconds float part if present */ |
| 674 | if (p[0] == '.') { |
| 675 | do { |
| 676 | if (++p == end) return -1; |
| 677 | } while (p[0] >= '0' && p[0] <= '9'); |
| 678 | } |
| 679 | |
| 680 | nosec: |
| 681 | if (p[0] == 'Z') { |
| 682 | if (end - p != 1) return -1; |
| 683 | return epoch; |
| 684 | } |
| 685 | else if (p[0] == '+') { |
| 686 | if (end - p != 5) return -1; |
| 687 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 688 | return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 689 | } |
| 690 | else if (p[0] == '-') { |
| 691 | if (end - p != 5) return -1; |
| 692 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 693 | return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | return -1; |
| 697 | } |
| 698 | |
William Lallemand | c33d83d | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 699 | /* |
| 700 | * struct alignment works here such that the key.key is the same as key_data |
| 701 | * Do not change the placement of key_data |
| 702 | */ |
| 703 | struct certificate_ocsp { |
| 704 | struct ebmb_node key; |
| 705 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 706 | struct buffer response; |
| 707 | long expire; |
| 708 | }; |
| 709 | |
| 710 | struct ocsp_cbk_arg { |
| 711 | int is_single; |
| 712 | int single_kt; |
| 713 | union { |
| 714 | struct certificate_ocsp *s_ocsp; |
| 715 | /* |
| 716 | * m_ocsp will have multiple entries dependent on key type |
| 717 | * Entry 0 - DSA |
| 718 | * Entry 1 - ECDSA |
| 719 | * Entry 2 - RSA |
| 720 | */ |
| 721 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 722 | }; |
| 723 | }; |
| 724 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 725 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 726 | |
| 727 | /* This function starts to check if the OCSP response (in DER format) contained |
| 728 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 729 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 730 | * contained in the OCSP Response and exits on error if no match. |
| 731 | * If it's a valid OCSP Response: |
| 732 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 733 | * pointed by 'ocsp'. |
| 734 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 735 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 736 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 737 | * already present in the container, it will be overwritten. |
| 738 | * |
| 739 | * Note: OCSP response containing more than one OCSP Single response is not |
| 740 | * considered valid. |
| 741 | * |
| 742 | * Returns 0 on success, 1 in error case. |
| 743 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 744 | static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response, |
| 745 | struct certificate_ocsp *ocsp, |
| 746 | OCSP_CERTID *cid, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 747 | { |
| 748 | OCSP_RESPONSE *resp; |
| 749 | OCSP_BASICRESP *bs = NULL; |
| 750 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 751 | OCSP_CERTID *id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 752 | unsigned char *p = (unsigned char *) ocsp_response->area; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 753 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 754 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 755 | int reason; |
| 756 | int ret = 1; |
| 757 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 758 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, |
| 759 | ocsp_response->data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 760 | if (!resp) { |
| 761 | memprintf(err, "Unable to parse OCSP response"); |
| 762 | goto out; |
| 763 | } |
| 764 | |
| 765 | rc = OCSP_response_status(resp); |
| 766 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 767 | memprintf(err, "OCSP response status not successful"); |
| 768 | goto out; |
| 769 | } |
| 770 | |
| 771 | bs = OCSP_response_get1_basic(resp); |
| 772 | if (!bs) { |
| 773 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 774 | goto out; |
| 775 | } |
| 776 | |
| 777 | count_sr = OCSP_resp_count(bs); |
| 778 | if (count_sr > 1) { |
| 779 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 780 | goto out; |
| 781 | } |
| 782 | |
| 783 | sr = OCSP_resp_get0(bs, 0); |
| 784 | if (!sr) { |
| 785 | memprintf(err, "Failed to get OCSP single response"); |
| 786 | goto out; |
| 787 | } |
| 788 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 789 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 790 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 791 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
Emmanuel Hocdet | ef60705 | 2017-10-24 14:57:16 +0200 | [diff] [blame] | 792 | if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) { |
Emmanuel Hocdet | 872085c | 2017-10-10 15:18:52 +0200 | [diff] [blame] | 793 | memprintf(err, "OCSP single response: certificate status is unknown"); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 794 | goto out; |
| 795 | } |
| 796 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 797 | if (!nextupd) { |
| 798 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 799 | goto out; |
| 800 | } |
| 801 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 802 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 803 | if (!rc) { |
| 804 | memprintf(err, "OCSP single response: no longer valid."); |
| 805 | goto out; |
| 806 | } |
| 807 | |
| 808 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 809 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 810 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 811 | goto out; |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | if (!ocsp) { |
| 816 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 817 | unsigned char *p; |
| 818 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 819 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 820 | if (!rc) { |
| 821 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 822 | goto out; |
| 823 | } |
| 824 | |
| 825 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 826 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 827 | goto out; |
| 828 | } |
| 829 | |
| 830 | p = key; |
| 831 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 832 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 833 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 834 | if (!ocsp) { |
| 835 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 836 | goto out; |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | /* According to comments on "chunk_dup", the |
| 841 | previous chunk buffer will be freed */ |
| 842 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 843 | memprintf(err, "OCSP response: Memory allocation error"); |
| 844 | goto out; |
| 845 | } |
| 846 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 847 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 848 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 849 | ret = 0; |
| 850 | out: |
Janusz Dziemidowicz | 8d71049 | 2017-03-08 16:59:41 +0100 | [diff] [blame] | 851 | ERR_clear_error(); |
| 852 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 853 | if (bs) |
| 854 | OCSP_BASICRESP_free(bs); |
| 855 | |
| 856 | if (resp) |
| 857 | OCSP_RESPONSE_free(resp); |
| 858 | |
| 859 | return ret; |
| 860 | } |
| 861 | /* |
| 862 | * External function use to update the OCSP response in the OCSP response's |
| 863 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 864 | * to update in DER format. |
| 865 | * |
| 866 | * Returns 0 on success, 1 in error case. |
| 867 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 868 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 869 | { |
| 870 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 871 | } |
| 872 | |
| 873 | /* |
| 874 | * This function load the OCSP Resonse in DER format contained in file at |
| 875 | * path 'ocsp_path' and call 'ssl_sock_load_ocsp_response' |
| 876 | * |
| 877 | * Returns 0 on success, 1 in error case. |
| 878 | */ |
| 879 | static int ssl_sock_load_ocsp_response_from_file(const char *ocsp_path, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err) |
| 880 | { |
| 881 | int fd = -1; |
| 882 | int r = 0; |
| 883 | int ret = 1; |
| 884 | |
| 885 | fd = open(ocsp_path, O_RDONLY); |
| 886 | if (fd == -1) { |
| 887 | memprintf(err, "Error opening OCSP response file"); |
| 888 | goto end; |
| 889 | } |
| 890 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 891 | trash.data = 0; |
| 892 | while (trash.data < trash.size) { |
| 893 | r = read(fd, trash.area + trash.data, trash.size - trash.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 894 | if (r < 0) { |
| 895 | if (errno == EINTR) |
| 896 | continue; |
| 897 | |
| 898 | memprintf(err, "Error reading OCSP response from file"); |
| 899 | goto end; |
| 900 | } |
| 901 | else if (r == 0) { |
| 902 | break; |
| 903 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 904 | trash.data += r; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | close(fd); |
| 908 | fd = -1; |
| 909 | |
| 910 | ret = ssl_sock_load_ocsp_response(&trash, ocsp, cid, err); |
| 911 | end: |
| 912 | if (fd != -1) |
| 913 | close(fd); |
| 914 | |
| 915 | return ret; |
| 916 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 917 | #endif |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 918 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 919 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 920 | static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc) |
| 921 | { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 922 | struct tls_keys_ref *ref; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 923 | union tls_sess_key *keys; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 924 | struct connection *conn; |
| 925 | int head; |
| 926 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 927 | int ret = -1; /* error by default */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 928 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 929 | conn = SSL_get_ex_data(s, ssl_app_data_index); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 930 | ref = __objt_listener(conn->target)->bind_conf->keys_ref; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 931 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 932 | |
| 933 | keys = ref->tlskeys; |
| 934 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 935 | |
| 936 | if (enc) { |
| 937 | memcpy(key_name, keys[head].name, 16); |
| 938 | |
| 939 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 940 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 941 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 942 | if (ref->key_size_bits == 128) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 943 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 944 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv)) |
| 945 | goto end; |
| 946 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 947 | HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 948 | ret = 1; |
| 949 | } |
| 950 | else if (ref->key_size_bits == 256 ) { |
| 951 | |
| 952 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv)) |
| 953 | goto end; |
| 954 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 955 | HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 956 | ret = 1; |
| 957 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 958 | } else { |
| 959 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 960 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 961 | goto found; |
| 962 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 963 | ret = 0; |
| 964 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 965 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 966 | found: |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 967 | if (ref->key_size_bits == 128) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 968 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 969 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv)) |
| 970 | goto end; |
| 971 | /* 2 for key renewal, 1 if current key is still valid */ |
| 972 | ret = i ? 2 : 1; |
| 973 | } |
| 974 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 975 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 976 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv)) |
| 977 | goto end; |
| 978 | /* 2 for key renewal, 1 if current key is still valid */ |
| 979 | ret = i ? 2 : 1; |
| 980 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 981 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 982 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 983 | end: |
| 984 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 985 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 986 | } |
| 987 | |
| 988 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 989 | { |
| 990 | struct tls_keys_ref *ref; |
| 991 | |
| 992 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 993 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 994 | return ref; |
| 995 | return NULL; |
| 996 | } |
| 997 | |
| 998 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 999 | { |
| 1000 | struct tls_keys_ref *ref; |
| 1001 | |
| 1002 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1003 | if (ref->unique_id == unique_id) |
| 1004 | return ref; |
| 1005 | return NULL; |
| 1006 | } |
| 1007 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1008 | /* Update the key into ref: if keysize doesnt |
| 1009 | * match existing ones, this function returns -1 |
| 1010 | * else it returns 0 on success. |
| 1011 | */ |
| 1012 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1013 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1014 | { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1015 | if (ref->key_size_bits == 128) { |
| 1016 | if (tlskey->data != sizeof(struct tls_sess_key_128)) |
| 1017 | return -1; |
| 1018 | } |
| 1019 | else if (ref->key_size_bits == 256) { |
| 1020 | if (tlskey->data != sizeof(struct tls_sess_key_256)) |
| 1021 | return -1; |
| 1022 | } |
| 1023 | else |
| 1024 | return -1; |
| 1025 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1026 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1027 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 1028 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1029 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 1030 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1031 | |
| 1032 | return 0; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1033 | } |
| 1034 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1035 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1036 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1037 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 1038 | |
| 1039 | if(!ref) { |
| 1040 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 1041 | return 1; |
| 1042 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1043 | if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) { |
| 1044 | memprintf(err, "Invalid key size"); |
| 1045 | return 1; |
| 1046 | } |
| 1047 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1048 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1049 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1050 | |
| 1051 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1052 | * automatic ids. It's called just after the basic checks. It returns |
| 1053 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1054 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1055 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1056 | { |
| 1057 | int i = 0; |
| 1058 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 1059 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 1060 | |
| 1061 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 1062 | if (ref->unique_id == -1) { |
| 1063 | /* Look for the first free id. */ |
| 1064 | while (1) { |
| 1065 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 1066 | if (ref2->unique_id == i) { |
| 1067 | i++; |
| 1068 | break; |
| 1069 | } |
| 1070 | } |
| 1071 | if (&ref2->list == &tlskeys_reference) |
| 1072 | break; |
| 1073 | } |
| 1074 | |
| 1075 | /* Uses the unique id and increment it for the next entry. */ |
| 1076 | ref->unique_id = i; |
| 1077 | i++; |
| 1078 | } |
| 1079 | } |
| 1080 | |
| 1081 | /* This sort the reference list by id. */ |
| 1082 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
| 1083 | LIST_DEL(&ref->list); |
| 1084 | list_for_each_entry(ref3, &tkr, list) { |
| 1085 | if (ref->unique_id < ref3->unique_id) { |
| 1086 | LIST_ADDQ(&ref3->list, &ref->list); |
| 1087 | break; |
| 1088 | } |
| 1089 | } |
| 1090 | if (&ref3->list == &tkr) |
| 1091 | LIST_ADDQ(&tkr, &ref->list); |
| 1092 | } |
| 1093 | |
| 1094 | /* swap root */ |
| 1095 | LIST_ADD(&tkr, &tlskeys_reference); |
| 1096 | LIST_DEL(&tkr); |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1097 | return 0; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1098 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1099 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 1100 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1101 | #ifndef OPENSSL_NO_OCSP |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1102 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 1103 | { |
| 1104 | switch (evp_keytype) { |
| 1105 | case EVP_PKEY_RSA: |
| 1106 | return 2; |
| 1107 | case EVP_PKEY_DSA: |
| 1108 | return 0; |
| 1109 | case EVP_PKEY_EC: |
| 1110 | return 1; |
| 1111 | } |
| 1112 | |
| 1113 | return -1; |
| 1114 | } |
| 1115 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1116 | /* |
| 1117 | * Callback used to set OCSP status extension content in server hello. |
| 1118 | */ |
| 1119 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 1120 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1121 | struct certificate_ocsp *ocsp; |
| 1122 | struct ocsp_cbk_arg *ocsp_arg; |
| 1123 | char *ssl_buf; |
| 1124 | EVP_PKEY *ssl_pkey; |
| 1125 | int key_type; |
| 1126 | int index; |
| 1127 | |
Vincent Bernat | 3c2f2f2 | 2016-04-03 13:48:42 +0200 | [diff] [blame] | 1128 | ocsp_arg = arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1129 | |
| 1130 | ssl_pkey = SSL_get_privatekey(ssl); |
| 1131 | if (!ssl_pkey) |
| 1132 | return SSL_TLSEXT_ERR_NOACK; |
| 1133 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1134 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1135 | |
| 1136 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 1137 | ocsp = ocsp_arg->s_ocsp; |
| 1138 | else { |
| 1139 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 1140 | * the certificate type |
| 1141 | */ |
| 1142 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 1143 | |
| 1144 | if (index < 0) |
| 1145 | return SSL_TLSEXT_ERR_NOACK; |
| 1146 | |
| 1147 | ocsp = ocsp_arg->m_ocsp[index]; |
| 1148 | |
| 1149 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1150 | |
| 1151 | if (!ocsp || |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1152 | !ocsp->response.area || |
| 1153 | !ocsp->response.data || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1154 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1155 | return SSL_TLSEXT_ERR_NOACK; |
| 1156 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1157 | ssl_buf = OPENSSL_malloc(ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1158 | if (!ssl_buf) |
| 1159 | return SSL_TLSEXT_ERR_NOACK; |
| 1160 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1161 | memcpy(ssl_buf, ocsp->response.area, ocsp->response.data); |
| 1162 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1163 | |
| 1164 | return SSL_TLSEXT_ERR_OK; |
| 1165 | } |
| 1166 | |
| 1167 | /* |
| 1168 | * This function enables the handling of OCSP status extension on 'ctx' if a |
| 1169 | * file name 'cert_path' suffixed using ".ocsp" is present. |
| 1170 | * To enable OCSP status extension, the issuer's certificate is mandatory. |
| 1171 | * It should be present in the certificate's extra chain builded from file |
| 1172 | * 'cert_path'. If not found, the issuer certificate is loaded from a file |
| 1173 | * named 'cert_path' suffixed using '.issuer'. |
| 1174 | * |
| 1175 | * In addition, ".ocsp" file content is loaded as a DER format of an OCSP |
| 1176 | * response. If file is empty or content is not a valid OCSP response, |
| 1177 | * OCSP status extension is enabled but OCSP response is ignored (a warning |
| 1178 | * is displayed). |
| 1179 | * |
| 1180 | * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1181 | * successfully enabled, or -1 in other error case. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1182 | */ |
| 1183 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const char *cert_path) |
| 1184 | { |
| 1185 | |
| 1186 | BIO *in = NULL; |
| 1187 | X509 *x, *xi = NULL, *issuer = NULL; |
| 1188 | STACK_OF(X509) *chain = NULL; |
| 1189 | OCSP_CERTID *cid = NULL; |
| 1190 | SSL *ssl; |
| 1191 | char ocsp_path[MAXPATHLEN+1]; |
| 1192 | int i, ret = -1; |
| 1193 | struct stat st; |
| 1194 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1195 | char *warn = NULL; |
| 1196 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1197 | pem_password_cb *passwd_cb; |
| 1198 | void *passwd_cb_userdata; |
| 1199 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1200 | |
| 1201 | snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path); |
| 1202 | |
| 1203 | if (stat(ocsp_path, &st)) |
| 1204 | return 1; |
| 1205 | |
| 1206 | ssl = SSL_new(ctx); |
| 1207 | if (!ssl) |
| 1208 | goto out; |
| 1209 | |
| 1210 | x = SSL_get_certificate(ssl); |
| 1211 | if (!x) |
| 1212 | goto out; |
| 1213 | |
| 1214 | /* Try to lookup for issuer in certificate extra chain */ |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1215 | SSL_CTX_get_extra_chain_certs(ctx, &chain); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1216 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1217 | issuer = sk_X509_value(chain, i); |
| 1218 | if (X509_check_issued(issuer, x) == X509_V_OK) |
| 1219 | break; |
| 1220 | else |
| 1221 | issuer = NULL; |
| 1222 | } |
| 1223 | |
| 1224 | /* If not found try to load issuer from a suffixed file */ |
| 1225 | if (!issuer) { |
| 1226 | char issuer_path[MAXPATHLEN+1]; |
| 1227 | |
| 1228 | in = BIO_new(BIO_s_file()); |
| 1229 | if (!in) |
| 1230 | goto out; |
| 1231 | |
| 1232 | snprintf(issuer_path, MAXPATHLEN+1, "%s.issuer", cert_path); |
| 1233 | if (BIO_read_filename(in, issuer_path) <= 0) |
| 1234 | goto out; |
| 1235 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1236 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 1237 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 1238 | |
| 1239 | xi = PEM_read_bio_X509_AUX(in, NULL, passwd_cb, passwd_cb_userdata); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1240 | if (!xi) |
| 1241 | goto out; |
| 1242 | |
| 1243 | if (X509_check_issued(xi, x) != X509_V_OK) |
| 1244 | goto out; |
| 1245 | |
| 1246 | issuer = xi; |
| 1247 | } |
| 1248 | |
| 1249 | cid = OCSP_cert_to_id(0, x, issuer); |
| 1250 | if (!cid) |
| 1251 | goto out; |
| 1252 | |
| 1253 | i = i2d_OCSP_CERTID(cid, NULL); |
| 1254 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1255 | goto out; |
| 1256 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1257 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1258 | if (!ocsp) |
| 1259 | goto out; |
| 1260 | |
| 1261 | p = ocsp->key_data; |
| 1262 | i2d_OCSP_CERTID(cid, &p); |
| 1263 | |
| 1264 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1265 | if (iocsp == ocsp) |
| 1266 | ocsp = NULL; |
| 1267 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1268 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1269 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1270 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1271 | #endif |
| 1272 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1273 | |
| 1274 | if (!callback) { |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1275 | struct ocsp_cbk_arg *cb_arg = calloc(1, sizeof(*cb_arg)); |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1276 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1277 | |
| 1278 | cb_arg->is_single = 1; |
| 1279 | cb_arg->s_ocsp = iocsp; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1280 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1281 | pkey = X509_get_pubkey(x); |
| 1282 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1283 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1284 | |
| 1285 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
| 1286 | SSL_CTX_set_tlsext_status_arg(ctx, cb_arg); |
| 1287 | } else { |
| 1288 | /* |
| 1289 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1290 | * Update that cb_arg with the new cert's staple |
| 1291 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1292 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1293 | struct certificate_ocsp *tmp_ocsp; |
| 1294 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1295 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1296 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1297 | |
| 1298 | #ifdef SSL_CTX_get_tlsext_status_arg |
| 1299 | SSL_CTX_ctrl(ctx, SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG, 0, &cb_arg); |
| 1300 | #else |
| 1301 | cb_arg = ctx->tlsext_status_arg; |
| 1302 | #endif |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1303 | |
| 1304 | /* |
| 1305 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1306 | * the order of operations below matter, take care when changing it |
| 1307 | */ |
| 1308 | tmp_ocsp = cb_arg->s_ocsp; |
| 1309 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1310 | cb_arg->s_ocsp = NULL; |
| 1311 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1312 | cb_arg->is_single = 0; |
| 1313 | cb_arg->single_kt = 0; |
| 1314 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1315 | pkey = X509_get_pubkey(x); |
| 1316 | key_type = EVP_PKEY_base_id(pkey); |
| 1317 | EVP_PKEY_free(pkey); |
| 1318 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1319 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1320 | if (index >= 0 && !cb_arg->m_ocsp[index]) |
| 1321 | cb_arg->m_ocsp[index] = iocsp; |
| 1322 | |
| 1323 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1324 | |
| 1325 | ret = 0; |
| 1326 | |
| 1327 | warn = NULL; |
| 1328 | if (ssl_sock_load_ocsp_response_from_file(ocsp_path, iocsp, cid, &warn)) { |
| 1329 | memprintf(&warn, "Loading '%s': %s. Content will be ignored", ocsp_path, warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1330 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1331 | } |
| 1332 | |
| 1333 | out: |
| 1334 | if (ssl) |
| 1335 | SSL_free(ssl); |
| 1336 | |
| 1337 | if (in) |
| 1338 | BIO_free(in); |
| 1339 | |
| 1340 | if (xi) |
| 1341 | X509_free(xi); |
| 1342 | |
| 1343 | if (cid) |
| 1344 | OCSP_CERTID_free(cid); |
| 1345 | |
| 1346 | if (ocsp) |
| 1347 | free(ocsp); |
| 1348 | |
| 1349 | if (warn) |
| 1350 | free(warn); |
| 1351 | |
| 1352 | |
| 1353 | return ret; |
| 1354 | } |
| 1355 | |
| 1356 | #endif |
| 1357 | |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1358 | #ifdef OPENSSL_IS_BORINGSSL |
| 1359 | static int ssl_sock_set_ocsp_response_from_file(SSL_CTX *ctx, const char *cert_path) |
| 1360 | { |
| 1361 | char ocsp_path[MAXPATHLEN+1]; |
| 1362 | struct stat st; |
| 1363 | int fd = -1, r = 0; |
| 1364 | |
| 1365 | snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path); |
| 1366 | if (stat(ocsp_path, &st)) |
| 1367 | return 0; |
| 1368 | |
| 1369 | fd = open(ocsp_path, O_RDONLY); |
| 1370 | if (fd == -1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1371 | ha_warning("Error opening OCSP response file %s.\n", ocsp_path); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1372 | return -1; |
| 1373 | } |
| 1374 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1375 | trash.data = 0; |
| 1376 | while (trash.data < trash.size) { |
| 1377 | r = read(fd, trash.area + trash.data, trash.size - trash.data); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1378 | if (r < 0) { |
| 1379 | if (errno == EINTR) |
| 1380 | continue; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1381 | ha_warning("Error reading OCSP response from file %s.\n", ocsp_path); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1382 | close(fd); |
| 1383 | return -1; |
| 1384 | } |
| 1385 | else if (r == 0) { |
| 1386 | break; |
| 1387 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1388 | trash.data += r; |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1389 | } |
| 1390 | close(fd); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1391 | return SSL_CTX_set_ocsp_response(ctx, (const uint8_t *) trash.area, |
| 1392 | trash.data); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1393 | } |
| 1394 | #endif |
| 1395 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 1396 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1397 | |
| 1398 | #define CT_EXTENSION_TYPE 18 |
| 1399 | |
| 1400 | static int sctl_ex_index = -1; |
| 1401 | |
| 1402 | /* |
| 1403 | * Try to parse Signed Certificate Timestamp List structure. This function |
| 1404 | * makes only basic test if the data seems like SCTL. No signature validation |
| 1405 | * is performed. |
| 1406 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1407 | static int ssl_sock_parse_sctl(struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1408 | { |
| 1409 | int ret = 1; |
| 1410 | int len, pos, sct_len; |
| 1411 | unsigned char *data; |
| 1412 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1413 | if (sctl->data < 2) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1414 | goto out; |
| 1415 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1416 | data = (unsigned char *) sctl->area; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1417 | len = (data[0] << 8) | data[1]; |
| 1418 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1419 | if (len + 2 != sctl->data) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1420 | goto out; |
| 1421 | |
| 1422 | data = data + 2; |
| 1423 | pos = 0; |
| 1424 | while (pos < len) { |
| 1425 | if (len - pos < 2) |
| 1426 | goto out; |
| 1427 | |
| 1428 | sct_len = (data[pos] << 8) | data[pos + 1]; |
| 1429 | if (pos + sct_len + 2 > len) |
| 1430 | goto out; |
| 1431 | |
| 1432 | pos += sct_len + 2; |
| 1433 | } |
| 1434 | |
| 1435 | ret = 0; |
| 1436 | |
| 1437 | out: |
| 1438 | return ret; |
| 1439 | } |
| 1440 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1441 | static int ssl_sock_load_sctl_from_file(const char *sctl_path, |
| 1442 | struct buffer **sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1443 | { |
| 1444 | int fd = -1; |
| 1445 | int r = 0; |
| 1446 | int ret = 1; |
| 1447 | |
| 1448 | *sctl = NULL; |
| 1449 | |
| 1450 | fd = open(sctl_path, O_RDONLY); |
| 1451 | if (fd == -1) |
| 1452 | goto end; |
| 1453 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1454 | trash.data = 0; |
| 1455 | while (trash.data < trash.size) { |
| 1456 | r = read(fd, trash.area + trash.data, trash.size - trash.data); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1457 | if (r < 0) { |
| 1458 | if (errno == EINTR) |
| 1459 | continue; |
| 1460 | |
| 1461 | goto end; |
| 1462 | } |
| 1463 | else if (r == 0) { |
| 1464 | break; |
| 1465 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1466 | trash.data += r; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | ret = ssl_sock_parse_sctl(&trash); |
| 1470 | if (ret) |
| 1471 | goto end; |
| 1472 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1473 | *sctl = calloc(1, sizeof(**sctl)); |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1474 | if (!chunk_dup(*sctl, &trash)) { |
| 1475 | free(*sctl); |
| 1476 | *sctl = NULL; |
| 1477 | goto end; |
| 1478 | } |
| 1479 | |
| 1480 | end: |
| 1481 | if (fd != -1) |
| 1482 | close(fd); |
| 1483 | |
| 1484 | return ret; |
| 1485 | } |
| 1486 | |
| 1487 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1488 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1489 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1490 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1491 | *out = (unsigned char *) sctl->area; |
| 1492 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1493 | |
| 1494 | return 1; |
| 1495 | } |
| 1496 | |
| 1497 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1498 | { |
| 1499 | return 1; |
| 1500 | } |
| 1501 | |
| 1502 | static int ssl_sock_load_sctl(SSL_CTX *ctx, const char *cert_path) |
| 1503 | { |
| 1504 | char sctl_path[MAXPATHLEN+1]; |
| 1505 | int ret = -1; |
| 1506 | struct stat st; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1507 | struct buffer *sctl = NULL; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1508 | |
| 1509 | snprintf(sctl_path, MAXPATHLEN+1, "%s.sctl", cert_path); |
| 1510 | |
| 1511 | if (stat(sctl_path, &st)) |
| 1512 | return 1; |
| 1513 | |
| 1514 | if (ssl_sock_load_sctl_from_file(sctl_path, &sctl)) |
| 1515 | goto out; |
| 1516 | |
| 1517 | if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) { |
| 1518 | free(sctl); |
| 1519 | goto out; |
| 1520 | } |
| 1521 | |
| 1522 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1523 | |
| 1524 | ret = 0; |
| 1525 | |
| 1526 | out: |
| 1527 | return ret; |
| 1528 | } |
| 1529 | |
| 1530 | #endif |
| 1531 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1532 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1533 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1534 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1535 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1536 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1537 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1538 | |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1539 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1540 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1541 | * change this to #if and do not assign a default value to this macro! |
| 1542 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1543 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1544 | /* Disable renegotiation (CVE-2009-3555) */ |
Olivier Houchard | 90084a1 | 2017-11-23 18:21:29 +0100 | [diff] [blame] | 1545 | if ((conn->flags & (CO_FL_CONNECTED | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == CO_FL_CONNECTED) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1546 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1547 | conn->err_code = CO_ER_SSL_RENEG; |
| 1548 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1549 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1550 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1551 | |
| 1552 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1553 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1554 | /* Long certificate chains optimz |
| 1555 | If write and read bios are differents, we |
| 1556 | consider that the buffering was activated, |
| 1557 | so we rise the output buffer size from 4k |
| 1558 | to 16k */ |
| 1559 | write_bio = SSL_get_wbio(ssl); |
| 1560 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1561 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1562 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1563 | } |
| 1564 | } |
| 1565 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1566 | } |
| 1567 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1568 | /* Callback is called for each certificate of the chain during a verify |
| 1569 | ok is set to 1 if preverify detect no error on current certificate. |
| 1570 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1571 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1572 | { |
| 1573 | SSL *ssl; |
| 1574 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1575 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1576 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1577 | |
| 1578 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1579 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1580 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1581 | ctx = conn->xprt_ctx; |
| 1582 | |
| 1583 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1584 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1585 | if (ok) /* no errors */ |
| 1586 | return ok; |
| 1587 | |
| 1588 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1589 | err = X509_STORE_CTX_get_error(x_store); |
| 1590 | |
| 1591 | /* check if CA error needs to be ignored */ |
| 1592 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1593 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1594 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1595 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1596 | } |
| 1597 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1598 | if (__objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) { |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 1599 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1600 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1601 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1602 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1603 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1604 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1605 | return 0; |
| 1606 | } |
| 1607 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1608 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1609 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1610 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1611 | /* check if certificate error needs to be ignored */ |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1612 | if (__objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) { |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 1613 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1614 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1615 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1616 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1617 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1618 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1619 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1620 | } |
| 1621 | |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1622 | static inline |
| 1623 | void ssl_sock_parse_clienthello(int write_p, int version, int content_type, |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1624 | const void *buf, size_t len, SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1625 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1626 | struct ssl_capture *capture; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1627 | unsigned char *msg; |
| 1628 | unsigned char *end; |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1629 | size_t rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1630 | |
| 1631 | /* This function is called for "from client" and "to server" |
| 1632 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1633 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1634 | */ |
| 1635 | |
| 1636 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1637 | * otherwise it is set to 1. |
| 1638 | */ |
| 1639 | if (write_p != 0) |
| 1640 | return; |
| 1641 | |
| 1642 | /* content_type contains the type of message received or sent |
| 1643 | * according with the SSL/TLS protocol spec. This message is |
| 1644 | * encoded with one byte. The value 256 (two bytes) is used |
| 1645 | * for designing the SSL/TLS record layer. According with the |
| 1646 | * rfc6101, the expected message (other than 256) are: |
| 1647 | * - change_cipher_spec(20) |
| 1648 | * - alert(21) |
| 1649 | * - handshake(22) |
| 1650 | * - application_data(23) |
| 1651 | * - (255) |
| 1652 | * We are interessed by the handshake and specially the client |
| 1653 | * hello. |
| 1654 | */ |
| 1655 | if (content_type != 22) |
| 1656 | return; |
| 1657 | |
| 1658 | /* The message length is at least 4 bytes, containing the |
| 1659 | * message type and the message length. |
| 1660 | */ |
| 1661 | if (len < 4) |
| 1662 | return; |
| 1663 | |
| 1664 | /* First byte of the handshake message id the type of |
| 1665 | * message. The konwn types are: |
| 1666 | * - hello_request(0) |
| 1667 | * - client_hello(1) |
| 1668 | * - server_hello(2) |
| 1669 | * - certificate(11) |
| 1670 | * - server_key_exchange (12) |
| 1671 | * - certificate_request(13) |
| 1672 | * - server_hello_done(14) |
| 1673 | * We are interested by the client hello. |
| 1674 | */ |
| 1675 | msg = (unsigned char *)buf; |
| 1676 | if (msg[0] != 1) |
| 1677 | return; |
| 1678 | |
| 1679 | /* Next three bytes are the length of the message. The total length |
| 1680 | * must be this decoded length + 4. If the length given as argument |
| 1681 | * is not the same, we abort the protocol dissector. |
| 1682 | */ |
| 1683 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1684 | if (len < rec_len + 4) |
| 1685 | return; |
| 1686 | msg += 4; |
| 1687 | end = msg + rec_len; |
| 1688 | if (end < msg) |
| 1689 | return; |
| 1690 | |
| 1691 | /* Expect 2 bytes for protocol version (1 byte for major and 1 byte |
| 1692 | * for minor, the random, composed by 4 bytes for the unix time and |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1693 | * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28. |
| 1694 | */ |
| 1695 | msg += 1 + 1 + 4 + 28; |
| 1696 | if (msg > end) |
| 1697 | return; |
| 1698 | |
| 1699 | /* Next, is session id: |
| 1700 | * if present, we have to jump by length + 1 for the size information |
| 1701 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1702 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1703 | if (msg[0] > 0) |
| 1704 | msg += msg[0]; |
| 1705 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1706 | if (msg > end) |
| 1707 | return; |
| 1708 | |
| 1709 | /* Next two bytes are the ciphersuite length. */ |
| 1710 | if (msg + 2 > end) |
| 1711 | return; |
| 1712 | rec_len = (msg[0] << 8) + msg[1]; |
| 1713 | msg += 2; |
| 1714 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1715 | return; |
| 1716 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1717 | capture = pool_alloc_dirty(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1718 | if (!capture) |
| 1719 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1720 | /* Compute the xxh64 of the ciphersuite. */ |
| 1721 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1722 | |
| 1723 | /* Capture the ciphersuite. */ |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1724 | capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ? |
| 1725 | global_ssl.capture_cipherlist : rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1726 | memcpy(capture->ciphersuite, msg, capture->ciphersuite_len); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1727 | |
| 1728 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1729 | } |
| 1730 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1731 | /* Callback is called for ssl protocol analyse */ |
| 1732 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1733 | { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1734 | #ifdef TLS1_RT_HEARTBEAT |
| 1735 | /* test heartbeat received (write_p is set to 0 |
| 1736 | for a received record) */ |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1737 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1738 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
William Lallemand | 7e1770b | 2019-05-13 14:31:34 +0200 | [diff] [blame] | 1739 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1740 | const unsigned char *p = buf; |
| 1741 | unsigned int payload; |
| 1742 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1743 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1744 | |
| 1745 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1746 | if (*p != TLS1_HB_REQUEST) |
| 1747 | return; |
| 1748 | |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 1749 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1750 | goto kill_it; |
| 1751 | |
| 1752 | payload = (p[1] * 256) + p[2]; |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1753 | if (3 + payload + 16 <= len) |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1754 | return; /* OK no problem */ |
Willy Tarreau | aeed672 | 2014-04-25 23:59:58 +0200 | [diff] [blame] | 1755 | kill_it: |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1756 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1757 | * advertised payload is larger than the advertised packet |
| 1758 | * length, so we have garbage in the buffer between the |
| 1759 | * payload and the end of the buffer (p+len). We can't know |
| 1760 | * if the SSL stack is patched, and we don't know if we can |
| 1761 | * safely wipe out the area between p+3+len and payload. |
| 1762 | * So instead, we prevent the response from being sent by |
| 1763 | * setting the max_send_fragment to 0 and we report an SSL |
| 1764 | * error, which will kill this connection. It will be reported |
| 1765 | * above as SSL_ERROR_SSL while an other handshake failure with |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1766 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1767 | */ |
Willy Tarreau | 3b2fdb6 | 2014-04-25 23:44:22 +0200 | [diff] [blame] | 1768 | ssl->max_send_fragment = 0; |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 1769 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1770 | return; |
| 1771 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1772 | #endif |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1773 | if (global_ssl.capture_cipherlist > 0) |
| 1774 | ssl_sock_parse_clienthello(write_p, version, content_type, buf, len, ssl); |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1775 | } |
| 1776 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1777 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1778 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1779 | const unsigned char *in, unsigned int inlen, |
| 1780 | void *arg) |
| 1781 | { |
| 1782 | struct server *srv = arg; |
| 1783 | |
| 1784 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1785 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1786 | return SSL_TLSEXT_ERR_OK; |
| 1787 | return SSL_TLSEXT_ERR_NOACK; |
| 1788 | } |
| 1789 | #endif |
| 1790 | |
| 1791 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1792 | /* This callback is used so that the server advertises the list of |
| 1793 | * negociable protocols for NPN. |
| 1794 | */ |
| 1795 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1796 | unsigned int *len, void *arg) |
| 1797 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1798 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1799 | |
| 1800 | *data = (const unsigned char *)conf->npn_str; |
| 1801 | *len = conf->npn_len; |
| 1802 | return SSL_TLSEXT_ERR_OK; |
| 1803 | } |
| 1804 | #endif |
| 1805 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1806 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1807 | /* This callback is used so that the server advertises the list of |
| 1808 | * negociable protocols for ALPN. |
| 1809 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1810 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1811 | unsigned char *outlen, |
| 1812 | const unsigned char *server, |
| 1813 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1814 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1815 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1816 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1817 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1818 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1819 | return SSL_TLSEXT_ERR_NOACK; |
| 1820 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1821 | return SSL_TLSEXT_ERR_OK; |
| 1822 | } |
| 1823 | #endif |
| 1824 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1825 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1826 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1827 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1828 | /* Create a X509 certificate with the specified servername and serial. This |
| 1829 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1830 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1831 | ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1832 | { |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1833 | X509 *cacert = bind_conf->ca_sign_cert; |
| 1834 | EVP_PKEY *capkey = bind_conf->ca_sign_pkey; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1835 | SSL_CTX *ssl_ctx = NULL; |
| 1836 | X509 *newcrt = NULL; |
| 1837 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1838 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1839 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1840 | X509_NAME *name; |
| 1841 | const EVP_MD *digest; |
| 1842 | X509V3_CTX ctx; |
| 1843 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1844 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1845 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 1846 | /* Get the private key of the default certificate and use it */ |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 1847 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10002000L) |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1848 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 1849 | #else |
| 1850 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 1851 | if (tmp_ssl) |
| 1852 | pkey = SSL_get_privatekey(tmp_ssl); |
| 1853 | #endif |
| 1854 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1855 | goto mkcert_error; |
| 1856 | |
| 1857 | /* Create the certificate */ |
| 1858 | if (!(newcrt = X509_new())) |
| 1859 | goto mkcert_error; |
| 1860 | |
| 1861 | /* Set version number for the certificate (X509v3) and the serial |
| 1862 | * number */ |
| 1863 | if (X509_set_version(newcrt, 2L) != 1) |
| 1864 | goto mkcert_error; |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 1865 | ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD(&ssl_ctx_serial, 1)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1866 | |
| 1867 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 1868 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 1869 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1870 | goto mkcert_error; |
| 1871 | |
| 1872 | /* set public key in the certificate */ |
| 1873 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1874 | goto mkcert_error; |
| 1875 | |
| 1876 | /* Set issuer name from the CA */ |
| 1877 | if (!(name = X509_get_subject_name(cacert))) |
| 1878 | goto mkcert_error; |
| 1879 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 1880 | goto mkcert_error; |
| 1881 | |
| 1882 | /* Set the subject name using the same, but the CN */ |
| 1883 | name = X509_NAME_dup(name); |
| 1884 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 1885 | (const unsigned char *)servername, |
| 1886 | -1, -1, 0) != 1) { |
| 1887 | X509_NAME_free(name); |
| 1888 | goto mkcert_error; |
| 1889 | } |
| 1890 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 1891 | X509_NAME_free(name); |
| 1892 | goto mkcert_error; |
| 1893 | } |
| 1894 | X509_NAME_free(name); |
| 1895 | |
| 1896 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1897 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1898 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 1899 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 1900 | X509_EXTENSION *ext; |
| 1901 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1902 | if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i]))) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1903 | goto mkcert_error; |
| 1904 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 1905 | X509_EXTENSION_free(ext); |
| 1906 | goto mkcert_error; |
| 1907 | } |
| 1908 | X509_EXTENSION_free(ext); |
| 1909 | } |
| 1910 | |
| 1911 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1912 | |
| 1913 | key_type = EVP_PKEY_base_id(capkey); |
| 1914 | |
| 1915 | if (key_type == EVP_PKEY_DSA) |
| 1916 | digest = EVP_sha1(); |
| 1917 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1918 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1919 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1920 | digest = EVP_sha256(); |
| 1921 | else { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 1922 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000000fL) && !defined(OPENSSL_IS_BORINGSSL) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1923 | int nid; |
| 1924 | |
| 1925 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 1926 | goto mkcert_error; |
| 1927 | if (!(digest = EVP_get_digestbynid(nid))) |
| 1928 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 1929 | #else |
| 1930 | goto mkcert_error; |
| 1931 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1932 | } |
| 1933 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1934 | if (!(X509_sign(newcrt, capkey, digest))) |
| 1935 | goto mkcert_error; |
| 1936 | |
| 1937 | /* Create and set the new SSL_CTX */ |
| 1938 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 1939 | goto mkcert_error; |
| 1940 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 1941 | goto mkcert_error; |
| 1942 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 1943 | goto mkcert_error; |
| 1944 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 1945 | goto mkcert_error; |
| 1946 | |
| 1947 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1948 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 1949 | #ifndef OPENSSL_NO_DH |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1950 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 1951 | #endif |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1952 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 1953 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1954 | const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE); |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1955 | EC_KEY *ecc; |
| 1956 | int nid; |
| 1957 | |
| 1958 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 1959 | goto end; |
| 1960 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 1961 | goto end; |
| 1962 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 1963 | EC_KEY_free(ecc); |
| 1964 | } |
| 1965 | #endif |
| 1966 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1967 | return ssl_ctx; |
| 1968 | |
| 1969 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1970 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1971 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1972 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 1973 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1974 | return NULL; |
| 1975 | } |
| 1976 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1977 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1978 | ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1979 | { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1980 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 1981 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1982 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 1983 | return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1984 | } |
| 1985 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1986 | /* Do a lookup for a certificate in the LRU cache used to store generated |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1987 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1988 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1989 | ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1990 | { |
| 1991 | struct lru64 *lru = NULL; |
| 1992 | |
| 1993 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 1994 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1995 | lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 1996 | if (lru && lru->domain) { |
| 1997 | if (ssl) |
| 1998 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 1999 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2000 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2001 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2002 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2003 | } |
| 2004 | return NULL; |
| 2005 | } |
| 2006 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2007 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2008 | * function is not thread-safe, it should only be used to check if a certificate |
| 2009 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2010 | * thread). It is kept for backward compatibility. */ |
| 2011 | SSL_CTX * |
| 2012 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2013 | { |
| 2014 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2015 | } |
| 2016 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2017 | /* Set a certificate int the LRU cache used to store generated |
| 2018 | * certificate. Return 0 on success, otherwise -1 */ |
| 2019 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2020 | ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2021 | { |
| 2022 | struct lru64 *lru = NULL; |
| 2023 | |
| 2024 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2025 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2026 | lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2027 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2028 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2029 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2030 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2031 | if (lru->domain && lru->data) |
| 2032 | lru->free((SSL_CTX *)lru->data); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2033 | lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_cert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2034 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2035 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2036 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2037 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2038 | } |
| 2039 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2040 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2041 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2042 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2043 | { |
| 2044 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2045 | } |
| 2046 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2047 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2048 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2049 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2050 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2051 | ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2052 | { |
| 2053 | X509 *cacert = bind_conf->ca_sign_cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2054 | SSL_CTX *ssl_ctx = NULL; |
| 2055 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2056 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2057 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2058 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2059 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2060 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2061 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2062 | if (lru && lru->domain) |
| 2063 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2064 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2065 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2066 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2067 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2068 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2069 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2070 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2071 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2072 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2073 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2074 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2075 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2076 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2077 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2078 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2079 | return 0; |
| 2080 | } |
| 2081 | static int |
| 2082 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2083 | { |
| 2084 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2085 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2086 | |
| 2087 | conn_get_to_addr(conn); |
| 2088 | if (conn->flags & CO_FL_ADDR_TO_SET) { |
| 2089 | key = ssl_sock_generated_cert_key(&conn->addr.to, get_addr_len(&conn->addr.to)); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2090 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2091 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2092 | } |
| 2093 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2094 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2095 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2096 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2097 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2098 | typedef enum { SET_CLIENT, SET_SERVER } set_context_func; |
| 2099 | |
| 2100 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2101 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2102 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2103 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2104 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2105 | #endif |
| 2106 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2107 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2108 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2109 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2110 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2111 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2112 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2113 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2114 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2115 | #endif |
| 2116 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2117 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2118 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2119 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2120 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2121 | #endif |
| 2122 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2123 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2124 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2125 | /* Unusable in this context. */ |
| 2126 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2127 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2128 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2129 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2130 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2131 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2132 | typedef enum { SET_MIN, SET_MAX } set_context_func; |
| 2133 | |
| 2134 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2135 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2136 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2137 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2138 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2139 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2140 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2141 | } |
| 2142 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2143 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2144 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2145 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2146 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2147 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2148 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2149 | } |
| 2150 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2151 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2152 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2153 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2154 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2155 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2156 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2157 | } |
| 2158 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2159 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2160 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2161 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2162 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2163 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2164 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2165 | } |
| 2166 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2167 | #if SSL_OP_NO_TLSv1_3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2168 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2169 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2170 | #endif |
| 2171 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2172 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
| 2173 | #if SSL_OP_NO_TLSv1_3 |
| 2174 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2175 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2176 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2177 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2178 | #endif |
| 2179 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2180 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2181 | |
| 2182 | static struct { |
| 2183 | int option; |
| 2184 | uint16_t flag; |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2185 | void (*ctx_set_version)(SSL_CTX *, set_context_func); |
| 2186 | void (*ssl_set_version)(SSL *, set_context_func); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2187 | const char *name; |
| 2188 | } methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2189 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2190 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2191 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2192 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2193 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2194 | {SSL_OP_NO_TLSv1_3, MC_SSL_O_NO_TLSV13, ctx_set_TLSv13_func, ssl_set_TLSv13_func, "TLSv1.3"}, /* CONF_TLSV13 */ |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2195 | }; |
| 2196 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2197 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2198 | { |
| 2199 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2200 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2201 | SSL_set_SSL_CTX(ssl, ctx); |
| 2202 | } |
| 2203 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 2204 | #if ((HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(OPENSSL_IS_BORINGSSL)) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2205 | |
| 2206 | static int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
| 2207 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2208 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2209 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2210 | |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2211 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs) |
| 2212 | return SSL_TLSEXT_ERR_OK; |
| 2213 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2214 | } |
| 2215 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2216 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2217 | static int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
| 2218 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2219 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2220 | #else |
| 2221 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
| 2222 | { |
| 2223 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2224 | struct connection *conn; |
| 2225 | struct bind_conf *s; |
| 2226 | const uint8_t *extension_data; |
| 2227 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2228 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2229 | |
| 2230 | char *wildp = NULL; |
| 2231 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2232 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2233 | struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2234 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2235 | int i; |
| 2236 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2237 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | a882552 | 2018-10-15 13:20:07 +0200 | [diff] [blame] | 2238 | s = __objt_listener(conn->target)->bind_conf; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2239 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2240 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2241 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2242 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2243 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2244 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2245 | #else |
| 2246 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2247 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2248 | /* |
| 2249 | * The server_name extension was given too much extensibility when it |
| 2250 | * was written, so parsing the normal case is a bit complex. |
| 2251 | */ |
| 2252 | size_t len; |
| 2253 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2254 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2255 | /* Extract the length of the supplied list of names. */ |
| 2256 | len = (*extension_data++) << 8; |
| 2257 | len |= *extension_data++; |
| 2258 | if (len + 2 != extension_len) |
| 2259 | goto abort; |
| 2260 | /* |
| 2261 | * The list in practice only has a single element, so we only consider |
| 2262 | * the first one. |
| 2263 | */ |
| 2264 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2265 | goto abort; |
| 2266 | extension_len = len - 1; |
| 2267 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2268 | if (extension_len <= 2) |
| 2269 | goto abort; |
| 2270 | len = (*extension_data++) << 8; |
| 2271 | len |= *extension_data++; |
| 2272 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2273 | || memchr(extension_data, 0, len) != NULL) |
| 2274 | goto abort; |
| 2275 | servername = extension_data; |
| 2276 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2277 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2278 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
| 2279 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2280 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2281 | } |
| 2282 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2283 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2284 | if (!s->strict_sni) { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2285 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2286 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2287 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2288 | goto abort; |
| 2289 | } |
| 2290 | |
| 2291 | /* extract/check clientHello informations */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2292 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2293 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2294 | #else |
| 2295 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2296 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2297 | uint8_t sign; |
| 2298 | size_t len; |
| 2299 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2300 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2301 | len = (*extension_data++) << 8; |
| 2302 | len |= *extension_data++; |
| 2303 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2304 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2305 | if (len % 2 != 0) |
| 2306 | goto abort; |
| 2307 | for (; len > 0; len -= 2) { |
| 2308 | extension_data++; /* hash */ |
| 2309 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2310 | switch (sign) { |
| 2311 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2312 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2313 | break; |
| 2314 | case TLSEXT_signature_ecdsa: |
| 2315 | has_ecdsa_sig = 1; |
| 2316 | break; |
| 2317 | default: |
| 2318 | continue; |
| 2319 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2320 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2321 | break; |
| 2322 | } |
| 2323 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2324 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2325 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2326 | } |
| 2327 | if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */ |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2328 | const SSL_CIPHER *cipher; |
| 2329 | size_t len; |
| 2330 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2331 | has_ecdsa_sig = 0; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2332 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2333 | len = ctx->cipher_suites_len; |
| 2334 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2335 | #else |
| 2336 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2337 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2338 | if (len % 2 != 0) |
| 2339 | goto abort; |
| 2340 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2341 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2342 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2343 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2344 | #else |
| 2345 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2346 | #endif |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 2347 | if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2348 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2349 | break; |
| 2350 | } |
| 2351 | } |
| 2352 | } |
| 2353 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2354 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2355 | trash.area[i] = tolower(servername[i]); |
| 2356 | if (!wildp && (trash.area[i] == '.')) |
| 2357 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2358 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2359 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2360 | |
| 2361 | /* lookup in full qualified names */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2362 | node = ebst_lookup(&s->sni_ctx, trash.area); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2363 | |
| 2364 | /* lookup a not neg filter */ |
| 2365 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 2366 | if (!container_of(n, struct sni_ctx, name)->neg) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2367 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2368 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2369 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2370 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2371 | break; |
| 2372 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2373 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2374 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2375 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2376 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2377 | if (!node_anonymous) |
| 2378 | node_anonymous = n; |
| 2379 | break; |
| 2380 | } |
| 2381 | } |
| 2382 | } |
| 2383 | if (wildp) { |
| 2384 | /* lookup in wildcards names */ |
| 2385 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2386 | for (n = node; n; n = ebmb_next_dup(n)) { |
| 2387 | if (!container_of(n, struct sni_ctx, name)->neg) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2388 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2389 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2390 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2391 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2392 | break; |
| 2393 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2394 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2395 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2396 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2397 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2398 | if (!node_anonymous) |
| 2399 | node_anonymous = n; |
| 2400 | break; |
| 2401 | } |
| 2402 | } |
| 2403 | } |
| 2404 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2405 | /* select by key_signature priority order */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2406 | node = (has_ecdsa_sig && node_ecdsa) ? node_ecdsa |
| 2407 | : ((has_rsa_sig && node_rsa) ? node_rsa |
| 2408 | : (node_anonymous ? node_anonymous |
| 2409 | : (node_ecdsa ? node_ecdsa /* no ecdsa signature case (< TLSv1.2) */ |
| 2410 | : node_rsa /* no rsa signature case (far far away) */ |
| 2411 | ))); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2412 | if (node) { |
| 2413 | /* switch ctx */ |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 2414 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2415 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
Olivier Houchard | 35a63cc | 2017-11-02 19:04:38 +0100 | [diff] [blame] | 2416 | if (conf) { |
| 2417 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2418 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2419 | if (conf->early_data) |
| 2420 | allow_early = 1; |
| 2421 | } |
| 2422 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2423 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2424 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2425 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2426 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2427 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2428 | } |
| 2429 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2430 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2431 | /* no certificate match, is the default_ctx */ |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2432 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2433 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2434 | allow_early: |
| 2435 | #ifdef OPENSSL_IS_BORINGSSL |
| 2436 | if (allow_early) |
| 2437 | SSL_set_early_data_enabled(ssl, 1); |
| 2438 | #else |
| 2439 | if (!allow_early) |
| 2440 | SSL_set_max_early_data(ssl, 0); |
| 2441 | #endif |
| 2442 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2443 | abort: |
| 2444 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2445 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2446 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2447 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2448 | #else |
| 2449 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2450 | return 0; |
| 2451 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2452 | } |
| 2453 | |
| 2454 | #else /* OPENSSL_IS_BORINGSSL */ |
| 2455 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2456 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2457 | * warning when no match is found, which implies the default (first) cert |
| 2458 | * will keep being used. |
| 2459 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2460 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2461 | { |
| 2462 | const char *servername; |
| 2463 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2464 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2465 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2466 | int i; |
| 2467 | (void)al; /* shut gcc stupid warning */ |
| 2468 | |
| 2469 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2470 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2471 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2472 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2473 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2474 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2475 | if (s->strict_sni) |
| 2476 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 2477 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
| 2478 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2479 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2480 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2481 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2482 | if (!servername[i]) |
| 2483 | break; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2484 | trash.area[i] = tolower(servername[i]); |
| 2485 | if (!wildp && (trash.area[i] == '.')) |
| 2486 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2487 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2488 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2489 | |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2490 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2491 | /* lookup in full qualified names */ |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2492 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2493 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2494 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2495 | node = n; |
| 2496 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2497 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2498 | } |
| 2499 | if (!node && wildp) { |
| 2500 | /* lookup in wildcards names */ |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2501 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2502 | /* lookup a not neg filter */ |
| 2503 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2504 | node = n; |
| 2505 | break; |
| 2506 | } |
| 2507 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2508 | } |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2509 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2510 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2511 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2512 | /* switch ctx done in ssl_sock_generate_certificate */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2513 | return SSL_TLSEXT_ERR_OK; |
| 2514 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2515 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2516 | if (s->strict_sni) |
| 2517 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 2518 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
| 2519 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2520 | } |
| 2521 | |
| 2522 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2523 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2524 | return SSL_TLSEXT_ERR_OK; |
| 2525 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2526 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2527 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2528 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2529 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2530 | |
| 2531 | static DH * ssl_get_dh_1024(void) |
| 2532 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2533 | static unsigned char dh1024_p[]={ |
| 2534 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2535 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2536 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2537 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2538 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2539 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2540 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2541 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2542 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2543 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2544 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2545 | }; |
| 2546 | static unsigned char dh1024_g[]={ |
| 2547 | 0x02, |
| 2548 | }; |
| 2549 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2550 | BIGNUM *p; |
| 2551 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2552 | DH *dh = DH_new(); |
| 2553 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2554 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2555 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2556 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2557 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2558 | DH_free(dh); |
| 2559 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2560 | } else { |
| 2561 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2562 | } |
| 2563 | } |
| 2564 | return dh; |
| 2565 | } |
| 2566 | |
| 2567 | static DH *ssl_get_dh_2048(void) |
| 2568 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2569 | static unsigned char dh2048_p[]={ |
| 2570 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2571 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2572 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2573 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2574 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2575 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2576 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2577 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2578 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2579 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2580 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2581 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2582 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2583 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2584 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2585 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2586 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2587 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2588 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2589 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2590 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2591 | 0xB7,0x1F,0x77,0xF3, |
| 2592 | }; |
| 2593 | static unsigned char dh2048_g[]={ |
| 2594 | 0x02, |
| 2595 | }; |
| 2596 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2597 | BIGNUM *p; |
| 2598 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2599 | DH *dh = DH_new(); |
| 2600 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2601 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2602 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2603 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2604 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2605 | DH_free(dh); |
| 2606 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2607 | } else { |
| 2608 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2609 | } |
| 2610 | } |
| 2611 | return dh; |
| 2612 | } |
| 2613 | |
| 2614 | static DH *ssl_get_dh_4096(void) |
| 2615 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2616 | static unsigned char dh4096_p[]={ |
| 2617 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2618 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2619 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2620 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2621 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2622 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2623 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2624 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2625 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2626 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2627 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2628 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2629 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2630 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2631 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2632 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2633 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2634 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2635 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2636 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2637 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2638 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2639 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2640 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2641 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2642 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2643 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2644 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2645 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2646 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2647 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2648 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2649 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2650 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2651 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2652 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2653 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2654 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2655 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2656 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2657 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2658 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2659 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2660 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2661 | static unsigned char dh4096_g[]={ |
| 2662 | 0x02, |
| 2663 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2664 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2665 | BIGNUM *p; |
| 2666 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2667 | DH *dh = DH_new(); |
| 2668 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2669 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2670 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2671 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2672 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2673 | DH_free(dh); |
| 2674 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2675 | } else { |
| 2676 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2677 | } |
| 2678 | } |
| 2679 | return dh; |
| 2680 | } |
| 2681 | |
| 2682 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2683 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2684 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2685 | { |
| 2686 | DH *dh = NULL; |
| 2687 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2688 | int type; |
| 2689 | |
| 2690 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2691 | |
| 2692 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2693 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2694 | */ |
| 2695 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 2696 | keylen = EVP_PKEY_bits(pkey); |
| 2697 | } |
| 2698 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2699 | if (keylen > global_ssl.default_dh_param) { |
| 2700 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2701 | } |
| 2702 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2703 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2704 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2705 | } |
| 2706 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2707 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2708 | } |
| 2709 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2710 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2711 | } |
| 2712 | |
| 2713 | return dh; |
| 2714 | } |
| 2715 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2716 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2717 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2718 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2719 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2720 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2721 | if (in == NULL) |
| 2722 | goto end; |
| 2723 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2724 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2725 | goto end; |
| 2726 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2727 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 2728 | |
| 2729 | end: |
| 2730 | if (in) |
| 2731 | BIO_free(in); |
| 2732 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 2733 | ERR_clear_error(); |
| 2734 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2735 | return dh; |
| 2736 | } |
| 2737 | |
| 2738 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 2739 | { |
| 2740 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 2741 | |
| 2742 | if (global_dh) { |
| 2743 | return 0; |
| 2744 | } |
| 2745 | |
| 2746 | return -1; |
| 2747 | } |
| 2748 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2749 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
| 2750 | * If there is no DH paramater availaible in the ckchs, the global |
| 2751 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 2752 | * DH parameter available in ckchs nor in global, the default |
| 2753 | * DH parameters are applied on the SSL_CTX. |
| 2754 | * Returns a bitfield containing the flags: |
| 2755 | * ERR_FATAL in any fatal error case |
| 2756 | * ERR_ALERT if a reason of the error is availabine in err |
| 2757 | * ERR_WARN if a warning is available into err |
| 2758 | * The value 0 means there is no error nor warning and |
| 2759 | * the operation succeed. |
| 2760 | */ |
| 2761 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file, char **err) |
| 2762 | { |
| 2763 | int ret = 0; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2764 | DH *dh = ssl_sock_get_dh_from_file(file); |
| 2765 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2766 | if (dh) { |
Emeric Brun | d6de151 | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 2767 | if (!SSL_CTX_set_tmp_dh(ctx, dh)) { |
| 2768 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 2769 | err && *err ? *err : "", file); |
| 2770 | #if defined(SSL_CTX_set_dh_auto) |
| 2771 | SSL_CTX_set_dh_auto(ctx, 1); |
| 2772 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 2773 | err && *err ? *err : ""); |
| 2774 | #else |
| 2775 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 2776 | err && *err ? *err : ""); |
| 2777 | #endif |
| 2778 | ret |= ERR_WARN; |
| 2779 | goto end; |
| 2780 | } |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2781 | |
| 2782 | if (ssl_dh_ptr_index >= 0) { |
| 2783 | /* store a pointer to the DH params to avoid complaining about |
| 2784 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 2785 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 2786 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2787 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2788 | else if (global_dh) { |
Emeric Brun | d6de151 | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 2789 | if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) { |
| 2790 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 2791 | err && *err ? *err : "", file); |
| 2792 | #if defined(SSL_CTX_set_dh_auto) |
| 2793 | SSL_CTX_set_dh_auto(ctx, 1); |
| 2794 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 2795 | err && *err ? *err : ""); |
| 2796 | #else |
| 2797 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 2798 | err && *err ? *err : ""); |
| 2799 | #endif |
| 2800 | ret |= ERR_WARN; |
| 2801 | goto end; |
| 2802 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2803 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2804 | else { |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 2805 | /* Clear openssl global errors stack */ |
| 2806 | ERR_clear_error(); |
| 2807 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2808 | if (global_ssl.default_dh_param <= 1024) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2809 | /* we are limited to DH parameter of 1024 bits anyway */ |
Remi Gacogne | c7e1263 | 2016-07-02 16:26:10 +0200 | [diff] [blame] | 2810 | if (local_dh_1024 == NULL) |
| 2811 | local_dh_1024 = ssl_get_dh_1024(); |
| 2812 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2813 | if (local_dh_1024 == NULL) { |
| 2814 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 2815 | err && *err ? *err : "", file); |
| 2816 | ret |= ERR_ALERT | ERR_FATAL; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2817 | goto end; |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2818 | } |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 2819 | |
Emeric Brun | d6de151 | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 2820 | if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) { |
| 2821 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 2822 | err && *err ? *err : "", file); |
| 2823 | #if defined(SSL_CTX_set_dh_auto) |
| 2824 | SSL_CTX_set_dh_auto(ctx, 1); |
| 2825 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 2826 | err && *err ? *err : ""); |
| 2827 | #else |
| 2828 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 2829 | err && *err ? *err : ""); |
| 2830 | #endif |
| 2831 | ret |= ERR_WARN; |
| 2832 | goto end; |
| 2833 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2834 | } |
| 2835 | else { |
| 2836 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 2837 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2838 | } |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2839 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2840 | end: |
| 2841 | if (dh) |
| 2842 | DH_free(dh); |
| 2843 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2844 | return ret; |
| 2845 | } |
| 2846 | #endif |
| 2847 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2848 | static int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, struct ssl_bind_conf *conf, |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2849 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2850 | { |
| 2851 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2852 | int wild = 0, neg = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2853 | struct ebmb_node *node; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2854 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2855 | if (*name == '!') { |
| 2856 | neg = 1; |
| 2857 | name++; |
| 2858 | } |
| 2859 | if (*name == '*') { |
| 2860 | wild = 1; |
| 2861 | name++; |
| 2862 | } |
| 2863 | /* !* filter is a nop */ |
| 2864 | if (neg && wild) |
| 2865 | return order; |
| 2866 | if (*name) { |
| 2867 | int j, len; |
| 2868 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2869 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2870 | trash.area[j] = tolower(name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2871 | if (j >= trash.size) |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2872 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2873 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2874 | |
| 2875 | /* Check for duplicates. */ |
| 2876 | if (wild) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2877 | node = ebst_lookup(&s->sni_w_ctx, trash.area); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2878 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2879 | node = ebst_lookup(&s->sni_ctx, trash.area); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2880 | for (; node; node = ebmb_next_dup(node)) { |
| 2881 | sc = ebmb_entry(node, struct sni_ctx, name); |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2882 | if (sc->ctx == ctx && sc->conf == conf && sc->neg == neg) |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2883 | return order; |
| 2884 | } |
| 2885 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2886 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 2887 | if (!sc) |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2888 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2889 | memcpy(sc->name.key, trash.area, len + 1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2890 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2891 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2892 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2893 | sc->order = order++; |
| 2894 | sc->neg = neg; |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 2895 | if (kinfo.sig != TLSEXT_signature_anonymous) |
| 2896 | SSL_CTX_set_ex_data(ctx, ssl_pkey_info_index, &sc->kinfo); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2897 | if (wild) |
| 2898 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 2899 | else |
| 2900 | ebst_insert(&s->sni_ctx, &sc->name); |
| 2901 | } |
| 2902 | return order; |
| 2903 | } |
| 2904 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2905 | |
| 2906 | /* The following code is used for loading multiple crt files into |
| 2907 | * SSL_CTX's based on CN/SAN |
| 2908 | */ |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 2909 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2910 | /* This is used to preload the certifcate, private key |
| 2911 | * and Cert Chain of a file passed in via the crt |
| 2912 | * argument |
| 2913 | * |
| 2914 | * This way, we do not have to read the file multiple times |
| 2915 | */ |
| 2916 | struct cert_key_and_chain { |
| 2917 | X509 *cert; |
| 2918 | EVP_PKEY *key; |
| 2919 | unsigned int num_chain_certs; |
| 2920 | /* This is an array of X509 pointers */ |
| 2921 | X509 **chain_certs; |
| 2922 | }; |
| 2923 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2924 | #define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES)) |
| 2925 | |
| 2926 | struct key_combo_ctx { |
| 2927 | SSL_CTX *ctx; |
| 2928 | int order; |
| 2929 | }; |
| 2930 | |
| 2931 | /* Map used for processing multiple keypairs for a single purpose |
| 2932 | * |
| 2933 | * This maps CN/SNI name to certificate type |
| 2934 | */ |
| 2935 | struct sni_keytype { |
| 2936 | int keytypes; /* BITMASK for keytypes */ |
| 2937 | struct ebmb_node name; /* node holding the servername value */ |
| 2938 | }; |
| 2939 | |
| 2940 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2941 | /* Frees the contents of a cert_key_and_chain |
| 2942 | */ |
| 2943 | static void ssl_sock_free_cert_key_and_chain_contents(struct cert_key_and_chain *ckch) |
| 2944 | { |
| 2945 | int i; |
| 2946 | |
| 2947 | if (!ckch) |
| 2948 | return; |
| 2949 | |
| 2950 | /* Free the certificate and set pointer to NULL */ |
| 2951 | if (ckch->cert) |
| 2952 | X509_free(ckch->cert); |
| 2953 | ckch->cert = NULL; |
| 2954 | |
| 2955 | /* Free the key and set pointer to NULL */ |
| 2956 | if (ckch->key) |
| 2957 | EVP_PKEY_free(ckch->key); |
| 2958 | ckch->key = NULL; |
| 2959 | |
| 2960 | /* Free each certificate in the chain */ |
| 2961 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 2962 | if (ckch->chain_certs[i]) |
| 2963 | X509_free(ckch->chain_certs[i]); |
| 2964 | } |
| 2965 | |
| 2966 | /* Free the chain obj itself and set to NULL */ |
| 2967 | if (ckch->num_chain_certs > 0) { |
| 2968 | free(ckch->chain_certs); |
| 2969 | ckch->num_chain_certs = 0; |
| 2970 | ckch->chain_certs = NULL; |
| 2971 | } |
| 2972 | |
| 2973 | } |
| 2974 | |
| 2975 | /* checks if a key and cert exists in the ckch |
| 2976 | */ |
| 2977 | static int ssl_sock_is_ckch_valid(struct cert_key_and_chain *ckch) |
| 2978 | { |
| 2979 | return (ckch->cert != NULL && ckch->key != NULL); |
| 2980 | } |
| 2981 | |
| 2982 | |
| 2983 | /* Loads the contents of a crt file (path) into a cert_key_and_chain |
| 2984 | * This allows us to carry the contents of the file without having to |
| 2985 | * read the file multiple times. |
| 2986 | * |
| 2987 | * returns: |
| 2988 | * 0 on Success |
| 2989 | * 1 on SSL Failure |
| 2990 | * 2 on file not found |
| 2991 | */ |
| 2992 | static int ssl_sock_load_crt_file_into_ckch(const char *path, struct cert_key_and_chain *ckch, char **err) |
| 2993 | { |
| 2994 | |
| 2995 | BIO *in; |
| 2996 | X509 *ca = NULL; |
| 2997 | int ret = 1; |
| 2998 | |
| 2999 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 3000 | |
| 3001 | in = BIO_new(BIO_s_file()); |
| 3002 | if (in == NULL) |
| 3003 | goto end; |
| 3004 | |
| 3005 | if (BIO_read_filename(in, path) <= 0) |
| 3006 | goto end; |
| 3007 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3008 | /* Read Private Key */ |
| 3009 | ckch->key = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL); |
| 3010 | if (ckch->key == NULL) { |
| 3011 | memprintf(err, "%sunable to load private key from file '%s'.\n", |
| 3012 | err && *err ? *err : "", path); |
| 3013 | goto end; |
| 3014 | } |
| 3015 | |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 3016 | /* Seek back to beginning of file */ |
Thierry FOURNIER / OZON.IO | d44ea3f | 2016-10-14 00:49:21 +0200 | [diff] [blame] | 3017 | if (BIO_reset(in) == -1) { |
| 3018 | memprintf(err, "%san error occurred while reading the file '%s'.\n", |
| 3019 | err && *err ? *err : "", path); |
| 3020 | goto end; |
| 3021 | } |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 3022 | |
| 3023 | /* Read Certificate */ |
| 3024 | ckch->cert = PEM_read_bio_X509_AUX(in, NULL, NULL, NULL); |
| 3025 | if (ckch->cert == NULL) { |
| 3026 | memprintf(err, "%sunable to load certificate from file '%s'.\n", |
| 3027 | err && *err ? *err : "", path); |
| 3028 | goto end; |
| 3029 | } |
| 3030 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3031 | /* Read Certificate Chain */ |
| 3032 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 3033 | /* Grow the chain certs */ |
| 3034 | ckch->num_chain_certs++; |
| 3035 | ckch->chain_certs = realloc(ckch->chain_certs, (ckch->num_chain_certs * sizeof(X509 *))); |
| 3036 | |
| 3037 | /* use - 1 here since we just incremented it above */ |
| 3038 | ckch->chain_certs[ckch->num_chain_certs - 1] = ca; |
| 3039 | } |
| 3040 | ret = ERR_get_error(); |
| 3041 | if (ret && (ERR_GET_LIB(ret) != ERR_LIB_PEM && ERR_GET_REASON(ret) != PEM_R_NO_START_LINE)) { |
| 3042 | memprintf(err, "%sunable to load certificate chain from file '%s'.\n", |
| 3043 | err && *err ? *err : "", path); |
| 3044 | ret = 1; |
| 3045 | goto end; |
| 3046 | } |
| 3047 | |
| 3048 | ret = 0; |
| 3049 | |
| 3050 | end: |
| 3051 | |
| 3052 | ERR_clear_error(); |
| 3053 | if (in) |
| 3054 | BIO_free(in); |
| 3055 | |
| 3056 | /* Something went wrong in one of the reads */ |
| 3057 | if (ret != 0) |
| 3058 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 3059 | |
| 3060 | return ret; |
| 3061 | } |
| 3062 | |
| 3063 | /* Loads the info in ckch into ctx |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3064 | * Returns a bitfield containing the flags: |
| 3065 | * ERR_FATAL in any fatal error case |
| 3066 | * ERR_ALERT if the reason of the error is available in err |
| 3067 | * ERR_WARN if a warning is available into err |
| 3068 | * The value 0 means there is no error nor warning and |
| 3069 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3070 | */ |
| 3071 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 3072 | { |
| 3073 | int i = 0; |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3074 | int errcode = 0; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3075 | |
| 3076 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3077 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3078 | err && *err ? *err : "", path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3079 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3080 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3081 | } |
| 3082 | |
| 3083 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 3084 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 3085 | err && *err ? *err : "", path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3086 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3087 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3088 | } |
| 3089 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3090 | /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */ |
| 3091 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 3092 | if (!SSL_CTX_add1_chain_cert(ctx, ckch->chain_certs[i])) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3093 | memprintf(err, "%sunable to load chain certificate #%d into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 3094 | err && *err ? *err : "", (i+1), path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3095 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3096 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3097 | } |
| 3098 | } |
| 3099 | |
| 3100 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3101 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3102 | err && *err ? *err : "", path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3103 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3104 | } |
| 3105 | |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3106 | end: |
| 3107 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3108 | } |
| 3109 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3110 | |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3111 | static int ssl_sock_populate_sni_keytypes_hplr(const char *str, struct eb_root *sni_keytypes, int key_index) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3112 | { |
| 3113 | struct sni_keytype *s_kt = NULL; |
| 3114 | struct ebmb_node *node; |
| 3115 | int i; |
| 3116 | |
| 3117 | for (i = 0; i < trash.size; i++) { |
| 3118 | if (!str[i]) |
| 3119 | break; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3120 | trash.area[i] = tolower(str[i]); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3121 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3122 | trash.area[i] = 0; |
| 3123 | node = ebst_lookup(sni_keytypes, trash.area); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3124 | if (!node) { |
| 3125 | /* CN not found in tree */ |
| 3126 | s_kt = malloc(sizeof(struct sni_keytype) + i + 1); |
| 3127 | /* Using memcpy here instead of strncpy. |
| 3128 | * strncpy will cause sig_abrt errors under certain versions of gcc with -O2 |
| 3129 | * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60792 |
| 3130 | */ |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3131 | if (!s_kt) |
| 3132 | return -1; |
| 3133 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3134 | memcpy(s_kt->name.key, trash.area, i+1); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3135 | s_kt->keytypes = 0; |
| 3136 | ebst_insert(sni_keytypes, &s_kt->name); |
| 3137 | } else { |
| 3138 | /* CN found in tree */ |
| 3139 | s_kt = container_of(node, struct sni_keytype, name); |
| 3140 | } |
| 3141 | |
| 3142 | /* Mark that this CN has the keytype of key_index via keytypes mask */ |
| 3143 | s_kt->keytypes |= 1<<key_index; |
| 3144 | |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3145 | return 0; |
| 3146 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3147 | } |
| 3148 | |
| 3149 | |
| 3150 | /* Given a path that does not exist, try to check for path.rsa, path.dsa and path.ecdsa files. |
| 3151 | * If any are found, group these files into a set of SSL_CTX* |
| 3152 | * based on shared and unique CN and SAN entries. Add these SSL_CTX* to the SNI tree. |
| 3153 | * |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 3154 | * This will allow the user to explicitly group multiple cert/keys for a single purpose |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3155 | * |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3156 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3157 | * |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3158 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3159 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3160 | char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3161 | { |
| 3162 | char fp[MAXPATHLEN+1] = {0}; |
| 3163 | int n = 0; |
| 3164 | int i = 0; |
| 3165 | struct cert_key_and_chain certs_and_keys[SSL_SOCK_NUM_KEYTYPES] = { {0} }; |
| 3166 | struct eb_root sni_keytypes_map = { {0} }; |
| 3167 | struct ebmb_node *node; |
| 3168 | struct ebmb_node *next; |
| 3169 | /* Array of SSL_CTX pointers corresponding to each possible combo |
| 3170 | * of keytypes |
| 3171 | */ |
| 3172 | struct key_combo_ctx key_combos[SSL_SOCK_POSSIBLE_KT_COMBOS] = { {0} }; |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3173 | int errcode = 0; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3174 | X509_NAME *xname = NULL; |
| 3175 | char *str = NULL; |
| 3176 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3177 | STACK_OF(GENERAL_NAME) *names = NULL; |
| 3178 | #endif |
| 3179 | |
| 3180 | /* Load all possible certs and keys */ |
| 3181 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3182 | struct stat buf; |
| 3183 | |
| 3184 | snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3185 | if (stat(fp, &buf) == 0) { |
| 3186 | if (ssl_sock_load_crt_file_into_ckch(fp, &certs_and_keys[n], err) == 1) { |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3187 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3188 | goto end; |
| 3189 | } |
| 3190 | } |
| 3191 | } |
| 3192 | |
| 3193 | /* Process each ckch and update keytypes for each CN/SAN |
| 3194 | * for example, if CN/SAN www.a.com is associated with |
| 3195 | * certs with keytype 0 and 2, then at the end of the loop, |
| 3196 | * www.a.com will have: |
| 3197 | * keyindex = 0 | 1 | 4 = 5 |
| 3198 | */ |
| 3199 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3200 | int ret; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3201 | |
| 3202 | if (!ssl_sock_is_ckch_valid(&certs_and_keys[n])) |
| 3203 | continue; |
| 3204 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3205 | if (fcount) { |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3206 | for (i = 0; i < fcount; i++) { |
| 3207 | ret = ssl_sock_populate_sni_keytypes_hplr(sni_filter[i], &sni_keytypes_map, n); |
| 3208 | if (ret < 0) { |
| 3209 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3210 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3211 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3212 | goto end; |
| 3213 | } |
| 3214 | } |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3215 | } else { |
| 3216 | /* A lot of the following code is OpenSSL boilerplate for processing CN's and SAN's, |
| 3217 | * so the line that contains logic is marked via comments |
| 3218 | */ |
| 3219 | xname = X509_get_subject_name(certs_and_keys[n].cert); |
| 3220 | i = -1; |
| 3221 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3222 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3223 | ASN1_STRING *value; |
| 3224 | value = X509_NAME_ENTRY_get_data(entry); |
| 3225 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3226 | /* Important line is here */ |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3227 | ret = ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3228 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3229 | OPENSSL_free(str); |
| 3230 | str = NULL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3231 | if (ret < 0) { |
| 3232 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3233 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3234 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3235 | goto end; |
| 3236 | } |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3237 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3238 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3239 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3240 | /* Do the above logic for each SAN */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3241 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3242 | names = X509_get_ext_d2i(certs_and_keys[n].cert, NID_subject_alt_name, NULL, NULL); |
| 3243 | if (names) { |
| 3244 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3245 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3246 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3247 | if (name->type == GEN_DNS) { |
| 3248 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
| 3249 | /* Important line is here */ |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3250 | ret = ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3251 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3252 | OPENSSL_free(str); |
| 3253 | str = NULL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3254 | if (ret < 0) { |
| 3255 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3256 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3257 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3258 | goto end; |
| 3259 | } |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3260 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3261 | } |
| 3262 | } |
| 3263 | } |
| 3264 | } |
| 3265 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 3266 | } |
| 3267 | |
| 3268 | /* If no files found, return error */ |
| 3269 | if (eb_is_empty(&sni_keytypes_map)) { |
| 3270 | memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n", |
| 3271 | err && *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3272 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3273 | goto end; |
| 3274 | } |
| 3275 | |
| 3276 | /* We now have a map of CN/SAN to keytypes that are loaded in |
| 3277 | * Iterate through the map to create the SSL_CTX's (if needed) |
| 3278 | * and add each CTX to the SNI tree |
| 3279 | * |
| 3280 | * Some math here: |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 3281 | * There are 2^n - 1 possible combinations, each unique |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3282 | * combination is denoted by the key in the map. Each key |
| 3283 | * has a value between 1 and 2^n - 1. Conveniently, the array |
| 3284 | * of SSL_CTX* is sized 2^n. So, we can simply use the i'th |
| 3285 | * entry in the array to correspond to the unique combo (key) |
| 3286 | * associated with i. This unique key combo (i) will be associated |
| 3287 | * with combos[i-1] |
| 3288 | */ |
| 3289 | |
| 3290 | node = ebmb_first(&sni_keytypes_map); |
| 3291 | while (node) { |
| 3292 | SSL_CTX *cur_ctx; |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3293 | char cur_file[MAXPATHLEN+1]; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3294 | const struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3295 | |
| 3296 | str = (char *)container_of(node, struct sni_keytype, name)->name.key; |
| 3297 | i = container_of(node, struct sni_keytype, name)->keytypes; |
| 3298 | cur_ctx = key_combos[i-1].ctx; |
| 3299 | |
| 3300 | if (cur_ctx == NULL) { |
| 3301 | /* need to create SSL_CTX */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3302 | cur_ctx = SSL_CTX_new(SSLv23_server_method()); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3303 | if (cur_ctx == NULL) { |
| 3304 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3305 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3306 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3307 | goto end; |
| 3308 | } |
| 3309 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3310 | /* Load all required certs/keys/chains/OCSPs info into SSL_CTX */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3311 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3312 | if (i & (1<<n)) { |
| 3313 | /* Key combo contains ckch[n] */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3314 | snprintf(cur_file, MAXPATHLEN+1, "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3315 | errcode |= ssl_sock_put_ckch_into_ctx(cur_file, &certs_and_keys[n], cur_ctx, err); |
| 3316 | if (errcode & ERR_CODE) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3317 | SSL_CTX_free(cur_ctx); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3318 | goto end; |
| 3319 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3320 | |
| 3321 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 3322 | /* Load OCSP Info into context */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3323 | if (ssl_sock_load_ocsp(cur_ctx, cur_file) < 0) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3324 | if (err) |
| 3325 | memprintf(err, "%s '%s.ocsp' is present and activates OCSP but it is impossible to compute the OCSP certificate ID (maybe the issuer could not be found)'.\n", |
Bertrand Jacquin | 5424ee0 | 2016-11-13 16:37:14 +0000 | [diff] [blame] | 3326 | *err ? *err : "", cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3327 | SSL_CTX_free(cur_ctx); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3328 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3329 | goto end; |
| 3330 | } |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 3331 | #elif (defined OPENSSL_IS_BORINGSSL) |
| 3332 | ssl_sock_set_ocsp_response_from_file(cur_ctx, cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3333 | #endif |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3334 | } |
| 3335 | } |
| 3336 | |
| 3337 | /* Load DH params into the ctx to support DHE keys */ |
| 3338 | #ifndef OPENSSL_NO_DH |
| 3339 | if (ssl_dh_ptr_index >= 0) |
| 3340 | SSL_CTX_set_ex_data(cur_ctx, ssl_dh_ptr_index, NULL); |
| 3341 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3342 | errcode |= ssl_sock_load_dh_params(cur_ctx, NULL, err); |
| 3343 | if (errcode & ERR_CODE) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3344 | if (err) |
| 3345 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3346 | *err ? *err : "", path); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3347 | goto end; |
| 3348 | } |
| 3349 | #endif |
| 3350 | |
| 3351 | /* Update key_combos */ |
| 3352 | key_combos[i-1].ctx = cur_ctx; |
| 3353 | } |
| 3354 | |
| 3355 | /* Update SNI Tree */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3356 | key_combos[i-1].order = ssl_sock_add_cert_sni(cur_ctx, bind_conf, ssl_conf, |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3357 | kinfo, str, key_combos[i-1].order); |
| 3358 | if (key_combos[i-1].order < 0) { |
| 3359 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3360 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3361 | goto end; |
| 3362 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3363 | node = ebmb_next(node); |
| 3364 | } |
| 3365 | |
| 3366 | |
| 3367 | /* Mark a default context if none exists, using the ctx that has the most shared keys */ |
| 3368 | if (!bind_conf->default_ctx) { |
| 3369 | for (i = SSL_SOCK_POSSIBLE_KT_COMBOS - 1; i >= 0; i--) { |
| 3370 | if (key_combos[i].ctx) { |
| 3371 | bind_conf->default_ctx = key_combos[i].ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3372 | bind_conf->default_ssl_conf = ssl_conf; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3373 | break; |
| 3374 | } |
| 3375 | } |
| 3376 | } |
| 3377 | |
| 3378 | end: |
| 3379 | |
| 3380 | if (names) |
| 3381 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
| 3382 | |
| 3383 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) |
| 3384 | ssl_sock_free_cert_key_and_chain_contents(&certs_and_keys[n]); |
| 3385 | |
| 3386 | node = ebmb_first(&sni_keytypes_map); |
| 3387 | while (node) { |
| 3388 | next = ebmb_next(node); |
| 3389 | ebmb_delete(node); |
William Lallemand | e92c030 | 2019-10-04 17:24:39 +0200 | [diff] [blame] | 3390 | free(ebmb_entry(node, struct sni_keytype, name)); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3391 | node = next; |
| 3392 | } |
| 3393 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3394 | return errcode; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3395 | } |
| 3396 | #else |
| 3397 | /* This is a dummy, that just logs an error and returns error */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3398 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3399 | char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3400 | { |
| 3401 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3402 | err && *err ? *err : "", path, strerror(errno)); |
| 3403 | return 1; |
| 3404 | } |
| 3405 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3406 | #endif /* #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL: Support for loading multiple certs into a single SSL_CTX */ |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3407 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3408 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 3409 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 3410 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3411 | static int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s, |
| 3412 | struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3413 | { |
| 3414 | BIO *in; |
| 3415 | X509 *x = NULL, *ca; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3416 | int i, err; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3417 | int ret = -1; |
| 3418 | int order = 0; |
| 3419 | X509_NAME *xname; |
| 3420 | char *str; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3421 | pem_password_cb *passwd_cb; |
| 3422 | void *passwd_cb_userdata; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3423 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3424 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3425 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3426 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3427 | STACK_OF(GENERAL_NAME) *names; |
| 3428 | #endif |
| 3429 | |
| 3430 | in = BIO_new(BIO_s_file()); |
| 3431 | if (in == NULL) |
| 3432 | goto end; |
| 3433 | |
| 3434 | if (BIO_read_filename(in, file) <= 0) |
| 3435 | goto end; |
| 3436 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3437 | |
| 3438 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 3439 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 3440 | |
| 3441 | x = PEM_read_bio_X509_AUX(in, NULL, passwd_cb, passwd_cb_userdata); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3442 | if (x == NULL) |
| 3443 | goto end; |
| 3444 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3445 | pkey = X509_get_pubkey(x); |
| 3446 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3447 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3448 | switch(EVP_PKEY_base_id(pkey)) { |
| 3449 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3450 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3451 | break; |
| 3452 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3453 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3454 | break; |
| 3455 | case EVP_PKEY_DSA: |
| 3456 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3457 | break; |
| 3458 | } |
| 3459 | EVP_PKEY_free(pkey); |
| 3460 | } |
| 3461 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3462 | if (fcount) { |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3463 | while (fcount--) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3464 | order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, sni_filter[fcount], order); |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3465 | if (order < 0) |
| 3466 | goto end; |
| 3467 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3468 | } |
| 3469 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3470 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3471 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 3472 | if (names) { |
| 3473 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3474 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3475 | if (name->type == GEN_DNS) { |
| 3476 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3477 | order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3478 | OPENSSL_free(str); |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3479 | if (order < 0) |
| 3480 | goto end; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3481 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3482 | } |
| 3483 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3484 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3485 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3486 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3487 | xname = X509_get_subject_name(x); |
| 3488 | i = -1; |
| 3489 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3490 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3491 | ASN1_STRING *value; |
| 3492 | |
| 3493 | value = X509_NAME_ENTRY_get_data(entry); |
| 3494 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3495 | order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3496 | OPENSSL_free(str); |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3497 | if (order < 0) |
| 3498 | goto end; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3499 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3500 | } |
| 3501 | } |
| 3502 | |
| 3503 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 3504 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 3505 | goto end; |
| 3506 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3507 | #ifdef SSL_CTX_clear_extra_chain_certs |
| 3508 | SSL_CTX_clear_extra_chain_certs(ctx); |
| 3509 | #else |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3510 | if (ctx->extra_certs != NULL) { |
| 3511 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 3512 | ctx->extra_certs = NULL; |
| 3513 | } |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3514 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3515 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3516 | while ((ca = PEM_read_bio_X509(in, NULL, passwd_cb, passwd_cb_userdata))) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3517 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 3518 | X509_free(ca); |
| 3519 | goto end; |
| 3520 | } |
| 3521 | } |
| 3522 | |
| 3523 | err = ERR_get_error(); |
| 3524 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 3525 | /* we successfully reached the last cert in the file */ |
| 3526 | ret = 1; |
| 3527 | } |
| 3528 | ERR_clear_error(); |
| 3529 | |
| 3530 | end: |
| 3531 | if (x) |
| 3532 | X509_free(x); |
| 3533 | |
| 3534 | if (in) |
| 3535 | BIO_free(in); |
| 3536 | |
| 3537 | return ret; |
| 3538 | } |
| 3539 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3540 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3541 | static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3542 | char **sni_filter, int fcount, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3543 | { |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3544 | int errcode = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3545 | int ret; |
| 3546 | SSL_CTX *ctx; |
| 3547 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3548 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3549 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3550 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3551 | err && *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3552 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3553 | } |
| 3554 | |
| 3555 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3556 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 3557 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3558 | SSL_CTX_free(ctx); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3559 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3560 | } |
| 3561 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3562 | ret = ssl_sock_load_cert_chain_file(ctx, path, bind_conf, ssl_conf, sni_filter, fcount); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3563 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3564 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 3565 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3566 | if (ret < 0) /* serious error, must do that ourselves */ |
| 3567 | SSL_CTX_free(ctx); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3568 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3569 | } |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 3570 | |
| 3571 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3572 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3573 | err && *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3574 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 3575 | } |
| 3576 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3577 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3578 | * the tree, so it will be discovered and cleaned in time. |
| 3579 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3580 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 3581 | /* store a NULL pointer to indicate we have not yet loaded |
| 3582 | a custom DH param file */ |
| 3583 | if (ssl_dh_ptr_index >= 0) { |
| 3584 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3585 | } |
| 3586 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3587 | errcode |= ssl_sock_load_dh_params(ctx, path, err); |
| 3588 | if (errcode & ERR_CODE) { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3589 | if (err) |
| 3590 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3591 | *err ? *err : "", path); |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3592 | return errcode; |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3593 | } |
| 3594 | #endif |
| 3595 | |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 3596 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3597 | ret = ssl_sock_load_ocsp(ctx, path); |
| 3598 | if (ret < 0) { |
| 3599 | if (err) |
| 3600 | memprintf(err, "%s '%s.ocsp' is present and activates OCSP but it is impossible to compute the OCSP certificate ID (maybe the issuer could not be found)'.\n", |
| 3601 | *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3602 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3603 | } |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 3604 | #elif (defined OPENSSL_IS_BORINGSSL) |
| 3605 | ssl_sock_set_ocsp_response_from_file(ctx, path); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3606 | #endif |
| 3607 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 3608 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 3609 | if (sctl_ex_index >= 0) { |
| 3610 | ret = ssl_sock_load_sctl(ctx, path); |
| 3611 | if (ret < 0) { |
| 3612 | if (err) |
| 3613 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
| 3614 | *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3615 | return ERR_ALERT | ERR_FATAL; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 3616 | } |
| 3617 | } |
| 3618 | #endif |
| 3619 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3620 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3621 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3622 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3623 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3624 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3625 | } |
| 3626 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3627 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3628 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3629 | bind_conf->default_ssl_conf = ssl_conf; |
| 3630 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3631 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3632 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3633 | } |
| 3634 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3635 | |
| 3636 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 3637 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3638 | { |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3639 | struct dirent **de_list; |
| 3640 | int i, n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3641 | DIR *dir; |
| 3642 | struct stat buf; |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 3643 | char *end; |
| 3644 | char fp[MAXPATHLEN+1]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3645 | int cfgerr = 0; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3646 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3647 | int is_bundle; |
| 3648 | int j; |
| 3649 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3650 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3651 | if (stat(path, &buf) == 0) { |
| 3652 | dir = opendir(path); |
| 3653 | if (!dir) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3654 | return ssl_sock_load_cert_file(path, bind_conf, NULL, NULL, 0, err); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3655 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3656 | /* strip trailing slashes, including first one */ |
| 3657 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 3658 | *end = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3659 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3660 | n = scandir(path, &de_list, 0, alphasort); |
| 3661 | if (n < 0) { |
| 3662 | memprintf(err, "%sunable to scan directory '%s' : %s.\n", |
| 3663 | err && *err ? *err : "", path, strerror(errno)); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3664 | cfgerr |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3665 | } |
| 3666 | else { |
| 3667 | for (i = 0; i < n; i++) { |
| 3668 | struct dirent *de = de_list[i]; |
Emeric Brun | 2aab722 | 2014-06-18 18:15:09 +0200 | [diff] [blame] | 3669 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3670 | end = strrchr(de->d_name, '.'); |
| 3671 | if (end && (!strcmp(end, ".issuer") || !strcmp(end, ".ocsp") || !strcmp(end, ".sctl"))) |
| 3672 | goto ignore_entry; |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3673 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3674 | snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name); |
| 3675 | if (stat(fp, &buf) != 0) { |
| 3676 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3677 | err && *err ? *err : "", fp, strerror(errno)); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3678 | cfgerr |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3679 | goto ignore_entry; |
| 3680 | } |
| 3681 | if (!S_ISREG(buf.st_mode)) |
| 3682 | goto ignore_entry; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3683 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3684 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3685 | is_bundle = 0; |
| 3686 | /* Check if current entry in directory is part of a multi-cert bundle */ |
| 3687 | |
| 3688 | if (end) { |
| 3689 | for (j = 0; j < SSL_SOCK_NUM_KEYTYPES; j++) { |
| 3690 | if (!strcmp(end + 1, SSL_SOCK_KEYTYPE_NAMES[j])) { |
| 3691 | is_bundle = 1; |
| 3692 | break; |
| 3693 | } |
| 3694 | } |
| 3695 | |
| 3696 | if (is_bundle) { |
| 3697 | char dp[MAXPATHLEN+1] = {0}; /* this will be the filename w/o the keytype */ |
| 3698 | int dp_len; |
| 3699 | |
| 3700 | dp_len = end - de->d_name; |
| 3701 | snprintf(dp, dp_len + 1, "%s", de->d_name); |
| 3702 | |
| 3703 | /* increment i and free de until we get to a non-bundle cert |
| 3704 | * Note here that we look at de_list[i + 1] before freeing de |
| 3705 | * this is important since ignore_entry will free de |
| 3706 | */ |
| 3707 | while (i + 1 < n && !strncmp(de_list[i + 1]->d_name, dp, dp_len)) { |
| 3708 | free(de); |
| 3709 | i++; |
| 3710 | de = de_list[i]; |
| 3711 | } |
| 3712 | |
| 3713 | snprintf(fp, sizeof(fp), "%s/%s", path, dp); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3714 | cfgerr |= ssl_sock_load_multi_cert(fp, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3715 | |
| 3716 | /* Successfully processed the bundle */ |
| 3717 | goto ignore_entry; |
| 3718 | } |
| 3719 | } |
| 3720 | |
| 3721 | #endif |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3722 | cfgerr |= ssl_sock_load_cert_file(fp, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3723 | ignore_entry: |
| 3724 | free(de); |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3725 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3726 | free(de_list); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3727 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3728 | closedir(dir); |
| 3729 | return cfgerr; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3730 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3731 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3732 | cfgerr |= ssl_sock_load_multi_cert(path, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3733 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3734 | return cfgerr; |
| 3735 | } |
| 3736 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 3737 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3738 | * done once. Zero is returned if the operation fails. No error is returned |
| 3739 | * if the random is said as not implemented, because we expect that openssl |
| 3740 | * will use another method once needed. |
| 3741 | */ |
| 3742 | static int ssl_initialize_random() |
| 3743 | { |
| 3744 | unsigned char random; |
| 3745 | static int random_initialized = 0; |
| 3746 | |
| 3747 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3748 | random_initialized = 1; |
| 3749 | |
| 3750 | return random_initialized; |
| 3751 | } |
| 3752 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3753 | /* release ssl bind conf */ |
| 3754 | void ssl_sock_free_ssl_conf(struct ssl_bind_conf *conf) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3755 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3756 | if (conf) { |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 3757 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3758 | free(conf->npn_str); |
| 3759 | conf->npn_str = NULL; |
| 3760 | #endif |
| 3761 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 3762 | free(conf->alpn_str); |
| 3763 | conf->alpn_str = NULL; |
| 3764 | #endif |
| 3765 | free(conf->ca_file); |
| 3766 | conf->ca_file = NULL; |
| 3767 | free(conf->crl_file); |
| 3768 | conf->crl_file = NULL; |
| 3769 | free(conf->ciphers); |
| 3770 | conf->ciphers = NULL; |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 3771 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 3772 | free(conf->ciphersuites); |
| 3773 | conf->ciphersuites = NULL; |
| 3774 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 3775 | free(conf->curves); |
| 3776 | conf->curves = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3777 | free(conf->ecdhe); |
| 3778 | conf->ecdhe = NULL; |
| 3779 | } |
| 3780 | } |
| 3781 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3782 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3783 | int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
| 3784 | { |
| 3785 | char thisline[CRT_LINESIZE]; |
| 3786 | char path[MAXPATHLEN+1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3787 | FILE *f; |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3788 | struct stat buf; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3789 | int linenum = 0; |
| 3790 | int cfgerr = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3791 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3792 | if ((f = fopen(file, "r")) == NULL) { |
| 3793 | memprintf(err, "cannot open file '%s' : %s", file, strerror(errno)); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3794 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3795 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3796 | |
| 3797 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3798 | int arg, newarg, cur_arg, i, ssl_b = 0, ssl_e = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3799 | char *end; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3800 | char *args[MAX_CRT_ARGS + 1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3801 | char *line = thisline; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3802 | char *crt_path; |
| 3803 | struct ssl_bind_conf *ssl_conf = NULL; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3804 | |
| 3805 | linenum++; |
| 3806 | end = line + strlen(line); |
| 3807 | if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') { |
| 3808 | /* Check if we reached the limit and the last char is not \n. |
| 3809 | * Watch out for the last line without the terminating '\n'! |
| 3810 | */ |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3811 | memprintf(err, "line %d too long in file '%s', limit is %d characters", |
| 3812 | linenum, file, (int)sizeof(thisline)-1); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3813 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3814 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3815 | } |
| 3816 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3817 | arg = 0; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3818 | newarg = 1; |
| 3819 | while (*line) { |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3820 | if (*line == '#' || *line == '\n' || *line == '\r') { |
| 3821 | /* end of string, end of loop */ |
| 3822 | *line = 0; |
| 3823 | break; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3824 | } else if (isspace(*line)) { |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3825 | newarg = 1; |
| 3826 | *line = 0; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3827 | } else if (*line == '[') { |
| 3828 | if (ssl_b) { |
| 3829 | memprintf(err, "too many '[' on line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3830 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3831 | break; |
| 3832 | } |
| 3833 | if (!arg) { |
| 3834 | memprintf(err, "file must start with a cert on line %d in file '%s'", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3835 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3836 | break; |
| 3837 | } |
| 3838 | ssl_b = arg; |
| 3839 | newarg = 1; |
| 3840 | *line = 0; |
| 3841 | } else if (*line == ']') { |
| 3842 | if (ssl_e) { |
| 3843 | memprintf(err, "too many ']' on line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3844 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3845 | break; |
| 3846 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3847 | if (!ssl_b) { |
| 3848 | memprintf(err, "missing '[' in line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3849 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3850 | break; |
| 3851 | } |
| 3852 | ssl_e = arg; |
| 3853 | newarg = 1; |
| 3854 | *line = 0; |
| 3855 | } else if (newarg) { |
| 3856 | if (arg == MAX_CRT_ARGS) { |
| 3857 | memprintf(err, "too many args on line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3858 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3859 | break; |
| 3860 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3861 | newarg = 0; |
| 3862 | args[arg++] = line; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3863 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3864 | line++; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3865 | } |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3866 | if (cfgerr & ERR_CODE) |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3867 | break; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3868 | args[arg++] = line; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3869 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3870 | /* empty line */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3871 | if (!*args[0]) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3872 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3873 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3874 | crt_path = args[0]; |
| 3875 | if (*crt_path != '/' && global_ssl.crt_base) { |
| 3876 | if ((strlen(global_ssl.crt_base) + 1 + strlen(crt_path)) > MAXPATHLEN) { |
| 3877 | memprintf(err, "'%s' : path too long on line %d in file '%s'", |
| 3878 | crt_path, linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3879 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3880 | break; |
| 3881 | } |
| 3882 | snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, crt_path); |
| 3883 | crt_path = path; |
| 3884 | } |
| 3885 | |
| 3886 | ssl_conf = calloc(1, sizeof *ssl_conf); |
| 3887 | cur_arg = ssl_b ? ssl_b : 1; |
| 3888 | while (cur_arg < ssl_e) { |
| 3889 | newarg = 0; |
| 3890 | for (i = 0; ssl_bind_kws[i].kw != NULL; i++) { |
| 3891 | if (strcmp(ssl_bind_kws[i].kw, args[cur_arg]) == 0) { |
| 3892 | newarg = 1; |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3893 | cfgerr |= ssl_bind_kws[i].parse(args, cur_arg, curproxy, ssl_conf, err); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3894 | if (cur_arg + 1 + ssl_bind_kws[i].skip > ssl_e) { |
| 3895 | memprintf(err, "ssl args out of '[]' for %s on line %d in file '%s'", |
| 3896 | args[cur_arg], linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3897 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3898 | } |
| 3899 | cur_arg += 1 + ssl_bind_kws[i].skip; |
| 3900 | break; |
| 3901 | } |
| 3902 | } |
| 3903 | if (!cfgerr && !newarg) { |
| 3904 | memprintf(err, "unknown ssl keyword %s on line %d in file '%s'.", |
| 3905 | args[cur_arg], linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3906 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3907 | break; |
| 3908 | } |
| 3909 | } |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3910 | |
| 3911 | if (cfgerr & ERR_CODE) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3912 | ssl_sock_free_ssl_conf(ssl_conf); |
| 3913 | free(ssl_conf); |
| 3914 | ssl_conf = NULL; |
| 3915 | break; |
| 3916 | } |
| 3917 | |
| 3918 | if (stat(crt_path, &buf) == 0) { |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3919 | cfgerr |= ssl_sock_load_cert_file(crt_path, bind_conf, ssl_conf, |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3920 | &args[cur_arg], arg - cur_arg - 1, err); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3921 | } else { |
| 3922 | cfgerr |= ssl_sock_load_multi_cert(crt_path, bind_conf, ssl_conf, |
| 3923 | &args[cur_arg], arg - cur_arg - 1, err); |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3924 | } |
| 3925 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3926 | if (cfgerr & ERR_CODE) { |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3927 | 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] | 3928 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3929 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3930 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3931 | fclose(f); |
| 3932 | return cfgerr; |
| 3933 | } |
| 3934 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3935 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3936 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3937 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3938 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3939 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3940 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3941 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3942 | SSL_OP_NO_SSLv2 | |
| 3943 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3944 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3945 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3946 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3947 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3948 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3949 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3950 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3951 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3952 | SSL_MODE_RELEASE_BUFFERS | |
| 3953 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3954 | struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3955 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3956 | int flags = MC_SSL_O_ALL; |
| 3957 | int cfgerr = 0; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3958 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3959 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3960 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3961 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3962 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3963 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3964 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3965 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3966 | else |
| 3967 | flags = conf_ssl_methods->flags; |
| 3968 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3969 | min = conf_ssl_methods->min; |
| 3970 | max = conf_ssl_methods->max; |
| 3971 | /* start with TLSv10 to remove SSLv3 per default */ |
| 3972 | if (!min && (!max || max >= CONF_TLSV10)) |
| 3973 | min = CONF_TLSV10; |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3974 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3975 | if (min) |
| 3976 | flags |= (methodVersions[min].flag - 1); |
| 3977 | if (max) |
| 3978 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3979 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3980 | min = max = CONF_TLSV_NONE; |
| 3981 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3982 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3983 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3984 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3985 | if (min) { |
| 3986 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3987 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 3988 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3989 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 3990 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3991 | hole = 0; |
| 3992 | } |
| 3993 | max = i; |
| 3994 | } |
| 3995 | else { |
| 3996 | min = max = i; |
| 3997 | } |
| 3998 | } |
| 3999 | else { |
| 4000 | if (min) |
| 4001 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4002 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4003 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4004 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4005 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4006 | cfgerr += 1; |
| 4007 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4008 | /* save real min/max in bind_conf */ |
| 4009 | conf_ssl_methods->min = min; |
| 4010 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4011 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4012 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4013 | /* Keep force-xxx implementation as it is in older haproxy. It's a |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 4014 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4015 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4016 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4017 | else |
| 4018 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4019 | if (flags & methodVersions[i].flag) |
| 4020 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4021 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4022 | /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4023 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4024 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 4025 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4026 | |
| 4027 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 4028 | options |= SSL_OP_NO_TICKET; |
| 4029 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 4030 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 4031 | |
| 4032 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 4033 | options |= SSL_OP_NO_RENEGOTIATION; |
| 4034 | #endif |
| 4035 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4036 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4037 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 4038 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4039 | if (global_ssl.async) |
| 4040 | mode |= SSL_MODE_ASYNC; |
| 4041 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4042 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4043 | if (global_ssl.life_time) |
| 4044 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4045 | |
| 4046 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 4047 | #ifdef OPENSSL_IS_BORINGSSL |
| 4048 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 4049 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 4050 | #elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 4051 | if (bind_conf->ssl_conf.early_data) { |
| 4052 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
| 4053 | SSL_CTX_set_max_early_data(ctx, global.tune.bufsize - global.tune.maxrewrite); |
| 4054 | } |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 4055 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 4056 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4057 | #else |
| 4058 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4059 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 4060 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4061 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4062 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4063 | } |
| 4064 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4065 | |
| 4066 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 4067 | { |
| 4068 | if (first == block) { |
| 4069 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4070 | if (first->len > 0) |
| 4071 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 4072 | } |
| 4073 | } |
| 4074 | |
| 4075 | /* return first block from sh_ssl_sess */ |
| 4076 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 4077 | { |
| 4078 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 4079 | |
| 4080 | } |
| 4081 | |
| 4082 | /* store a session into the cache |
| 4083 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 4084 | * data: asn1 encoded session |
| 4085 | * data_len: asn1 encoded session length |
| 4086 | * Returns 1 id session was stored (else 0) |
| 4087 | */ |
| 4088 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 4089 | { |
| 4090 | struct shared_block *first; |
| 4091 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 4092 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4093 | first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4094 | if (!first) { |
| 4095 | /* Could not retrieve enough free blocks to store that session */ |
| 4096 | return 0; |
| 4097 | } |
| 4098 | |
| 4099 | /* STORE the key in the first elem */ |
| 4100 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4101 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 4102 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4103 | |
| 4104 | /* it returns the already existing node |
| 4105 | or current node if none, never returns null */ |
| 4106 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 4107 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 4108 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 4109 | /* release the reserved row */ |
| 4110 | shctx_row_dec_hot(ssl_shctx, first); |
| 4111 | /* replace the previous session already in the tree */ |
| 4112 | sh_ssl_sess = oldsh_ssl_sess; |
| 4113 | /* ignore the previous session data, only use the header */ |
| 4114 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 4115 | shctx_row_inc_hot(ssl_shctx, first); |
| 4116 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4117 | } |
| 4118 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4119 | if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) { |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4120 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4121 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4122 | } |
| 4123 | |
| 4124 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4125 | |
| 4126 | return 1; |
| 4127 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4128 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4129 | /* SSL callback used when a new session is created while connecting to a server */ |
| 4130 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4131 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4132 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4133 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4134 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4135 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4136 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4137 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4138 | int len; |
| 4139 | unsigned char *ptr; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4140 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4141 | len = i2d_SSL_SESSION(sess, NULL); |
| 4142 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4143 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4144 | } else { |
| 4145 | free(s->ssl_ctx.reused_sess[tid].ptr); |
| 4146 | ptr = s->ssl_ctx.reused_sess[tid].ptr = malloc(len); |
| 4147 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4148 | } |
| 4149 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4150 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4151 | &ptr); |
| 4152 | } |
| 4153 | } else { |
| 4154 | free(s->ssl_ctx.reused_sess[tid].ptr); |
| 4155 | s->ssl_ctx.reused_sess[tid].ptr = NULL; |
| 4156 | } |
| 4157 | |
| 4158 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4159 | } |
| 4160 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4161 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4162 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4163 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4164 | { |
| 4165 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4166 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4167 | unsigned char *p; |
| 4168 | int data_len; |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4169 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4170 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4171 | |
| 4172 | /* Session id is already stored in to key and session id is known |
| 4173 | * so we dont store it to keep size. |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4174 | * note: SSL_SESSION_set1_id is using |
| 4175 | * a memcpy so we need to use a different pointer |
| 4176 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4177 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4178 | */ |
| 4179 | |
| 4180 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4181 | |
| 4182 | /* copy value in an other buffer */ |
| 4183 | memcpy(encid, sid_data, sid_length); |
| 4184 | |
| 4185 | /* pad with 0 */ |
| 4186 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4187 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4188 | |
| 4189 | /* force length to zero to avoid ASN1 encoding */ |
| 4190 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4191 | |
| 4192 | /* force length to zero to avoid ASN1 encoding */ |
| 4193 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4194 | |
| 4195 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4196 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4197 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4198 | goto err; |
| 4199 | |
| 4200 | p = encsess; |
| 4201 | |
| 4202 | /* process ASN1 session encoding before the lock */ |
| 4203 | i2d_SSL_SESSION(sess, &p); |
| 4204 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4205 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4206 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4207 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4208 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4209 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4210 | err: |
| 4211 | /* reset original length values */ |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4212 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4213 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4214 | |
| 4215 | return 0; /* do not increment session reference count */ |
| 4216 | } |
| 4217 | |
| 4218 | /* SSL callback used on lookup an existing session cause none found in internal cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4219 | SSL_SESSION *sh_ssl_sess_get_cb(SSL *ssl, __OPENSSL_110_CONST__ unsigned char *key, int key_len, int *do_copy) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4220 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4221 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4222 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4223 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4224 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4225 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4226 | |
| 4227 | global.shctx_lookups++; |
| 4228 | |
| 4229 | /* allow the session to be freed automatically by openssl */ |
| 4230 | *do_copy = 0; |
| 4231 | |
| 4232 | /* tree key is zeros padded sessionid */ |
| 4233 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4234 | memcpy(tmpkey, key, key_len); |
| 4235 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4236 | key = tmpkey; |
| 4237 | } |
| 4238 | |
| 4239 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4240 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4241 | |
| 4242 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4243 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4244 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4245 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4246 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4247 | global.shctx_misses++; |
| 4248 | return NULL; |
| 4249 | } |
| 4250 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4251 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4252 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4253 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4254 | shctx_row_data_get(ssl_shctx, first, data, sizeof(struct sh_ssl_sess_hdr), first->len-sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4255 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4256 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4257 | |
| 4258 | /* decode ASN1 session */ |
| 4259 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4260 | sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4261 | /* Reset session id and session id contenxt */ |
| 4262 | if (sess) { |
| 4263 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4264 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4265 | } |
| 4266 | |
| 4267 | return sess; |
| 4268 | } |
| 4269 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4270 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4271 | /* SSL callback used to signal session is no more used in internal cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4272 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4273 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4274 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4275 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4276 | unsigned int sid_length; |
| 4277 | const unsigned char *sid_data; |
| 4278 | (void)ctx; |
| 4279 | |
| 4280 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4281 | /* tree key is zeros padded sessionid */ |
| 4282 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4283 | memcpy(tmpkey, sid_data, sid_length); |
| 4284 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4285 | sid_data = tmpkey; |
| 4286 | } |
| 4287 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4288 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4289 | |
| 4290 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4291 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4292 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4293 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4294 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4295 | } |
| 4296 | |
| 4297 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4298 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4299 | } |
| 4300 | |
| 4301 | /* Set session cache mode to server and disable openssl internal cache. |
| 4302 | * Set shared cache callbacks on an ssl context. |
| 4303 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4304 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4305 | { |
| 4306 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4307 | |
| 4308 | if (!ssl_shctx) { |
| 4309 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4310 | return; |
| 4311 | } |
| 4312 | |
| 4313 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4314 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4315 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4316 | |
| 4317 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4318 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4319 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4320 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4321 | } |
| 4322 | |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4323 | int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx) |
| 4324 | { |
| 4325 | struct proxy *curproxy = bind_conf->frontend; |
| 4326 | int cfgerr = 0; |
| 4327 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4328 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4329 | const char *conf_ciphers; |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 4330 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4331 | const char *conf_ciphersuites; |
| 4332 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4333 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4334 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4335 | if (ssl_conf) { |
| 4336 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4337 | int i, min, max; |
| 4338 | int flags = MC_SSL_O_ALL; |
| 4339 | |
| 4340 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 4341 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4342 | max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4343 | if (min) |
| 4344 | flags |= (methodVersions[min].flag - 1); |
| 4345 | if (max) |
| 4346 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4347 | min = max = CONF_TLSV_NONE; |
| 4348 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4349 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4350 | if (min) |
| 4351 | max = i; |
| 4352 | else |
| 4353 | min = max = i; |
| 4354 | } |
| 4355 | /* save real min/max */ |
| 4356 | conf_ssl_methods->min = min; |
| 4357 | conf_ssl_methods->max = max; |
| 4358 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4359 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4360 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4361 | cfgerr += 1; |
| 4362 | } |
| 4363 | } |
| 4364 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4365 | switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) { |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4366 | case SSL_SOCK_VERIFY_NONE: |
| 4367 | verify = SSL_VERIFY_NONE; |
| 4368 | break; |
| 4369 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4370 | verify = SSL_VERIFY_PEER; |
| 4371 | break; |
| 4372 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4373 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4374 | break; |
| 4375 | } |
| 4376 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4377 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4378 | char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file; |
| 4379 | char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file; |
| 4380 | if (ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4381 | /* load CAfile to verify */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4382 | if (!SSL_CTX_load_verify_locations(ctx, ca_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4383 | ha_alert("Proxy '%s': unable to load CA file '%s' for bind '%s' at [%s:%d].\n", |
| 4384 | curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4385 | cfgerr++; |
| 4386 | } |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4387 | if (!((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) { |
| 4388 | /* set CA names for client cert request, function returns void */ |
| 4389 | SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(ca_file)); |
| 4390 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4391 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4392 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4393 | ha_alert("Proxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4394 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4395 | cfgerr++; |
| 4396 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4397 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4398 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4399 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4400 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4401 | if (!store || !X509_STORE_load_locations(store, crl_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4402 | ha_alert("Proxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4403 | curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4404 | cfgerr++; |
| 4405 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4406 | else { |
| 4407 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4408 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4409 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4410 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4411 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4412 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4413 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4414 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4415 | if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4416 | ha_alert("Proxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4417 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4418 | cfgerr++; |
| 4419 | } |
| 4420 | } |
| 4421 | #endif |
| 4422 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4423 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4424 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4425 | if (conf_ciphers && |
| 4426 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4427 | ha_alert("Proxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4428 | curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4429 | cfgerr++; |
| 4430 | } |
| 4431 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 4432 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4433 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4434 | if (conf_ciphersuites && |
| 4435 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
| 4436 | ha_alert("Proxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4437 | curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4438 | cfgerr++; |
| 4439 | } |
| 4440 | #endif |
| 4441 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4442 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4443 | /* If tune.ssl.default-dh-param has not been set, |
| 4444 | neither has ssl-default-dh-file and no static DH |
| 4445 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4446 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4447 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4448 | (ssl_dh_ptr_index == -1 || |
| 4449 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4450 | STACK_OF(SSL_CIPHER) * ciphers = NULL; |
| 4451 | const SSL_CIPHER * cipher = NULL; |
| 4452 | char cipher_description[128]; |
| 4453 | /* The description of ciphers using an Ephemeral Diffie Hellman key exchange |
| 4454 | contains " Kx=DH " or " Kx=DH(". Beware of " Kx=DH/", |
| 4455 | which is not ephemeral DH. */ |
| 4456 | const char dhe_description[] = " Kx=DH "; |
| 4457 | const char dhe_export_description[] = " Kx=DH("; |
| 4458 | int idx = 0; |
| 4459 | int dhe_found = 0; |
| 4460 | SSL *ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4461 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4462 | ssl = SSL_new(ctx); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4463 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4464 | if (ssl) { |
| 4465 | ciphers = SSL_get_ciphers(ssl); |
| 4466 | |
| 4467 | if (ciphers) { |
| 4468 | for (idx = 0; idx < sk_SSL_CIPHER_num(ciphers); idx++) { |
| 4469 | cipher = sk_SSL_CIPHER_value(ciphers, idx); |
| 4470 | if (SSL_CIPHER_description(cipher, cipher_description, sizeof (cipher_description)) == cipher_description) { |
| 4471 | if (strstr(cipher_description, dhe_description) != NULL || |
| 4472 | strstr(cipher_description, dhe_export_description) != NULL) { |
| 4473 | dhe_found = 1; |
| 4474 | break; |
| 4475 | } |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 4476 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4477 | } |
| 4478 | } |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4479 | SSL_free(ssl); |
| 4480 | ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4481 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4482 | |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4483 | if (dhe_found) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4484 | ha_warning("Setting tune.ssl.default-dh-param to 1024 by default, if your workload permits it you should set it to at least 2048. Please set a value >= 1024 to make this warning disappear.\n"); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4485 | } |
| 4486 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4487 | global_ssl.default_dh_param = 1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4488 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4489 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4490 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4491 | if (local_dh_1024 == NULL) { |
| 4492 | local_dh_1024 = ssl_get_dh_1024(); |
| 4493 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4494 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4495 | if (local_dh_2048 == NULL) { |
| 4496 | local_dh_2048 = ssl_get_dh_2048(); |
| 4497 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4498 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4499 | if (local_dh_4096 == NULL) { |
| 4500 | local_dh_4096 = ssl_get_dh_4096(); |
| 4501 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4502 | } |
| 4503 | } |
| 4504 | } |
| 4505 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4506 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4507 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4508 | #if HA_OPENSSL_VERSION_NUMBER >= 0x00907000L |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4509 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4510 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4511 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4512 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4513 | ssl_conf_cur = NULL; |
| 4514 | if (ssl_conf && ssl_conf->npn_str) |
| 4515 | ssl_conf_cur = ssl_conf; |
| 4516 | else if (bind_conf->ssl_conf.npn_str) |
| 4517 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4518 | if (ssl_conf_cur) |
| 4519 | SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4520 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4521 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4522 | ssl_conf_cur = NULL; |
| 4523 | if (ssl_conf && ssl_conf->alpn_str) |
| 4524 | ssl_conf_cur = ssl_conf; |
| 4525 | else if (bind_conf->ssl_conf.alpn_str) |
| 4526 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4527 | if (ssl_conf_cur) |
| 4528 | SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4529 | #endif |
Lukas Tribus | d13e925 | 2019-11-24 18:20:40 +0100 | [diff] [blame] | 4530 | #if ((HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) || defined(LIBRESSL_VERSION_NUMBER)) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4531 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4532 | if (conf_curves) { |
| 4533 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4534 | ha_alert("Proxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4535 | curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4536 | cfgerr++; |
| 4537 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4538 | #if defined(SSL_CTX_set_ecdh_auto) |
| 4539 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
| 4540 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4541 | } |
| 4542 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4543 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4544 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4545 | int i; |
| 4546 | EC_KEY *ecdh; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4547 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4548 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4549 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4550 | NULL); |
| 4551 | |
| 4552 | if (ecdhe == NULL) { |
Eric Salama | 27c21cd | 2019-11-20 11:33:40 +0100 | [diff] [blame] | 4553 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4554 | return cfgerr; |
| 4555 | } |
| 4556 | #else |
| 4557 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4558 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4559 | ECDHE_DEFAULT_CURVE); |
| 4560 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4561 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4562 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4563 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4564 | ha_alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4565 | curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4566 | cfgerr++; |
| 4567 | } |
| 4568 | else { |
| 4569 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4570 | EC_KEY_free(ecdh); |
| 4571 | } |
| 4572 | } |
| 4573 | #endif |
| 4574 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4575 | return cfgerr; |
| 4576 | } |
| 4577 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4578 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4579 | { |
| 4580 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4581 | size_t prefixlen, suffixlen; |
| 4582 | |
| 4583 | /* Trivial case */ |
| 4584 | if (strcmp(pattern, hostname) == 0) |
| 4585 | return 1; |
| 4586 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4587 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4588 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4589 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4590 | pattern_wildcard = NULL; |
| 4591 | pattern_left_label_end = pattern; |
| 4592 | while (*pattern_left_label_end != '.') { |
| 4593 | switch (*pattern_left_label_end) { |
| 4594 | case 0: |
| 4595 | /* End of label not found */ |
| 4596 | return 0; |
| 4597 | case '*': |
| 4598 | /* If there is more than one wildcards */ |
| 4599 | if (pattern_wildcard) |
| 4600 | return 0; |
| 4601 | pattern_wildcard = pattern_left_label_end; |
| 4602 | break; |
| 4603 | } |
| 4604 | pattern_left_label_end++; |
| 4605 | } |
| 4606 | |
| 4607 | /* If it's not trivial and there is no wildcard, it can't |
| 4608 | * match */ |
| 4609 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4610 | return 0; |
| 4611 | |
| 4612 | /* Make sure all labels match except the leftmost */ |
| 4613 | hostname_left_label_end = strchr(hostname, '.'); |
| 4614 | if (!hostname_left_label_end |
| 4615 | || strcmp(pattern_left_label_end, hostname_left_label_end) != 0) |
| 4616 | return 0; |
| 4617 | |
| 4618 | /* Make sure the leftmost label of the hostname is long enough |
| 4619 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4620 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4621 | return 0; |
| 4622 | |
| 4623 | /* Finally compare the string on either side of the |
| 4624 | * wildcard */ |
| 4625 | prefixlen = pattern_wildcard - pattern; |
| 4626 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4627 | if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0)) |
| 4628 | || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4629 | return 0; |
| 4630 | |
| 4631 | return 1; |
| 4632 | } |
| 4633 | |
| 4634 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4635 | { |
| 4636 | SSL *ssl; |
| 4637 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4638 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4639 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4640 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4641 | |
| 4642 | int depth; |
| 4643 | X509 *cert; |
| 4644 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4645 | int i; |
| 4646 | X509_NAME *cert_subject; |
| 4647 | char *str; |
| 4648 | |
| 4649 | if (ok == 0) |
| 4650 | return ok; |
| 4651 | |
| 4652 | ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4653 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4654 | ssl_ctx = conn->xprt_ctx; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4655 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4656 | /* We're checking if the provided hostnames match the desired one. The |
| 4657 | * desired hostname comes from the SNI we presented if any, or if not |
| 4658 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4659 | * directive. If neither is set, we don't care about the name so the |
| 4660 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4661 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4662 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4663 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4664 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4665 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4666 | if (!servername) |
| 4667 | return ok; |
| 4668 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4669 | |
| 4670 | /* We only need to verify the CN on the actual server cert, |
| 4671 | * not the indirect CAs */ |
| 4672 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4673 | if (depth != 0) |
| 4674 | return ok; |
| 4675 | |
| 4676 | /* At this point, the cert is *not* OK unless we can find a |
| 4677 | * hostname match */ |
| 4678 | ok = 0; |
| 4679 | |
| 4680 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4681 | /* It seems like this might happen if verify peer isn't set */ |
| 4682 | if (!cert) |
| 4683 | return ok; |
| 4684 | |
| 4685 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4686 | if (alt_names) { |
| 4687 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4688 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4689 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4690 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4691 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4692 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4693 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4694 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4695 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4696 | OPENSSL_free(str); |
| 4697 | } |
| 4698 | } |
| 4699 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4700 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4701 | } |
| 4702 | |
| 4703 | cert_subject = X509_get_subject_name(cert); |
| 4704 | i = -1; |
| 4705 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4706 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4707 | ASN1_STRING *value; |
| 4708 | value = X509_NAME_ENTRY_get_data(entry); |
| 4709 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4710 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4711 | OPENSSL_free(str); |
| 4712 | } |
| 4713 | } |
| 4714 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4715 | /* report the mismatch and indicate if SNI was used or not */ |
| 4716 | if (!ok && !conn->err_code) |
| 4717 | conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4718 | return ok; |
| 4719 | } |
| 4720 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4721 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4722 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4723 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4724 | struct proxy *curproxy = srv->proxy; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4725 | int cfgerr = 0; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 4726 | long options = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4727 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4728 | SSL_OP_NO_SSLv2 | |
| 4729 | SSL_OP_NO_COMPRESSION; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 4730 | long mode = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4731 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4732 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 4733 | SSL_MODE_RELEASE_BUFFERS | |
| 4734 | SSL_MODE_SMALL_BUFFERS; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4735 | int verify = SSL_VERIFY_NONE; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4736 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4737 | struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4738 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4739 | int flags = MC_SSL_O_ALL; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4740 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4741 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4742 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4743 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4744 | cfgerr++; |
| 4745 | } |
| 4746 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4747 | /* Automatic memory computations need to know we use SSL there */ |
| 4748 | global.ssl_used_backend = 1; |
| 4749 | |
| 4750 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4751 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4752 | if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4753 | ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n", |
| 4754 | curproxy->id, srv->id, |
| 4755 | srv->conf.file, srv->conf.line); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4756 | cfgerr++; |
| 4757 | return cfgerr; |
| 4758 | } |
| 4759 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4760 | if (srv->use_ssl) |
| 4761 | srv->xprt = &ssl_sock; |
| 4762 | if (srv->check.use_ssl) |
Cyril Bonté | 9ce1311 | 2014-11-15 22:41:27 +0100 | [diff] [blame] | 4763 | srv->check.xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4764 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4765 | ctx = SSL_CTX_new(SSLv23_client_method()); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4766 | if (!ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4767 | ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 4768 | proxy_type_str(curproxy), curproxy->id, |
| 4769 | srv->id); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4770 | cfgerr++; |
| 4771 | return cfgerr; |
| 4772 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4773 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4774 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4775 | ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. " |
| 4776 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4777 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4778 | else |
| 4779 | flags = conf_ssl_methods->flags; |
| 4780 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4781 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4782 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4783 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4784 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4785 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4786 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4787 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4788 | min = max = CONF_TLSV_NONE; |
| 4789 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4790 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4791 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4792 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4793 | if (min) { |
| 4794 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4795 | ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
| 4796 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4797 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4798 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4799 | hole = 0; |
| 4800 | } |
| 4801 | max = i; |
| 4802 | } |
| 4803 | else { |
| 4804 | min = max = i; |
| 4805 | } |
| 4806 | } |
| 4807 | else { |
| 4808 | if (min) |
| 4809 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4810 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4811 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4812 | ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
| 4813 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4814 | cfgerr += 1; |
| 4815 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4816 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4817 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4818 | /* Keep force-xxx implementation as it is in older haproxy. It's a |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 4819 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4820 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4821 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4822 | else |
| 4823 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4824 | if (flags & methodVersions[i].flag) |
| 4825 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4826 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4827 | /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4828 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4829 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4830 | #endif |
| 4831 | |
| 4832 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4833 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4834 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4835 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 4836 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4837 | if (global_ssl.async) |
| 4838 | mode |= SSL_MODE_ASYNC; |
| 4839 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4840 | SSL_CTX_set_mode(ctx, mode); |
| 4841 | srv->ssl_ctx.ctx = ctx; |
| 4842 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4843 | if (srv->ssl_ctx.client_crt) { |
| 4844 | if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4845 | ha_alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n", |
| 4846 | proxy_type_str(curproxy), curproxy->id, |
| 4847 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4848 | cfgerr++; |
| 4849 | } |
| 4850 | else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4851 | ha_alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n", |
| 4852 | proxy_type_str(curproxy), curproxy->id, |
| 4853 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4854 | cfgerr++; |
| 4855 | } |
| 4856 | else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4857 | ha_alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 4858 | proxy_type_str(curproxy), curproxy->id, |
| 4859 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4860 | cfgerr++; |
| 4861 | } |
| 4862 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4863 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4864 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 4865 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4866 | switch (srv->ssl_ctx.verify) { |
| 4867 | case SSL_SOCK_VERIFY_NONE: |
| 4868 | verify = SSL_VERIFY_NONE; |
| 4869 | break; |
| 4870 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4871 | verify = SSL_VERIFY_PEER; |
| 4872 | break; |
| 4873 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4874 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4875 | verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4876 | (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4877 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4878 | if (srv->ssl_ctx.ca_file) { |
| 4879 | /* load CAfile to verify */ |
| 4880 | if (!SSL_CTX_load_verify_locations(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4881 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to load CA file '%s'.\n", |
| 4882 | curproxy->id, srv->id, |
| 4883 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4884 | cfgerr++; |
| 4885 | } |
| 4886 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4887 | else { |
| 4888 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4889 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled by default but no CA file specified. If you're running on a LAN where you're certain to trust the server's certificate, please set an explicit 'verify none' statement on the 'server' line, or use 'ssl-server-verify none' in the global section to disable server-side verifications by default.\n", |
| 4890 | curproxy->id, srv->id, |
| 4891 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4892 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4893 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n", |
| 4894 | curproxy->id, srv->id, |
| 4895 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4896 | cfgerr++; |
| 4897 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4898 | #ifdef X509_V_FLAG_CRL_CHECK |
| 4899 | if (srv->ssl_ctx.crl_file) { |
| 4900 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 4901 | |
| 4902 | if (!store || !X509_STORE_load_locations(store, srv->ssl_ctx.crl_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4903 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n", |
| 4904 | curproxy->id, srv->id, |
| 4905 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4906 | cfgerr++; |
| 4907 | } |
| 4908 | else { |
| 4909 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4910 | } |
| 4911 | } |
| 4912 | #endif |
| 4913 | } |
| 4914 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4915 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_CLIENT | |
| 4916 | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 4917 | SSL_CTX_sess_set_new_cb(srv->ssl_ctx.ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4918 | if (srv->ssl_ctx.ciphers && |
| 4919 | !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4920 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 4921 | curproxy->id, srv->id, |
| 4922 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4923 | cfgerr++; |
| 4924 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4925 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 4926 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4927 | if (srv->ssl_ctx.ciphersuites && |
Pierre Cheynier | bc34cd1 | 2019-03-21 16:15:47 +0000 | [diff] [blame] | 4928 | !SSL_CTX_set_ciphersuites(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphersuites)) { |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4929 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 4930 | curproxy->id, srv->id, |
| 4931 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites); |
| 4932 | cfgerr++; |
| 4933 | } |
| 4934 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 4935 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 4936 | if (srv->ssl_ctx.npn_str) |
| 4937 | SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, srv); |
| 4938 | #endif |
| 4939 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 4940 | if (srv->ssl_ctx.alpn_str) |
| 4941 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 4942 | #endif |
| 4943 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4944 | |
| 4945 | return cfgerr; |
| 4946 | } |
| 4947 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4948 | /* 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] | 4949 | * be NULL, in which case nothing is done. Returns the number of errors |
| 4950 | * encountered. |
| 4951 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4952 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4953 | { |
| 4954 | struct ebmb_node *node; |
| 4955 | struct sni_ctx *sni; |
| 4956 | int err = 0; |
| 4957 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4958 | /* Automatic memory computations need to know we use SSL there */ |
| 4959 | global.ssl_used_frontend = 1; |
| 4960 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4961 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4962 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4963 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4964 | err++; |
| 4965 | } |
| 4966 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 4967 | if (!bind_conf->initial_ctx) { |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4968 | err += ssl_sock_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4969 | /* It should not be necessary to call this function, but it's |
| 4970 | necessary first to check and move all initialisation related |
| 4971 | to initial_ctx in ssl_sock_initial_ctx. */ |
| 4972 | err += ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx); |
| 4973 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4974 | if (bind_conf->default_ctx) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4975 | err += ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4976 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4977 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4978 | while (node) { |
| 4979 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4980 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4981 | /* only initialize the CTX on its first occurrence and |
| 4982 | if it is not the default_ctx */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4983 | err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4984 | node = ebmb_next(node); |
| 4985 | } |
| 4986 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4987 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4988 | while (node) { |
| 4989 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4990 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4991 | /* only initialize the CTX on its first occurrence and |
| 4992 | if it is not the default_ctx */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4993 | err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4994 | node = ebmb_next(node); |
| 4995 | } |
| 4996 | return err; |
| 4997 | } |
| 4998 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4999 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 5000 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 5001 | * alerts are directly emitted since the rest of the stack does it below. |
| 5002 | */ |
| 5003 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 5004 | { |
| 5005 | struct proxy *px = bind_conf->frontend; |
| 5006 | int alloc_ctx; |
| 5007 | int err; |
| 5008 | |
| 5009 | if (!bind_conf->is_ssl) { |
| 5010 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5011 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 5012 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5013 | } |
| 5014 | return 0; |
| 5015 | } |
| 5016 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5017 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5018 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 5019 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5020 | } |
| 5021 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5022 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5023 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5024 | return -1; |
| 5025 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5026 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5027 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5028 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5029 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5030 | sizeof(*sh_ssl_sess_tree), |
| 5031 | ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0); |
Frédéric Lécaille | 4c8aa11 | 2018-10-25 20:22:46 +0200 | [diff] [blame] | 5032 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5033 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5034 | ha_alert("Unable to initialize the lock for the shared SSL session cache. You can retry using the global statement 'tune.ssl.force-private-cache' but it could increase CPU usage due to renegotiations if nbproc > 1.\n"); |
| 5035 | else |
| 5036 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5037 | return -1; |
| 5038 | } |
| 5039 | /* free block callback */ |
| 5040 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5041 | /* init the root tree within the extra space */ |
| 5042 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5043 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5044 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5045 | err = 0; |
| 5046 | /* initialize all certificate contexts */ |
| 5047 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5048 | |
| 5049 | /* initialize CA variables if the certificates generation is enabled */ |
| 5050 | err += ssl_sock_load_ca(bind_conf); |
| 5051 | |
| 5052 | return -err; |
| 5053 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5054 | |
| 5055 | /* release ssl context allocated for servers. */ |
| 5056 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5057 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5058 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 5059 | if (srv->ssl_ctx.alpn_str) |
| 5060 | free(srv->ssl_ctx.alpn_str); |
| 5061 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5062 | #ifdef OPENSSL_NPN_NEGOTIATED |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5063 | if (srv->ssl_ctx.npn_str) |
| 5064 | free(srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5065 | #endif |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5066 | if (srv->ssl_ctx.ctx) |
| 5067 | SSL_CTX_free(srv->ssl_ctx.ctx); |
| 5068 | } |
| 5069 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5070 | /* 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] | 5071 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5072 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5073 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5074 | { |
| 5075 | struct ebmb_node *node, *back; |
| 5076 | struct sni_ctx *sni; |
| 5077 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5078 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5079 | while (node) { |
| 5080 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5081 | back = ebmb_next(node); |
| 5082 | ebmb_delete(node); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5083 | if (!sni->order) { /* only free the CTX on its first occurrence */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5084 | SSL_CTX_free(sni->ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5085 | ssl_sock_free_ssl_conf(sni->conf); |
| 5086 | free(sni->conf); |
| 5087 | sni->conf = NULL; |
| 5088 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5089 | free(sni); |
| 5090 | node = back; |
| 5091 | } |
| 5092 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5093 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5094 | while (node) { |
| 5095 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5096 | back = ebmb_next(node); |
| 5097 | ebmb_delete(node); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5098 | if (!sni->order) { /* only free the CTX on its first occurrence */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5099 | SSL_CTX_free(sni->ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5100 | ssl_sock_free_ssl_conf(sni->conf); |
| 5101 | free(sni->conf); |
| 5102 | sni->conf = NULL; |
| 5103 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5104 | free(sni); |
| 5105 | node = back; |
| 5106 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5107 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5108 | bind_conf->initial_ctx = NULL; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5109 | bind_conf->default_ctx = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5110 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5111 | } |
| 5112 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5113 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5114 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5115 | { |
| 5116 | ssl_sock_free_ca(bind_conf); |
| 5117 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5118 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5119 | free(bind_conf->ca_sign_file); |
| 5120 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5121 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5122 | free(bind_conf->keys_ref->filename); |
| 5123 | free(bind_conf->keys_ref->tlskeys); |
| 5124 | LIST_DEL(&bind_conf->keys_ref->list); |
| 5125 | free(bind_conf->keys_ref); |
| 5126 | } |
| 5127 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5128 | bind_conf->ca_sign_pass = NULL; |
| 5129 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5130 | } |
| 5131 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5132 | /* Load CA cert file and private key used to generate certificates */ |
| 5133 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5134 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5135 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5136 | struct proxy *px = bind_conf->frontend; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5137 | FILE *fp; |
| 5138 | X509 *cacert = NULL; |
| 5139 | EVP_PKEY *capkey = NULL; |
| 5140 | int err = 0; |
| 5141 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 5142 | if (!bind_conf->generate_certs) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5143 | return err; |
| 5144 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5145 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5146 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5147 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5148 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5149 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5150 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5151 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5152 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5153 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5154 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5155 | "no CA certificate File configured at [%s:%d].\n", |
| 5156 | px->id, bind_conf->file, bind_conf->line); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5157 | goto load_error; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5158 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5159 | |
| 5160 | /* read in the CA certificate */ |
| 5161 | if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5162 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 5163 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5164 | goto load_error; |
| 5165 | } |
| 5166 | if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5167 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 5168 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5169 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5170 | } |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5171 | rewind(fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5172 | if (!(capkey = PEM_read_PrivateKey(fp, NULL, NULL, bind_conf->ca_sign_pass))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5173 | ha_alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n", |
| 5174 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5175 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5176 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5177 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5178 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5179 | bind_conf->ca_sign_cert = cacert; |
| 5180 | bind_conf->ca_sign_pkey = capkey; |
| 5181 | return err; |
| 5182 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5183 | read_error: |
| 5184 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5185 | if (capkey) EVP_PKEY_free(capkey); |
| 5186 | if (cacert) X509_free(cacert); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5187 | load_error: |
| 5188 | bind_conf->generate_certs = 0; |
| 5189 | err++; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5190 | return err; |
| 5191 | } |
| 5192 | |
| 5193 | /* Release CA cert and private key used to generate certificated */ |
| 5194 | void |
| 5195 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5196 | { |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5197 | if (bind_conf->ca_sign_pkey) |
| 5198 | EVP_PKEY_free(bind_conf->ca_sign_pkey); |
| 5199 | if (bind_conf->ca_sign_cert) |
| 5200 | X509_free(bind_conf->ca_sign_cert); |
Willy Tarreau | 94ff03a | 2016-12-22 17:57:46 +0100 | [diff] [blame] | 5201 | bind_conf->ca_sign_pkey = NULL; |
| 5202 | bind_conf->ca_sign_cert = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5203 | } |
| 5204 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5205 | /* |
| 5206 | * This function is called if SSL * context is not yet allocated. The function |
| 5207 | * is designed to be called before any other data-layer operation and sets the |
| 5208 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5209 | * It returns 0 on success and -1 in error case. |
| 5210 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5211 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5212 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5213 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5214 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5215 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5216 | return 0; |
| 5217 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5218 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5219 | return 0; |
| 5220 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5221 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5222 | if (!ctx) { |
| 5223 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5224 | return -1; |
| 5225 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5226 | ctx->wait_event.tasklet = tasklet_new(); |
| 5227 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5228 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5229 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5230 | return -1; |
| 5231 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5232 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5233 | ctx->wait_event.tasklet->context = ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5234 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5235 | ctx->sent_early_data = 0; |
| 5236 | ctx->tmp_early_data = -1; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5237 | ctx->conn = conn; |
Olivier Houchard | 81284e6 | 2019-06-06 13:21:23 +0200 | [diff] [blame] | 5238 | ctx->send_wait = NULL; |
| 5239 | ctx->recv_wait = NULL; |
Emeric Brun | 87cfd66 | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5240 | ctx->xprt_st = 0; |
| 5241 | ctx->xprt_ctx = NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5242 | |
| 5243 | /* Only work with sockets for now, this should be adapted when we'll |
| 5244 | * add QUIC support. |
| 5245 | */ |
| 5246 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5247 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5248 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5249 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5250 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5251 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5252 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 5253 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5254 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5255 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5256 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5257 | /* If it is in client mode initiate SSL session |
| 5258 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5259 | if (objt_server(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5260 | int may_retry = 1; |
| 5261 | |
| 5262 | retry_connect: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5263 | /* Alloc a new SSL session ctx */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5264 | ctx->ssl = SSL_new(__objt_server(conn->target)->ssl_ctx.ctx); |
| 5265 | if (!ctx->ssl) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5266 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5267 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5268 | goto retry_connect; |
| 5269 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5270 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5271 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5272 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5273 | ctx->bio = BIO_new(ha_meth); |
| 5274 | if (!ctx->bio) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5275 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5276 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5277 | goto retry_connect; |
| 5278 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5279 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5280 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5281 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5282 | BIO_set_data(ctx->bio, ctx); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5283 | SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5284 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5285 | /* set connection pointer */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5286 | if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) { |
| 5287 | SSL_free(ctx->ssl); |
| 5288 | ctx->ssl = NULL; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5289 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5290 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5291 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5292 | goto retry_connect; |
| 5293 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5294 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5295 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5296 | } |
| 5297 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5298 | SSL_set_connect_state(ctx->ssl); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5299 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5300 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5301 | SSL_SESSION *sess = d2i_SSL_SESSION(NULL, &ptr, __objt_server(conn->target)->ssl_ctx.reused_sess[tid].size); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5302 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5303 | SSL_SESSION_free(sess); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5304 | free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
| 5305 | __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5306 | } else if (sess) { |
| 5307 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5308 | } |
| 5309 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5310 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5311 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5312 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5313 | |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 5314 | _HA_ATOMIC_ADD(&sslconns, 1); |
| 5315 | _HA_ATOMIC_ADD(&totalsslconns, 1); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5316 | *xprt_ctx = ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5317 | /* Start the handshake */ |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5318 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5319 | if (conn->flags & CO_FL_ERROR) |
| 5320 | goto err; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5321 | return 0; |
| 5322 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5323 | else if (objt_listener(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5324 | int may_retry = 1; |
| 5325 | |
| 5326 | retry_accept: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5327 | /* Alloc a new SSL session ctx */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5328 | ctx->ssl = SSL_new(__objt_listener(conn->target)->bind_conf->initial_ctx); |
| 5329 | if (!ctx->ssl) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5330 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5331 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5332 | goto retry_accept; |
| 5333 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5334 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5335 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5336 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5337 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5338 | ctx->bio = BIO_new(ha_meth); |
| 5339 | if (!ctx->bio) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5340 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5341 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5342 | goto retry_accept; |
| 5343 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5344 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5345 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5346 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5347 | BIO_set_data(ctx->bio, ctx); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5348 | SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5349 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5350 | /* set connection pointer */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5351 | if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) { |
| 5352 | SSL_free(ctx->ssl); |
| 5353 | ctx->ssl = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5354 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5355 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5356 | goto retry_accept; |
| 5357 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5358 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5359 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5360 | } |
| 5361 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5362 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5363 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5364 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5365 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Emmanuel Hocdet | 510fce5 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 5366 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5367 | conn->flags |= CO_FL_EARLY_SSL_HS; |
| 5368 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5369 | |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 5370 | _HA_ATOMIC_ADD(&sslconns, 1); |
| 5371 | _HA_ATOMIC_ADD(&totalsslconns, 1); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5372 | *xprt_ctx = ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5373 | /* Start the handshake */ |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5374 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5375 | if (conn->flags & CO_FL_ERROR) |
| 5376 | goto err; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5377 | return 0; |
| 5378 | } |
| 5379 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5380 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5381 | err: |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5382 | if (ctx && ctx->wait_event.tasklet) |
| 5383 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5384 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5385 | return -1; |
| 5386 | } |
| 5387 | |
| 5388 | |
| 5389 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5390 | * updates the FD status if it wants some polling before being called again. |
| 5391 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5392 | * otherwise it returns non-zero and removes itself from the connection's |
| 5393 | * flags (the bit is provided in <flag> by the caller). |
| 5394 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5395 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5396 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5397 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5398 | int ret; |
| 5399 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5400 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5401 | return 0; |
| 5402 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5403 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5404 | goto out_error; |
| 5405 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5406 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10101000L |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5407 | /* |
| 5408 | * Check if we have early data. If we do, we have to read them |
| 5409 | * before SSL_do_handshake() is called, And there's no way to |
| 5410 | * detect early data, except to try to read them |
| 5411 | */ |
| 5412 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
| 5413 | size_t read_data; |
| 5414 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5415 | ret = SSL_read_early_data(ctx->ssl, &ctx->tmp_early_data, |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5416 | 1, &read_data); |
| 5417 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5418 | goto check_error; |
| 5419 | if (ret == SSL_READ_EARLY_DATA_SUCCESS) { |
| 5420 | conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN); |
| 5421 | return 1; |
| 5422 | } else |
| 5423 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5424 | } |
| 5425 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5426 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5427 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5428 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5429 | * the reneg handshake. |
| 5430 | * Here we use SSL_peek as a workaround for reneg. |
| 5431 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5432 | if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5433 | char c; |
| 5434 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5435 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5436 | if (ret <= 0) { |
| 5437 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5438 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5439 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5440 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5441 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5442 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5443 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5444 | return 0; |
| 5445 | } |
| 5446 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5447 | /* handshake may have been completed but we have |
| 5448 | * no more data to read. |
| 5449 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5450 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5451 | ret = 1; |
| 5452 | goto reneg_ok; |
| 5453 | } |
| 5454 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5455 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5456 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5457 | return 0; |
| 5458 | } |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5459 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5460 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5461 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5462 | return 0; |
| 5463 | } |
| 5464 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5465 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5466 | /* if errno is null, then connection was successfully established */ |
| 5467 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5468 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5469 | if (!conn->err_code) { |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5470 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5471 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5472 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5473 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5474 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5475 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5476 | /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5477 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5478 | empty_handshake = state == TLS_ST_BEFORE; |
| 5479 | #else |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5480 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5481 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5482 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5483 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5484 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5485 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5486 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5487 | else |
| 5488 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5489 | } |
| 5490 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5491 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5492 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5493 | else |
| 5494 | conn->err_code = CO_ER_SSL_ABORT; |
| 5495 | } |
| 5496 | } |
| 5497 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5498 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5499 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5500 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5501 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5502 | } |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5503 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5504 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5505 | goto out_error; |
| 5506 | } |
| 5507 | else { |
| 5508 | /* Fail on all other handshake errors */ |
| 5509 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5510 | * buffer, causing an RST to be emitted upon close() on |
| 5511 | * TCP sockets. We first try to drain possibly pending |
| 5512 | * data to avoid this as much as possible. |
| 5513 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 5514 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5515 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5516 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5517 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5518 | goto out_error; |
| 5519 | } |
| 5520 | } |
| 5521 | /* read some data: consider handshake completed */ |
| 5522 | goto reneg_ok; |
| 5523 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5524 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5525 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5526 | if (ret != 1) { |
| 5527 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5528 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5529 | |
| 5530 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5531 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5532 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5533 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5534 | return 0; |
| 5535 | } |
| 5536 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5537 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5538 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5539 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5540 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5541 | return 0; |
| 5542 | } |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5543 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5544 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5545 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5546 | return 0; |
| 5547 | } |
| 5548 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5549 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5550 | /* if errno is null, then connection was successfully established */ |
| 5551 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5552 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5553 | if (!conn->err_code) { |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5554 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5555 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5556 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5557 | #else |
| 5558 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5559 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5560 | /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5561 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5562 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5563 | #else |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5564 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5565 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5566 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5567 | if (empty_handshake) { |
| 5568 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5569 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5570 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5571 | else |
| 5572 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5573 | } |
| 5574 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5575 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5576 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5577 | else |
| 5578 | conn->err_code = CO_ER_SSL_ABORT; |
| 5579 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5580 | } |
| 5581 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5582 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5583 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5584 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5585 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5586 | } |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5587 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5588 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5589 | goto out_error; |
| 5590 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5591 | else { |
| 5592 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5593 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5594 | * buffer, causing an RST to be emitted upon close() on |
| 5595 | * TCP sockets. We first try to drain possibly pending |
| 5596 | * data to avoid this as much as possible. |
| 5597 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 5598 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5599 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5600 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5601 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5602 | goto out_error; |
| 5603 | } |
| 5604 | } |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5605 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5606 | else { |
| 5607 | /* |
| 5608 | * If the server refused the early data, we have to send a |
| 5609 | * 425 to the client, as we no longer have the data to sent |
| 5610 | * them again. |
| 5611 | */ |
| 5612 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5613 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5614 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5615 | goto out_error; |
| 5616 | } |
| 5617 | } |
| 5618 | } |
| 5619 | #endif |
| 5620 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5621 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5622 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5623 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5624 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5625 | /* ASYNC engine API doesn't support moving read/write |
| 5626 | * buffers. So we disable ASYNC mode right after |
| 5627 | * the handshake to avoid buffer oveflows. |
| 5628 | */ |
| 5629 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5630 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5631 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5632 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5633 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5634 | if (objt_server(conn->target)) { |
| 5635 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5636 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5637 | global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5638 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5639 | else { |
| 5640 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5641 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5642 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5643 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5644 | } |
| 5645 | |
| 5646 | /* The connection is now established at both layers, it's time to leave */ |
| 5647 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5648 | return 1; |
| 5649 | |
| 5650 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5651 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5652 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5653 | ERR_clear_error(); |
| 5654 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5655 | /* free resumed session if exists */ |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5656 | if (objt_server(conn->target) && __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5657 | free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
| 5658 | __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL; |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5659 | } |
| 5660 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5661 | /* Fail on all other handshake errors */ |
| 5662 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5663 | if (!conn->err_code) |
| 5664 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5665 | return 0; |
| 5666 | } |
| 5667 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5668 | static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param) |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5669 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5670 | struct wait_event *sw; |
| 5671 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5672 | |
Olivier Houchard | a37eb6a | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 5673 | if (!ctx) |
| 5674 | return -1; |
| 5675 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5676 | if (event_type & SUB_RETRY_RECV) { |
| 5677 | sw = param; |
| 5678 | BUG_ON(ctx->recv_wait != NULL || (sw->events & SUB_RETRY_RECV)); |
| 5679 | sw->events |= SUB_RETRY_RECV; |
| 5680 | ctx->recv_wait = sw; |
| 5681 | if (!(conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5682 | !(ctx->wait_event.events & SUB_RETRY_RECV)) |
| 5683 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event); |
| 5684 | event_type &= ~SUB_RETRY_RECV; |
| 5685 | } |
| 5686 | if (event_type & SUB_RETRY_SEND) { |
| 5687 | sw = param; |
| 5688 | BUG_ON(ctx->send_wait != NULL || (sw->events & SUB_RETRY_SEND)); |
| 5689 | sw->events |= SUB_RETRY_SEND; |
| 5690 | ctx->send_wait = sw; |
| 5691 | if (!(conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5692 | !(ctx->wait_event.events & SUB_RETRY_SEND)) |
| 5693 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
| 5694 | event_type &= ~SUB_RETRY_SEND; |
| 5695 | |
| 5696 | } |
| 5697 | if (event_type != 0) |
| 5698 | return -1; |
| 5699 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5700 | } |
| 5701 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5702 | static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param) |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5703 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5704 | struct wait_event *sw; |
| 5705 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5706 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5707 | if (event_type & SUB_RETRY_RECV) { |
| 5708 | sw = param; |
| 5709 | BUG_ON(ctx->recv_wait != sw); |
| 5710 | ctx->recv_wait = NULL; |
| 5711 | sw->events &= ~SUB_RETRY_RECV; |
| 5712 | /* If we subscribed, and we're not doing the handshake, |
| 5713 | * then we subscribed because the upper layer asked for it, |
| 5714 | * as the upper layer is no longer interested, we can |
| 5715 | * unsubscribe too. |
| 5716 | */ |
| 5717 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5718 | (ctx->wait_event.events & SUB_RETRY_RECV)) |
| 5719 | conn_unsubscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, |
| 5720 | &ctx->wait_event); |
| 5721 | } |
| 5722 | if (event_type & SUB_RETRY_SEND) { |
| 5723 | sw = param; |
| 5724 | BUG_ON(ctx->send_wait != sw); |
| 5725 | ctx->send_wait = NULL; |
| 5726 | sw->events &= ~SUB_RETRY_SEND; |
| 5727 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5728 | (ctx->wait_event.events & SUB_RETRY_SEND)) |
| 5729 | conn_unsubscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, |
| 5730 | &ctx->wait_event); |
| 5731 | |
| 5732 | } |
| 5733 | |
| 5734 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5735 | } |
| 5736 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 5737 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 5738 | * Returns 0 on success, and non-zero on failure. |
| 5739 | */ |
| 5740 | static int ssl_add_xprt(struct connection *conn, void *xprt_ctx, void *toadd_ctx, const struct xprt_ops *toadd_ops, void **oldxprt_ctx, const struct xprt_ops **oldxprt_ops) |
| 5741 | { |
| 5742 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5743 | |
| 5744 | if (oldxprt_ops != NULL) |
| 5745 | *oldxprt_ops = ctx->xprt; |
| 5746 | if (oldxprt_ctx != NULL) |
| 5747 | *oldxprt_ctx = ctx->xprt_ctx; |
| 5748 | ctx->xprt = toadd_ops; |
| 5749 | ctx->xprt_ctx = toadd_ctx; |
| 5750 | return 0; |
| 5751 | } |
| 5752 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 5753 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 5754 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 5755 | * XPRT. |
| 5756 | */ |
| 5757 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 5758 | { |
| 5759 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5760 | |
| 5761 | if (ctx->xprt_ctx == toremove_ctx) { |
| 5762 | ctx->xprt_ctx = newctx; |
| 5763 | ctx->xprt = newops; |
| 5764 | return 0; |
| 5765 | } |
| 5766 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 5767 | } |
| 5768 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5769 | static struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned short state) |
| 5770 | { |
| 5771 | struct ssl_sock_ctx *ctx = context; |
| 5772 | |
| 5773 | /* First if we're doing an handshake, try that */ |
| 5774 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) |
| 5775 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
| 5776 | /* If we had an error, or the handshake is done and I/O is available, |
| 5777 | * let the upper layer know. |
| 5778 | * If no mux was set up yet, and nobody subscribed, then call |
| 5779 | * xprt_done_cb() ourself if it's set, or destroy the connection, |
| 5780 | * we can't be sure conn_fd_handler() will be called again. |
| 5781 | */ |
| 5782 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 5783 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 5784 | int ret = 0; |
| 5785 | int woke = 0; |
| 5786 | |
| 5787 | /* On error, wake any waiter */ |
| 5788 | if (ctx->recv_wait) { |
| 5789 | ctx->recv_wait->events &= ~SUB_RETRY_RECV; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5790 | tasklet_wakeup(ctx->recv_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5791 | ctx->recv_wait = NULL; |
| 5792 | woke = 1; |
| 5793 | } |
| 5794 | if (ctx->send_wait) { |
| 5795 | ctx->send_wait->events &= ~SUB_RETRY_SEND; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5796 | tasklet_wakeup(ctx->send_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5797 | ctx->send_wait = NULL; |
| 5798 | woke = 1; |
| 5799 | } |
| 5800 | /* If we're the first xprt for the connection, let the |
| 5801 | * upper layers know. If xprt_done_cb() is set, call it, |
| 5802 | * otherwise, we should have a mux, so call its wake |
| 5803 | * method if we didn't woke a tasklet already. |
| 5804 | */ |
| 5805 | if (ctx->conn->xprt_ctx == ctx) { |
| 5806 | if (ctx->conn->xprt_done_cb) |
| 5807 | ret = ctx->conn->xprt_done_cb(ctx->conn); |
| 5808 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
| 5809 | ctx->conn->mux->wake(ctx->conn); |
| 5810 | return NULL; |
| 5811 | } |
| 5812 | } |
| 5813 | return NULL; |
| 5814 | } |
| 5815 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5816 | /* Receive up to <count> bytes from connection <conn>'s socket and store them |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5817 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5818 | * buffer wraps, in which case a second call may be performed. The connection's |
| 5819 | * flags are updated with whatever special event is detected (error, read0, |
| 5820 | * empty). The caller is responsible for taking care of those events and |
| 5821 | * avoiding the call if inappropriate. The function does not call the |
| 5822 | * connection's polling update function, so the caller is responsible for this. |
| 5823 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5824 | static size_t ssl_sock_to_buf(struct connection *conn, void *xprt_ctx, struct buffer *buf, size_t count, int flags) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5825 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5826 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 5827 | ssize_t ret; |
| 5828 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5829 | |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5830 | conn_refresh_polling_flags(conn); |
| 5831 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5832 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5833 | goto out_error; |
| 5834 | |
| 5835 | if (conn->flags & CO_FL_HANDSHAKE) |
| 5836 | /* a handshake was requested */ |
| 5837 | return 0; |
| 5838 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5839 | /* read the largest possible block. For this, we perform only one call |
| 5840 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 5841 | * in which case we accept to do it once again. A new attempt is made on |
| 5842 | * EINTR too. |
| 5843 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 5844 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5845 | int need_out = 0; |
| 5846 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5847 | try = b_contig_space(buf); |
| 5848 | if (!try) |
| 5849 | break; |
| 5850 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5851 | if (try > count) |
| 5852 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5853 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5854 | if (((conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == CO_FL_EARLY_SSL_HS) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5855 | ctx->tmp_early_data != -1) { |
| 5856 | *b_tail(buf) = ctx->tmp_early_data; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5857 | done++; |
| 5858 | try--; |
| 5859 | count--; |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 5860 | b_add(buf, 1); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5861 | ctx->tmp_early_data = -1; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5862 | continue; |
| 5863 | } |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5864 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5865 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5866 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
| 5867 | size_t read_length; |
| 5868 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5869 | ret = SSL_read_early_data(ctx->ssl, |
Willy Tarreau | 8f9c72d | 2018-06-07 18:46:28 +0200 | [diff] [blame] | 5870 | b_tail(buf), try, &read_length); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5871 | if (ret == SSL_READ_EARLY_DATA_SUCCESS && |
| 5872 | read_length > 0) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5873 | conn->flags |= CO_FL_EARLY_DATA; |
| 5874 | if (ret == SSL_READ_EARLY_DATA_SUCCESS || |
| 5875 | ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5876 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5877 | /* |
| 5878 | * We're done reading the early data, |
| 5879 | * let's make the handshake |
| 5880 | */ |
| 5881 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5882 | conn->flags |= CO_FL_SSL_WAIT_HS; |
| 5883 | need_out = 1; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 5884 | /* Now initiate the handshake */ |
| 5885 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5886 | if (read_length == 0) |
| 5887 | break; |
| 5888 | } |
| 5889 | ret = read_length; |
| 5890 | } |
| 5891 | } else |
| 5892 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5893 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | 510fce5 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 5894 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5895 | if (conn->flags & CO_FL_ERROR) { |
| 5896 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5897 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5898 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5899 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 5900 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5901 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5902 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5903 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5904 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5905 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5906 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 5907 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5908 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5909 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5910 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5911 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5912 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5913 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5914 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5915 | break; |
| 5916 | } |
| 5917 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5918 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5919 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5920 | SUB_RETRY_RECV, |
| 5921 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5922 | /* handshake is running, and it may need to re-enable read */ |
| 5923 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5924 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5925 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5926 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5927 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5928 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5929 | break; |
| 5930 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5931 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5932 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 5933 | goto read0; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5934 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 5935 | * stack before shutting down the connection for |
| 5936 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 5937 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 5938 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5939 | /* otherwise it's a real error */ |
| 5940 | goto out_error; |
| 5941 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5942 | if (need_out) |
| 5943 | break; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5944 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5945 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5946 | return done; |
| 5947 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5948 | clear_ssl_error: |
| 5949 | /* Clear openssl global errors stack */ |
| 5950 | ssl_sock_dump_errors(conn); |
| 5951 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5952 | read0: |
| 5953 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5954 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5955 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5956 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 5957 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5958 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5959 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5960 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5961 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5962 | } |
| 5963 | |
| 5964 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5965 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 5966 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 5967 | * other pending data for example, but this flag is ignored at the moment. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5968 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 5969 | * a second call may be performed. The connection's flags are updated with |
| 5970 | * whatever special event is detected (error, empty). The caller is responsible |
| 5971 | * for taking care of those events and avoiding the call if inappropriate. The |
| 5972 | * function does not call the connection's polling update function, so the caller |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5973 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 5974 | * caller to take care of this. It's up to the caller to update the buffer's |
| 5975 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5976 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5977 | static size_t ssl_sock_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5978 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5979 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5980 | ssize_t ret; |
| 5981 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5982 | |
| 5983 | done = 0; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5984 | conn_refresh_polling_flags(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5985 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5986 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5987 | goto out_error; |
| 5988 | |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 5989 | if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5990 | /* a handshake was requested */ |
| 5991 | return 0; |
| 5992 | |
| 5993 | /* send the largest possible block. For this we perform only one call |
| 5994 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 5995 | * in which case we accept to do it once again. |
| 5996 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5997 | while (count) { |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5998 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5999 | size_t written_data; |
| 6000 | #endif |
| 6001 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6002 | try = b_contig_data(buf, done); |
| 6003 | if (try > count) |
| 6004 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6005 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6006 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6007 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6008 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6009 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6010 | } |
| 6011 | else { |
| 6012 | /* we need to keep the information about the fact that |
| 6013 | * we're not limiting the upcoming send(), because if it |
| 6014 | * fails, we'll have to retry with at least as many data. |
| 6015 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6016 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6017 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6018 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6019 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6020 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6021 | unsigned int max_early; |
| 6022 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6023 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6024 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6025 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6026 | if (SSL_get0_session(ctx->ssl)) |
| 6027 | max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl)); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6028 | else |
| 6029 | max_early = 0; |
| 6030 | } |
| 6031 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6032 | if (try + ctx->sent_early_data > max_early) { |
| 6033 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6034 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6035 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6036 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6037 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6038 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6039 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6040 | ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6041 | if (ret == 1) { |
| 6042 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6043 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6044 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6045 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6046 | /* Initiate the handshake, now */ |
| 6047 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6048 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6049 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6050 | } |
| 6051 | |
| 6052 | } else |
| 6053 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6054 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6055 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6056 | if (conn->flags & CO_FL_ERROR) { |
| 6057 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6058 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6059 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6060 | if (ret > 0) { |
Olivier Houchard | f24502b | 2019-01-17 19:09:11 +0100 | [diff] [blame] | 6061 | /* A send succeeded, so we can consier ourself connected */ |
| 6062 | conn->flags |= CO_FL_CONNECTED; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6063 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6064 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6065 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6066 | } |
| 6067 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6068 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6069 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6070 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6071 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6072 | /* handshake is running, and it may need to re-enable write */ |
| 6073 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6074 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6075 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6076 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6077 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6078 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6079 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6080 | break; |
| 6081 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6082 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6083 | break; |
| 6084 | } |
| 6085 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6086 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6087 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6088 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6089 | SUB_RETRY_RECV, |
| 6090 | &ctx->wait_event); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6091 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6092 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6093 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6094 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6095 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6096 | break; |
| 6097 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6098 | goto out_error; |
| 6099 | } |
| 6100 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6101 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6102 | return done; |
| 6103 | |
| 6104 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6105 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6106 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6107 | ERR_clear_error(); |
| 6108 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6109 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6110 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6111 | } |
| 6112 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6113 | static void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6114 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6115 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6116 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6117 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6118 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6119 | if (ctx->wait_event.events != 0) |
| 6120 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6121 | ctx->wait_event.events, |
| 6122 | &ctx->wait_event); |
| 6123 | if (ctx->send_wait) { |
| 6124 | ctx->send_wait->events &= ~SUB_RETRY_SEND; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6125 | tasklet_wakeup(ctx->send_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6126 | } |
| 6127 | if (ctx->recv_wait) { |
| 6128 | ctx->recv_wait->events &= ~SUB_RETRY_RECV; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6129 | tasklet_wakeup(ctx->recv_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6130 | } |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6131 | if (ctx->xprt->close) |
| 6132 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6133 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6134 | if (global_ssl.async) { |
| 6135 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6136 | size_t num_all_fds = 0; |
| 6137 | int i; |
| 6138 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6139 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6140 | if (num_all_fds > 32) { |
| 6141 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6142 | return; |
| 6143 | } |
| 6144 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6145 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6146 | |
| 6147 | /* If an async job is pending, we must try to |
| 6148 | to catch the end using polling before calling |
| 6149 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6150 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6151 | for (i=0 ; i < num_all_fds ; i++) { |
| 6152 | /* switch on an handler designed to |
| 6153 | * handle the SSL_free |
| 6154 | */ |
| 6155 | afd = all_fd[i]; |
| 6156 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6157 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6158 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6159 | /* To ensure that the fd cache won't be used |
| 6160 | * and we'll catch a real RD event. |
| 6161 | */ |
| 6162 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6163 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6164 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6165 | pool_free(ssl_sock_ctx_pool, ctx); |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 6166 | _HA_ATOMIC_ADD(&jobs, 1); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6167 | return; |
| 6168 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6169 | /* Else we can remove the fds from the fdtab |
| 6170 | * and call SSL_free. |
| 6171 | * note: we do a fd_remove and not a delete |
| 6172 | * because the fd is owned by the engine. |
| 6173 | * the engine is responsible to close |
| 6174 | */ |
| 6175 | for (i=0 ; i < num_all_fds ; i++) |
| 6176 | fd_remove(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6177 | } |
| 6178 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6179 | SSL_free(ctx->ssl); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6180 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6181 | pool_free(ssl_sock_ctx_pool, ctx); |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 6182 | _HA_ATOMIC_SUB(&sslconns, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6183 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6184 | } |
| 6185 | |
| 6186 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6187 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6188 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6189 | static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6190 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6191 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6192 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6193 | if (conn->flags & CO_FL_HANDSHAKE) |
| 6194 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6195 | if (!clean) |
| 6196 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6197 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6198 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6199 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6200 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6201 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6202 | ERR_clear_error(); |
| 6203 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6204 | } |
| 6205 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6206 | /* used for ppv2 pkey alog (can be used for logging) */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6207 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6208 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6209 | struct ssl_sock_ctx *ctx; |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6210 | struct pkey_info *pkinfo; |
| 6211 | int bits = 0; |
| 6212 | int sig = TLSEXT_signature_anonymous; |
| 6213 | int len = -1; |
| 6214 | |
| 6215 | if (!ssl_sock_is_ssl(conn)) |
| 6216 | return 0; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6217 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6218 | pkinfo = SSL_CTX_get_ex_data(SSL_get_SSL_CTX(ctx->ssl), ssl_pkey_info_index); |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6219 | if (pkinfo) { |
| 6220 | sig = pkinfo->sig; |
| 6221 | bits = pkinfo->bits; |
| 6222 | } else { |
| 6223 | /* multicert and generated cert have no pkey info */ |
| 6224 | X509 *crt; |
| 6225 | EVP_PKEY *pkey; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6226 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6227 | if (!crt) |
| 6228 | return 0; |
| 6229 | pkey = X509_get_pubkey(crt); |
| 6230 | if (pkey) { |
| 6231 | bits = EVP_PKEY_bits(pkey); |
| 6232 | switch(EVP_PKEY_base_id(pkey)) { |
| 6233 | case EVP_PKEY_RSA: |
| 6234 | sig = TLSEXT_signature_rsa; |
| 6235 | break; |
| 6236 | case EVP_PKEY_EC: |
| 6237 | sig = TLSEXT_signature_ecdsa; |
| 6238 | break; |
| 6239 | case EVP_PKEY_DSA: |
| 6240 | sig = TLSEXT_signature_dsa; |
| 6241 | break; |
| 6242 | } |
| 6243 | EVP_PKEY_free(pkey); |
| 6244 | } |
| 6245 | } |
| 6246 | |
| 6247 | switch(sig) { |
| 6248 | case TLSEXT_signature_rsa: |
| 6249 | len = chunk_printf(out, "RSA%d", bits); |
| 6250 | break; |
| 6251 | case TLSEXT_signature_ecdsa: |
| 6252 | len = chunk_printf(out, "EC%d", bits); |
| 6253 | break; |
| 6254 | case TLSEXT_signature_dsa: |
| 6255 | len = chunk_printf(out, "DSA%d", bits); |
| 6256 | break; |
| 6257 | default: |
| 6258 | return 0; |
| 6259 | } |
| 6260 | if (len < 0) |
| 6261 | return 0; |
| 6262 | return 1; |
| 6263 | } |
| 6264 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6265 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6266 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6267 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6268 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6269 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6270 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6271 | X509 *crt; |
| 6272 | |
| 6273 | if (!ssl_sock_is_ssl(conn)) |
| 6274 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6275 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6276 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6277 | if (!crt) |
| 6278 | return NULL; |
| 6279 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6280 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6281 | } |
| 6282 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6283 | /* used for ppv2 authority */ |
| 6284 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6285 | { |
| 6286 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6287 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6288 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6289 | if (!ssl_sock_is_ssl(conn)) |
| 6290 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6291 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6292 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6293 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6294 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6295 | #endif |
| 6296 | } |
| 6297 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6298 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6299 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6300 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6301 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6302 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6303 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6304 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6305 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6306 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6307 | } |
| 6308 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6309 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6310 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6311 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6312 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6313 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6314 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6315 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6316 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6317 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6318 | } |
| 6319 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6320 | /* Extract a serial from a cert, and copy it to a chunk. |
| 6321 | * Returns 1 if serial is found and copied, 0 if no serial found and |
| 6322 | * -1 if output is not large enough. |
| 6323 | */ |
| 6324 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6325 | ssl_sock_get_serial(X509 *crt, struct buffer *out) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6326 | { |
| 6327 | ASN1_INTEGER *serial; |
| 6328 | |
| 6329 | serial = X509_get_serialNumber(crt); |
| 6330 | if (!serial) |
| 6331 | return 0; |
| 6332 | |
| 6333 | if (out->size < serial->length) |
| 6334 | return -1; |
| 6335 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6336 | memcpy(out->area, serial->data, serial->length); |
| 6337 | out->data = serial->length; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6338 | return 1; |
| 6339 | } |
| 6340 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6341 | /* Extract a cert to der, and copy it to a chunk. |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 6342 | * Returns 1 if the cert is found and copied, 0 on der conversion failure |
| 6343 | * and -1 if the output is not large enough. |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6344 | */ |
| 6345 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6346 | ssl_sock_crt2der(X509 *crt, struct buffer *out) |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6347 | { |
| 6348 | int len; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6349 | unsigned char *p = (unsigned char *) out->area;; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6350 | |
| 6351 | len =i2d_X509(crt, NULL); |
| 6352 | if (len <= 0) |
| 6353 | return 1; |
| 6354 | |
| 6355 | if (out->size < len) |
| 6356 | return -1; |
| 6357 | |
| 6358 | i2d_X509(crt,&p); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6359 | out->data = len; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6360 | return 1; |
| 6361 | } |
| 6362 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6363 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6364 | /* Copy Date in ASN1_UTCTIME format in struct buffer out. |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6365 | * Returns 1 if serial is found and copied, 0 if no valid time found |
| 6366 | * and -1 if output is not large enough. |
| 6367 | */ |
| 6368 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6369 | ssl_sock_get_time(ASN1_TIME *tm, struct buffer *out) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6370 | { |
| 6371 | if (tm->type == V_ASN1_GENERALIZEDTIME) { |
| 6372 | ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm; |
| 6373 | |
| 6374 | if (gentm->length < 12) |
| 6375 | return 0; |
| 6376 | if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30) |
| 6377 | return 0; |
| 6378 | if (out->size < gentm->length-2) |
| 6379 | return -1; |
| 6380 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6381 | memcpy(out->area, gentm->data+2, gentm->length-2); |
| 6382 | out->data = gentm->length-2; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6383 | return 1; |
| 6384 | } |
| 6385 | else if (tm->type == V_ASN1_UTCTIME) { |
| 6386 | ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm; |
| 6387 | |
| 6388 | if (utctm->length < 10) |
| 6389 | return 0; |
| 6390 | if (utctm->data[0] >= 0x35) |
| 6391 | return 0; |
| 6392 | if (out->size < utctm->length) |
| 6393 | return -1; |
| 6394 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6395 | memcpy(out->area, utctm->data, utctm->length); |
| 6396 | out->data = utctm->length; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6397 | return 1; |
| 6398 | } |
| 6399 | |
| 6400 | return 0; |
| 6401 | } |
| 6402 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6403 | /* Extract an entry from a X509_NAME and copy its value to an output chunk. |
| 6404 | * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough. |
| 6405 | */ |
| 6406 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6407 | ssl_sock_get_dn_entry(X509_NAME *a, const struct buffer *entry, int pos, |
| 6408 | struct buffer *out) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6409 | { |
| 6410 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6411 | ASN1_OBJECT *obj; |
| 6412 | ASN1_STRING *data; |
| 6413 | const unsigned char *data_ptr; |
| 6414 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6415 | int i, j, n; |
| 6416 | int cur = 0; |
| 6417 | const char *s; |
| 6418 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6419 | int name_count; |
| 6420 | |
| 6421 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6422 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6423 | out->data = 0; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6424 | for (i = 0; i < name_count; i++) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6425 | if (pos < 0) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6426 | j = (name_count-1) - i; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6427 | else |
| 6428 | j = i; |
| 6429 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6430 | ne = X509_NAME_get_entry(a, j); |
| 6431 | obj = X509_NAME_ENTRY_get_object(ne); |
| 6432 | data = X509_NAME_ENTRY_get_data(ne); |
| 6433 | data_ptr = ASN1_STRING_get0_data(data); |
| 6434 | data_len = ASN1_STRING_length(data); |
| 6435 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6436 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6437 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6438 | s = tmp; |
| 6439 | } |
| 6440 | |
| 6441 | if (chunk_strcasecmp(entry, s) != 0) |
| 6442 | continue; |
| 6443 | |
| 6444 | if (pos < 0) |
| 6445 | cur--; |
| 6446 | else |
| 6447 | cur++; |
| 6448 | |
| 6449 | if (cur != pos) |
| 6450 | continue; |
| 6451 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6452 | if (data_len > out->size) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6453 | return -1; |
| 6454 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6455 | memcpy(out->area, data_ptr, data_len); |
| 6456 | out->data = data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6457 | return 1; |
| 6458 | } |
| 6459 | |
| 6460 | return 0; |
| 6461 | |
| 6462 | } |
| 6463 | |
| 6464 | /* Extract and format full DN from a X509_NAME and copy result into a chunk |
| 6465 | * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough. |
| 6466 | */ |
| 6467 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6468 | ssl_sock_get_dn_oneline(X509_NAME *a, struct buffer *out) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6469 | { |
| 6470 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6471 | ASN1_OBJECT *obj; |
| 6472 | ASN1_STRING *data; |
| 6473 | const unsigned char *data_ptr; |
| 6474 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6475 | int i, n, ln; |
| 6476 | int l = 0; |
| 6477 | const char *s; |
| 6478 | char *p; |
| 6479 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6480 | int name_count; |
| 6481 | |
| 6482 | |
| 6483 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6484 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6485 | out->data = 0; |
| 6486 | p = out->area; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6487 | for (i = 0; i < name_count; i++) { |
| 6488 | ne = X509_NAME_get_entry(a, i); |
| 6489 | obj = X509_NAME_ENTRY_get_object(ne); |
| 6490 | data = X509_NAME_ENTRY_get_data(ne); |
| 6491 | data_ptr = ASN1_STRING_get0_data(data); |
| 6492 | data_len = ASN1_STRING_length(data); |
| 6493 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6494 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6495 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6496 | s = tmp; |
| 6497 | } |
| 6498 | ln = strlen(s); |
| 6499 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6500 | l += 1 + ln + 1 + data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6501 | if (l > out->size) |
| 6502 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6503 | out->data = l; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6504 | |
| 6505 | *(p++)='/'; |
| 6506 | memcpy(p, s, ln); |
| 6507 | p += ln; |
| 6508 | *(p++)='='; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6509 | memcpy(p, data_ptr, data_len); |
| 6510 | p += data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6511 | } |
| 6512 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6513 | if (!out->data) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6514 | return 0; |
| 6515 | |
| 6516 | return 1; |
| 6517 | } |
| 6518 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6519 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6520 | { |
| 6521 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6522 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6523 | |
Olivier Houchard | aa2ecea | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6524 | if (!ssl_sock_is_ssl(conn)) |
| 6525 | return; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6526 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6527 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6528 | #endif |
| 6529 | } |
| 6530 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6531 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6532 | * to disable SNI. |
| 6533 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6534 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6535 | { |
| 6536 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6537 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6538 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6539 | char *prev_name; |
| 6540 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6541 | if (!ssl_sock_is_ssl(conn)) |
| 6542 | return; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6543 | ctx = conn->xprt_ctx; |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6544 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6545 | /* if the SNI changes, we must destroy the reusable context so that a |
| 6546 | * new connection will present a new SNI. As an optimization we could |
| 6547 | * later imagine having a small cache of ssl_ctx to hold a few SNI per |
| 6548 | * server. |
| 6549 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6550 | prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6551 | if ((!prev_name && hostname) || |
| 6552 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6553 | SSL_set_session(ctx->ssl, NULL); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6554 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6555 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6556 | #endif |
| 6557 | } |
| 6558 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6559 | /* Extract peer certificate's common name into the chunk dest |
| 6560 | * Returns |
| 6561 | * the len of the extracted common name |
| 6562 | * or 0 if no CN found in DN |
| 6563 | * or -1 on error case (i.e. no peer certificate) |
| 6564 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6565 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6566 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6567 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6568 | struct ssl_sock_ctx *ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6569 | X509 *crt = NULL; |
| 6570 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6571 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6572 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6573 | .area = (char *)&find_cn, |
| 6574 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6575 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6576 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6577 | |
| 6578 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6579 | goto out; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6580 | ctx = conn->xprt_ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6581 | |
| 6582 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6583 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6584 | if (!crt) |
| 6585 | goto out; |
| 6586 | |
| 6587 | name = X509_get_subject_name(crt); |
| 6588 | if (!name) |
| 6589 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6590 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6591 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6592 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6593 | if (crt) |
| 6594 | X509_free(crt); |
| 6595 | |
| 6596 | return result; |
| 6597 | } |
| 6598 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6599 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6600 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6601 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6602 | struct ssl_sock_ctx *ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6603 | X509 *crt = NULL; |
| 6604 | |
| 6605 | if (!ssl_sock_is_ssl(conn)) |
| 6606 | return 0; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6607 | ctx = conn->xprt_ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6608 | |
| 6609 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6610 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6611 | if (!crt) |
| 6612 | return 0; |
| 6613 | |
| 6614 | X509_free(crt); |
| 6615 | return 1; |
| 6616 | } |
| 6617 | |
| 6618 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6619 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6620 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6621 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6622 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6623 | if (!ssl_sock_is_ssl(conn)) |
| 6624 | return 0; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6625 | ctx = conn->xprt_ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6626 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6627 | } |
| 6628 | |
| 6629 | /* returns result from SSL verify */ |
| 6630 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6631 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6632 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6633 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6634 | if (!ssl_sock_is_ssl(conn)) |
| 6635 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6636 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6637 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6638 | } |
| 6639 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6640 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6641 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6642 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6643 | * freed by the caller. NPN is also checked if available since older versions |
| 6644 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6645 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6646 | static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6647 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6648 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6649 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6650 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6651 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6652 | return 0; |
| 6653 | |
| 6654 | *str = NULL; |
| 6655 | |
| 6656 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6657 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6658 | if (*str) |
| 6659 | return 1; |
| 6660 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6661 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6662 | SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6663 | if (*str) |
| 6664 | return 1; |
| 6665 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6666 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6667 | return 0; |
| 6668 | } |
| 6669 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6670 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 6671 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6672 | static int |
| 6673 | smp_fetch_ssl_fc_has_early(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6674 | { |
| 6675 | struct connection *conn; |
| 6676 | |
| 6677 | conn = objt_conn(smp->sess->origin); |
| 6678 | if (!conn || conn->xprt != &ssl_sock) |
| 6679 | return 0; |
| 6680 | |
| 6681 | smp->flags = 0; |
| 6682 | smp->data.type = SMP_T_BOOL; |
Emmanuel Hocdet | bb8643c | 2019-08-07 14:44:49 +0200 | [diff] [blame] | 6683 | #ifdef OPENSSL_IS_BORINGSSL |
| 6684 | { |
| 6685 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 6686 | smp->data.u.sint = (SSL_in_early_data(ctx->ssl) && |
| 6687 | SSL_early_data_accepted(ctx->ssl)); |
| 6688 | } |
| 6689 | #else |
Olivier Houchard | 25ae45a | 2017-11-29 19:51:19 +0100 | [diff] [blame] | 6690 | smp->data.u.sint = ((conn->flags & CO_FL_EARLY_DATA) && |
| 6691 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE))) ? 1 : 0; |
Emmanuel Hocdet | bb8643c | 2019-08-07 14:44:49 +0200 | [diff] [blame] | 6692 | #endif |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6693 | return 1; |
| 6694 | } |
| 6695 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6696 | /* boolean, returns true if client cert was present */ |
| 6697 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6698 | smp_fetch_ssl_fc_has_crt(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6699 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6700 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6701 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6702 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6703 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6704 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6705 | return 0; |
| 6706 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6707 | ctx = conn->xprt_ctx; |
| 6708 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6709 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6710 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6711 | return 0; |
| 6712 | } |
| 6713 | |
| 6714 | smp->flags = 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6715 | smp->data.type = SMP_T_BOOL; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6716 | smp->data.u.sint = SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6717 | |
| 6718 | return 1; |
| 6719 | } |
| 6720 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6721 | /* binary, returns a certificate in a binary chunk (der/raw). |
| 6722 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6723 | * should be use. |
| 6724 | */ |
| 6725 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6726 | smp_fetch_ssl_x_der(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6727 | { |
| 6728 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
| 6729 | X509 *crt = NULL; |
| 6730 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6731 | struct buffer *smp_trash; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6732 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6733 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6734 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6735 | conn = objt_conn(smp->sess->origin); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6736 | if (!conn || conn->xprt != &ssl_sock) |
| 6737 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6738 | ctx = conn->xprt_ctx; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6739 | |
| 6740 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 6741 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6742 | return 0; |
| 6743 | } |
| 6744 | |
| 6745 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6746 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6747 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6748 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6749 | |
| 6750 | if (!crt) |
| 6751 | goto out; |
| 6752 | |
| 6753 | smp_trash = get_trash_chunk(); |
| 6754 | if (ssl_sock_crt2der(crt, smp_trash) <= 0) |
| 6755 | goto out; |
| 6756 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6757 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6758 | smp->data.type = SMP_T_BIN; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6759 | ret = 1; |
| 6760 | out: |
| 6761 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6762 | if (cert_peer && crt) |
| 6763 | X509_free(crt); |
| 6764 | return ret; |
| 6765 | } |
| 6766 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6767 | /* binary, returns serial of certificate in a binary chunk. |
| 6768 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6769 | * should be use. |
| 6770 | */ |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6771 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6772 | smp_fetch_ssl_x_serial(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6773 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6774 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6775 | X509 *crt = NULL; |
| 6776 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6777 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6778 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6779 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6780 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6781 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6782 | if (!conn || conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6783 | return 0; |
| 6784 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6785 | ctx = conn->xprt_ctx; |
| 6786 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6787 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6788 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6789 | return 0; |
| 6790 | } |
| 6791 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6792 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6793 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6794 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6795 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6796 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6797 | if (!crt) |
| 6798 | goto out; |
| 6799 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6800 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6801 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 6802 | goto out; |
| 6803 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6804 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6805 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6806 | ret = 1; |
| 6807 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6808 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6809 | if (cert_peer && crt) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6810 | X509_free(crt); |
| 6811 | return ret; |
| 6812 | } |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6813 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6814 | /* binary, returns the client certificate's SHA-1 fingerprint (SHA-1 hash of DER-encoded certificate) in a binary chunk. |
| 6815 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6816 | * should be use. |
| 6817 | */ |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6818 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6819 | smp_fetch_ssl_x_sha1(const struct arg *args, struct sample *smp, const char *kw, void *private) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6820 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6821 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6822 | X509 *crt = NULL; |
| 6823 | const EVP_MD *digest; |
| 6824 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6825 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6826 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6827 | struct ssl_sock_ctx *ctx; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6828 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6829 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6830 | if (!conn || conn->xprt != &ssl_sock) |
| 6831 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6832 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6833 | |
| 6834 | if (!(conn->flags & CO_FL_CONNECTED)) { |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6835 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6836 | return 0; |
| 6837 | } |
| 6838 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6839 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6840 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6841 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6842 | crt = SSL_get_certificate(ctx->ssl); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6843 | if (!crt) |
| 6844 | goto out; |
| 6845 | |
| 6846 | smp_trash = get_trash_chunk(); |
| 6847 | digest = EVP_sha1(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6848 | X509_digest(crt, digest, (unsigned char *) smp_trash->area, |
| 6849 | (unsigned int *)&smp_trash->data); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6850 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6851 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6852 | smp->data.type = SMP_T_BIN; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6853 | ret = 1; |
| 6854 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6855 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6856 | if (cert_peer && crt) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6857 | X509_free(crt); |
| 6858 | return ret; |
| 6859 | } |
| 6860 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6861 | /* string, returns certificate's notafter date in ASN1_UTCTIME format. |
| 6862 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6863 | * should be use. |
| 6864 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6865 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6866 | smp_fetch_ssl_x_notafter(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6867 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6868 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6869 | X509 *crt = NULL; |
| 6870 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6871 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6872 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6873 | struct ssl_sock_ctx *ctx; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6874 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6875 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6876 | if (!conn || conn->xprt != &ssl_sock) |
| 6877 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6878 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6879 | |
| 6880 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6881 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6882 | return 0; |
| 6883 | } |
| 6884 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6885 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6886 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6887 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6888 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6889 | if (!crt) |
| 6890 | goto out; |
| 6891 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6892 | smp_trash = get_trash_chunk(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 6893 | if (ssl_sock_get_time(X509_getm_notAfter(crt), smp_trash) <= 0) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6894 | goto out; |
| 6895 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6896 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6897 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6898 | ret = 1; |
| 6899 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6900 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6901 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6902 | X509_free(crt); |
| 6903 | return ret; |
| 6904 | } |
| 6905 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6906 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's issuer |
| 6907 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6908 | * should be use. |
| 6909 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6910 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6911 | smp_fetch_ssl_x_i_dn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6912 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6913 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6914 | X509 *crt = NULL; |
| 6915 | X509_NAME *name; |
| 6916 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6917 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6918 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6919 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6920 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6921 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6922 | if (!conn || conn->xprt != &ssl_sock) |
| 6923 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6924 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6925 | |
| 6926 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6927 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6928 | return 0; |
| 6929 | } |
| 6930 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6931 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6932 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6933 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6934 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6935 | if (!crt) |
| 6936 | goto out; |
| 6937 | |
| 6938 | name = X509_get_issuer_name(crt); |
| 6939 | if (!name) |
| 6940 | goto out; |
| 6941 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6942 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6943 | if (args && args[0].type == ARGT_STR) { |
| 6944 | int pos = 1; |
| 6945 | |
| 6946 | if (args[1].type == ARGT_SINT) |
| 6947 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6948 | |
| 6949 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 6950 | goto out; |
| 6951 | } |
| 6952 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 6953 | goto out; |
| 6954 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6955 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6956 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6957 | ret = 1; |
| 6958 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6959 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6960 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6961 | X509_free(crt); |
| 6962 | return ret; |
| 6963 | } |
| 6964 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6965 | /* string, returns notbefore date in ASN1_UTCTIME format. |
| 6966 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6967 | * should be use. |
| 6968 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6969 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6970 | smp_fetch_ssl_x_notbefore(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6971 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6972 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6973 | X509 *crt = NULL; |
| 6974 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6975 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6976 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6977 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6978 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6979 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6980 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6981 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6982 | ctx = conn->xprt_ctx; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6983 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6984 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6985 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6986 | return 0; |
| 6987 | } |
| 6988 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6989 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6990 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6991 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6992 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6993 | if (!crt) |
| 6994 | goto out; |
| 6995 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6996 | smp_trash = get_trash_chunk(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 6997 | if (ssl_sock_get_time(X509_getm_notBefore(crt), smp_trash) <= 0) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6998 | goto out; |
| 6999 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7000 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7001 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 7002 | ret = 1; |
| 7003 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7004 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 7005 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 7006 | X509_free(crt); |
| 7007 | return ret; |
| 7008 | } |
| 7009 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7010 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's subject |
| 7011 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7012 | * should be use. |
| 7013 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7014 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7015 | smp_fetch_ssl_x_s_dn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7016 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7017 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7018 | X509 *crt = NULL; |
| 7019 | X509_NAME *name; |
| 7020 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7021 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7022 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7023 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7024 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7025 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7026 | if (!conn || conn->xprt != &ssl_sock) |
| 7027 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7028 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7029 | |
| 7030 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7031 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7032 | return 0; |
| 7033 | } |
| 7034 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7035 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7036 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7037 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7038 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7039 | if (!crt) |
| 7040 | goto out; |
| 7041 | |
| 7042 | name = X509_get_subject_name(crt); |
| 7043 | if (!name) |
| 7044 | goto out; |
| 7045 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 7046 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7047 | if (args && args[0].type == ARGT_STR) { |
| 7048 | int pos = 1; |
| 7049 | |
| 7050 | if (args[1].type == ARGT_SINT) |
| 7051 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7052 | |
| 7053 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 7054 | goto out; |
| 7055 | } |
| 7056 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 7057 | goto out; |
| 7058 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7059 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7060 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7061 | ret = 1; |
| 7062 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7063 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 7064 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7065 | X509_free(crt); |
| 7066 | return ret; |
| 7067 | } |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7068 | |
| 7069 | /* integer, returns true if current session use a client certificate */ |
| 7070 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7071 | smp_fetch_ssl_c_used(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7072 | { |
| 7073 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7074 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7075 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7076 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7077 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7078 | if (!conn || conn->xprt != &ssl_sock) |
| 7079 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7080 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7081 | |
| 7082 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7083 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7084 | return 0; |
| 7085 | } |
| 7086 | |
| 7087 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7088 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7089 | if (crt) { |
| 7090 | X509_free(crt); |
| 7091 | } |
| 7092 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7093 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7094 | smp->data.u.sint = (crt != NULL); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7095 | return 1; |
| 7096 | } |
| 7097 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7098 | /* integer, returns the certificate version |
| 7099 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7100 | * should be use. |
| 7101 | */ |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7102 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7103 | smp_fetch_ssl_x_version(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7104 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7105 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7106 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7107 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7108 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7109 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7110 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7111 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7112 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7113 | ctx = conn->xprt_ctx; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7114 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7115 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7116 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7117 | return 0; |
| 7118 | } |
| 7119 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7120 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7121 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7122 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7123 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7124 | if (!crt) |
| 7125 | return 0; |
| 7126 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7127 | smp->data.u.sint = (unsigned int)(1 + X509_get_version(crt)); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7128 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7129 | if (cert_peer) |
| 7130 | X509_free(crt); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7131 | smp->data.type = SMP_T_SINT; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7132 | |
| 7133 | return 1; |
| 7134 | } |
| 7135 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7136 | /* string, returns the certificate's signature algorithm. |
| 7137 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7138 | * should be use. |
| 7139 | */ |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7140 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7141 | smp_fetch_ssl_x_sig_alg(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7142 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7143 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7144 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7145 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7146 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7147 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7148 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7149 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7150 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7151 | if (!conn || conn->xprt != &ssl_sock) |
| 7152 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7153 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7154 | |
| 7155 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7156 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7157 | return 0; |
| 7158 | } |
| 7159 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7160 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7161 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7162 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7163 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7164 | if (!crt) |
| 7165 | return 0; |
| 7166 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7167 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 7168 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7169 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7170 | smp->data.u.str.area = (char *)OBJ_nid2sn(nid); |
| 7171 | if (!smp->data.u.str.area) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7172 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7173 | if (cert_peer) |
| 7174 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7175 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 7176 | } |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7177 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7178 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7179 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7180 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7181 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7182 | if (cert_peer) |
| 7183 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7184 | |
| 7185 | return 1; |
| 7186 | } |
| 7187 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7188 | /* string, returns the certificate's key algorithm. |
| 7189 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7190 | * should be use. |
| 7191 | */ |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7192 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7193 | smp_fetch_ssl_x_key_alg(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7194 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7195 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7196 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7197 | ASN1_OBJECT *algorithm; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7198 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7199 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7200 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7201 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7202 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7203 | if (!conn || conn->xprt != &ssl_sock) |
| 7204 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7205 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7206 | |
| 7207 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7208 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7209 | return 0; |
| 7210 | } |
| 7211 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7212 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7213 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7214 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7215 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7216 | if (!crt) |
| 7217 | return 0; |
| 7218 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7219 | X509_PUBKEY_get0_param(&algorithm, NULL, NULL, NULL, X509_get_X509_PUBKEY(crt)); |
| 7220 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7221 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7222 | smp->data.u.str.area = (char *)OBJ_nid2sn(nid); |
| 7223 | if (!smp->data.u.str.area) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7224 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7225 | if (cert_peer) |
| 7226 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7227 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 7228 | } |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7229 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7230 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7231 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7232 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7233 | if (cert_peer) |
| 7234 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7235 | |
| 7236 | return 1; |
| 7237 | } |
| 7238 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7239 | /* boolean, returns true if front conn. transport layer is SSL. |
| 7240 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7241 | * char is 'b'. |
| 7242 | */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7243 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7244 | smp_fetch_ssl_fc(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7245 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7246 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7247 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7248 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7249 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7250 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7251 | return 1; |
| 7252 | } |
| 7253 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7254 | /* boolean, returns true if client present a SNI */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7255 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7256 | smp_fetch_ssl_fc_has_sni(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7257 | { |
| 7258 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7259 | struct connection *conn = objt_conn(smp->sess->origin); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7260 | struct ssl_sock_ctx *ctx = conn ? conn->xprt_ctx : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7261 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7262 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7263 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7264 | conn->xprt_ctx && |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7265 | SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name) != NULL; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7266 | return 1; |
| 7267 | #else |
| 7268 | return 0; |
| 7269 | #endif |
| 7270 | } |
| 7271 | |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 7272 | /* boolean, returns true if client session has been resumed. |
| 7273 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7274 | * char is 'b'. |
| 7275 | */ |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7276 | static int |
| 7277 | smp_fetch_ssl_fc_is_resumed(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7278 | { |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 7279 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7280 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7281 | struct ssl_sock_ctx *ctx = conn ? conn->xprt_ctx : NULL; |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 7282 | |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7283 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7284 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7285 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7286 | conn->xprt_ctx && |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7287 | SSL_session_reused(ctx->ssl); |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7288 | return 1; |
| 7289 | } |
| 7290 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7291 | /* string, returns the used cipher if front conn. transport layer is SSL. |
| 7292 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7293 | * char is 'b'. |
| 7294 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7295 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7296 | smp_fetch_ssl_fc_cipher(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7297 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7298 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7299 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7300 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7301 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7302 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7303 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7304 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7305 | ctx = conn->xprt_ctx; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7306 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7307 | smp->data.u.str.area = (char *)SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7308 | if (!smp->data.u.str.area) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7309 | return 0; |
| 7310 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7311 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7312 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7313 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7314 | |
| 7315 | return 1; |
| 7316 | } |
| 7317 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7318 | /* integer, returns the algoritm's keysize if front conn. transport layer |
| 7319 | * is SSL. |
| 7320 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7321 | * char is 'b'. |
| 7322 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7323 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7324 | smp_fetch_ssl_fc_alg_keysize(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7325 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7326 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7327 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7328 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 7329 | int sint; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7330 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7331 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7332 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7333 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7334 | ctx = conn->xprt_ctx; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7335 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7336 | if (!SSL_get_cipher_bits(ctx->ssl, &sint)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7337 | return 0; |
| 7338 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7339 | smp->data.u.sint = sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7340 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7341 | |
| 7342 | return 1; |
| 7343 | } |
| 7344 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7345 | /* integer, returns the used keysize if front conn. transport layer is SSL. |
| 7346 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7347 | * char is 'b'. |
| 7348 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7349 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7350 | smp_fetch_ssl_fc_use_keysize(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7351 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7352 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7353 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7354 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7355 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7356 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7357 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7358 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7359 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7360 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7361 | smp->data.u.sint = (unsigned int)SSL_get_cipher_bits(ctx->ssl, NULL); |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7362 | if (!smp->data.u.sint) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7363 | return 0; |
| 7364 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7365 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7366 | |
| 7367 | return 1; |
| 7368 | } |
| 7369 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 7370 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7371 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7372 | smp_fetch_ssl_fc_npn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7373 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7374 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7375 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7376 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7377 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7378 | smp->data.type = SMP_T_STR; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7379 | |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 7380 | conn = (kw[4] != 'b' ) ? objt_conn(smp->sess->origin) : |
| 7381 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7382 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7383 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7384 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7385 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7386 | smp->data.u.str.area = NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7387 | SSL_get0_next_proto_negotiated(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7388 | (const unsigned char **)&smp->data.u.str.area, |
| 7389 | (unsigned *)&smp->data.u.str.data); |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7390 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7391 | if (!smp->data.u.str.area) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7392 | return 0; |
| 7393 | |
| 7394 | return 1; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7395 | } |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7396 | #endif |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7397 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 7398 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7399 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7400 | smp_fetch_ssl_fc_alpn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7401 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7402 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7403 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7404 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7405 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7406 | smp->data.type = SMP_T_STR; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7407 | |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 7408 | conn = (kw[4] != 'b' ) ? objt_conn(smp->sess->origin) : |
| 7409 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 7410 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7411 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7412 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7413 | ctx = conn->xprt_ctx; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7414 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7415 | smp->data.u.str.area = NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7416 | SSL_get0_alpn_selected(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7417 | (const unsigned char **)&smp->data.u.str.area, |
| 7418 | (unsigned *)&smp->data.u.str.data); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7419 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7420 | if (!smp->data.u.str.area) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7421 | return 0; |
| 7422 | |
| 7423 | return 1; |
| 7424 | } |
| 7425 | #endif |
| 7426 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7427 | /* string, returns the used protocol if front conn. transport layer is SSL. |
| 7428 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7429 | * char is 'b'. |
| 7430 | */ |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7431 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7432 | smp_fetch_ssl_fc_protocol(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7433 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7434 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7435 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7436 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7437 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7438 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7439 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7440 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7441 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7442 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7443 | smp->data.u.str.area = (char *)SSL_get_version(ctx->ssl); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7444 | if (!smp->data.u.str.area) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7445 | return 0; |
| 7446 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7447 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7448 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7449 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7450 | |
| 7451 | return 1; |
| 7452 | } |
| 7453 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7454 | /* binary, returns the SSL stream id if front conn. transport layer is SSL. |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7455 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7456 | * char is 'b'. |
| 7457 | */ |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7458 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7459 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7460 | smp_fetch_ssl_fc_session_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7461 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7462 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7463 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 7464 | SSL_SESSION *ssl_sess; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7465 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7466 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7467 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7468 | smp->data.type = SMP_T_BIN; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7469 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7470 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7471 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7472 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7473 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7474 | ssl_sess = SSL_get_session(ctx->ssl); |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 7475 | if (!ssl_sess) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7476 | return 0; |
| 7477 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7478 | smp->data.u.str.area = (char *)SSL_SESSION_get_id(ssl_sess, |
| 7479 | (unsigned int *)&smp->data.u.str.data); |
| 7480 | if (!smp->data.u.str.area || !smp->data.u.str.data) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7481 | return 0; |
| 7482 | |
| 7483 | return 1; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7484 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7485 | #endif |
| 7486 | |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7487 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 7488 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7489 | static int |
Patrick Hemmer | 6567466 | 2019-06-04 08:13:03 -0400 | [diff] [blame] | 7490 | smp_fetch_ssl_fc_random(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7491 | { |
| 7492 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7493 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 7494 | struct buffer *data; |
| 7495 | struct ssl_sock_ctx *ctx; |
| 7496 | |
| 7497 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7498 | return 0; |
| 7499 | ctx = conn->xprt_ctx; |
| 7500 | |
| 7501 | data = get_trash_chunk(); |
| 7502 | if (kw[7] == 'c') |
| 7503 | data->data = SSL_get_client_random(ctx->ssl, |
| 7504 | (unsigned char *) data->area, |
| 7505 | data->size); |
| 7506 | else |
| 7507 | data->data = SSL_get_server_random(ctx->ssl, |
| 7508 | (unsigned char *) data->area, |
| 7509 | data->size); |
| 7510 | if (!data->data) |
| 7511 | return 0; |
| 7512 | |
| 7513 | smp->flags = 0; |
| 7514 | smp->data.type = SMP_T_BIN; |
| 7515 | smp->data.u.str = *data; |
| 7516 | |
| 7517 | return 1; |
| 7518 | } |
| 7519 | |
| 7520 | static int |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7521 | smp_fetch_ssl_fc_session_key(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7522 | { |
| 7523 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7524 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 7525 | SSL_SESSION *ssl_sess; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7526 | struct buffer *data; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7527 | struct ssl_sock_ctx *ctx; |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7528 | |
| 7529 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7530 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7531 | ctx = conn->xprt_ctx; |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7532 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7533 | ssl_sess = SSL_get_session(ctx->ssl); |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7534 | if (!ssl_sess) |
| 7535 | return 0; |
| 7536 | |
| 7537 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7538 | data->data = SSL_SESSION_get_master_key(ssl_sess, |
| 7539 | (unsigned char *) data->area, |
| 7540 | data->size); |
| 7541 | if (!data->data) |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7542 | return 0; |
| 7543 | |
| 7544 | smp->flags = 0; |
| 7545 | smp->data.type = SMP_T_BIN; |
| 7546 | smp->data.u.str = *data; |
| 7547 | |
| 7548 | return 1; |
| 7549 | } |
| 7550 | #endif |
| 7551 | |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7552 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7553 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7554 | smp_fetch_ssl_fc_sni(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7555 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7556 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7557 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7558 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7559 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7560 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7561 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7562 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7563 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7564 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7565 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7566 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7567 | smp->data.u.str.area = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7568 | if (!smp->data.u.str.area) |
Willy Tarreau | 3e394c9 | 2012-09-14 23:56:58 +0200 | [diff] [blame] | 7569 | return 0; |
| 7570 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7571 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7572 | return 1; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7573 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7574 | #endif |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7575 | |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7576 | static int |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7577 | smp_fetch_ssl_fc_cl_bin(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7578 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7579 | struct connection *conn; |
| 7580 | struct ssl_capture *capture; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7581 | struct ssl_sock_ctx *ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7582 | |
| 7583 | conn = objt_conn(smp->sess->origin); |
| 7584 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7585 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7586 | ctx = conn->xprt_ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7587 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7588 | capture = SSL_get_ex_data(ctx->ssl, ssl_capture_ptr_index); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7589 | if (!capture) |
| 7590 | return 0; |
| 7591 | |
| 7592 | smp->flags = SMP_F_CONST; |
| 7593 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7594 | smp->data.u.str.area = capture->ciphersuite; |
| 7595 | smp->data.u.str.data = capture->ciphersuite_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7596 | return 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7597 | } |
| 7598 | |
| 7599 | static int |
| 7600 | smp_fetch_ssl_fc_cl_hex(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7601 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7602 | struct buffer *data; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7603 | |
| 7604 | if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private)) |
| 7605 | return 0; |
| 7606 | |
| 7607 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7608 | dump_binary(data, smp->data.u.str.area, smp->data.u.str.data); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7609 | smp->data.type = SMP_T_BIN; |
| 7610 | smp->data.u.str = *data; |
| 7611 | return 1; |
| 7612 | } |
| 7613 | |
| 7614 | static int |
| 7615 | smp_fetch_ssl_fc_cl_xxh64(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7616 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7617 | struct connection *conn; |
| 7618 | struct ssl_capture *capture; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7619 | struct ssl_sock_ctx *ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7620 | |
| 7621 | conn = objt_conn(smp->sess->origin); |
| 7622 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7623 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7624 | ctx = conn->xprt_ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7625 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7626 | capture = SSL_get_ex_data(ctx->ssl, ssl_capture_ptr_index); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7627 | if (!capture) |
| 7628 | return 0; |
| 7629 | |
| 7630 | smp->data.type = SMP_T_SINT; |
| 7631 | smp->data.u.sint = capture->xxh64; |
| 7632 | return 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7633 | } |
| 7634 | |
| 7635 | static int |
| 7636 | smp_fetch_ssl_fc_cl_str(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7637 | { |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7638 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7639 | struct buffer *data; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7640 | int i; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7641 | |
| 7642 | if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private)) |
| 7643 | return 0; |
| 7644 | |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7645 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7646 | for (i = 0; i + 1 < smp->data.u.str.data; i += 2) { |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7647 | const char *str; |
| 7648 | const SSL_CIPHER *cipher; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7649 | const unsigned char *bin = (const unsigned char *) smp->data.u.str.area + i; |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7650 | uint16_t id = (bin[0] << 8) | bin[1]; |
| 7651 | #if defined(OPENSSL_IS_BORINGSSL) |
| 7652 | cipher = SSL_get_cipher_by_value(id); |
| 7653 | #else |
Willy Tarreau | b729077 | 2018-10-15 11:01:59 +0200 | [diff] [blame] | 7654 | struct connection *conn = __objt_conn(smp->sess->origin); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7655 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 7656 | cipher = SSL_CIPHER_find(ctx->ssl, bin); |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7657 | #endif |
| 7658 | str = SSL_CIPHER_get_name(cipher); |
| 7659 | if (!str || strcmp(str, "(NONE)") == 0) |
| 7660 | chunk_appendf(data, "%sUNKNOWN(%04x)", i == 0 ? "" : ",", id); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7661 | else |
| 7662 | chunk_appendf(data, "%s%s", i == 0 ? "" : ",", str); |
| 7663 | } |
| 7664 | smp->data.type = SMP_T_STR; |
| 7665 | smp->data.u.str = *data; |
| 7666 | return 1; |
| 7667 | #else |
| 7668 | return smp_fetch_ssl_fc_cl_xxh64(args, smp, kw, private); |
| 7669 | #endif |
| 7670 | } |
| 7671 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7672 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7673 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7674 | smp_fetch_ssl_fc_unique_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7675 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7676 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7677 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7678 | int finished_len; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7679 | struct buffer *finished_trash; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7680 | struct ssl_sock_ctx *ctx; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7681 | |
| 7682 | smp->flags = 0; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7683 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7684 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7685 | ctx = conn->xprt_ctx; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7686 | |
| 7687 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 7688 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7689 | return 0; |
| 7690 | } |
| 7691 | |
| 7692 | finished_trash = get_trash_chunk(); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7693 | if (!SSL_session_reused(ctx->ssl)) |
| 7694 | finished_len = SSL_get_peer_finished(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7695 | finished_trash->area, |
| 7696 | finished_trash->size); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7697 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7698 | finished_len = SSL_get_finished(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7699 | finished_trash->area, |
| 7700 | finished_trash->size); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7701 | |
| 7702 | if (!finished_len) |
| 7703 | return 0; |
| 7704 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7705 | finished_trash->data = finished_len; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7706 | smp->data.u.str = *finished_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7707 | smp->data.type = SMP_T_BIN; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7708 | |
| 7709 | return 1; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7710 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7711 | #endif |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7712 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7713 | /* 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] | 7714 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7715 | smp_fetch_ssl_c_ca_err(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7716 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7717 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7718 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7719 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7720 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7721 | if (!conn || conn->xprt != &ssl_sock) |
| 7722 | return 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7723 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7724 | |
| 7725 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7726 | smp->flags = SMP_F_MAY_CHANGE; |
| 7727 | return 0; |
| 7728 | } |
| 7729 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7730 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7731 | smp->data.u.sint = (unsigned long long int)SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7732 | smp->flags = 0; |
| 7733 | |
| 7734 | return 1; |
| 7735 | } |
| 7736 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7737 | /* 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] | 7738 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7739 | smp_fetch_ssl_c_ca_err_depth(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7740 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7741 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7742 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7743 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7744 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7745 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7746 | return 0; |
| 7747 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7748 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7749 | smp->flags = SMP_F_MAY_CHANGE; |
| 7750 | return 0; |
| 7751 | } |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7752 | ctx = conn->xprt_ctx; |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7753 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7754 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7755 | smp->data.u.sint = (long long int)SSL_SOCK_ST_TO_CAEDEPTH(ctx->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7756 | smp->flags = 0; |
| 7757 | |
| 7758 | return 1; |
| 7759 | } |
| 7760 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7761 | /* integer, returns the first verify error on client certificate */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7762 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7763 | smp_fetch_ssl_c_err(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7764 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7765 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7766 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7767 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7768 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7769 | if (!conn || conn->xprt != &ssl_sock) |
| 7770 | return 0; |
| 7771 | |
| 7772 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7773 | smp->flags = SMP_F_MAY_CHANGE; |
| 7774 | return 0; |
| 7775 | } |
| 7776 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7777 | ctx = conn->xprt_ctx; |
| 7778 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7779 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7780 | smp->data.u.sint = (long long int)SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7781 | smp->flags = 0; |
| 7782 | |
| 7783 | return 1; |
| 7784 | } |
| 7785 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7786 | /* integer, returns the verify result on client cert */ |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7787 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7788 | smp_fetch_ssl_c_verify(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7789 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7790 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7791 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7792 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7793 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7794 | if (!conn || conn->xprt != &ssl_sock) |
| 7795 | return 0; |
| 7796 | |
| 7797 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7798 | smp->flags = SMP_F_MAY_CHANGE; |
| 7799 | return 0; |
| 7800 | } |
| 7801 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7802 | if (!conn->xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7803 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7804 | ctx = conn->xprt_ctx; |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7805 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7806 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7807 | smp->data.u.sint = (long long int)SSL_get_verify_result(ctx->ssl); |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7808 | smp->flags = 0; |
| 7809 | |
| 7810 | return 1; |
| 7811 | } |
| 7812 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 7813 | /* parse the "ca-file" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7814 | static int ssl_bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7815 | { |
| 7816 | if (!*args[cur_arg + 1]) { |
| 7817 | if (err) |
| 7818 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 7819 | return ERR_ALERT | ERR_FATAL; |
| 7820 | } |
| 7821 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7822 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7823 | memprintf(&conf->ca_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7824 | else |
| 7825 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7826 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7827 | return 0; |
| 7828 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7829 | static int bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7830 | { |
| 7831 | return ssl_bind_parse_ca_file(args, cur_arg, px, &conf->ssl_conf, err); |
| 7832 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7833 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7834 | /* parse the "ca-sign-file" bind keyword */ |
| 7835 | static int bind_parse_ca_sign_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7836 | { |
| 7837 | if (!*args[cur_arg + 1]) { |
| 7838 | if (err) |
| 7839 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 7840 | return ERR_ALERT | ERR_FATAL; |
| 7841 | } |
| 7842 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7843 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7844 | memprintf(&conf->ca_sign_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7845 | else |
| 7846 | memprintf(&conf->ca_sign_file, "%s", args[cur_arg + 1]); |
| 7847 | |
| 7848 | return 0; |
| 7849 | } |
| 7850 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7851 | /* parse the "ca-sign-pass" bind keyword */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7852 | static int bind_parse_ca_sign_pass(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7853 | { |
| 7854 | if (!*args[cur_arg + 1]) { |
| 7855 | if (err) |
| 7856 | memprintf(err, "'%s' : missing CAkey password", args[cur_arg]); |
| 7857 | return ERR_ALERT | ERR_FATAL; |
| 7858 | } |
| 7859 | memprintf(&conf->ca_sign_pass, "%s", args[cur_arg + 1]); |
| 7860 | return 0; |
| 7861 | } |
| 7862 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7863 | /* parse the "ciphers" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7864 | static int ssl_bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7865 | { |
| 7866 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 7867 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7868 | return ERR_ALERT | ERR_FATAL; |
| 7869 | } |
| 7870 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 7871 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7872 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7873 | return 0; |
| 7874 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7875 | static int bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7876 | { |
| 7877 | return ssl_bind_parse_ciphers(args, cur_arg, px, &conf->ssl_conf, err); |
| 7878 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7879 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 7880 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7881 | /* parse the "ciphersuites" bind keyword */ |
| 7882 | static int ssl_bind_parse_ciphersuites(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7883 | { |
| 7884 | if (!*args[cur_arg + 1]) { |
| 7885 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
| 7886 | return ERR_ALERT | ERR_FATAL; |
| 7887 | } |
| 7888 | |
| 7889 | free(conf->ciphersuites); |
| 7890 | conf->ciphersuites = strdup(args[cur_arg + 1]); |
| 7891 | return 0; |
| 7892 | } |
| 7893 | static int bind_parse_ciphersuites(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7894 | { |
| 7895 | return ssl_bind_parse_ciphersuites(args, cur_arg, px, &conf->ssl_conf, err); |
| 7896 | } |
| 7897 | #endif |
| 7898 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7899 | /* parse the "crt" bind keyword. Returns a set of ERR_* flags possibly with an error in <err>. */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7900 | 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] | 7901 | { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 7902 | char path[MAXPATHLEN]; |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 7903 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7904 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 7905 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7906 | return ERR_ALERT | ERR_FATAL; |
| 7907 | } |
| 7908 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7909 | if ((*args[cur_arg + 1] != '/' ) && global_ssl.crt_base) { |
| 7910 | if ((strlen(global_ssl.crt_base) + 1 + strlen(args[cur_arg + 1]) + 1) > MAXPATHLEN) { |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7911 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 7912 | return ERR_ALERT | ERR_FATAL; |
| 7913 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7914 | snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, args[cur_arg + 1]); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7915 | return ssl_sock_load_cert(path, conf, err); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7916 | } |
| 7917 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7918 | return ssl_sock_load_cert(args[cur_arg + 1], conf, err); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7919 | } |
| 7920 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7921 | /* parse the "crt-list" bind keyword. Returns a set of ERR_* flags possibly with an error in <err>. */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7922 | static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7923 | { |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7924 | int err_code; |
| 7925 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7926 | if (!*args[cur_arg + 1]) { |
| 7927 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
| 7928 | return ERR_ALERT | ERR_FATAL; |
| 7929 | } |
| 7930 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7931 | err_code = ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err); |
| 7932 | if (err_code) |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 7933 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7934 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7935 | return err_code; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7936 | } |
| 7937 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 7938 | /* parse the "crl-file" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7939 | static int ssl_bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7940 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 7941 | #ifndef X509_V_FLAG_CRL_CHECK |
| 7942 | if (err) |
| 7943 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 7944 | return ERR_ALERT | ERR_FATAL; |
| 7945 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7946 | if (!*args[cur_arg + 1]) { |
| 7947 | if (err) |
| 7948 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 7949 | return ERR_ALERT | ERR_FATAL; |
| 7950 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7951 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7952 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7953 | memprintf(&conf->crl_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 7954 | else |
| 7955 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7956 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7957 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 7958 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7959 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7960 | static int bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7961 | { |
| 7962 | return ssl_bind_parse_crl_file(args, cur_arg, px, &conf->ssl_conf, err); |
| 7963 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7964 | |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 7965 | /* parse the "curves" bind keyword keyword */ |
| 7966 | static int ssl_bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7967 | { |
Lukas Tribus | d13e925 | 2019-11-24 18:20:40 +0100 | [diff] [blame] | 7968 | #if ((HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) || defined(LIBRESSL_VERSION_NUMBER)) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 7969 | if (!*args[cur_arg + 1]) { |
| 7970 | if (err) |
| 7971 | memprintf(err, "'%s' : missing curve suite", args[cur_arg]); |
| 7972 | return ERR_ALERT | ERR_FATAL; |
| 7973 | } |
| 7974 | conf->curves = strdup(args[cur_arg + 1]); |
| 7975 | return 0; |
| 7976 | #else |
| 7977 | if (err) |
| 7978 | memprintf(err, "'%s' : library does not support curve suite", args[cur_arg]); |
| 7979 | return ERR_ALERT | ERR_FATAL; |
| 7980 | #endif |
| 7981 | } |
| 7982 | static int bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7983 | { |
| 7984 | return ssl_bind_parse_curves(args, cur_arg, px, &conf->ssl_conf, err); |
| 7985 | } |
| 7986 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7987 | /* parse the "ecdhe" bind keyword keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7988 | static int ssl_bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7989 | { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7990 | #if HA_OPENSSL_VERSION_NUMBER < 0x0090800fL |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7991 | if (err) |
| 7992 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 7993 | return ERR_ALERT | ERR_FATAL; |
| 7994 | #elif defined(OPENSSL_NO_ECDH) |
| 7995 | if (err) |
| 7996 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 7997 | return ERR_ALERT | ERR_FATAL; |
| 7998 | #else |
| 7999 | if (!*args[cur_arg + 1]) { |
| 8000 | if (err) |
| 8001 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 8002 | return ERR_ALERT | ERR_FATAL; |
| 8003 | } |
| 8004 | |
| 8005 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8006 | |
| 8007 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 8008 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8009 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8010 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8011 | { |
| 8012 | return ssl_bind_parse_ecdhe(args, cur_arg, px, &conf->ssl_conf, err); |
| 8013 | } |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8014 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 8015 | /* parse the "crt-ignore-err" and "ca-ignore-err" bind keywords */ |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 8016 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8017 | { |
| 8018 | int code; |
| 8019 | char *p = args[cur_arg + 1]; |
| 8020 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 8021 | |
| 8022 | if (!*p) { |
| 8023 | if (err) |
| 8024 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 8025 | return ERR_ALERT | ERR_FATAL; |
| 8026 | } |
| 8027 | |
| 8028 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 8029 | ignerr = &conf->ca_ignerr; |
| 8030 | |
| 8031 | if (strcmp(p, "all") == 0) { |
| 8032 | *ignerr = ~0ULL; |
| 8033 | return 0; |
| 8034 | } |
| 8035 | |
| 8036 | while (p) { |
| 8037 | code = atoi(p); |
| 8038 | if ((code <= 0) || (code > 63)) { |
| 8039 | if (err) |
| 8040 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 8041 | args[cur_arg], code, args[cur_arg + 1]); |
| 8042 | return ERR_ALERT | ERR_FATAL; |
| 8043 | } |
| 8044 | *ignerr |= 1ULL << code; |
| 8045 | p = strchr(p, ','); |
| 8046 | if (p) |
| 8047 | p++; |
| 8048 | } |
| 8049 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8050 | return 0; |
| 8051 | } |
| 8052 | |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8053 | /* parse tls_method_options "no-xxx" and "force-xxx" */ |
| 8054 | static int parse_tls_method_options(char *arg, struct tls_version_filter *methods, char **err) |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8055 | { |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8056 | uint16_t v; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8057 | char *p; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8058 | p = strchr(arg, '-'); |
| 8059 | if (!p) |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8060 | goto fail; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8061 | p++; |
| 8062 | if (!strcmp(p, "sslv3")) |
| 8063 | v = CONF_SSLV3; |
| 8064 | else if (!strcmp(p, "tlsv10")) |
| 8065 | v = CONF_TLSV10; |
| 8066 | else if (!strcmp(p, "tlsv11")) |
| 8067 | v = CONF_TLSV11; |
| 8068 | else if (!strcmp(p, "tlsv12")) |
| 8069 | v = CONF_TLSV12; |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 8070 | else if (!strcmp(p, "tlsv13")) |
| 8071 | v = CONF_TLSV13; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8072 | else |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8073 | goto fail; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8074 | if (!strncmp(arg, "no-", 3)) |
| 8075 | methods->flags |= methodVersions[v].flag; |
| 8076 | else if (!strncmp(arg, "force-", 6)) |
| 8077 | methods->min = methods->max = v; |
| 8078 | else |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8079 | goto fail; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8080 | return 0; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8081 | fail: |
| 8082 | if (err) |
| 8083 | memprintf(err, "'%s' : option not implemented", arg); |
| 8084 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8085 | } |
| 8086 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8087 | static int bind_parse_tls_method_options(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8088 | { |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 8089 | return parse_tls_method_options(args[cur_arg], &conf->ssl_conf.ssl_methods, err); |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8090 | } |
| 8091 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8092 | static int srv_parse_tls_method_options(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8093 | { |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8094 | return parse_tls_method_options(args[*cur_arg], &newsrv->ssl_ctx.methods, err); |
| 8095 | } |
| 8096 | |
| 8097 | /* parse tls_method min/max: "ssl-min-ver" and "ssl-max-ver" */ |
| 8098 | static int parse_tls_method_minmax(char **args, int cur_arg, struct tls_version_filter *methods, char **err) |
| 8099 | { |
| 8100 | uint16_t i, v = 0; |
| 8101 | char *argv = args[cur_arg + 1]; |
| 8102 | if (!*argv) { |
| 8103 | if (err) |
| 8104 | memprintf(err, "'%s' : missing the ssl/tls version", args[cur_arg]); |
| 8105 | return ERR_ALERT | ERR_FATAL; |
| 8106 | } |
| 8107 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 8108 | if (!strcmp(argv, methodVersions[i].name)) |
| 8109 | v = i; |
| 8110 | if (!v) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8111 | if (err) |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8112 | memprintf(err, "'%s' : unknown ssl/tls version", args[cur_arg + 1]); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8113 | return ERR_ALERT | ERR_FATAL; |
| 8114 | } |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8115 | if (!strcmp("ssl-min-ver", args[cur_arg])) |
| 8116 | methods->min = v; |
| 8117 | else if (!strcmp("ssl-max-ver", args[cur_arg])) |
| 8118 | methods->max = v; |
| 8119 | else { |
| 8120 | if (err) |
| 8121 | memprintf(err, "'%s' : option not implemented", args[cur_arg]); |
| 8122 | return ERR_ALERT | ERR_FATAL; |
| 8123 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8124 | return 0; |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8125 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8126 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 8127 | static int ssl_bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 8128 | { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 8129 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) && !defined(OPENSSL_IS_BORINGSSL) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 8130 | ha_warning("crt-list: ssl-min-ver and ssl-max-ver are not supported with this Openssl version (skipped).\n"); |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 8131 | #endif |
| 8132 | return parse_tls_method_minmax(args, cur_arg, &conf->ssl_methods, err); |
| 8133 | } |
| 8134 | |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8135 | static int bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8136 | { |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 8137 | return parse_tls_method_minmax(args, cur_arg, &conf->ssl_conf.ssl_methods, err); |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8138 | } |
| 8139 | |
| 8140 | static int srv_parse_tls_method_minmax(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8141 | { |
| 8142 | return parse_tls_method_minmax(args, *cur_arg, &newsrv->ssl_ctx.methods, err); |
| 8143 | } |
| 8144 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8145 | /* parse the "no-tls-tickets" bind keyword */ |
Emmanuel Hocdet | 4608ed9 | 2017-01-20 13:06:27 +0100 | [diff] [blame] | 8146 | static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8147 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 8148 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 8149 | return 0; |
| 8150 | } |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8151 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 8152 | /* parse the "allow-0rtt" bind keyword */ |
| 8153 | static int ssl_bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 8154 | { |
| 8155 | conf->early_data = 1; |
| 8156 | return 0; |
| 8157 | } |
| 8158 | |
| 8159 | static int bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8160 | { |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 8161 | conf->ssl_conf.early_data = 1; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 8162 | return 0; |
| 8163 | } |
| 8164 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8165 | /* parse the "npn" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8166 | static int ssl_bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8167 | { |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 8168 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8169 | char *p1, *p2; |
| 8170 | |
| 8171 | if (!*args[cur_arg + 1]) { |
| 8172 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]); |
| 8173 | return ERR_ALERT | ERR_FATAL; |
| 8174 | } |
| 8175 | |
| 8176 | free(conf->npn_str); |
| 8177 | |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 8178 | /* the NPN string is built as a suite of (<len> <name>)*, |
| 8179 | * so we reuse each comma to store the next <len> and need |
| 8180 | * one more for the end of the string. |
| 8181 | */ |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8182 | conf->npn_len = strlen(args[cur_arg + 1]) + 1; |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 8183 | conf->npn_str = calloc(1, conf->npn_len + 1); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8184 | memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len); |
| 8185 | |
| 8186 | /* replace commas with the name length */ |
| 8187 | p1 = conf->npn_str; |
| 8188 | p2 = p1 + 1; |
| 8189 | while (1) { |
| 8190 | p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1)); |
| 8191 | if (!p2) |
| 8192 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8193 | |
| 8194 | if (p2 - (p1 + 1) > 255) { |
| 8195 | *p2 = '\0'; |
| 8196 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 8197 | return ERR_ALERT | ERR_FATAL; |
| 8198 | } |
| 8199 | |
| 8200 | *p1 = p2 - (p1 + 1); |
| 8201 | p1 = p2; |
| 8202 | |
| 8203 | if (!*p2) |
| 8204 | break; |
| 8205 | |
| 8206 | *(p2++) = '\0'; |
| 8207 | } |
| 8208 | return 0; |
| 8209 | #else |
| 8210 | if (err) |
| 8211 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]); |
| 8212 | return ERR_ALERT | ERR_FATAL; |
| 8213 | #endif |
| 8214 | } |
| 8215 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8216 | static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8217 | { |
| 8218 | return ssl_bind_parse_npn(args, cur_arg, px, &conf->ssl_conf, err); |
| 8219 | } |
| 8220 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8221 | /* parse the "alpn" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8222 | static int ssl_bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8223 | { |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 8224 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8225 | char *p1, *p2; |
| 8226 | |
| 8227 | if (!*args[cur_arg + 1]) { |
| 8228 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[cur_arg]); |
| 8229 | return ERR_ALERT | ERR_FATAL; |
| 8230 | } |
| 8231 | |
| 8232 | free(conf->alpn_str); |
| 8233 | |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 8234 | /* the ALPN string is built as a suite of (<len> <name>)*, |
| 8235 | * so we reuse each comma to store the next <len> and need |
| 8236 | * one more for the end of the string. |
| 8237 | */ |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8238 | conf->alpn_len = strlen(args[cur_arg + 1]) + 1; |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 8239 | conf->alpn_str = calloc(1, conf->alpn_len + 1); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8240 | memcpy(conf->alpn_str + 1, args[cur_arg + 1], conf->alpn_len); |
| 8241 | |
| 8242 | /* replace commas with the name length */ |
| 8243 | p1 = conf->alpn_str; |
| 8244 | p2 = p1 + 1; |
| 8245 | while (1) { |
| 8246 | p2 = memchr(p1 + 1, ',', conf->alpn_str + conf->alpn_len - (p1 + 1)); |
| 8247 | if (!p2) |
| 8248 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8249 | |
| 8250 | if (p2 - (p1 + 1) > 255) { |
| 8251 | *p2 = '\0'; |
| 8252 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 8253 | return ERR_ALERT | ERR_FATAL; |
| 8254 | } |
| 8255 | |
| 8256 | *p1 = p2 - (p1 + 1); |
| 8257 | p1 = p2; |
| 8258 | |
| 8259 | if (!*p2) |
| 8260 | break; |
| 8261 | |
| 8262 | *(p2++) = '\0'; |
| 8263 | } |
| 8264 | return 0; |
| 8265 | #else |
| 8266 | if (err) |
| 8267 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[cur_arg]); |
| 8268 | return ERR_ALERT | ERR_FATAL; |
| 8269 | #endif |
| 8270 | } |
| 8271 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8272 | static int bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8273 | { |
| 8274 | return ssl_bind_parse_alpn(args, cur_arg, px, &conf->ssl_conf, err); |
| 8275 | } |
| 8276 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8277 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8278 | 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] | 8279 | { |
Willy Tarreau | 71a8c7c | 2016-12-21 22:04:54 +0100 | [diff] [blame] | 8280 | conf->xprt = &ssl_sock; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8281 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 8282 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8283 | if (global_ssl.listen_default_ciphers && !conf->ssl_conf.ciphers) |
| 8284 | conf->ssl_conf.ciphers = strdup(global_ssl.listen_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8285 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8286 | if (global_ssl.listen_default_ciphersuites && !conf->ssl_conf.ciphersuites) |
| 8287 | conf->ssl_conf.ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 8288 | #endif |
Emmanuel Hocdet | 4608ed9 | 2017-01-20 13:06:27 +0100 | [diff] [blame] | 8289 | conf->ssl_options |= global_ssl.listen_default_ssloptions; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 8290 | conf->ssl_conf.ssl_methods.flags |= global_ssl.listen_default_sslmethods.flags; |
| 8291 | if (!conf->ssl_conf.ssl_methods.min) |
| 8292 | conf->ssl_conf.ssl_methods.min = global_ssl.listen_default_sslmethods.min; |
| 8293 | if (!conf->ssl_conf.ssl_methods.max) |
| 8294 | conf->ssl_conf.ssl_methods.max = global_ssl.listen_default_sslmethods.max; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 8295 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8296 | return 0; |
| 8297 | } |
| 8298 | |
Lukas Tribus | 53ae85c | 2017-05-04 15:45:40 +0000 | [diff] [blame] | 8299 | /* parse the "prefer-client-ciphers" bind keyword */ |
| 8300 | static int bind_parse_pcc(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8301 | { |
| 8302 | conf->ssl_options |= BC_SSL_O_PREF_CLIE_CIPH; |
| 8303 | return 0; |
| 8304 | } |
| 8305 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8306 | /* parse the "generate-certificates" bind keyword */ |
| 8307 | static int bind_parse_generate_certs(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8308 | { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 8309 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8310 | conf->generate_certs = 1; |
| 8311 | #else |
| 8312 | memprintf(err, "%sthis version of openssl cannot generate SSL certificates.\n", |
| 8313 | err && *err ? *err : ""); |
| 8314 | #endif |
| 8315 | return 0; |
| 8316 | } |
| 8317 | |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 8318 | /* parse the "strict-sni" bind keyword */ |
| 8319 | static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8320 | { |
| 8321 | conf->strict_sni = 1; |
| 8322 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8323 | } |
| 8324 | |
| 8325 | /* parse the "tls-ticket-keys" bind keyword */ |
| 8326 | static int bind_parse_tls_ticket_keys(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8327 | { |
| 8328 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8329 | FILE *f = NULL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8330 | int i = 0; |
| 8331 | char thisline[LINESIZE]; |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8332 | struct tls_keys_ref *keys_ref = NULL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8333 | |
| 8334 | if (!*args[cur_arg + 1]) { |
| 8335 | if (err) |
| 8336 | memprintf(err, "'%s' : missing TLS ticket keys file path", args[cur_arg]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8337 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8338 | } |
| 8339 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8340 | keys_ref = tlskeys_ref_lookup(args[cur_arg + 1]); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 8341 | if (keys_ref) { |
| 8342 | keys_ref->refcount++; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8343 | conf->keys_ref = keys_ref; |
| 8344 | return 0; |
| 8345 | } |
| 8346 | |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8347 | keys_ref = calloc(1, sizeof(*keys_ref)); |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8348 | if (!keys_ref) { |
| 8349 | if (err) |
| 8350 | memprintf(err, "'%s' : allocation error", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8351 | goto fail; |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8352 | } |
| 8353 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8354 | keys_ref->tlskeys = malloc(TLS_TICKETS_NO * sizeof(union tls_sess_key)); |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8355 | if (!keys_ref->tlskeys) { |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8356 | if (err) |
| 8357 | memprintf(err, "'%s' : allocation error", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8358 | goto fail; |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8359 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8360 | |
| 8361 | if ((f = fopen(args[cur_arg + 1], "r")) == NULL) { |
| 8362 | if (err) |
| 8363 | memprintf(err, "'%s' : unable to load ssl tickets keys file", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8364 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8365 | } |
| 8366 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8367 | keys_ref->filename = strdup(args[cur_arg + 1]); |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8368 | if (!keys_ref->filename) { |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8369 | if (err) |
| 8370 | memprintf(err, "'%s' : allocation error", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8371 | goto fail; |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8372 | } |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8373 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8374 | keys_ref->key_size_bits = 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8375 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 8376 | int len = strlen(thisline); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8377 | int dec_size; |
| 8378 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8379 | /* Strip newline characters from the end */ |
| 8380 | if(thisline[len - 1] == '\n') |
| 8381 | thisline[--len] = 0; |
| 8382 | |
| 8383 | if(thisline[len - 1] == '\r') |
| 8384 | thisline[--len] = 0; |
| 8385 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8386 | dec_size = base64dec(thisline, len, (char *) (keys_ref->tlskeys + i % TLS_TICKETS_NO), sizeof(union tls_sess_key)); |
| 8387 | if (dec_size < 0) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8388 | if (err) |
| 8389 | memprintf(err, "'%s' : unable to decode base64 key on line %d", args[cur_arg+1], i + 1); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8390 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8391 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8392 | else if (!keys_ref->key_size_bits && (dec_size == sizeof(struct tls_sess_key_128))) { |
| 8393 | keys_ref->key_size_bits = 128; |
| 8394 | } |
| 8395 | else if (!keys_ref->key_size_bits && (dec_size == sizeof(struct tls_sess_key_256))) { |
| 8396 | keys_ref->key_size_bits = 256; |
| 8397 | } |
| 8398 | else if (((dec_size != sizeof(struct tls_sess_key_128)) && (dec_size != sizeof(struct tls_sess_key_256))) |
| 8399 | || ((dec_size == sizeof(struct tls_sess_key_128) && (keys_ref->key_size_bits != 128))) |
| 8400 | || ((dec_size == sizeof(struct tls_sess_key_256) && (keys_ref->key_size_bits != 256)))) { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8401 | if (err) |
| 8402 | memprintf(err, "'%s' : wrong sized key on line %d", args[cur_arg+1], i + 1); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8403 | goto fail; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8404 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8405 | i++; |
| 8406 | } |
| 8407 | |
| 8408 | if (i < TLS_TICKETS_NO) { |
| 8409 | if (err) |
| 8410 | memprintf(err, "'%s' : please supply at least %d keys in the tls-tickets-file", args[cur_arg+1], TLS_TICKETS_NO); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8411 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8412 | } |
| 8413 | |
| 8414 | fclose(f); |
| 8415 | |
| 8416 | /* Use penultimate key for encryption, handle when TLS_TICKETS_NO = 1 */ |
Nenad Merdanovic | 1789115 | 2016-03-25 22:16:57 +0100 | [diff] [blame] | 8417 | i -= 2; |
| 8418 | keys_ref->tls_ticket_enc_index = i < 0 ? 0 : i % TLS_TICKETS_NO; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8419 | keys_ref->unique_id = -1; |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 8420 | keys_ref->refcount = 1; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 8421 | HA_RWLOCK_INIT(&keys_ref->lock); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8422 | conf->keys_ref = keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8423 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8424 | LIST_ADD(&tlskeys_reference, &keys_ref->list); |
| 8425 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8426 | return 0; |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8427 | |
| 8428 | fail: |
| 8429 | if (f) |
| 8430 | fclose(f); |
| 8431 | if (keys_ref) { |
| 8432 | free(keys_ref->filename); |
| 8433 | free(keys_ref->tlskeys); |
| 8434 | free(keys_ref); |
| 8435 | } |
| 8436 | return ERR_ALERT | ERR_FATAL; |
| 8437 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8438 | #else |
| 8439 | if (err) |
| 8440 | memprintf(err, "'%s' : TLS ticket callback extension not supported", args[cur_arg]); |
| 8441 | return ERR_ALERT | ERR_FATAL; |
| 8442 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 8443 | } |
| 8444 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8445 | /* parse the "verify" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8446 | static int ssl_bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8447 | { |
| 8448 | if (!*args[cur_arg + 1]) { |
| 8449 | if (err) |
| 8450 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 8451 | return ERR_ALERT | ERR_FATAL; |
| 8452 | } |
| 8453 | |
| 8454 | if (strcmp(args[cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8455 | conf->verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8456 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8457 | conf->verify = SSL_SOCK_VERIFY_OPTIONAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8458 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8459 | conf->verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8460 | else { |
| 8461 | if (err) |
| 8462 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 8463 | args[cur_arg], args[cur_arg + 1]); |
| 8464 | return ERR_ALERT | ERR_FATAL; |
| 8465 | } |
| 8466 | |
| 8467 | return 0; |
| 8468 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8469 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8470 | { |
| 8471 | return ssl_bind_parse_verify(args, cur_arg, px, &conf->ssl_conf, err); |
| 8472 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8473 | |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 8474 | /* parse the "no-ca-names" bind keyword */ |
| 8475 | static int ssl_bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 8476 | { |
| 8477 | conf->no_ca_names = 1; |
| 8478 | return 0; |
| 8479 | } |
| 8480 | static int bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8481 | { |
| 8482 | return ssl_bind_parse_no_ca_names(args, cur_arg, px, &conf->ssl_conf, err); |
| 8483 | } |
| 8484 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8485 | /************** "server" keywords ****************/ |
| 8486 | |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8487 | /* parse the "npn" bind keyword */ |
| 8488 | static int srv_parse_npn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8489 | { |
| 8490 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 8491 | char *p1, *p2; |
| 8492 | |
| 8493 | if (!*args[*cur_arg + 1]) { |
| 8494 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[*cur_arg]); |
| 8495 | return ERR_ALERT | ERR_FATAL; |
| 8496 | } |
| 8497 | |
| 8498 | free(newsrv->ssl_ctx.npn_str); |
| 8499 | |
| 8500 | /* the NPN string is built as a suite of (<len> <name>)*, |
| 8501 | * so we reuse each comma to store the next <len> and need |
| 8502 | * one more for the end of the string. |
| 8503 | */ |
| 8504 | newsrv->ssl_ctx.npn_len = strlen(args[*cur_arg + 1]) + 1; |
| 8505 | newsrv->ssl_ctx.npn_str = calloc(1, newsrv->ssl_ctx.npn_len + 1); |
| 8506 | memcpy(newsrv->ssl_ctx.npn_str + 1, args[*cur_arg + 1], |
| 8507 | newsrv->ssl_ctx.npn_len); |
| 8508 | |
| 8509 | /* replace commas with the name length */ |
| 8510 | p1 = newsrv->ssl_ctx.npn_str; |
| 8511 | p2 = p1 + 1; |
| 8512 | while (1) { |
| 8513 | p2 = memchr(p1 + 1, ',', newsrv->ssl_ctx.npn_str + |
| 8514 | newsrv->ssl_ctx.npn_len - (p1 + 1)); |
| 8515 | if (!p2) |
| 8516 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8517 | |
| 8518 | if (p2 - (p1 + 1) > 255) { |
| 8519 | *p2 = '\0'; |
| 8520 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[*cur_arg], p1 + 1); |
| 8521 | return ERR_ALERT | ERR_FATAL; |
| 8522 | } |
| 8523 | |
| 8524 | *p1 = p2 - (p1 + 1); |
| 8525 | p1 = p2; |
| 8526 | |
| 8527 | if (!*p2) |
| 8528 | break; |
| 8529 | |
| 8530 | *(p2++) = '\0'; |
| 8531 | } |
| 8532 | return 0; |
| 8533 | #else |
| 8534 | if (err) |
| 8535 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[*cur_arg]); |
| 8536 | return ERR_ALERT | ERR_FATAL; |
| 8537 | #endif |
| 8538 | } |
| 8539 | |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8540 | /* parse the "alpn" or the "check-alpn" server keyword */ |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8541 | static int srv_parse_alpn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8542 | { |
| 8543 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 8544 | char *p1, *p2; |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8545 | char **alpn_str; |
| 8546 | int *alpn_len; |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8547 | |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8548 | if (*args[*cur_arg] == 'c') { |
| 8549 | alpn_str = &newsrv->check.alpn_str; |
| 8550 | alpn_len = &newsrv->check.alpn_len; |
| 8551 | } else { |
| 8552 | alpn_str = &newsrv->ssl_ctx.alpn_str; |
| 8553 | alpn_len = &newsrv->ssl_ctx.alpn_len; |
| 8554 | |
| 8555 | } |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8556 | if (!*args[*cur_arg + 1]) { |
| 8557 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[*cur_arg]); |
| 8558 | return ERR_ALERT | ERR_FATAL; |
| 8559 | } |
| 8560 | |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8561 | free(*alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8562 | |
| 8563 | /* the ALPN string is built as a suite of (<len> <name>)*, |
| 8564 | * so we reuse each comma to store the next <len> and need |
| 8565 | * one more for the end of the string. |
| 8566 | */ |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8567 | *alpn_len = strlen(args[*cur_arg + 1]) + 1; |
| 8568 | *alpn_str = calloc(1, *alpn_len + 1); |
| 8569 | memcpy(*alpn_str + 1, args[*cur_arg + 1], *alpn_len); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8570 | |
| 8571 | /* replace commas with the name length */ |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8572 | p1 = *alpn_str; |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8573 | p2 = p1 + 1; |
| 8574 | while (1) { |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8575 | p2 = memchr(p1 + 1, ',', *alpn_str + *alpn_len - (p1 + 1)); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8576 | if (!p2) |
| 8577 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8578 | |
| 8579 | if (p2 - (p1 + 1) > 255) { |
| 8580 | *p2 = '\0'; |
| 8581 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[*cur_arg], p1 + 1); |
| 8582 | return ERR_ALERT | ERR_FATAL; |
| 8583 | } |
| 8584 | |
| 8585 | *p1 = p2 - (p1 + 1); |
| 8586 | p1 = p2; |
| 8587 | |
| 8588 | if (!*p2) |
| 8589 | break; |
| 8590 | |
| 8591 | *(p2++) = '\0'; |
| 8592 | } |
| 8593 | return 0; |
| 8594 | #else |
| 8595 | if (err) |
| 8596 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[*cur_arg]); |
| 8597 | return ERR_ALERT | ERR_FATAL; |
| 8598 | #endif |
| 8599 | } |
| 8600 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8601 | /* parse the "ca-file" server keyword */ |
| 8602 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8603 | { |
| 8604 | if (!*args[*cur_arg + 1]) { |
| 8605 | if (err) |
| 8606 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 8607 | return ERR_ALERT | ERR_FATAL; |
| 8608 | } |
| 8609 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8610 | if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base) |
| 8611 | memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global_ssl.ca_base, args[*cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8612 | else |
| 8613 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 8614 | |
| 8615 | return 0; |
| 8616 | } |
| 8617 | |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 8618 | /* parse the "check-sni" server keyword */ |
| 8619 | static int srv_parse_check_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8620 | { |
| 8621 | if (!*args[*cur_arg + 1]) { |
| 8622 | if (err) |
| 8623 | memprintf(err, "'%s' : missing SNI", args[*cur_arg]); |
| 8624 | return ERR_ALERT | ERR_FATAL; |
| 8625 | } |
| 8626 | |
| 8627 | newsrv->check.sni = strdup(args[*cur_arg + 1]); |
| 8628 | if (!newsrv->check.sni) { |
| 8629 | memprintf(err, "'%s' : failed to allocate memory", args[*cur_arg]); |
| 8630 | return ERR_ALERT | ERR_FATAL; |
| 8631 | } |
| 8632 | return 0; |
| 8633 | |
| 8634 | } |
| 8635 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8636 | /* parse the "check-ssl" server keyword */ |
| 8637 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8638 | { |
| 8639 | newsrv->check.use_ssl = 1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8640 | if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 8641 | newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8642 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8643 | if (global_ssl.connect_default_ciphersuites && !newsrv->ssl_ctx.ciphersuites) |
| 8644 | newsrv->ssl_ctx.ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 8645 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8646 | newsrv->ssl_ctx.options |= global_ssl.connect_default_ssloptions; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8647 | newsrv->ssl_ctx.methods.flags |= global_ssl.connect_default_sslmethods.flags; |
| 8648 | if (!newsrv->ssl_ctx.methods.min) |
| 8649 | newsrv->ssl_ctx.methods.min = global_ssl.connect_default_sslmethods.min; |
| 8650 | if (!newsrv->ssl_ctx.methods.max) |
| 8651 | newsrv->ssl_ctx.methods.max = global_ssl.connect_default_sslmethods.max; |
| 8652 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8653 | return 0; |
| 8654 | } |
| 8655 | |
| 8656 | /* parse the "ciphers" server keyword */ |
| 8657 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8658 | { |
| 8659 | if (!*args[*cur_arg + 1]) { |
| 8660 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 8661 | return ERR_ALERT | ERR_FATAL; |
| 8662 | } |
| 8663 | |
| 8664 | free(newsrv->ssl_ctx.ciphers); |
| 8665 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 8666 | return 0; |
| 8667 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8668 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8669 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8670 | /* parse the "ciphersuites" server keyword */ |
| 8671 | static int srv_parse_ciphersuites(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8672 | { |
| 8673 | if (!*args[*cur_arg + 1]) { |
| 8674 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 8675 | return ERR_ALERT | ERR_FATAL; |
| 8676 | } |
| 8677 | |
| 8678 | free(newsrv->ssl_ctx.ciphersuites); |
| 8679 | newsrv->ssl_ctx.ciphersuites = strdup(args[*cur_arg + 1]); |
| 8680 | return 0; |
| 8681 | } |
| 8682 | #endif |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8683 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8684 | /* parse the "crl-file" server keyword */ |
| 8685 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8686 | { |
| 8687 | #ifndef X509_V_FLAG_CRL_CHECK |
| 8688 | if (err) |
| 8689 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 8690 | return ERR_ALERT | ERR_FATAL; |
| 8691 | #else |
| 8692 | if (!*args[*cur_arg + 1]) { |
| 8693 | if (err) |
| 8694 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 8695 | return ERR_ALERT | ERR_FATAL; |
| 8696 | } |
| 8697 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8698 | if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base) |
| 8699 | memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global_ssl.ca_base, args[*cur_arg + 1]); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8700 | else |
| 8701 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 8702 | |
| 8703 | return 0; |
| 8704 | #endif |
| 8705 | } |
| 8706 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 8707 | /* parse the "crt" server keyword */ |
| 8708 | static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8709 | { |
| 8710 | if (!*args[*cur_arg + 1]) { |
| 8711 | if (err) |
| 8712 | memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]); |
| 8713 | return ERR_ALERT | ERR_FATAL; |
| 8714 | } |
| 8715 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8716 | if ((*args[*cur_arg + 1] != '/') && global_ssl.crt_base) |
Christopher Faulet | ff3a41e | 2017-11-23 09:13:32 +0100 | [diff] [blame] | 8717 | memprintf(&newsrv->ssl_ctx.client_crt, "%s/%s", global_ssl.crt_base, args[*cur_arg + 1]); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 8718 | else |
| 8719 | memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]); |
| 8720 | |
| 8721 | return 0; |
| 8722 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8723 | |
Frédéric Lécaille | 340ae60 | 2017-03-13 10:38:04 +0100 | [diff] [blame] | 8724 | /* parse the "no-check-ssl" server keyword */ |
| 8725 | static int srv_parse_no_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8726 | { |
| 8727 | newsrv->check.use_ssl = 0; |
| 8728 | free(newsrv->ssl_ctx.ciphers); |
| 8729 | newsrv->ssl_ctx.ciphers = NULL; |
| 8730 | newsrv->ssl_ctx.options &= ~global_ssl.connect_default_ssloptions; |
| 8731 | return 0; |
| 8732 | } |
| 8733 | |
Frédéric Lécaille | e892c4c | 2017-03-13 12:08:01 +0100 | [diff] [blame] | 8734 | /* parse the "no-send-proxy-v2-ssl" server keyword */ |
| 8735 | static int srv_parse_no_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8736 | { |
| 8737 | newsrv->pp_opts &= ~SRV_PP_V2; |
| 8738 | newsrv->pp_opts &= ~SRV_PP_V2_SSL; |
| 8739 | return 0; |
| 8740 | } |
| 8741 | |
| 8742 | /* parse the "no-send-proxy-v2-ssl-cn" server keyword */ |
| 8743 | static int srv_parse_no_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8744 | { |
| 8745 | newsrv->pp_opts &= ~SRV_PP_V2; |
| 8746 | newsrv->pp_opts &= ~SRV_PP_V2_SSL; |
| 8747 | newsrv->pp_opts &= ~SRV_PP_V2_SSL_CN; |
| 8748 | return 0; |
| 8749 | } |
| 8750 | |
Frédéric Lécaille | e381d76 | 2017-03-13 11:54:17 +0100 | [diff] [blame] | 8751 | /* parse the "no-ssl" server keyword */ |
| 8752 | static int srv_parse_no_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8753 | { |
| 8754 | newsrv->use_ssl = 0; |
| 8755 | free(newsrv->ssl_ctx.ciphers); |
| 8756 | newsrv->ssl_ctx.ciphers = NULL; |
| 8757 | return 0; |
| 8758 | } |
| 8759 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 8760 | /* parse the "allow-0rtt" server keyword */ |
| 8761 | static int srv_parse_allow_0rtt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8762 | { |
| 8763 | newsrv->ssl_ctx.options |= SRV_SSL_O_EARLY_DATA; |
| 8764 | return 0; |
| 8765 | } |
| 8766 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 8767 | /* parse the "no-ssl-reuse" server keyword */ |
| 8768 | static int srv_parse_no_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8769 | { |
| 8770 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_REUSE; |
| 8771 | return 0; |
| 8772 | } |
| 8773 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 8774 | /* parse the "no-tls-tickets" server keyword */ |
| 8775 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8776 | { |
| 8777 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 8778 | return 0; |
| 8779 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 8780 | /* parse the "send-proxy-v2-ssl" server keyword */ |
| 8781 | static int srv_parse_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8782 | { |
| 8783 | newsrv->pp_opts |= SRV_PP_V2; |
| 8784 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 8785 | return 0; |
| 8786 | } |
| 8787 | |
| 8788 | /* parse the "send-proxy-v2-ssl-cn" server keyword */ |
| 8789 | static int srv_parse_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8790 | { |
| 8791 | newsrv->pp_opts |= SRV_PP_V2; |
| 8792 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 8793 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
| 8794 | return 0; |
| 8795 | } |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 8796 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8797 | /* parse the "sni" server keyword */ |
| 8798 | static int srv_parse_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8799 | { |
| 8800 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 8801 | memprintf(err, "'%s' : the current SSL library doesn't support the SNI TLS extension", args[*cur_arg]); |
| 8802 | return ERR_ALERT | ERR_FATAL; |
| 8803 | #else |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 8804 | char *arg; |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8805 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 8806 | arg = args[*cur_arg + 1]; |
| 8807 | if (!*arg) { |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8808 | memprintf(err, "'%s' : missing sni expression", args[*cur_arg]); |
| 8809 | return ERR_ALERT | ERR_FATAL; |
| 8810 | } |
| 8811 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 8812 | free(newsrv->sni_expr); |
| 8813 | newsrv->sni_expr = strdup(arg); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8814 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8815 | return 0; |
| 8816 | #endif |
| 8817 | } |
| 8818 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8819 | /* parse the "ssl" server keyword */ |
| 8820 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8821 | { |
| 8822 | newsrv->use_ssl = 1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8823 | if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 8824 | newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8825 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8826 | if (global_ssl.connect_default_ciphersuites && !newsrv->ssl_ctx.ciphersuites) |
| 8827 | newsrv->ssl_ctx.ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 8828 | #endif |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8829 | return 0; |
| 8830 | } |
| 8831 | |
Frédéric Lécaille | 2cfcdbe | 2017-03-13 11:32:20 +0100 | [diff] [blame] | 8832 | /* parse the "ssl-reuse" server keyword */ |
| 8833 | static int srv_parse_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8834 | { |
| 8835 | newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_REUSE; |
| 8836 | return 0; |
| 8837 | } |
| 8838 | |
Frédéric Lécaille | 2cfcdbe | 2017-03-13 11:32:20 +0100 | [diff] [blame] | 8839 | /* parse the "tls-tickets" server keyword */ |
| 8840 | static int srv_parse_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8841 | { |
| 8842 | newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_TLS_TICKETS; |
| 8843 | return 0; |
| 8844 | } |
| 8845 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8846 | /* parse the "verify" server keyword */ |
| 8847 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8848 | { |
| 8849 | if (!*args[*cur_arg + 1]) { |
| 8850 | if (err) |
| 8851 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 8852 | return ERR_ALERT | ERR_FATAL; |
| 8853 | } |
| 8854 | |
| 8855 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8856 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8857 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8858 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8859 | else { |
| 8860 | if (err) |
| 8861 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 8862 | args[*cur_arg], args[*cur_arg + 1]); |
| 8863 | return ERR_ALERT | ERR_FATAL; |
| 8864 | } |
| 8865 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 8866 | return 0; |
| 8867 | } |
| 8868 | |
| 8869 | /* parse the "verifyhost" server keyword */ |
| 8870 | static int srv_parse_verifyhost(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8871 | { |
| 8872 | if (!*args[*cur_arg + 1]) { |
| 8873 | if (err) |
| 8874 | memprintf(err, "'%s' : missing hostname to verify against", args[*cur_arg]); |
| 8875 | return ERR_ALERT | ERR_FATAL; |
| 8876 | } |
| 8877 | |
Frédéric Lécaille | 273f321 | 2017-03-13 15:52:01 +0100 | [diff] [blame] | 8878 | free(newsrv->ssl_ctx.verify_host); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 8879 | newsrv->ssl_ctx.verify_host = strdup(args[*cur_arg + 1]); |
| 8880 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8881 | return 0; |
| 8882 | } |
| 8883 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8884 | /* parse the "ssl-default-bind-options" keyword in global section */ |
| 8885 | static int ssl_parse_default_bind_options(char **args, int section_type, struct proxy *curpx, |
| 8886 | struct proxy *defpx, const char *file, int line, |
| 8887 | char **err) { |
| 8888 | int i = 1; |
| 8889 | |
| 8890 | if (*(args[i]) == 0) { |
| 8891 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 8892 | return -1; |
| 8893 | } |
| 8894 | while (*(args[i])) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8895 | if (!strcmp(args[i], "no-tls-tickets")) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8896 | global_ssl.listen_default_ssloptions |= BC_SSL_O_NO_TLS_TICKETS; |
Lukas Tribus | 53ae85c | 2017-05-04 15:45:40 +0000 | [diff] [blame] | 8897 | else if (!strcmp(args[i], "prefer-client-ciphers")) |
| 8898 | global_ssl.listen_default_ssloptions |= BC_SSL_O_PREF_CLIE_CIPH; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8899 | else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) { |
| 8900 | if (!parse_tls_method_minmax(args, i, &global_ssl.listen_default_sslmethods, err)) |
| 8901 | i++; |
| 8902 | else { |
| 8903 | memprintf(err, "%s on global statement '%s'.", *err, args[0]); |
| 8904 | return -1; |
| 8905 | } |
| 8906 | } |
| 8907 | else if (parse_tls_method_options(args[i], &global_ssl.listen_default_sslmethods, err)) { |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8908 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 8909 | return -1; |
| 8910 | } |
| 8911 | i++; |
| 8912 | } |
| 8913 | return 0; |
| 8914 | } |
| 8915 | |
| 8916 | /* parse the "ssl-default-server-options" keyword in global section */ |
| 8917 | static int ssl_parse_default_server_options(char **args, int section_type, struct proxy *curpx, |
| 8918 | struct proxy *defpx, const char *file, int line, |
| 8919 | char **err) { |
| 8920 | int i = 1; |
| 8921 | |
| 8922 | if (*(args[i]) == 0) { |
| 8923 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 8924 | return -1; |
| 8925 | } |
| 8926 | while (*(args[i])) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8927 | if (!strcmp(args[i], "no-tls-tickets")) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8928 | global_ssl.connect_default_ssloptions |= SRV_SSL_O_NO_TLS_TICKETS; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8929 | else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) { |
| 8930 | if (!parse_tls_method_minmax(args, i, &global_ssl.connect_default_sslmethods, err)) |
| 8931 | i++; |
| 8932 | else { |
| 8933 | memprintf(err, "%s on global statement '%s'.", *err, args[0]); |
| 8934 | return -1; |
| 8935 | } |
| 8936 | } |
| 8937 | else if (parse_tls_method_options(args[i], &global_ssl.connect_default_sslmethods, err)) { |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8938 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 8939 | return -1; |
| 8940 | } |
| 8941 | i++; |
| 8942 | } |
| 8943 | return 0; |
| 8944 | } |
| 8945 | |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8946 | /* parse the "ca-base" / "crt-base" keywords in global section. |
| 8947 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8948 | */ |
| 8949 | static int ssl_parse_global_ca_crt_base(char **args, int section_type, struct proxy *curpx, |
| 8950 | struct proxy *defpx, const char *file, int line, |
| 8951 | char **err) |
| 8952 | { |
| 8953 | char **target; |
| 8954 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8955 | target = (args[0][1] == 'a') ? &global_ssl.ca_base : &global_ssl.crt_base; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8956 | |
| 8957 | if (too_many_args(1, args, err, NULL)) |
| 8958 | return -1; |
| 8959 | |
| 8960 | if (*target) { |
| 8961 | memprintf(err, "'%s' already specified.", args[0]); |
| 8962 | return -1; |
| 8963 | } |
| 8964 | |
| 8965 | if (*(args[1]) == 0) { |
| 8966 | memprintf(err, "global statement '%s' expects a directory path as an argument.", args[0]); |
| 8967 | return -1; |
| 8968 | } |
| 8969 | *target = strdup(args[1]); |
| 8970 | return 0; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8971 | } |
| 8972 | |
| 8973 | /* parse the "ssl-mode-async" keyword in global section. |
| 8974 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8975 | */ |
| 8976 | static int ssl_parse_global_ssl_async(char **args, int section_type, struct proxy *curpx, |
| 8977 | struct proxy *defpx, const char *file, int line, |
| 8978 | char **err) |
| 8979 | { |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 8980 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8981 | global_ssl.async = 1; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 8982 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8983 | return 0; |
| 8984 | #else |
| 8985 | memprintf(err, "'%s': openssl library does not support async mode", args[0]); |
| 8986 | return -1; |
| 8987 | #endif |
| 8988 | } |
| 8989 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8990 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8991 | static int ssl_check_async_engine_count(void) { |
| 8992 | int err_code = 0; |
| 8993 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 8994 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 8995 | ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n"); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8996 | err_code = ERR_ABORT; |
| 8997 | } |
| 8998 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8999 | } |
| 9000 | |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9001 | /* parse the "ssl-engine" keyword in global section. |
| 9002 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9003 | */ |
| 9004 | static int ssl_parse_global_ssl_engine(char **args, int section_type, struct proxy *curpx, |
| 9005 | struct proxy *defpx, const char *file, int line, |
| 9006 | char **err) |
| 9007 | { |
| 9008 | char *algo; |
| 9009 | int ret = -1; |
| 9010 | |
| 9011 | if (*(args[1]) == 0) { |
| 9012 | memprintf(err, "global statement '%s' expects a valid engine name as an argument.", args[0]); |
| 9013 | return ret; |
| 9014 | } |
| 9015 | |
| 9016 | if (*(args[2]) == 0) { |
| 9017 | /* if no list of algorithms is given, it defaults to ALL */ |
| 9018 | algo = strdup("ALL"); |
| 9019 | goto add_engine; |
| 9020 | } |
| 9021 | |
| 9022 | /* otherwise the expected format is ssl-engine <engine_name> algo <list of algo> */ |
| 9023 | if (strcmp(args[2], "algo") != 0) { |
| 9024 | memprintf(err, "global statement '%s' expects to have algo keyword.", args[0]); |
| 9025 | return ret; |
| 9026 | } |
| 9027 | |
| 9028 | if (*(args[3]) == 0) { |
| 9029 | memprintf(err, "global statement '%s' expects algorithm names as an argument.", args[0]); |
| 9030 | return ret; |
| 9031 | } |
| 9032 | algo = strdup(args[3]); |
| 9033 | |
| 9034 | add_engine: |
| 9035 | if (ssl_init_single_engine(args[1], algo)==0) { |
| 9036 | openssl_engines_initialized++; |
| 9037 | ret = 0; |
| 9038 | } |
| 9039 | free(algo); |
| 9040 | return ret; |
| 9041 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9042 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9043 | |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9044 | /* parse the "ssl-default-bind-ciphers" / "ssl-default-server-ciphers" keywords |
| 9045 | * in global section. Returns <0 on alert, >0 on warning, 0 on success. |
| 9046 | */ |
| 9047 | static int ssl_parse_global_ciphers(char **args, int section_type, struct proxy *curpx, |
| 9048 | struct proxy *defpx, const char *file, int line, |
| 9049 | char **err) |
| 9050 | { |
| 9051 | char **target; |
| 9052 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9053 | target = (args[0][12] == 'b') ? &global_ssl.listen_default_ciphers : &global_ssl.connect_default_ciphers; |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9054 | |
| 9055 | if (too_many_args(1, args, err, NULL)) |
| 9056 | return -1; |
| 9057 | |
| 9058 | if (*(args[1]) == 0) { |
| 9059 | memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]); |
| 9060 | return -1; |
| 9061 | } |
| 9062 | |
| 9063 | free(*target); |
| 9064 | *target = strdup(args[1]); |
| 9065 | return 0; |
| 9066 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9067 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9068 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9069 | /* parse the "ssl-default-bind-ciphersuites" / "ssl-default-server-ciphersuites" keywords |
| 9070 | * in global section. Returns <0 on alert, >0 on warning, 0 on success. |
| 9071 | */ |
| 9072 | static int ssl_parse_global_ciphersuites(char **args, int section_type, struct proxy *curpx, |
| 9073 | struct proxy *defpx, const char *file, int line, |
| 9074 | char **err) |
| 9075 | { |
| 9076 | char **target; |
| 9077 | |
| 9078 | target = (args[0][12] == 'b') ? &global_ssl.listen_default_ciphersuites : &global_ssl.connect_default_ciphersuites; |
| 9079 | |
| 9080 | if (too_many_args(1, args, err, NULL)) |
| 9081 | return -1; |
| 9082 | |
| 9083 | if (*(args[1]) == 0) { |
| 9084 | memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]); |
| 9085 | return -1; |
| 9086 | } |
| 9087 | |
| 9088 | free(*target); |
| 9089 | *target = strdup(args[1]); |
| 9090 | return 0; |
| 9091 | } |
| 9092 | #endif |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9093 | |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9094 | /* parse various global tune.ssl settings consisting in positive integers. |
| 9095 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9096 | */ |
| 9097 | static int ssl_parse_global_int(char **args, int section_type, struct proxy *curpx, |
| 9098 | struct proxy *defpx, const char *file, int line, |
| 9099 | char **err) |
| 9100 | { |
| 9101 | int *target; |
| 9102 | |
| 9103 | if (strcmp(args[0], "tune.ssl.cachesize") == 0) |
| 9104 | target = &global.tune.sslcachesize; |
| 9105 | else if (strcmp(args[0], "tune.ssl.maxrecord") == 0) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9106 | target = (int *)&global_ssl.max_record; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9107 | else if (strcmp(args[0], "tune.ssl.ssl-ctx-cache-size") == 0) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9108 | target = &global_ssl.ctx_cache; |
Willy Tarreau | 0bea58d | 2016-12-21 23:17:25 +0100 | [diff] [blame] | 9109 | else if (strcmp(args[0], "maxsslconn") == 0) |
| 9110 | target = &global.maxsslconn; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9111 | else if (strcmp(args[0], "tune.ssl.capture-cipherlist-size") == 0) |
| 9112 | target = &global_ssl.capture_cipherlist; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9113 | else { |
| 9114 | memprintf(err, "'%s' keyword not unhandled (please report this bug).", args[0]); |
| 9115 | return -1; |
| 9116 | } |
| 9117 | |
| 9118 | if (too_many_args(1, args, err, NULL)) |
| 9119 | return -1; |
| 9120 | |
| 9121 | if (*(args[1]) == 0) { |
| 9122 | memprintf(err, "'%s' expects an integer argument.", args[0]); |
| 9123 | return -1; |
| 9124 | } |
| 9125 | |
| 9126 | *target = atoi(args[1]); |
| 9127 | if (*target < 0) { |
| 9128 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 9129 | return -1; |
| 9130 | } |
| 9131 | return 0; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9132 | } |
| 9133 | |
| 9134 | static int ssl_parse_global_capture_cipherlist(char **args, int section_type, struct proxy *curpx, |
| 9135 | struct proxy *defpx, const char *file, int line, |
| 9136 | char **err) |
| 9137 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9138 | int ret; |
| 9139 | |
| 9140 | ret = ssl_parse_global_int(args, section_type, curpx, defpx, file, line, err); |
| 9141 | if (ret != 0) |
| 9142 | return ret; |
| 9143 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9144 | if (pool_head_ssl_capture) { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9145 | memprintf(err, "'%s' is already configured.", args[0]); |
| 9146 | return -1; |
| 9147 | } |
| 9148 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9149 | pool_head_ssl_capture = create_pool("ssl-capture", sizeof(struct ssl_capture) + global_ssl.capture_cipherlist, MEM_F_SHARED); |
| 9150 | if (!pool_head_ssl_capture) { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9151 | memprintf(err, "Out of memory error."); |
| 9152 | return -1; |
| 9153 | } |
| 9154 | return 0; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9155 | } |
| 9156 | |
| 9157 | /* parse "ssl.force-private-cache". |
| 9158 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9159 | */ |
| 9160 | static int ssl_parse_global_private_cache(char **args, int section_type, struct proxy *curpx, |
| 9161 | struct proxy *defpx, const char *file, int line, |
| 9162 | char **err) |
| 9163 | { |
| 9164 | if (too_many_args(0, args, err, NULL)) |
| 9165 | return -1; |
| 9166 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9167 | global_ssl.private_cache = 1; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9168 | return 0; |
| 9169 | } |
| 9170 | |
| 9171 | /* parse "ssl.lifetime". |
| 9172 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9173 | */ |
| 9174 | static int ssl_parse_global_lifetime(char **args, int section_type, struct proxy *curpx, |
| 9175 | struct proxy *defpx, const char *file, int line, |
| 9176 | char **err) |
| 9177 | { |
| 9178 | const char *res; |
| 9179 | |
| 9180 | if (too_many_args(1, args, err, NULL)) |
| 9181 | return -1; |
| 9182 | |
| 9183 | if (*(args[1]) == 0) { |
| 9184 | memprintf(err, "'%s' expects ssl sessions <lifetime> in seconds as argument.", args[0]); |
| 9185 | return -1; |
| 9186 | } |
| 9187 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9188 | res = parse_time_err(args[1], &global_ssl.life_time, TIME_UNIT_S); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 9189 | if (res == PARSE_TIME_OVER) { |
| 9190 | memprintf(err, "timer overflow in argument '%s' to <%s> (maximum value is 2147483647 s or ~68 years).", |
| 9191 | args[1], args[0]); |
| 9192 | return -1; |
| 9193 | } |
| 9194 | else if (res == PARSE_TIME_UNDER) { |
| 9195 | memprintf(err, "timer underflow in argument '%s' to <%s> (minimum non-null value is 1 s).", |
| 9196 | args[1], args[0]); |
| 9197 | return -1; |
| 9198 | } |
| 9199 | else if (res) { |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9200 | memprintf(err, "unexpected character '%c' in argument to <%s>.", *res, args[0]); |
| 9201 | return -1; |
| 9202 | } |
| 9203 | return 0; |
| 9204 | } |
| 9205 | |
| 9206 | #ifndef OPENSSL_NO_DH |
Willy Tarreau | 14e36a1 | 2016-12-21 23:28:13 +0100 | [diff] [blame] | 9207 | /* parse "ssl-dh-param-file". |
| 9208 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9209 | */ |
| 9210 | static int ssl_parse_global_dh_param_file(char **args, int section_type, struct proxy *curpx, |
| 9211 | struct proxy *defpx, const char *file, int line, |
| 9212 | char **err) |
| 9213 | { |
| 9214 | if (too_many_args(1, args, err, NULL)) |
| 9215 | return -1; |
| 9216 | |
| 9217 | if (*(args[1]) == 0) { |
| 9218 | memprintf(err, "'%s' expects a file path as an argument.", args[0]); |
| 9219 | return -1; |
| 9220 | } |
| 9221 | |
| 9222 | if (ssl_sock_load_global_dh_param_from_file(args[1])) { |
| 9223 | memprintf(err, "'%s': unable to load DH parameters from file <%s>.", args[0], args[1]); |
| 9224 | return -1; |
| 9225 | } |
| 9226 | return 0; |
| 9227 | } |
| 9228 | |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9229 | /* parse "ssl.default-dh-param". |
| 9230 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9231 | */ |
| 9232 | static int ssl_parse_global_default_dh(char **args, int section_type, struct proxy *curpx, |
| 9233 | struct proxy *defpx, const char *file, int line, |
| 9234 | char **err) |
| 9235 | { |
| 9236 | if (too_many_args(1, args, err, NULL)) |
| 9237 | return -1; |
| 9238 | |
| 9239 | if (*(args[1]) == 0) { |
| 9240 | memprintf(err, "'%s' expects an integer argument.", args[0]); |
| 9241 | return -1; |
| 9242 | } |
| 9243 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9244 | global_ssl.default_dh_param = atoi(args[1]); |
| 9245 | if (global_ssl.default_dh_param < 1024) { |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9246 | memprintf(err, "'%s' expects a value >= 1024.", args[0]); |
| 9247 | return -1; |
| 9248 | } |
| 9249 | return 0; |
| 9250 | } |
| 9251 | #endif |
| 9252 | |
| 9253 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9254 | /* This function is used with TLS ticket keys management. It permits to browse |
| 9255 | * each reference. The variable <getnext> must contain the current node, |
| 9256 | * <end> point to the root node. |
| 9257 | */ |
| 9258 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9259 | static inline |
| 9260 | struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end) |
| 9261 | { |
| 9262 | struct tls_keys_ref *ref = getnext; |
| 9263 | |
| 9264 | while (1) { |
| 9265 | |
| 9266 | /* Get next list entry. */ |
| 9267 | ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list); |
| 9268 | |
| 9269 | /* If the entry is the last of the list, return NULL. */ |
| 9270 | if (&ref->list == end) |
| 9271 | return NULL; |
| 9272 | |
| 9273 | return ref; |
| 9274 | } |
| 9275 | } |
| 9276 | |
| 9277 | static inline |
| 9278 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 9279 | { |
| 9280 | int id; |
| 9281 | char *error; |
| 9282 | |
| 9283 | /* If the reference starts by a '#', this is numeric id. */ |
| 9284 | if (reference[0] == '#') { |
| 9285 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 9286 | id = strtol(reference + 1, &error, 10); |
| 9287 | if (*error != '\0') |
| 9288 | return NULL; |
| 9289 | |
| 9290 | /* Perform the unique id lookup. */ |
| 9291 | return tlskeys_ref_lookupid(id); |
| 9292 | } |
| 9293 | |
| 9294 | /* Perform the string lookup. */ |
| 9295 | return tlskeys_ref_lookup(reference); |
| 9296 | } |
| 9297 | #endif |
| 9298 | |
| 9299 | |
| 9300 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9301 | |
| 9302 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 9303 | |
| 9304 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 9305 | return cli_io_handler_tlskeys_files(appctx); |
| 9306 | } |
| 9307 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9308 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 9309 | * (next index to be dumped), and cli.p0 (next key reference). |
| 9310 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9311 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 9312 | |
| 9313 | struct stream_interface *si = appctx->owner; |
| 9314 | |
| 9315 | switch (appctx->st2) { |
| 9316 | case STAT_ST_INIT: |
| 9317 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 9318 | * quit the function with returning 0. The function is called |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9319 | * later and restart at the state "STAT_ST_INIT". |
| 9320 | */ |
| 9321 | chunk_reset(&trash); |
| 9322 | |
| 9323 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 9324 | chunk_appendf(&trash, "# id secret\n"); |
| 9325 | else |
| 9326 | chunk_appendf(&trash, "# id (file)\n"); |
| 9327 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 9328 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 9329 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9330 | return 0; |
| 9331 | } |
| 9332 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9333 | /* Now, we start the browsing of the references lists. |
| 9334 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 9335 | * available field of this pointer is <list>. It is used with the function |
| 9336 | * tlskeys_list_get_next() for retruning the first available entry |
| 9337 | */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9338 | if (appctx->ctx.cli.p0 == NULL) { |
| 9339 | appctx->ctx.cli.p0 = LIST_ELEM(&tlskeys_reference, struct tls_keys_ref *, list); |
| 9340 | appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9341 | } |
| 9342 | |
| 9343 | appctx->st2 = STAT_ST_LIST; |
| 9344 | /* fall through */ |
| 9345 | |
| 9346 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9347 | while (appctx->ctx.cli.p0) { |
| 9348 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9349 | |
| 9350 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9351 | if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9352 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9353 | |
| 9354 | if (appctx->ctx.cli.i1 == 0) |
| 9355 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 9356 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9357 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 9358 | int head; |
| 9359 | |
| 9360 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 9361 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9362 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 9363 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9364 | |
| 9365 | chunk_reset(t2); |
| 9366 | /* should never fail here because we dump only a key in the t2 buffer */ |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9367 | if (ref->key_size_bits == 128) { |
| 9368 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 9369 | sizeof(struct tls_sess_key_128), |
| 9370 | t2->area, t2->size); |
| 9371 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 9372 | t2->area); |
| 9373 | } |
| 9374 | else if (ref->key_size_bits == 256) { |
| 9375 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 9376 | sizeof(struct tls_sess_key_256), |
| 9377 | t2->area, t2->size); |
| 9378 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 9379 | t2->area); |
| 9380 | } |
| 9381 | else { |
| 9382 | /* This case should never happen */ |
| 9383 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1); |
| 9384 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9385 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 9386 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9387 | /* let's try again later from this stream. We add ourselves into |
| 9388 | * this stream's users so that it can remove us upon termination. |
| 9389 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 9390 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 9391 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9392 | return 0; |
| 9393 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9394 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9395 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 9396 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9397 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9398 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 9399 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9400 | /* let's try again later from this stream. We add ourselves into |
| 9401 | * this stream's users so that it can remove us upon termination. |
| 9402 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 9403 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9404 | return 0; |
| 9405 | } |
| 9406 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9407 | if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9408 | break; |
| 9409 | |
| 9410 | /* get next list entry and check the end of the list */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9411 | appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9412 | } |
| 9413 | |
| 9414 | appctx->st2 = STAT_ST_FIN; |
| 9415 | /* fall through */ |
| 9416 | |
| 9417 | default: |
| 9418 | appctx->st2 = STAT_ST_FIN; |
| 9419 | return 1; |
| 9420 | } |
| 9421 | return 0; |
| 9422 | } |
| 9423 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9424 | /* sets cli.i0 to non-zero if only file lists should be dumped */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 9425 | static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9426 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9427 | /* no parameter, shows only file list */ |
| 9428 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9429 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9430 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 9431 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9432 | } |
| 9433 | |
| 9434 | if (args[2][0] == '*') { |
| 9435 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9436 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9437 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9438 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
| 9439 | if (!appctx->ctx.cli.p0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9440 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9441 | appctx->ctx.cli.msg = "'show tls-keys' unable to locate referenced filename\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9442 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9443 | return 1; |
| 9444 | } |
| 9445 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9446 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 9447 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9448 | } |
| 9449 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 9450 | static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9451 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9452 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9453 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9454 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9455 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
| 9456 | if (!*args[3] || !*args[4]) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9457 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9458 | appctx->ctx.cli.msg = "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9459 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9460 | return 1; |
| 9461 | } |
| 9462 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9463 | ref = tlskeys_ref_lookup_ref(args[3]); |
| 9464 | if (!ref) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9465 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9466 | appctx->ctx.cli.msg = "'set ssl tls-key' unable to locate referenced filename\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9467 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9468 | return 1; |
| 9469 | } |
| 9470 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9471 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9472 | if (ret < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9473 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9474 | appctx->ctx.cli.msg = "'set ssl tls-key' received invalid base64 encoded TLS key.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9475 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9476 | return 1; |
| 9477 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9478 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9479 | trash.data = ret; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9480 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) { |
| 9481 | appctx->ctx.cli.severity = LOG_ERR; |
| 9482 | appctx->ctx.cli.msg = "'set ssl tls-key' received a key of wrong size.\n"; |
| 9483 | appctx->st0 = CLI_ST_PRINT; |
| 9484 | return 1; |
| 9485 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9486 | appctx->ctx.cli.severity = LOG_INFO; |
Aurélien Nephtali | 6e8a41d | 2018-03-15 21:48:50 +0100 | [diff] [blame] | 9487 | appctx->ctx.cli.msg = "TLS ticket key updated!\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9488 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9489 | return 1; |
| 9490 | |
| 9491 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 9492 | #endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9493 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 9494 | static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9495 | { |
| 9496 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 9497 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9498 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 9499 | |
| 9500 | if (!payload) |
| 9501 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9502 | |
| 9503 | /* Expect one parameter: the new response in base64 encoding */ |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 9504 | if (!*payload) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9505 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9506 | appctx->ctx.cli.msg = "'set ssl ocsp-response' expects response in base64 encoding.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9507 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9508 | return 1; |
| 9509 | } |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 9510 | |
| 9511 | /* remove \r and \n from the payload */ |
| 9512 | for (i = 0, j = 0; payload[i]; i++) { |
| 9513 | if (payload[i] == '\r' || payload[i] == '\n') |
| 9514 | continue; |
| 9515 | payload[j++] = payload[i]; |
| 9516 | } |
| 9517 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9518 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9519 | ret = base64dec(payload, j, trash.area, trash.size); |
| 9520 | if (ret < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9521 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9522 | appctx->ctx.cli.msg = "'set ssl ocsp-response' received invalid base64 encoded response.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9523 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9524 | return 1; |
| 9525 | } |
| 9526 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9527 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9528 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
| 9529 | if (err) { |
| 9530 | memprintf(&err, "%s.\n", err); |
| 9531 | appctx->ctx.cli.err = err; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9532 | appctx->st0 = CLI_ST_PRINT_FREE; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9533 | } |
Aurélien Nephtali | 9a4da68 | 2018-04-16 19:02:42 +0200 | [diff] [blame] | 9534 | else { |
| 9535 | appctx->ctx.cli.severity = LOG_ERR; |
| 9536 | appctx->ctx.cli.msg = "Failed to update OCSP response.\n"; |
| 9537 | appctx->st0 = CLI_ST_PRINT; |
| 9538 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9539 | return 1; |
| 9540 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9541 | appctx->ctx.cli.severity = LOG_INFO; |
Aurélien Nephtali | 6e8a41d | 2018-03-15 21:48:50 +0100 | [diff] [blame] | 9542 | appctx->ctx.cli.msg = "OCSP Response updated!\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9543 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9544 | return 1; |
| 9545 | #else |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9546 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9547 | appctx->ctx.cli.msg = "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9548 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9549 | return 1; |
| 9550 | #endif |
| 9551 | |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9552 | } |
| 9553 | |
Willy Tarreau | 86a394e | 2019-05-09 14:15:32 +0200 | [diff] [blame] | 9554 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000100fL) |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9555 | static inline int sample_conv_var2smp_str(const struct arg *arg, struct sample *smp) |
| 9556 | { |
| 9557 | switch (arg->type) { |
| 9558 | case ARGT_STR: |
| 9559 | smp->data.type = SMP_T_STR; |
| 9560 | smp->data.u.str = arg->data.str; |
| 9561 | return 1; |
| 9562 | case ARGT_VAR: |
| 9563 | if (!vars_get_by_desc(&arg->data.var, smp)) |
| 9564 | return 0; |
| 9565 | if (!sample_casts[smp->data.type][SMP_T_STR]) |
| 9566 | return 0; |
| 9567 | if (!sample_casts[smp->data.type][SMP_T_STR](smp)) |
| 9568 | return 0; |
| 9569 | return 1; |
| 9570 | default: |
| 9571 | return 0; |
| 9572 | } |
| 9573 | } |
| 9574 | |
| 9575 | static int check_aes_gcm(struct arg *args, struct sample_conv *conv, |
| 9576 | const char *file, int line, char **err) |
| 9577 | { |
| 9578 | switch(args[0].data.sint) { |
| 9579 | case 128: |
| 9580 | case 192: |
| 9581 | case 256: |
| 9582 | break; |
| 9583 | default: |
| 9584 | memprintf(err, "key size must be 128, 192 or 256 (bits)."); |
| 9585 | return 0; |
| 9586 | } |
| 9587 | /* Try to decode a variable. */ |
| 9588 | vars_check_arg(&args[1], NULL); |
| 9589 | vars_check_arg(&args[2], NULL); |
| 9590 | vars_check_arg(&args[3], NULL); |
| 9591 | return 1; |
| 9592 | } |
| 9593 | |
| 9594 | /* Arguements: AES size in bits, nonce, key, tag. The last three arguments are base64 encoded */ |
| 9595 | static int sample_conv_aes_gcm_dec(const struct arg *arg_p, struct sample *smp, void *private) |
| 9596 | { |
| 9597 | struct sample nonce, key, aead_tag; |
| 9598 | struct buffer *smp_trash, *smp_trash_alloc; |
| 9599 | EVP_CIPHER_CTX *ctx; |
| 9600 | int dec_size, ret; |
| 9601 | |
| 9602 | smp_set_owner(&nonce, smp->px, smp->sess, smp->strm, smp->opt); |
| 9603 | if (!sample_conv_var2smp_str(&arg_p[1], &nonce)) |
| 9604 | return 0; |
| 9605 | |
| 9606 | smp_set_owner(&key, smp->px, smp->sess, smp->strm, smp->opt); |
| 9607 | if (!sample_conv_var2smp_str(&arg_p[2], &key)) |
| 9608 | return 0; |
| 9609 | |
| 9610 | smp_set_owner(&aead_tag, smp->px, smp->sess, smp->strm, smp->opt); |
| 9611 | if (!sample_conv_var2smp_str(&arg_p[3], &aead_tag)) |
| 9612 | return 0; |
| 9613 | |
| 9614 | smp_trash = get_trash_chunk(); |
| 9615 | smp_trash_alloc = alloc_trash_chunk(); |
| 9616 | if (!smp_trash_alloc) |
| 9617 | return 0; |
| 9618 | |
| 9619 | ctx = EVP_CIPHER_CTX_new(); |
| 9620 | |
| 9621 | if (!ctx) |
| 9622 | goto err; |
| 9623 | |
| 9624 | dec_size = base64dec(nonce.data.u.str.area, nonce.data.u.str.data, smp_trash->area, smp_trash->size); |
| 9625 | if (dec_size < 0) |
| 9626 | goto err; |
| 9627 | smp_trash->data = dec_size; |
| 9628 | |
| 9629 | /* Set cipher type and mode */ |
| 9630 | switch(arg_p[0].data.sint) { |
| 9631 | case 128: |
| 9632 | EVP_DecryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL); |
| 9633 | break; |
| 9634 | case 192: |
| 9635 | EVP_DecryptInit_ex(ctx, EVP_aes_192_gcm(), NULL, NULL, NULL); |
| 9636 | break; |
| 9637 | case 256: |
| 9638 | EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL); |
| 9639 | break; |
| 9640 | } |
| 9641 | |
| 9642 | EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, smp_trash->data, NULL); |
| 9643 | |
| 9644 | /* Initialise IV */ |
| 9645 | if(!EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, (unsigned char *) smp_trash->area)) |
| 9646 | goto err; |
| 9647 | |
| 9648 | dec_size = base64dec(key.data.u.str.area, key.data.u.str.data, smp_trash->area, smp_trash->size); |
| 9649 | if (dec_size < 0) |
| 9650 | goto err; |
| 9651 | smp_trash->data = dec_size; |
| 9652 | |
| 9653 | /* Initialise key */ |
| 9654 | if (!EVP_DecryptInit_ex(ctx, NULL, NULL, (unsigned char *) smp_trash->area, NULL)) |
| 9655 | goto err; |
| 9656 | |
| 9657 | if (!EVP_DecryptUpdate(ctx, (unsigned char *) smp_trash->area, (int *) &smp_trash->data, |
| 9658 | (unsigned char *) smp->data.u.str.area, (int) smp->data.u.str.data)) |
| 9659 | goto err; |
| 9660 | |
| 9661 | dec_size = base64dec(aead_tag.data.u.str.area, aead_tag.data.u.str.data, smp_trash_alloc->area, smp_trash_alloc->size); |
| 9662 | if (dec_size < 0) |
| 9663 | goto err; |
| 9664 | smp_trash_alloc->data = dec_size; |
| 9665 | dec_size = smp_trash->data; |
| 9666 | |
| 9667 | EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, smp_trash_alloc->data, (void *) smp_trash_alloc->area); |
| 9668 | ret = EVP_DecryptFinal_ex(ctx, (unsigned char *) smp_trash->area + smp_trash->data, (int *) &smp_trash->data); |
| 9669 | |
| 9670 | if (ret <= 0) |
| 9671 | goto err; |
| 9672 | |
| 9673 | smp->data.u.str.data = dec_size + smp_trash->data; |
| 9674 | smp->data.u.str.area = smp_trash->area; |
| 9675 | smp->data.type = SMP_T_BIN; |
| 9676 | smp->flags &= ~SMP_F_CONST; |
| 9677 | free_trash_chunk(smp_trash_alloc); |
| 9678 | return 1; |
| 9679 | |
| 9680 | err: |
| 9681 | free_trash_chunk(smp_trash_alloc); |
| 9682 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9683 | } |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9684 | # endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9685 | |
| 9686 | /* register cli keywords */ |
| 9687 | static struct cli_kw_list cli_kws = {{ },{ |
| 9688 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9689 | { { "show", "tls-keys", NULL }, "show tls-keys [id|*]: show tls keys references or dump tls ticket keys when id specified", cli_parse_show_tlskeys, NULL }, |
Lukas Tribus | f4bbc43 | 2017-10-24 12:26:31 +0200 | [diff] [blame] | 9690 | { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|keyfile] <tlskey>: set the next TLS key for the <id> or <keyfile> listener to <tlskey>", cli_parse_set_tlskeys, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9691 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 9692 | { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9693 | { { NULL }, NULL, NULL, NULL } |
| 9694 | }}; |
| 9695 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9696 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9697 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9698 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9699 | * Please take care of keeping this list alphabetically sorted. |
| 9700 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 9701 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9702 | { "ssl_bc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9703 | { "ssl_bc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV }, |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 9704 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Jérôme Magnin | e064a80 | 2018-12-03 22:21:04 +0100 | [diff] [blame] | 9705 | { "ssl_bc_alpn", smp_fetch_ssl_fc_alpn, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 9706 | #endif |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9707 | { "ssl_bc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 9708 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 9709 | { "ssl_bc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
| 9710 | #endif |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 9711 | { "ssl_bc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV }, |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9712 | { "ssl_bc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 9713 | { "ssl_bc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9714 | { "ssl_bc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV }, |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 9715 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9716 | { "ssl_bc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 9717 | #endif |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9718 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
Patrick Hemmer | 6567466 | 2019-06-04 08:13:03 -0400 | [diff] [blame] | 9719 | { "ssl_bc_client_random", smp_fetch_ssl_fc_random, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
| 9720 | { "ssl_bc_server_random", smp_fetch_ssl_fc_random, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 9721 | { "ssl_bc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
| 9722 | #endif |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9723 | { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 9724 | { "ssl_c_ca_err_depth", smp_fetch_ssl_c_ca_err_depth, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 9725 | { "ssl_c_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9726 | { "ssl_c_err", smp_fetch_ssl_c_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 9727 | { "ssl_c_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9728 | { "ssl_c_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9729 | { "ssl_c_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9730 | { "ssl_c_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9731 | { "ssl_c_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9732 | { "ssl_c_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9733 | { "ssl_c_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9734 | { "ssl_c_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 9735 | { "ssl_c_used", smp_fetch_ssl_c_used, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9736 | { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 9737 | { "ssl_c_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 9738 | { "ssl_f_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 9739 | { "ssl_f_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9740 | { "ssl_f_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9741 | { "ssl_f_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9742 | { "ssl_f_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9743 | { "ssl_f_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9744 | { "ssl_f_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9745 | { "ssl_f_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Emeric Brun | 55f4fa8 | 2014-04-30 17:11:25 +0200 | [diff] [blame] | 9746 | { "ssl_f_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9747 | { "ssl_f_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 9748 | { "ssl_fc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9749 | { "ssl_fc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9750 | { "ssl_fc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 9751 | { "ssl_fc_has_crt", smp_fetch_ssl_fc_has_crt, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9752 | { "ssl_fc_has_early", smp_fetch_ssl_fc_has_early, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Willy Tarreau | 80aca90 | 2013-01-07 15:42:20 +0100 | [diff] [blame] | 9753 | { "ssl_fc_has_sni", smp_fetch_ssl_fc_has_sni, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 9754 | { "ssl_fc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI }, |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 9755 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9756 | { "ssl_fc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 9757 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 9758 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9759 | { "ssl_fc_alpn", smp_fetch_ssl_fc_alpn, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 9760 | #endif |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9761 | { "ssl_fc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 9762 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 9763 | { "ssl_fc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 9764 | #endif |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9765 | { "ssl_fc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 9766 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9767 | { "ssl_fc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 9768 | #endif |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9769 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
Patrick Hemmer | 6567466 | 2019-06-04 08:13:03 -0400 | [diff] [blame] | 9770 | { "ssl_fc_client_random", smp_fetch_ssl_fc_random, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9771 | { "ssl_fc_server_random", smp_fetch_ssl_fc_random, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 9772 | { "ssl_fc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9773 | #endif |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 9774 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9775 | { "ssl_fc_sni", smp_fetch_ssl_fc_sni, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 9776 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9777 | { "ssl_fc_cipherlist_bin", smp_fetch_ssl_fc_cl_bin, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9778 | { "ssl_fc_cipherlist_hex", smp_fetch_ssl_fc_cl_hex, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9779 | { "ssl_fc_cipherlist_str", smp_fetch_ssl_fc_cl_str, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9780 | { "ssl_fc_cipherlist_xxh", smp_fetch_ssl_fc_cl_xxh64, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9781 | { NULL, NULL, 0, 0, 0 }, |
| 9782 | }}; |
| 9783 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9784 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |
| 9785 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9786 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9787 | * Please take care of keeping this list alphabetically sorted. |
| 9788 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 9789 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 9790 | { "ssl_fc_sni_end", "ssl_fc_sni", PAT_MATCH_END }, |
| 9791 | { "ssl_fc_sni_reg", "ssl_fc_sni", PAT_MATCH_REG }, |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 9792 | { /* END */ }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9793 | }}; |
| 9794 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9795 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
| 9796 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 9797 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9798 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 9799 | * all code contributors. |
| 9800 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 9801 | * the config parser can report an appropriate error when a known keyword was |
| 9802 | * not enabled. |
| 9803 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9804 | static struct ssl_bind_kw ssl_bind_kws[] = { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 9805 | { "allow-0rtt", ssl_bind_parse_allow_0rtt, 0 }, /* allow 0-RTT */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9806 | { "alpn", ssl_bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 9807 | { "ca-file", ssl_bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 9808 | { "ciphers", ssl_bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9809 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9810 | { "ciphersuites", ssl_bind_parse_ciphersuites, 1 }, /* set TLS 1.3 cipher suite */ |
| 9811 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9812 | { "crl-file", ssl_bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 9813 | { "curves", ssl_bind_parse_curves, 1 }, /* set SSL curve suite */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9814 | { "ecdhe", ssl_bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 9815 | { "no-ca-names", ssl_bind_parse_no_ca_names, 0 }, /* do not send ca names to clients (ca_file related) */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9816 | { "npn", ssl_bind_parse_npn, 1 }, /* set NPN supported protocols */ |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 9817 | { "ssl-min-ver", ssl_bind_parse_tls_method_minmax,1 }, /* minimum version */ |
| 9818 | { "ssl-max-ver", ssl_bind_parse_tls_method_minmax,1 }, /* maximum version */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9819 | { "verify", ssl_bind_parse_verify, 1 }, /* set SSL verify method */ |
| 9820 | { NULL, NULL, 0 }, |
| 9821 | }; |
| 9822 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9823 | /* no initcall for ssl_bind_kws, these ones are parsed in the parser loop */ |
| 9824 | |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 9825 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 9826 | { "allow-0rtt", bind_parse_allow_0rtt, 0 }, /* Allow 0RTT */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9827 | { "alpn", bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 9828 | { "ca-file", bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 9829 | { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */ |
| 9830 | { "ca-sign-file", bind_parse_ca_sign_file, 1 }, /* set CAFile used to generate and sign server certs */ |
| 9831 | { "ca-sign-pass", bind_parse_ca_sign_pass, 1 }, /* set CAKey passphrase */ |
| 9832 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9833 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9834 | { "ciphersuites", bind_parse_ciphersuites, 1 }, /* set TLS 1.3 cipher suite */ |
| 9835 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9836 | { "crl-file", bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
| 9837 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 9838 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
| 9839 | { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */ |
| 9840 | { "curves", bind_parse_curves, 1 }, /* set SSL curve suite */ |
| 9841 | { "ecdhe", bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
| 9842 | { "force-sslv3", bind_parse_tls_method_options, 0 }, /* force SSLv3 */ |
| 9843 | { "force-tlsv10", bind_parse_tls_method_options, 0 }, /* force TLSv10 */ |
| 9844 | { "force-tlsv11", bind_parse_tls_method_options, 0 }, /* force TLSv11 */ |
| 9845 | { "force-tlsv12", bind_parse_tls_method_options, 0 }, /* force TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 9846 | { "force-tlsv13", bind_parse_tls_method_options, 0 }, /* force TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9847 | { "generate-certificates", bind_parse_generate_certs, 0 }, /* enable the server certificates generation */ |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 9848 | { "no-ca-names", bind_parse_no_ca_names, 0 }, /* do not send ca names to clients (ca_file related) */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9849 | { "no-sslv3", bind_parse_tls_method_options, 0 }, /* disable SSLv3 */ |
| 9850 | { "no-tlsv10", bind_parse_tls_method_options, 0 }, /* disable TLSv10 */ |
| 9851 | { "no-tlsv11", bind_parse_tls_method_options, 0 }, /* disable TLSv11 */ |
| 9852 | { "no-tlsv12", bind_parse_tls_method_options, 0 }, /* disable TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 9853 | { "no-tlsv13", bind_parse_tls_method_options, 0 }, /* disable TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9854 | { "no-tls-tickets", bind_parse_no_tls_tickets, 0 }, /* disable session resumption tickets */ |
| 9855 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9856 | { "ssl-min-ver", bind_parse_tls_method_minmax, 1 }, /* minimum version */ |
| 9857 | { "ssl-max-ver", bind_parse_tls_method_minmax, 1 }, /* maximum version */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9858 | { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */ |
| 9859 | { "tls-ticket-keys", bind_parse_tls_ticket_keys, 1 }, /* set file to load TLS ticket keys from */ |
| 9860 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
| 9861 | { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */ |
| 9862 | { "prefer-client-ciphers", bind_parse_pcc, 0 }, /* prefer client ciphers */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 9863 | { NULL, NULL, 0 }, |
| 9864 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9865 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9866 | INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |
| 9867 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 9868 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9869 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 9870 | * all code contributors. |
| 9871 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 9872 | * the config parser can report an appropriate error when a known keyword was |
| 9873 | * not enabled. |
| 9874 | */ |
| 9875 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 9876 | { "allow-0rtt", srv_parse_allow_0rtt, 0, 1 }, /* Allow using early data on this server */ |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 9877 | { "alpn", srv_parse_alpn, 1, 1 }, /* Set ALPN supported protocols */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9878 | { "ca-file", srv_parse_ca_file, 1, 1 }, /* set CAfile to process verify server cert */ |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 9879 | { "check-alpn", srv_parse_alpn, 1, 1 }, /* Set ALPN used for checks */ |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 9880 | { "check-sni", srv_parse_check_sni, 1, 1 }, /* set SNI */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9881 | { "check-ssl", srv_parse_check_ssl, 0, 1 }, /* enable SSL for health checks */ |
| 9882 | { "ciphers", srv_parse_ciphers, 1, 1 }, /* select the cipher suite */ |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9883 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9884 | { "ciphersuites", srv_parse_ciphersuites, 1, 1 }, /* select the cipher suite */ |
| 9885 | #endif |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9886 | { "crl-file", srv_parse_crl_file, 1, 1 }, /* set certificate revocation list file use on server cert verify */ |
| 9887 | { "crt", srv_parse_crt, 1, 1 }, /* set client certificate */ |
| 9888 | { "force-sslv3", srv_parse_tls_method_options, 0, 1 }, /* force SSLv3 */ |
| 9889 | { "force-tlsv10", srv_parse_tls_method_options, 0, 1 }, /* force TLSv10 */ |
| 9890 | { "force-tlsv11", srv_parse_tls_method_options, 0, 1 }, /* force TLSv11 */ |
| 9891 | { "force-tlsv12", srv_parse_tls_method_options, 0, 1 }, /* force TLSv12 */ |
| 9892 | { "force-tlsv13", srv_parse_tls_method_options, 0, 1 }, /* force TLSv13 */ |
| 9893 | { "no-check-ssl", srv_parse_no_check_ssl, 0, 1 }, /* disable SSL for health checks */ |
| 9894 | { "no-send-proxy-v2-ssl", srv_parse_no_send_proxy_ssl, 0, 1 }, /* do not send PROXY protocol header v2 with SSL info */ |
| 9895 | { "no-send-proxy-v2-ssl-cn", srv_parse_no_send_proxy_cn, 0, 1 }, /* do not send PROXY protocol header v2 with CN */ |
| 9896 | { "no-ssl", srv_parse_no_ssl, 0, 1 }, /* disable SSL processing */ |
| 9897 | { "no-ssl-reuse", srv_parse_no_ssl_reuse, 0, 1 }, /* disable session reuse */ |
| 9898 | { "no-sslv3", srv_parse_tls_method_options, 0, 0 }, /* disable SSLv3 */ |
| 9899 | { "no-tlsv10", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv10 */ |
| 9900 | { "no-tlsv11", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv11 */ |
| 9901 | { "no-tlsv12", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv12 */ |
| 9902 | { "no-tlsv13", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv13 */ |
| 9903 | { "no-tls-tickets", srv_parse_no_tls_tickets, 0, 1 }, /* disable session resumption tickets */ |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 9904 | { "npn", srv_parse_npn, 1, 1 }, /* Set NPN supported protocols */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9905 | { "send-proxy-v2-ssl", srv_parse_send_proxy_ssl, 0, 1 }, /* send PROXY protocol header v2 with SSL info */ |
| 9906 | { "send-proxy-v2-ssl-cn", srv_parse_send_proxy_cn, 0, 1 }, /* send PROXY protocol header v2 with CN */ |
| 9907 | { "sni", srv_parse_sni, 1, 1 }, /* send SNI extension */ |
| 9908 | { "ssl", srv_parse_ssl, 0, 1 }, /* enable SSL processing */ |
| 9909 | { "ssl-min-ver", srv_parse_tls_method_minmax, 1, 1 }, /* minimum version */ |
| 9910 | { "ssl-max-ver", srv_parse_tls_method_minmax, 1, 1 }, /* maximum version */ |
| 9911 | { "ssl-reuse", srv_parse_ssl_reuse, 0, 1 }, /* enable session reuse */ |
| 9912 | { "tls-tickets", srv_parse_tls_tickets, 0, 1 }, /* enable session resumption tickets */ |
| 9913 | { "verify", srv_parse_verify, 1, 1 }, /* set SSL verify method */ |
| 9914 | { "verifyhost", srv_parse_verifyhost, 1, 1 }, /* require that SSL cert verifies for hostname */ |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 9915 | { NULL, NULL, 0, 0 }, |
| 9916 | }}; |
| 9917 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9918 | INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws); |
| 9919 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 9920 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 9921 | { CFG_GLOBAL, "ca-base", ssl_parse_global_ca_crt_base }, |
| 9922 | { CFG_GLOBAL, "crt-base", ssl_parse_global_ca_crt_base }, |
Willy Tarreau | 0bea58d | 2016-12-21 23:17:25 +0100 | [diff] [blame] | 9923 | { CFG_GLOBAL, "maxsslconn", ssl_parse_global_int }, |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 9924 | { CFG_GLOBAL, "ssl-default-bind-options", ssl_parse_default_bind_options }, |
| 9925 | { CFG_GLOBAL, "ssl-default-server-options", ssl_parse_default_server_options }, |
Willy Tarreau | 14e36a1 | 2016-12-21 23:28:13 +0100 | [diff] [blame] | 9926 | #ifndef OPENSSL_NO_DH |
| 9927 | { CFG_GLOBAL, "ssl-dh-param-file", ssl_parse_global_dh_param_file }, |
| 9928 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 9929 | { CFG_GLOBAL, "ssl-mode-async", ssl_parse_global_ssl_async }, |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9930 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9931 | { CFG_GLOBAL, "ssl-engine", ssl_parse_global_ssl_engine }, |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9932 | #endif |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9933 | { CFG_GLOBAL, "tune.ssl.cachesize", ssl_parse_global_int }, |
| 9934 | #ifndef OPENSSL_NO_DH |
| 9935 | { CFG_GLOBAL, "tune.ssl.default-dh-param", ssl_parse_global_default_dh }, |
| 9936 | #endif |
| 9937 | { CFG_GLOBAL, "tune.ssl.force-private-cache", ssl_parse_global_private_cache }, |
| 9938 | { CFG_GLOBAL, "tune.ssl.lifetime", ssl_parse_global_lifetime }, |
| 9939 | { CFG_GLOBAL, "tune.ssl.maxrecord", ssl_parse_global_int }, |
| 9940 | { CFG_GLOBAL, "tune.ssl.ssl-ctx-cache-size", ssl_parse_global_int }, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9941 | { CFG_GLOBAL, "tune.ssl.capture-cipherlist-size", ssl_parse_global_capture_cipherlist }, |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9942 | { CFG_GLOBAL, "ssl-default-bind-ciphers", ssl_parse_global_ciphers }, |
| 9943 | { CFG_GLOBAL, "ssl-default-server-ciphers", ssl_parse_global_ciphers }, |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9944 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9945 | { CFG_GLOBAL, "ssl-default-bind-ciphersuites", ssl_parse_global_ciphersuites }, |
| 9946 | { CFG_GLOBAL, "ssl-default-server-ciphersuites", ssl_parse_global_ciphersuites }, |
| 9947 | #endif |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 9948 | { 0, NULL, NULL }, |
| 9949 | }}; |
| 9950 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9951 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 9952 | |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9953 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 9954 | static struct sample_conv_kw_list conv_kws = {ILH, { |
Willy Tarreau | 86a394e | 2019-05-09 14:15:32 +0200 | [diff] [blame] | 9955 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000100fL) |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9956 | { "aes_gcm_dec", sample_conv_aes_gcm_dec, ARG4(4,SINT,STR,STR,STR), check_aes_gcm, SMP_T_BIN, SMP_T_BIN }, |
| 9957 | #endif |
| 9958 | { NULL, NULL, 0, 0, 0 }, |
| 9959 | }}; |
| 9960 | |
| 9961 | INITCALL1(STG_REGISTER, sample_register_convs, &conv_kws); |
| 9962 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 9963 | /* transport-layer operations for SSL sockets */ |
Willy Tarreau | d9f5cca | 2016-12-22 21:08:52 +0100 | [diff] [blame] | 9964 | static struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9965 | .snd_buf = ssl_sock_from_buf, |
| 9966 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 9967 | .subscribe = ssl_subscribe, |
| 9968 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 9969 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 9970 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9971 | .rcv_pipe = NULL, |
| 9972 | .snd_pipe = NULL, |
| 9973 | .shutr = NULL, |
| 9974 | .shutw = ssl_sock_shutw, |
| 9975 | .close = ssl_sock_close, |
| 9976 | .init = ssl_sock_init, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 9977 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 9978 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 9979 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 9980 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 9981 | .get_alpn = ssl_sock_get_alpn, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 9982 | .name = "SSL", |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9983 | }; |
| 9984 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9985 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 9986 | struct session *sess, struct stream *s, int flags) |
| 9987 | { |
| 9988 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9989 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9990 | |
| 9991 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9992 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9993 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9994 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9995 | if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9996 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9997 | s->req.flags |= CF_READ_NULL; |
| 9998 | return ACT_RET_YIELD; |
| 9999 | } |
| 10000 | } |
| 10001 | return (ACT_RET_CONT); |
| 10002 | } |
| 10003 | |
| 10004 | static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err) |
| 10005 | { |
| 10006 | rule->action_ptr = ssl_action_wait_for_hs; |
| 10007 | |
| 10008 | return ACT_RET_PRS_OK; |
| 10009 | } |
| 10010 | |
| 10011 | static struct action_kw_list http_req_actions = {ILH, { |
| 10012 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 10013 | { /* END */ } |
| 10014 | }}; |
| 10015 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 10016 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 10017 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10018 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 10019 | |
| 10020 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 10021 | { |
| 10022 | if (ptr) { |
| 10023 | chunk_destroy(ptr); |
| 10024 | free(ptr); |
| 10025 | } |
| 10026 | } |
| 10027 | |
| 10028 | #endif |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 10029 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 10030 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 10031 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 10032 | } |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 10033 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10034 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 10035 | static void __ssl_sock_init(void) |
| 10036 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10037 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10038 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 10039 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10040 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10041 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 10042 | if (global_ssl.listen_default_ciphers) |
| 10043 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 10044 | if (global_ssl.connect_default_ciphers) |
| 10045 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 10046 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 10047 | if (global_ssl.listen_default_ciphersuites) |
| 10048 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 10049 | if (global_ssl.connect_default_ciphersuites) |
| 10050 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 10051 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 10052 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 10053 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 10054 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10055 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 10056 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10057 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10058 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 10059 | n = sk_SSL_COMP_num(cm); |
| 10060 | while (n--) { |
| 10061 | (void) sk_SSL_COMP_pop(cm); |
| 10062 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10063 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 10064 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10065 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 10066 | ssl_locking_init(); |
| 10067 | #endif |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10068 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 10069 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 10070 | #endif |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 10071 | ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
Thierry FOURNIER | 16ff050 | 2018-06-17 21:33:01 +0200 | [diff] [blame] | 10072 | ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func); |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 10073 | ssl_pkey_info_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10074 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10075 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 10076 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10077 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 10078 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 10079 | hap_register_post_check(tlskeys_finalize_config); |
| 10080 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10081 | |
| 10082 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 10083 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 10084 | |
| 10085 | #ifndef OPENSSL_NO_DH |
| 10086 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 10087 | hap_register_post_deinit(ssl_free_dh); |
| 10088 | #endif |
| 10089 | #ifndef OPENSSL_NO_ENGINE |
| 10090 | hap_register_post_deinit(ssl_free_engines); |
| 10091 | #endif |
| 10092 | /* Load SSL string for the verbose & debug mode. */ |
| 10093 | ERR_load_SSL_strings(); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 10094 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
| 10095 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 10096 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 10097 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 10098 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 10099 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 10100 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 10101 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10102 | } |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 10103 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10104 | /* Compute and register the version string */ |
| 10105 | static void ssl_register_build_options() |
| 10106 | { |
| 10107 | char *ptr = NULL; |
| 10108 | int i; |
| 10109 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10110 | memprintf(&ptr, "Built with OpenSSL version : " |
| 10111 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 10112 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10113 | #else /* OPENSSL_IS_BORINGSSL */ |
| 10114 | OPENSSL_VERSION_TEXT |
| 10115 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 10116 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 10117 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10118 | #endif |
| 10119 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 10120 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10121 | "no (library version too old)" |
| 10122 | #elif defined(OPENSSL_NO_TLSEXT) |
| 10123 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 10124 | #else |
| 10125 | "yes" |
| 10126 | #endif |
| 10127 | "", ptr); |
| 10128 | |
| 10129 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 10130 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 10131 | "yes" |
| 10132 | #else |
| 10133 | #ifdef OPENSSL_NO_TLSEXT |
| 10134 | "no (because of OPENSSL_NO_TLSEXT)" |
| 10135 | #else |
| 10136 | "no (version might be too old, 0.9.8f min needed)" |
| 10137 | #endif |
| 10138 | #endif |
| 10139 | "", ptr); |
| 10140 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 10141 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 10142 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 10143 | if (methodVersions[i].option) |
| 10144 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 10145 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10146 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10147 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10148 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10149 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 10150 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10151 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10152 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10153 | void ssl_free_engines(void) { |
| 10154 | struct ssl_engine_list *wl, *wlb; |
| 10155 | /* free up engine list */ |
| 10156 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 10157 | ENGINE_finish(wl->e); |
| 10158 | ENGINE_free(wl->e); |
| 10159 | LIST_DEL(&wl->list); |
| 10160 | free(wl); |
| 10161 | } |
| 10162 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10163 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 10164 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10165 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10166 | void ssl_free_dh(void) { |
| 10167 | if (local_dh_1024) { |
| 10168 | DH_free(local_dh_1024); |
| 10169 | local_dh_1024 = NULL; |
| 10170 | } |
| 10171 | if (local_dh_2048) { |
| 10172 | DH_free(local_dh_2048); |
| 10173 | local_dh_2048 = NULL; |
| 10174 | } |
| 10175 | if (local_dh_4096) { |
| 10176 | DH_free(local_dh_4096); |
| 10177 | local_dh_4096 = NULL; |
| 10178 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 10179 | if (global_dh) { |
| 10180 | DH_free(global_dh); |
| 10181 | global_dh = NULL; |
| 10182 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10183 | } |
| 10184 | #endif |
| 10185 | |
| 10186 | __attribute__((destructor)) |
| 10187 | static void __ssl_sock_deinit(void) |
| 10188 | { |
| 10189 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 10190 | if (ssl_ctx_lru_tree) { |
| 10191 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 10192 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 10193 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10194 | #endif |
| 10195 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10196 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10197 | ERR_remove_state(0); |
| 10198 | ERR_free_strings(); |
| 10199 | |
| 10200 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 10201 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10202 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10203 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10204 | CRYPTO_cleanup_all_ex_data(); |
| 10205 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 10206 | BIO_meth_free(ha_meth); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10207 | } |
| 10208 | |
| 10209 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10210 | /* |
| 10211 | * Local variables: |
| 10212 | * c-indent-level: 8 |
| 10213 | * c-basic-offset: 8 |
| 10214 | * End: |
| 10215 | */ |