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 */ |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 220 | struct buffer early_buf; /* buffer to store the early data received */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 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 | a9d299f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1598 | if (err < 64 && __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 | a9d299f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1612 | if (err < 64 && __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 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2361 | |
Emmanuel Hocdet | cc957c3 | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2362 | for (i = 0; i < 2; i++) { |
| 2363 | if (i == 0) /* lookup in full qualified names */ |
| 2364 | node = ebst_lookup(&s->sni_ctx, trash.area); |
| 2365 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
| 2366 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2367 | else |
| 2368 | break; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2369 | for (n = node; n; n = ebmb_next_dup(n)) { |
Emmanuel Hocdet | cc957c3 | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2370 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2371 | if (!container_of(n, struct sni_ctx, name)->neg) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2372 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2373 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2374 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2375 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2376 | break; |
| 2377 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2378 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2379 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2380 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2381 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2382 | if (!node_anonymous) |
| 2383 | node_anonymous = n; |
| 2384 | break; |
| 2385 | } |
| 2386 | } |
| 2387 | } |
Emmanuel Hocdet | cc957c3 | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2388 | /* select by key_signature priority order */ |
| 2389 | node = (has_ecdsa_sig && node_ecdsa) ? node_ecdsa |
| 2390 | : ((has_rsa_sig && node_rsa) ? node_rsa |
| 2391 | : (node_anonymous ? node_anonymous |
| 2392 | : (node_ecdsa ? node_ecdsa /* no ecdsa signature case (< TLSv1.2) */ |
| 2393 | : node_rsa /* no rsa signature case (far far away) */ |
| 2394 | ))); |
| 2395 | if (node) { |
| 2396 | /* switch ctx */ |
| 2397 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2398 | 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] | 2399 | if (conf) { |
| 2400 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2401 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2402 | if (conf->early_data) |
| 2403 | allow_early = 1; |
| 2404 | } |
| 2405 | goto allow_early; |
Emmanuel Hocdet | cc957c3 | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2406 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2407 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2408 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2409 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2410 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2411 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2412 | } |
| 2413 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2414 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2415 | /* no certificate match, is the default_ctx */ |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2416 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2417 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2418 | allow_early: |
| 2419 | #ifdef OPENSSL_IS_BORINGSSL |
| 2420 | if (allow_early) |
| 2421 | SSL_set_early_data_enabled(ssl, 1); |
| 2422 | #else |
| 2423 | if (!allow_early) |
| 2424 | SSL_set_max_early_data(ssl, 0); |
| 2425 | #endif |
| 2426 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2427 | abort: |
| 2428 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2429 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2430 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2431 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2432 | #else |
| 2433 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2434 | return 0; |
| 2435 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2436 | } |
| 2437 | |
| 2438 | #else /* OPENSSL_IS_BORINGSSL */ |
| 2439 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2440 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2441 | * warning when no match is found, which implies the default (first) cert |
| 2442 | * will keep being used. |
| 2443 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2444 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2445 | { |
| 2446 | const char *servername; |
| 2447 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2448 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2449 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2450 | int i; |
| 2451 | (void)al; /* shut gcc stupid warning */ |
| 2452 | |
| 2453 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2454 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2455 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2456 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2457 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2458 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2459 | if (s->strict_sni) |
| 2460 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 2461 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
| 2462 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2463 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2464 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2465 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2466 | if (!servername[i]) |
| 2467 | break; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2468 | trash.area[i] = tolower(servername[i]); |
| 2469 | if (!wildp && (trash.area[i] == '.')) |
| 2470 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2471 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2472 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2473 | |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2474 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2475 | /* lookup in full qualified names */ |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2476 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2477 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2478 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2479 | node = n; |
| 2480 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2481 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2482 | } |
| 2483 | if (!node && wildp) { |
| 2484 | /* lookup in wildcards names */ |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2485 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2486 | /* lookup a not neg filter */ |
| 2487 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2488 | node = n; |
| 2489 | break; |
| 2490 | } |
| 2491 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2492 | } |
Emmanuel Hocdet | 26b7b80 | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2493 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2494 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2495 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2496 | /* switch ctx done in ssl_sock_generate_certificate */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2497 | return SSL_TLSEXT_ERR_OK; |
| 2498 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2499 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2500 | if (s->strict_sni) |
| 2501 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
| 2502 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
| 2503 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2504 | } |
| 2505 | |
| 2506 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2507 | 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] | 2508 | return SSL_TLSEXT_ERR_OK; |
| 2509 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2510 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2511 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2512 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2513 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2514 | |
| 2515 | static DH * ssl_get_dh_1024(void) |
| 2516 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2517 | static unsigned char dh1024_p[]={ |
| 2518 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2519 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2520 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2521 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2522 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2523 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2524 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2525 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2526 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2527 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2528 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2529 | }; |
| 2530 | static unsigned char dh1024_g[]={ |
| 2531 | 0x02, |
| 2532 | }; |
| 2533 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2534 | BIGNUM *p; |
| 2535 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2536 | DH *dh = DH_new(); |
| 2537 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2538 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2539 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2540 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2541 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2542 | DH_free(dh); |
| 2543 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2544 | } else { |
| 2545 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2546 | } |
| 2547 | } |
| 2548 | return dh; |
| 2549 | } |
| 2550 | |
| 2551 | static DH *ssl_get_dh_2048(void) |
| 2552 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2553 | static unsigned char dh2048_p[]={ |
| 2554 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2555 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2556 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2557 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2558 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2559 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2560 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2561 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2562 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2563 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2564 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2565 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2566 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2567 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2568 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2569 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2570 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2571 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2572 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2573 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2574 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2575 | 0xB7,0x1F,0x77,0xF3, |
| 2576 | }; |
| 2577 | static unsigned char dh2048_g[]={ |
| 2578 | 0x02, |
| 2579 | }; |
| 2580 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2581 | BIGNUM *p; |
| 2582 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2583 | DH *dh = DH_new(); |
| 2584 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2585 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2586 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2587 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2588 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2589 | DH_free(dh); |
| 2590 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2591 | } else { |
| 2592 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2593 | } |
| 2594 | } |
| 2595 | return dh; |
| 2596 | } |
| 2597 | |
| 2598 | static DH *ssl_get_dh_4096(void) |
| 2599 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2600 | static unsigned char dh4096_p[]={ |
| 2601 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2602 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2603 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2604 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2605 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2606 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2607 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2608 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2609 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2610 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2611 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2612 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2613 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2614 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2615 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2616 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2617 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2618 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2619 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2620 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2621 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2622 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2623 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2624 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2625 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2626 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2627 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2628 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2629 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2630 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2631 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2632 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2633 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2634 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2635 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2636 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2637 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2638 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2639 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2640 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2641 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2642 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2643 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2644 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2645 | static unsigned char dh4096_g[]={ |
| 2646 | 0x02, |
| 2647 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2648 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2649 | BIGNUM *p; |
| 2650 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2651 | DH *dh = DH_new(); |
| 2652 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2653 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2654 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2655 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2656 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2657 | DH_free(dh); |
| 2658 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2659 | } else { |
| 2660 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2661 | } |
| 2662 | } |
| 2663 | return dh; |
| 2664 | } |
| 2665 | |
| 2666 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2667 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2668 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2669 | { |
| 2670 | DH *dh = NULL; |
| 2671 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2672 | int type; |
| 2673 | |
| 2674 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2675 | |
| 2676 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2677 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2678 | */ |
| 2679 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 2680 | keylen = EVP_PKEY_bits(pkey); |
| 2681 | } |
| 2682 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2683 | if (keylen > global_ssl.default_dh_param) { |
| 2684 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2685 | } |
| 2686 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2687 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2688 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2689 | } |
| 2690 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2691 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2692 | } |
| 2693 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2694 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2695 | } |
| 2696 | |
| 2697 | return dh; |
| 2698 | } |
| 2699 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2700 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2701 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2702 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2703 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2704 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2705 | if (in == NULL) |
| 2706 | goto end; |
| 2707 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2708 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2709 | goto end; |
| 2710 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2711 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 2712 | |
| 2713 | end: |
| 2714 | if (in) |
| 2715 | BIO_free(in); |
| 2716 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 2717 | ERR_clear_error(); |
| 2718 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2719 | return dh; |
| 2720 | } |
| 2721 | |
| 2722 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 2723 | { |
| 2724 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 2725 | |
| 2726 | if (global_dh) { |
| 2727 | return 0; |
| 2728 | } |
| 2729 | |
| 2730 | return -1; |
| 2731 | } |
| 2732 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2733 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
| 2734 | * If there is no DH paramater availaible in the ckchs, the global |
| 2735 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 2736 | * DH parameter available in ckchs nor in global, the default |
| 2737 | * DH parameters are applied on the SSL_CTX. |
| 2738 | * Returns a bitfield containing the flags: |
| 2739 | * ERR_FATAL in any fatal error case |
| 2740 | * ERR_ALERT if a reason of the error is availabine in err |
| 2741 | * ERR_WARN if a warning is available into err |
| 2742 | * The value 0 means there is no error nor warning and |
| 2743 | * the operation succeed. |
| 2744 | */ |
| 2745 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file, char **err) |
| 2746 | { |
| 2747 | int ret = 0; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2748 | DH *dh = ssl_sock_get_dh_from_file(file); |
| 2749 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2750 | if (dh) { |
Emeric Brun | d6de151 | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 2751 | if (!SSL_CTX_set_tmp_dh(ctx, dh)) { |
| 2752 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 2753 | err && *err ? *err : "", file); |
| 2754 | #if defined(SSL_CTX_set_dh_auto) |
| 2755 | SSL_CTX_set_dh_auto(ctx, 1); |
| 2756 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 2757 | err && *err ? *err : ""); |
| 2758 | #else |
| 2759 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 2760 | err && *err ? *err : ""); |
| 2761 | #endif |
| 2762 | ret |= ERR_WARN; |
| 2763 | goto end; |
| 2764 | } |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 2765 | |
| 2766 | if (ssl_dh_ptr_index >= 0) { |
| 2767 | /* store a pointer to the DH params to avoid complaining about |
| 2768 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 2769 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 2770 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2771 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2772 | else if (global_dh) { |
Emeric Brun | d6de151 | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 2773 | if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) { |
| 2774 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 2775 | err && *err ? *err : "", file); |
| 2776 | #if defined(SSL_CTX_set_dh_auto) |
| 2777 | SSL_CTX_set_dh_auto(ctx, 1); |
| 2778 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 2779 | err && *err ? *err : ""); |
| 2780 | #else |
| 2781 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 2782 | err && *err ? *err : ""); |
| 2783 | #endif |
| 2784 | ret |= ERR_WARN; |
| 2785 | goto end; |
| 2786 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2787 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2788 | else { |
Emeric Brun | 41fdb3c | 2013-04-26 11:05:44 +0200 | [diff] [blame] | 2789 | /* Clear openssl global errors stack */ |
| 2790 | ERR_clear_error(); |
| 2791 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2792 | if (global_ssl.default_dh_param <= 1024) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2793 | /* we are limited to DH parameter of 1024 bits anyway */ |
Remi Gacogne | c7e1263 | 2016-07-02 16:26:10 +0200 | [diff] [blame] | 2794 | if (local_dh_1024 == NULL) |
| 2795 | local_dh_1024 = ssl_get_dh_1024(); |
| 2796 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2797 | if (local_dh_1024 == NULL) { |
| 2798 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 2799 | err && *err ? *err : "", file); |
| 2800 | ret |= ERR_ALERT | ERR_FATAL; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2801 | goto end; |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2802 | } |
Willy Tarreau | 6e774b4 | 2014-04-25 21:35:23 +0200 | [diff] [blame] | 2803 | |
Emeric Brun | d6de151 | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 2804 | if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) { |
| 2805 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 2806 | err && *err ? *err : "", file); |
| 2807 | #if defined(SSL_CTX_set_dh_auto) |
| 2808 | SSL_CTX_set_dh_auto(ctx, 1); |
| 2809 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 2810 | err && *err ? *err : ""); |
| 2811 | #else |
| 2812 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 2813 | err && *err ? *err : ""); |
| 2814 | #endif |
| 2815 | ret |= ERR_WARN; |
| 2816 | goto end; |
| 2817 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2818 | } |
| 2819 | else { |
| 2820 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 2821 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2822 | } |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 2823 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2824 | end: |
| 2825 | if (dh) |
| 2826 | DH_free(dh); |
| 2827 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2828 | return ret; |
| 2829 | } |
| 2830 | #endif |
| 2831 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2832 | 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] | 2833 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2834 | { |
| 2835 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2836 | int wild = 0, neg = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2837 | struct ebmb_node *node; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2838 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2839 | if (*name == '!') { |
| 2840 | neg = 1; |
| 2841 | name++; |
| 2842 | } |
| 2843 | if (*name == '*') { |
| 2844 | wild = 1; |
| 2845 | name++; |
| 2846 | } |
| 2847 | /* !* filter is a nop */ |
| 2848 | if (neg && wild) |
| 2849 | return order; |
| 2850 | if (*name) { |
| 2851 | int j, len; |
| 2852 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2853 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2854 | trash.area[j] = tolower(name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2855 | if (j >= trash.size) |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2856 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2857 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2858 | |
| 2859 | /* Check for duplicates. */ |
| 2860 | if (wild) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2861 | node = ebst_lookup(&s->sni_w_ctx, trash.area); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2862 | else |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2863 | node = ebst_lookup(&s->sni_ctx, trash.area); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2864 | for (; node; node = ebmb_next_dup(node)) { |
| 2865 | sc = ebmb_entry(node, struct sni_ctx, name); |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2866 | if (sc->ctx == ctx && sc->conf == conf && sc->neg == neg) |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2867 | return order; |
| 2868 | } |
| 2869 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2870 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 2871 | if (!sc) |
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 | memcpy(sc->name.key, trash.area, len + 1); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2874 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2875 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2876 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2877 | sc->order = order++; |
| 2878 | sc->neg = neg; |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 2879 | if (kinfo.sig != TLSEXT_signature_anonymous) |
| 2880 | SSL_CTX_set_ex_data(ctx, ssl_pkey_info_index, &sc->kinfo); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2881 | if (wild) |
| 2882 | ebst_insert(&s->sni_w_ctx, &sc->name); |
| 2883 | else |
| 2884 | ebst_insert(&s->sni_ctx, &sc->name); |
| 2885 | } |
| 2886 | return order; |
| 2887 | } |
| 2888 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2889 | |
| 2890 | /* The following code is used for loading multiple crt files into |
| 2891 | * SSL_CTX's based on CN/SAN |
| 2892 | */ |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 2893 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2894 | /* This is used to preload the certifcate, private key |
| 2895 | * and Cert Chain of a file passed in via the crt |
| 2896 | * argument |
| 2897 | * |
| 2898 | * This way, we do not have to read the file multiple times |
| 2899 | */ |
| 2900 | struct cert_key_and_chain { |
| 2901 | X509 *cert; |
| 2902 | EVP_PKEY *key; |
| 2903 | unsigned int num_chain_certs; |
| 2904 | /* This is an array of X509 pointers */ |
| 2905 | X509 **chain_certs; |
| 2906 | }; |
| 2907 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 2908 | #define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES)) |
| 2909 | |
| 2910 | struct key_combo_ctx { |
| 2911 | SSL_CTX *ctx; |
| 2912 | int order; |
| 2913 | }; |
| 2914 | |
| 2915 | /* Map used for processing multiple keypairs for a single purpose |
| 2916 | * |
| 2917 | * This maps CN/SNI name to certificate type |
| 2918 | */ |
| 2919 | struct sni_keytype { |
| 2920 | int keytypes; /* BITMASK for keytypes */ |
| 2921 | struct ebmb_node name; /* node holding the servername value */ |
| 2922 | }; |
| 2923 | |
| 2924 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2925 | /* Frees the contents of a cert_key_and_chain |
| 2926 | */ |
| 2927 | static void ssl_sock_free_cert_key_and_chain_contents(struct cert_key_and_chain *ckch) |
| 2928 | { |
| 2929 | int i; |
| 2930 | |
| 2931 | if (!ckch) |
| 2932 | return; |
| 2933 | |
| 2934 | /* Free the certificate and set pointer to NULL */ |
| 2935 | if (ckch->cert) |
| 2936 | X509_free(ckch->cert); |
| 2937 | ckch->cert = NULL; |
| 2938 | |
| 2939 | /* Free the key and set pointer to NULL */ |
| 2940 | if (ckch->key) |
| 2941 | EVP_PKEY_free(ckch->key); |
| 2942 | ckch->key = NULL; |
| 2943 | |
| 2944 | /* Free each certificate in the chain */ |
| 2945 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 2946 | if (ckch->chain_certs[i]) |
| 2947 | X509_free(ckch->chain_certs[i]); |
| 2948 | } |
| 2949 | |
| 2950 | /* Free the chain obj itself and set to NULL */ |
| 2951 | if (ckch->num_chain_certs > 0) { |
| 2952 | free(ckch->chain_certs); |
| 2953 | ckch->num_chain_certs = 0; |
| 2954 | ckch->chain_certs = NULL; |
| 2955 | } |
| 2956 | |
| 2957 | } |
| 2958 | |
| 2959 | /* checks if a key and cert exists in the ckch |
| 2960 | */ |
| 2961 | static int ssl_sock_is_ckch_valid(struct cert_key_and_chain *ckch) |
| 2962 | { |
| 2963 | return (ckch->cert != NULL && ckch->key != NULL); |
| 2964 | } |
| 2965 | |
| 2966 | |
| 2967 | /* Loads the contents of a crt file (path) into a cert_key_and_chain |
| 2968 | * This allows us to carry the contents of the file without having to |
| 2969 | * read the file multiple times. |
| 2970 | * |
| 2971 | * returns: |
| 2972 | * 0 on Success |
| 2973 | * 1 on SSL Failure |
| 2974 | * 2 on file not found |
| 2975 | */ |
| 2976 | static int ssl_sock_load_crt_file_into_ckch(const char *path, struct cert_key_and_chain *ckch, char **err) |
| 2977 | { |
| 2978 | |
| 2979 | BIO *in; |
| 2980 | X509 *ca = NULL; |
| 2981 | int ret = 1; |
| 2982 | |
| 2983 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 2984 | |
| 2985 | in = BIO_new(BIO_s_file()); |
| 2986 | if (in == NULL) |
| 2987 | goto end; |
| 2988 | |
| 2989 | if (BIO_read_filename(in, path) <= 0) |
| 2990 | goto end; |
| 2991 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 2992 | /* Read Private Key */ |
| 2993 | ckch->key = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL); |
| 2994 | if (ckch->key == NULL) { |
| 2995 | memprintf(err, "%sunable to load private key from file '%s'.\n", |
| 2996 | err && *err ? *err : "", path); |
| 2997 | goto end; |
| 2998 | } |
| 2999 | |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 3000 | /* Seek back to beginning of file */ |
Thierry FOURNIER / OZON.IO | d44ea3f | 2016-10-14 00:49:21 +0200 | [diff] [blame] | 3001 | if (BIO_reset(in) == -1) { |
| 3002 | memprintf(err, "%san error occurred while reading the file '%s'.\n", |
| 3003 | err && *err ? *err : "", path); |
| 3004 | goto end; |
| 3005 | } |
Willy Tarreau | bb137a8 | 2016-04-06 19:02:38 +0200 | [diff] [blame] | 3006 | |
| 3007 | /* Read Certificate */ |
| 3008 | ckch->cert = PEM_read_bio_X509_AUX(in, NULL, NULL, NULL); |
| 3009 | if (ckch->cert == NULL) { |
| 3010 | memprintf(err, "%sunable to load certificate from file '%s'.\n", |
| 3011 | err && *err ? *err : "", path); |
| 3012 | goto end; |
| 3013 | } |
| 3014 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3015 | /* Read Certificate Chain */ |
| 3016 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 3017 | /* Grow the chain certs */ |
| 3018 | ckch->num_chain_certs++; |
| 3019 | ckch->chain_certs = realloc(ckch->chain_certs, (ckch->num_chain_certs * sizeof(X509 *))); |
| 3020 | |
| 3021 | /* use - 1 here since we just incremented it above */ |
| 3022 | ckch->chain_certs[ckch->num_chain_certs - 1] = ca; |
| 3023 | } |
| 3024 | ret = ERR_get_error(); |
| 3025 | if (ret && (ERR_GET_LIB(ret) != ERR_LIB_PEM && ERR_GET_REASON(ret) != PEM_R_NO_START_LINE)) { |
| 3026 | memprintf(err, "%sunable to load certificate chain from file '%s'.\n", |
| 3027 | err && *err ? *err : "", path); |
| 3028 | ret = 1; |
| 3029 | goto end; |
| 3030 | } |
| 3031 | |
| 3032 | ret = 0; |
| 3033 | |
| 3034 | end: |
| 3035 | |
| 3036 | ERR_clear_error(); |
| 3037 | if (in) |
| 3038 | BIO_free(in); |
| 3039 | |
| 3040 | /* Something went wrong in one of the reads */ |
| 3041 | if (ret != 0) |
| 3042 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 3043 | |
| 3044 | return ret; |
| 3045 | } |
| 3046 | |
| 3047 | /* Loads the info in ckch into ctx |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3048 | * Returns a bitfield containing the flags: |
| 3049 | * ERR_FATAL in any fatal error case |
| 3050 | * ERR_ALERT if the reason of the error is available in err |
| 3051 | * ERR_WARN if a warning is available into err |
| 3052 | * The value 0 means there is no error nor warning and |
| 3053 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3054 | */ |
| 3055 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 3056 | { |
| 3057 | int i = 0; |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3058 | int errcode = 0; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3059 | |
| 3060 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3061 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3062 | err && *err ? *err : "", path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3063 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3064 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3065 | } |
| 3066 | |
| 3067 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 3068 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 3069 | err && *err ? *err : "", path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3070 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3071 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3072 | } |
| 3073 | |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3074 | /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */ |
| 3075 | for (i = 0; i < ckch->num_chain_certs; i++) { |
| 3076 | if (!SSL_CTX_add1_chain_cert(ctx, ckch->chain_certs[i])) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3077 | memprintf(err, "%sunable to load chain certificate #%d into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 3078 | err && *err ? *err : "", (i+1), path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3079 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3080 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3081 | } |
| 3082 | } |
| 3083 | |
| 3084 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3085 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3086 | err && *err ? *err : "", path); |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3087 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3088 | } |
| 3089 | |
Emeric Brun | 394701d | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3090 | end: |
| 3091 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3092 | } |
| 3093 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3094 | |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3095 | 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] | 3096 | { |
| 3097 | struct sni_keytype *s_kt = NULL; |
| 3098 | struct ebmb_node *node; |
| 3099 | int i; |
| 3100 | |
| 3101 | for (i = 0; i < trash.size; i++) { |
| 3102 | if (!str[i]) |
| 3103 | break; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3104 | trash.area[i] = tolower(str[i]); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3105 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3106 | trash.area[i] = 0; |
| 3107 | node = ebst_lookup(sni_keytypes, trash.area); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3108 | if (!node) { |
| 3109 | /* CN not found in tree */ |
| 3110 | s_kt = malloc(sizeof(struct sni_keytype) + i + 1); |
| 3111 | /* Using memcpy here instead of strncpy. |
| 3112 | * strncpy will cause sig_abrt errors under certain versions of gcc with -O2 |
| 3113 | * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60792 |
| 3114 | */ |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3115 | if (!s_kt) |
| 3116 | return -1; |
| 3117 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3118 | memcpy(s_kt->name.key, trash.area, i+1); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3119 | s_kt->keytypes = 0; |
| 3120 | ebst_insert(sni_keytypes, &s_kt->name); |
| 3121 | } else { |
| 3122 | /* CN found in tree */ |
| 3123 | s_kt = container_of(node, struct sni_keytype, name); |
| 3124 | } |
| 3125 | |
| 3126 | /* Mark that this CN has the keytype of key_index via keytypes mask */ |
| 3127 | s_kt->keytypes |= 1<<key_index; |
| 3128 | |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3129 | return 0; |
| 3130 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3131 | } |
| 3132 | |
| 3133 | |
| 3134 | /* Given a path that does not exist, try to check for path.rsa, path.dsa and path.ecdsa files. |
| 3135 | * If any are found, group these files into a set of SSL_CTX* |
| 3136 | * based on shared and unique CN and SAN entries. Add these SSL_CTX* to the SNI tree. |
| 3137 | * |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 3138 | * 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] | 3139 | * |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3140 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3141 | * |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3142 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3143 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3144 | char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3145 | { |
| 3146 | char fp[MAXPATHLEN+1] = {0}; |
| 3147 | int n = 0; |
| 3148 | int i = 0; |
| 3149 | struct cert_key_and_chain certs_and_keys[SSL_SOCK_NUM_KEYTYPES] = { {0} }; |
| 3150 | struct eb_root sni_keytypes_map = { {0} }; |
| 3151 | struct ebmb_node *node; |
| 3152 | struct ebmb_node *next; |
| 3153 | /* Array of SSL_CTX pointers corresponding to each possible combo |
| 3154 | * of keytypes |
| 3155 | */ |
| 3156 | struct key_combo_ctx key_combos[SSL_SOCK_POSSIBLE_KT_COMBOS] = { {0} }; |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3157 | int errcode = 0; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3158 | X509_NAME *xname = NULL; |
| 3159 | char *str = NULL; |
| 3160 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3161 | STACK_OF(GENERAL_NAME) *names = NULL; |
| 3162 | #endif |
| 3163 | |
| 3164 | /* Load all possible certs and keys */ |
| 3165 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3166 | struct stat buf; |
| 3167 | |
| 3168 | snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3169 | if (stat(fp, &buf) == 0) { |
| 3170 | 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] | 3171 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3172 | goto end; |
| 3173 | } |
| 3174 | } |
| 3175 | } |
| 3176 | |
| 3177 | /* Process each ckch and update keytypes for each CN/SAN |
| 3178 | * for example, if CN/SAN www.a.com is associated with |
| 3179 | * certs with keytype 0 and 2, then at the end of the loop, |
| 3180 | * www.a.com will have: |
| 3181 | * keyindex = 0 | 1 | 4 = 5 |
| 3182 | */ |
| 3183 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3184 | int ret; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3185 | |
| 3186 | if (!ssl_sock_is_ckch_valid(&certs_and_keys[n])) |
| 3187 | continue; |
| 3188 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3189 | if (fcount) { |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3190 | for (i = 0; i < fcount; i++) { |
| 3191 | ret = ssl_sock_populate_sni_keytypes_hplr(sni_filter[i], &sni_keytypes_map, n); |
| 3192 | if (ret < 0) { |
| 3193 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3194 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3195 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3196 | goto end; |
| 3197 | } |
| 3198 | } |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3199 | } else { |
| 3200 | /* A lot of the following code is OpenSSL boilerplate for processing CN's and SAN's, |
| 3201 | * so the line that contains logic is marked via comments |
| 3202 | */ |
| 3203 | xname = X509_get_subject_name(certs_and_keys[n].cert); |
| 3204 | i = -1; |
| 3205 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3206 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3207 | ASN1_STRING *value; |
| 3208 | value = X509_NAME_ENTRY_get_data(entry); |
| 3209 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3210 | /* Important line is here */ |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3211 | ret = ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3212 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3213 | OPENSSL_free(str); |
| 3214 | str = NULL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3215 | if (ret < 0) { |
| 3216 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3217 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3218 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3219 | goto end; |
| 3220 | } |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3221 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3222 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3223 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3224 | /* Do the above logic for each SAN */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3225 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3226 | names = X509_get_ext_d2i(certs_and_keys[n].cert, NID_subject_alt_name, NULL, NULL); |
| 3227 | if (names) { |
| 3228 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3229 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3230 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3231 | if (name->type == GEN_DNS) { |
| 3232 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
| 3233 | /* Important line is here */ |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3234 | ret = ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3235 | |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3236 | OPENSSL_free(str); |
| 3237 | str = NULL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3238 | if (ret < 0) { |
| 3239 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3240 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3241 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 4801c70 | 2019-10-04 17:36:55 +0200 | [diff] [blame] | 3242 | goto end; |
| 3243 | } |
Emmanuel Hocdet | d294aea | 2016-05-13 11:14:06 +0200 | [diff] [blame] | 3244 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3245 | } |
| 3246 | } |
| 3247 | } |
| 3248 | } |
| 3249 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 3250 | } |
| 3251 | |
| 3252 | /* If no files found, return error */ |
| 3253 | if (eb_is_empty(&sni_keytypes_map)) { |
| 3254 | memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n", |
| 3255 | err && *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3256 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3257 | goto end; |
| 3258 | } |
| 3259 | |
| 3260 | /* We now have a map of CN/SAN to keytypes that are loaded in |
| 3261 | * Iterate through the map to create the SSL_CTX's (if needed) |
| 3262 | * and add each CTX to the SNI tree |
| 3263 | * |
| 3264 | * Some math here: |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 3265 | * There are 2^n - 1 possible combinations, each unique |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3266 | * combination is denoted by the key in the map. Each key |
| 3267 | * has a value between 1 and 2^n - 1. Conveniently, the array |
| 3268 | * of SSL_CTX* is sized 2^n. So, we can simply use the i'th |
| 3269 | * entry in the array to correspond to the unique combo (key) |
| 3270 | * associated with i. This unique key combo (i) will be associated |
| 3271 | * with combos[i-1] |
| 3272 | */ |
| 3273 | |
| 3274 | node = ebmb_first(&sni_keytypes_map); |
| 3275 | while (node) { |
| 3276 | SSL_CTX *cur_ctx; |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3277 | char cur_file[MAXPATHLEN+1]; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3278 | const struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3279 | |
| 3280 | str = (char *)container_of(node, struct sni_keytype, name)->name.key; |
| 3281 | i = container_of(node, struct sni_keytype, name)->keytypes; |
| 3282 | cur_ctx = key_combos[i-1].ctx; |
| 3283 | |
| 3284 | if (cur_ctx == NULL) { |
| 3285 | /* need to create SSL_CTX */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3286 | cur_ctx = SSL_CTX_new(SSLv23_server_method()); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3287 | if (cur_ctx == NULL) { |
| 3288 | memprintf(err, "%sunable to allocate SSL context.\n", |
| 3289 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3290 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3291 | goto end; |
| 3292 | } |
| 3293 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3294 | /* Load all required certs/keys/chains/OCSPs info into SSL_CTX */ |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3295 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3296 | if (i & (1<<n)) { |
| 3297 | /* Key combo contains ckch[n] */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3298 | 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] | 3299 | errcode |= ssl_sock_put_ckch_into_ctx(cur_file, &certs_and_keys[n], cur_ctx, err); |
| 3300 | if (errcode & ERR_CODE) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3301 | SSL_CTX_free(cur_ctx); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3302 | goto end; |
| 3303 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3304 | |
| 3305 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 3306 | /* Load OCSP Info into context */ |
Bertrand Jacquin | 3342309 | 2016-11-13 16:37:13 +0000 | [diff] [blame] | 3307 | if (ssl_sock_load_ocsp(cur_ctx, cur_file) < 0) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3308 | if (err) |
| 3309 | 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] | 3310 | *err ? *err : "", cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3311 | SSL_CTX_free(cur_ctx); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3312 | errcode |= ERR_ALERT | ERR_FATAL; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3313 | goto end; |
| 3314 | } |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 3315 | #elif (defined OPENSSL_IS_BORINGSSL) |
| 3316 | ssl_sock_set_ocsp_response_from_file(cur_ctx, cur_file); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 3317 | #endif |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3318 | } |
| 3319 | } |
| 3320 | |
| 3321 | /* Load DH params into the ctx to support DHE keys */ |
| 3322 | #ifndef OPENSSL_NO_DH |
| 3323 | if (ssl_dh_ptr_index >= 0) |
| 3324 | SSL_CTX_set_ex_data(cur_ctx, ssl_dh_ptr_index, NULL); |
| 3325 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3326 | errcode |= ssl_sock_load_dh_params(cur_ctx, NULL, err); |
| 3327 | if (errcode & ERR_CODE) { |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3328 | if (err) |
| 3329 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3330 | *err ? *err : "", path); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3331 | goto end; |
| 3332 | } |
| 3333 | #endif |
| 3334 | |
| 3335 | /* Update key_combos */ |
| 3336 | key_combos[i-1].ctx = cur_ctx; |
| 3337 | } |
| 3338 | |
| 3339 | /* Update SNI Tree */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3340 | 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] | 3341 | kinfo, str, key_combos[i-1].order); |
| 3342 | if (key_combos[i-1].order < 0) { |
| 3343 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3344 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3345 | goto end; |
| 3346 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3347 | node = ebmb_next(node); |
| 3348 | } |
| 3349 | |
| 3350 | |
| 3351 | /* Mark a default context if none exists, using the ctx that has the most shared keys */ |
| 3352 | if (!bind_conf->default_ctx) { |
| 3353 | for (i = SSL_SOCK_POSSIBLE_KT_COMBOS - 1; i >= 0; i--) { |
| 3354 | if (key_combos[i].ctx) { |
| 3355 | bind_conf->default_ctx = key_combos[i].ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3356 | bind_conf->default_ssl_conf = ssl_conf; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3357 | break; |
| 3358 | } |
| 3359 | } |
| 3360 | } |
| 3361 | |
| 3362 | end: |
| 3363 | |
| 3364 | if (names) |
| 3365 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
| 3366 | |
| 3367 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) |
| 3368 | ssl_sock_free_cert_key_and_chain_contents(&certs_and_keys[n]); |
| 3369 | |
| 3370 | node = ebmb_first(&sni_keytypes_map); |
| 3371 | while (node) { |
| 3372 | next = ebmb_next(node); |
| 3373 | ebmb_delete(node); |
William Lallemand | e92c030 | 2019-10-04 17:24:39 +0200 | [diff] [blame] | 3374 | free(ebmb_entry(node, struct sni_keytype, name)); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3375 | node = next; |
| 3376 | } |
| 3377 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3378 | return errcode; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3379 | } |
| 3380 | #else |
| 3381 | /* This is a dummy, that just logs an error and returns error */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3382 | static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3383 | char **sni_filter, int fcount, char **err) |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3384 | { |
| 3385 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3386 | err && *err ? *err : "", path, strerror(errno)); |
| 3387 | return 1; |
| 3388 | } |
| 3389 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3390 | #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] | 3391 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3392 | /* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if |
| 3393 | * an early error happens and the caller must call SSL_CTX_free() by itelf. |
| 3394 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3395 | static int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s, |
| 3396 | struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3397 | { |
| 3398 | BIO *in; |
| 3399 | X509 *x = NULL, *ca; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3400 | int i, err; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3401 | int ret = -1; |
| 3402 | int order = 0; |
| 3403 | X509_NAME *xname; |
| 3404 | char *str; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3405 | pem_password_cb *passwd_cb; |
| 3406 | void *passwd_cb_userdata; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3407 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3408 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3409 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3410 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3411 | STACK_OF(GENERAL_NAME) *names; |
| 3412 | #endif |
| 3413 | |
| 3414 | in = BIO_new(BIO_s_file()); |
| 3415 | if (in == NULL) |
| 3416 | goto end; |
| 3417 | |
| 3418 | if (BIO_read_filename(in, file) <= 0) |
| 3419 | goto end; |
| 3420 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3421 | |
| 3422 | passwd_cb = SSL_CTX_get_default_passwd_cb(ctx); |
| 3423 | passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx); |
| 3424 | |
| 3425 | 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] | 3426 | if (x == NULL) |
| 3427 | goto end; |
| 3428 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3429 | pkey = X509_get_pubkey(x); |
| 3430 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3431 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3432 | switch(EVP_PKEY_base_id(pkey)) { |
| 3433 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3434 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3435 | break; |
| 3436 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3437 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3438 | break; |
| 3439 | case EVP_PKEY_DSA: |
| 3440 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3441 | break; |
| 3442 | } |
| 3443 | EVP_PKEY_free(pkey); |
| 3444 | } |
| 3445 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3446 | if (fcount) { |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3447 | while (fcount--) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3448 | 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] | 3449 | if (order < 0) |
| 3450 | goto end; |
| 3451 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3452 | } |
| 3453 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3454 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3455 | names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL); |
| 3456 | if (names) { |
| 3457 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3458 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3459 | if (name->type == GEN_DNS) { |
| 3460 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3461 | 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] | 3462 | OPENSSL_free(str); |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3463 | if (order < 0) |
| 3464 | goto end; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3465 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3466 | } |
| 3467 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3468 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3469 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3470 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3471 | xname = X509_get_subject_name(x); |
| 3472 | i = -1; |
| 3473 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3474 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3475 | ASN1_STRING *value; |
| 3476 | |
| 3477 | value = X509_NAME_ENTRY_get_data(entry); |
| 3478 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3479 | 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] | 3480 | OPENSSL_free(str); |
William Lallemand | 24e292c | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3481 | if (order < 0) |
| 3482 | goto end; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3483 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3484 | } |
| 3485 | } |
| 3486 | |
| 3487 | ret = 0; /* the caller must not free the SSL_CTX argument anymore */ |
| 3488 | if (!SSL_CTX_use_certificate(ctx, x)) |
| 3489 | goto end; |
| 3490 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3491 | #ifdef SSL_CTX_clear_extra_chain_certs |
| 3492 | SSL_CTX_clear_extra_chain_certs(ctx); |
| 3493 | #else |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3494 | if (ctx->extra_certs != NULL) { |
| 3495 | sk_X509_pop_free(ctx->extra_certs, X509_free); |
| 3496 | ctx->extra_certs = NULL; |
| 3497 | } |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3498 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3499 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3500 | 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] | 3501 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
| 3502 | X509_free(ca); |
| 3503 | goto end; |
| 3504 | } |
| 3505 | } |
| 3506 | |
| 3507 | err = ERR_get_error(); |
| 3508 | if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) { |
| 3509 | /* we successfully reached the last cert in the file */ |
| 3510 | ret = 1; |
| 3511 | } |
| 3512 | ERR_clear_error(); |
| 3513 | |
| 3514 | end: |
| 3515 | if (x) |
| 3516 | X509_free(x); |
| 3517 | |
| 3518 | if (in) |
| 3519 | BIO_free(in); |
| 3520 | |
| 3521 | return ret; |
| 3522 | } |
| 3523 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3524 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3525 | static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 3526 | char **sni_filter, int fcount, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3527 | { |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3528 | int errcode = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3529 | int ret; |
| 3530 | SSL_CTX *ctx; |
| 3531 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3532 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3533 | if (!ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3534 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3535 | err && *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3536 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3537 | } |
| 3538 | |
| 3539 | if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3540 | memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n", |
| 3541 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3542 | SSL_CTX_free(ctx); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3543 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3544 | } |
| 3545 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3546 | 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] | 3547 | if (ret <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3548 | memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n", |
| 3549 | err && *err ? *err : "", path); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3550 | if (ret < 0) /* serious error, must do that ourselves */ |
| 3551 | SSL_CTX_free(ctx); |
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 | } |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 3554 | |
| 3555 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3556 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3557 | err && *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3558 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 61694ab | 2012-10-26 13:35:33 +0200 | [diff] [blame] | 3559 | } |
| 3560 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3561 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3562 | * the tree, so it will be discovered and cleaned in time. |
| 3563 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3564 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 3565 | /* store a NULL pointer to indicate we have not yet loaded |
| 3566 | a custom DH param file */ |
| 3567 | if (ssl_dh_ptr_index >= 0) { |
| 3568 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3569 | } |
| 3570 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3571 | errcode |= ssl_sock_load_dh_params(ctx, path, err); |
| 3572 | if (errcode & ERR_CODE) { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3573 | if (err) |
| 3574 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3575 | *err ? *err : "", path); |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3576 | return errcode; |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3577 | } |
| 3578 | #endif |
| 3579 | |
Lukas Tribus | e4e30f7 | 2014-12-09 16:32:51 +0100 | [diff] [blame] | 3580 | #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] | 3581 | ret = ssl_sock_load_ocsp(ctx, path); |
| 3582 | if (ret < 0) { |
| 3583 | if (err) |
| 3584 | 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", |
| 3585 | *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3586 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3587 | } |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 3588 | #elif (defined OPENSSL_IS_BORINGSSL) |
| 3589 | ssl_sock_set_ocsp_response_from_file(ctx, path); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 3590 | #endif |
| 3591 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 3592 | #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] | 3593 | if (sctl_ex_index >= 0) { |
| 3594 | ret = ssl_sock_load_sctl(ctx, path); |
| 3595 | if (ret < 0) { |
| 3596 | if (err) |
| 3597 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
| 3598 | *err ? *err : "", path); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3599 | return ERR_ALERT | ERR_FATAL; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 3600 | } |
| 3601 | } |
| 3602 | #endif |
| 3603 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3604 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3605 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3606 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3607 | err && *err ? *err : ""); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3608 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3609 | } |
| 3610 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3611 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3612 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3613 | bind_conf->default_ssl_conf = ssl_conf; |
| 3614 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3615 | |
Emeric Brun | cfc1afe | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3616 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3617 | } |
| 3618 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3619 | |
| 3620 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 3621 | 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] | 3622 | { |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3623 | struct dirent **de_list; |
| 3624 | int i, n; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3625 | DIR *dir; |
| 3626 | struct stat buf; |
Willy Tarreau | ee2663b | 2012-12-06 11:36:59 +0100 | [diff] [blame] | 3627 | char *end; |
| 3628 | char fp[MAXPATHLEN+1]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3629 | int cfgerr = 0; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3630 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3631 | int is_bundle; |
| 3632 | int j; |
| 3633 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3634 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3635 | if (stat(path, &buf) == 0) { |
| 3636 | dir = opendir(path); |
| 3637 | if (!dir) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3638 | 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] | 3639 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3640 | /* strip trailing slashes, including first one */ |
| 3641 | for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--) |
| 3642 | *end = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3643 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3644 | n = scandir(path, &de_list, 0, alphasort); |
| 3645 | if (n < 0) { |
| 3646 | memprintf(err, "%sunable to scan directory '%s' : %s.\n", |
| 3647 | err && *err ? *err : "", path, strerror(errno)); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3648 | cfgerr |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3649 | } |
| 3650 | else { |
| 3651 | for (i = 0; i < n; i++) { |
| 3652 | struct dirent *de = de_list[i]; |
Emeric Brun | 2aab722 | 2014-06-18 18:15:09 +0200 | [diff] [blame] | 3653 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3654 | end = strrchr(de->d_name, '.'); |
| 3655 | if (end && (!strcmp(end, ".issuer") || !strcmp(end, ".ocsp") || !strcmp(end, ".sctl"))) |
| 3656 | goto ignore_entry; |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3657 | |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3658 | snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name); |
| 3659 | if (stat(fp, &buf) != 0) { |
| 3660 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3661 | err && *err ? *err : "", fp, strerror(errno)); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3662 | cfgerr |= ERR_ALERT | ERR_FATAL; |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3663 | goto ignore_entry; |
| 3664 | } |
| 3665 | if (!S_ISREG(buf.st_mode)) |
| 3666 | goto ignore_entry; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3667 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3668 | #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3669 | is_bundle = 0; |
| 3670 | /* Check if current entry in directory is part of a multi-cert bundle */ |
| 3671 | |
| 3672 | if (end) { |
| 3673 | for (j = 0; j < SSL_SOCK_NUM_KEYTYPES; j++) { |
| 3674 | if (!strcmp(end + 1, SSL_SOCK_KEYTYPE_NAMES[j])) { |
| 3675 | is_bundle = 1; |
| 3676 | break; |
| 3677 | } |
| 3678 | } |
| 3679 | |
| 3680 | if (is_bundle) { |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3681 | int dp_len; |
| 3682 | |
| 3683 | dp_len = end - de->d_name; |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3684 | |
| 3685 | /* increment i and free de until we get to a non-bundle cert |
| 3686 | * Note here that we look at de_list[i + 1] before freeing de |
Willy Tarreau | 5b8a865 | 2019-10-29 10:48:50 +0100 | [diff] [blame] | 3687 | * this is important since ignore_entry will free de. This also |
| 3688 | * guarantees that de->d_name continues to hold the same prefix. |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3689 | */ |
Willy Tarreau | 5b8a865 | 2019-10-29 10:48:50 +0100 | [diff] [blame] | 3690 | while (i + 1 < n && !strncmp(de_list[i + 1]->d_name, de->d_name, dp_len)) { |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3691 | free(de); |
| 3692 | i++; |
| 3693 | de = de_list[i]; |
| 3694 | } |
| 3695 | |
Willy Tarreau | 5b8a865 | 2019-10-29 10:48:50 +0100 | [diff] [blame] | 3696 | snprintf(fp, sizeof(fp), "%s/%.*s", path, dp_len, de->d_name); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3697 | cfgerr |= ssl_sock_load_multi_cert(fp, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 63ea846 | 2015-12-09 13:35:14 -0500 | [diff] [blame] | 3698 | /* Successfully processed the bundle */ |
| 3699 | goto ignore_entry; |
| 3700 | } |
| 3701 | } |
| 3702 | |
| 3703 | #endif |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3704 | cfgerr |= ssl_sock_load_cert_file(fp, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3705 | ignore_entry: |
| 3706 | free(de); |
Cyril Bonté | 3180f7b | 2015-01-25 00:16:08 +0100 | [diff] [blame] | 3707 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3708 | free(de_list); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3709 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3710 | closedir(dir); |
| 3711 | return cfgerr; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3712 | } |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3713 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3714 | cfgerr |= ssl_sock_load_multi_cert(path, bind_conf, NULL, NULL, 0, err); |
yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 3715 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3716 | return cfgerr; |
| 3717 | } |
| 3718 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 3719 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3720 | * done once. Zero is returned if the operation fails. No error is returned |
| 3721 | * if the random is said as not implemented, because we expect that openssl |
| 3722 | * will use another method once needed. |
| 3723 | */ |
| 3724 | static int ssl_initialize_random() |
| 3725 | { |
| 3726 | unsigned char random; |
| 3727 | static int random_initialized = 0; |
| 3728 | |
| 3729 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3730 | random_initialized = 1; |
| 3731 | |
| 3732 | return random_initialized; |
| 3733 | } |
| 3734 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3735 | /* release ssl bind conf */ |
| 3736 | void ssl_sock_free_ssl_conf(struct ssl_bind_conf *conf) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3737 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3738 | if (conf) { |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 3739 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3740 | free(conf->npn_str); |
| 3741 | conf->npn_str = NULL; |
| 3742 | #endif |
| 3743 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 3744 | free(conf->alpn_str); |
| 3745 | conf->alpn_str = NULL; |
| 3746 | #endif |
| 3747 | free(conf->ca_file); |
| 3748 | conf->ca_file = NULL; |
| 3749 | free(conf->crl_file); |
| 3750 | conf->crl_file = NULL; |
| 3751 | free(conf->ciphers); |
| 3752 | conf->ciphers = NULL; |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 3753 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 3754 | free(conf->ciphersuites); |
| 3755 | conf->ciphersuites = NULL; |
| 3756 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 3757 | free(conf->curves); |
| 3758 | conf->curves = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3759 | free(conf->ecdhe); |
| 3760 | conf->ecdhe = NULL; |
| 3761 | } |
| 3762 | } |
| 3763 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3764 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3765 | int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
| 3766 | { |
| 3767 | char thisline[CRT_LINESIZE]; |
| 3768 | char path[MAXPATHLEN+1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3769 | FILE *f; |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3770 | struct stat buf; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3771 | int linenum = 0; |
| 3772 | int cfgerr = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3773 | |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3774 | if ((f = fopen(file, "r")) == NULL) { |
| 3775 | memprintf(err, "cannot open file '%s' : %s", file, strerror(errno)); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3776 | return ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3777 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3778 | |
| 3779 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3780 | int arg, newarg, cur_arg, i, ssl_b = 0, ssl_e = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3781 | char *end; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3782 | char *args[MAX_CRT_ARGS + 1]; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3783 | char *line = thisline; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3784 | char *crt_path; |
| 3785 | struct ssl_bind_conf *ssl_conf = NULL; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3786 | |
| 3787 | linenum++; |
| 3788 | end = line + strlen(line); |
| 3789 | if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') { |
| 3790 | /* Check if we reached the limit and the last char is not \n. |
| 3791 | * Watch out for the last line without the terminating '\n'! |
| 3792 | */ |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3793 | memprintf(err, "line %d too long in file '%s', limit is %d characters", |
| 3794 | linenum, file, (int)sizeof(thisline)-1); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3795 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3796 | break; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3797 | } |
| 3798 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3799 | arg = 0; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3800 | newarg = 1; |
| 3801 | while (*line) { |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3802 | if (*line == '#' || *line == '\n' || *line == '\r') { |
| 3803 | /* end of string, end of loop */ |
| 3804 | *line = 0; |
| 3805 | break; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3806 | } else if (isspace(*line)) { |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3807 | newarg = 1; |
| 3808 | *line = 0; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3809 | } else if (*line == '[') { |
| 3810 | if (ssl_b) { |
| 3811 | memprintf(err, "too many '[' on line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3812 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3813 | break; |
| 3814 | } |
| 3815 | if (!arg) { |
| 3816 | 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] | 3817 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3818 | break; |
| 3819 | } |
| 3820 | ssl_b = arg; |
| 3821 | newarg = 1; |
| 3822 | *line = 0; |
| 3823 | } else if (*line == ']') { |
| 3824 | if (ssl_e) { |
| 3825 | memprintf(err, "too many ']' on line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3826 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3827 | break; |
| 3828 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3829 | if (!ssl_b) { |
| 3830 | memprintf(err, "missing '[' in line %d in file '%s'.", linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3831 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3832 | break; |
| 3833 | } |
| 3834 | ssl_e = arg; |
| 3835 | newarg = 1; |
| 3836 | *line = 0; |
| 3837 | } else if (newarg) { |
| 3838 | if (arg == MAX_CRT_ARGS) { |
| 3839 | 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] | 3840 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3841 | break; |
| 3842 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3843 | newarg = 0; |
| 3844 | args[arg++] = line; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3845 | } |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3846 | line++; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3847 | } |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3848 | if (cfgerr & ERR_CODE) |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3849 | break; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3850 | args[arg++] = line; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3851 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3852 | /* empty line */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3853 | if (!*args[0]) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3854 | continue; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3855 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3856 | crt_path = args[0]; |
| 3857 | if (*crt_path != '/' && global_ssl.crt_base) { |
| 3858 | if ((strlen(global_ssl.crt_base) + 1 + strlen(crt_path)) > MAXPATHLEN) { |
| 3859 | memprintf(err, "'%s' : path too long on line %d in file '%s'", |
| 3860 | crt_path, linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3861 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3862 | break; |
| 3863 | } |
| 3864 | snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, crt_path); |
| 3865 | crt_path = path; |
| 3866 | } |
| 3867 | |
| 3868 | ssl_conf = calloc(1, sizeof *ssl_conf); |
| 3869 | cur_arg = ssl_b ? ssl_b : 1; |
| 3870 | while (cur_arg < ssl_e) { |
| 3871 | newarg = 0; |
| 3872 | for (i = 0; ssl_bind_kws[i].kw != NULL; i++) { |
| 3873 | if (strcmp(ssl_bind_kws[i].kw, args[cur_arg]) == 0) { |
| 3874 | newarg = 1; |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3875 | 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] | 3876 | if (cur_arg + 1 + ssl_bind_kws[i].skip > ssl_e) { |
| 3877 | memprintf(err, "ssl args out of '[]' for %s on line %d in file '%s'", |
| 3878 | args[cur_arg], 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 | } |
| 3881 | cur_arg += 1 + ssl_bind_kws[i].skip; |
| 3882 | break; |
| 3883 | } |
| 3884 | } |
| 3885 | if (!cfgerr && !newarg) { |
| 3886 | memprintf(err, "unknown ssl keyword %s on line %d in file '%s'.", |
| 3887 | args[cur_arg], linenum, file); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3888 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3889 | break; |
| 3890 | } |
| 3891 | } |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3892 | |
| 3893 | if (cfgerr & ERR_CODE) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3894 | ssl_sock_free_ssl_conf(ssl_conf); |
| 3895 | free(ssl_conf); |
| 3896 | ssl_conf = NULL; |
| 3897 | break; |
| 3898 | } |
| 3899 | |
| 3900 | if (stat(crt_path, &buf) == 0) { |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3901 | cfgerr |= ssl_sock_load_cert_file(crt_path, bind_conf, ssl_conf, |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3902 | &args[cur_arg], arg - cur_arg - 1, err); |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3903 | } else { |
| 3904 | cfgerr |= ssl_sock_load_multi_cert(crt_path, bind_conf, ssl_conf, |
| 3905 | &args[cur_arg], arg - cur_arg - 1, err); |
yanbzhu | 1b04e5b | 2015-12-02 13:54:14 -0500 | [diff] [blame] | 3906 | } |
| 3907 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 3908 | if (cfgerr & ERR_CODE) { |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3909 | 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] | 3910 | break; |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 3911 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3912 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3913 | fclose(f); |
| 3914 | return cfgerr; |
| 3915 | } |
| 3916 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3917 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3918 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3919 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3920 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3921 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3922 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3923 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3924 | SSL_OP_NO_SSLv2 | |
| 3925 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3926 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3927 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3928 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3929 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3930 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3931 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3932 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3933 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3934 | SSL_MODE_RELEASE_BUFFERS | |
| 3935 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3936 | 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] | 3937 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3938 | int flags = MC_SSL_O_ALL; |
| 3939 | int cfgerr = 0; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3940 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3941 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3942 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3943 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3944 | 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] | 3945 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3946 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3947 | 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] | 3948 | else |
| 3949 | flags = conf_ssl_methods->flags; |
| 3950 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3951 | min = conf_ssl_methods->min; |
| 3952 | max = conf_ssl_methods->max; |
| 3953 | /* start with TLSv10 to remove SSLv3 per default */ |
| 3954 | if (!min && (!max || max >= CONF_TLSV10)) |
| 3955 | min = CONF_TLSV10; |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3956 | /* 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] | 3957 | if (min) |
| 3958 | flags |= (methodVersions[min].flag - 1); |
| 3959 | if (max) |
| 3960 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3961 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3962 | min = max = CONF_TLSV_NONE; |
| 3963 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3964 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3965 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3966 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3967 | if (min) { |
| 3968 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3969 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 3970 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3971 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 3972 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3973 | hole = 0; |
| 3974 | } |
| 3975 | max = i; |
| 3976 | } |
| 3977 | else { |
| 3978 | min = max = i; |
| 3979 | } |
| 3980 | } |
| 3981 | else { |
| 3982 | if (min) |
| 3983 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3984 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3985 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3986 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 3987 | 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] | 3988 | cfgerr += 1; |
| 3989 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 3990 | /* save real min/max in bind_conf */ |
| 3991 | conf_ssl_methods->min = min; |
| 3992 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3993 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3994 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3995 | /* 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] | 3996 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3997 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3998 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3999 | else |
| 4000 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4001 | if (flags & methodVersions[i].flag) |
| 4002 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4003 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4004 | /* 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] | 4005 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4006 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 4007 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4008 | |
| 4009 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 4010 | options |= SSL_OP_NO_TICKET; |
| 4011 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 4012 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 4013 | |
| 4014 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 4015 | options |= SSL_OP_NO_RENEGOTIATION; |
| 4016 | #endif |
| 4017 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4018 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4019 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 4020 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4021 | if (global_ssl.async) |
| 4022 | mode |= SSL_MODE_ASYNC; |
| 4023 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4024 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4025 | if (global_ssl.life_time) |
| 4026 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4027 | |
| 4028 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 4029 | #ifdef OPENSSL_IS_BORINGSSL |
| 4030 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 4031 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 4032 | #elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | e82c1d4 | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 4033 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 4034 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 4035 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 4036 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4037 | #else |
| 4038 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4039 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 4040 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4041 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4042 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4043 | } |
| 4044 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4045 | |
| 4046 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 4047 | { |
| 4048 | if (first == block) { |
| 4049 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4050 | if (first->len > 0) |
| 4051 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 4052 | } |
| 4053 | } |
| 4054 | |
| 4055 | /* return first block from sh_ssl_sess */ |
| 4056 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 4057 | { |
| 4058 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 4059 | |
| 4060 | } |
| 4061 | |
| 4062 | /* store a session into the cache |
| 4063 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 4064 | * data: asn1 encoded session |
| 4065 | * data_len: asn1 encoded session length |
| 4066 | * Returns 1 id session was stored (else 0) |
| 4067 | */ |
| 4068 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 4069 | { |
| 4070 | struct shared_block *first; |
| 4071 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 4072 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4073 | 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] | 4074 | if (!first) { |
| 4075 | /* Could not retrieve enough free blocks to store that session */ |
| 4076 | return 0; |
| 4077 | } |
| 4078 | |
| 4079 | /* STORE the key in the first elem */ |
| 4080 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4081 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 4082 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4083 | |
| 4084 | /* it returns the already existing node |
| 4085 | or current node if none, never returns null */ |
| 4086 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 4087 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 4088 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 4089 | /* release the reserved row */ |
| 4090 | shctx_row_dec_hot(ssl_shctx, first); |
| 4091 | /* replace the previous session already in the tree */ |
| 4092 | sh_ssl_sess = oldsh_ssl_sess; |
| 4093 | /* ignore the previous session data, only use the header */ |
| 4094 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 4095 | shctx_row_inc_hot(ssl_shctx, first); |
| 4096 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4097 | } |
| 4098 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4099 | 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] | 4100 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4101 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4102 | } |
| 4103 | |
| 4104 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4105 | |
| 4106 | return 1; |
| 4107 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4108 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4109 | /* SSL callback used when a new session is created while connecting to a server */ |
| 4110 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4111 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4112 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4113 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4114 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4115 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4116 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4117 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4118 | int len; |
| 4119 | unsigned char *ptr; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4120 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4121 | len = i2d_SSL_SESSION(sess, NULL); |
| 4122 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4123 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4124 | } else { |
| 4125 | free(s->ssl_ctx.reused_sess[tid].ptr); |
| 4126 | ptr = s->ssl_ctx.reused_sess[tid].ptr = malloc(len); |
| 4127 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4128 | } |
| 4129 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4130 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4131 | &ptr); |
| 4132 | } |
| 4133 | } else { |
| 4134 | free(s->ssl_ctx.reused_sess[tid].ptr); |
| 4135 | s->ssl_ctx.reused_sess[tid].ptr = NULL; |
| 4136 | } |
| 4137 | |
| 4138 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4139 | } |
| 4140 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4141 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4142 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4143 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4144 | { |
| 4145 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4146 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4147 | unsigned char *p; |
| 4148 | int data_len; |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4149 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4150 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4151 | |
| 4152 | /* Session id is already stored in to key and session id is known |
| 4153 | * so we dont store it to keep size. |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4154 | * note: SSL_SESSION_set1_id is using |
| 4155 | * a memcpy so we need to use a different pointer |
| 4156 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4157 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4158 | */ |
| 4159 | |
| 4160 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4161 | |
| 4162 | /* copy value in an other buffer */ |
| 4163 | memcpy(encid, sid_data, sid_length); |
| 4164 | |
| 4165 | /* pad with 0 */ |
| 4166 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4167 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4168 | |
| 4169 | /* force length to zero to avoid ASN1 encoding */ |
| 4170 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4171 | |
| 4172 | /* force length to zero to avoid ASN1 encoding */ |
| 4173 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4174 | |
| 4175 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4176 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4177 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4178 | goto err; |
| 4179 | |
| 4180 | p = encsess; |
| 4181 | |
| 4182 | /* process ASN1 session encoding before the lock */ |
| 4183 | i2d_SSL_SESSION(sess, &p); |
| 4184 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4185 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4186 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4187 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4188 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4189 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4190 | err: |
| 4191 | /* reset original length values */ |
Emeric Brun | 7b34de3 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4192 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4193 | 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] | 4194 | |
| 4195 | return 0; /* do not increment session reference count */ |
| 4196 | } |
| 4197 | |
| 4198 | /* 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] | 4199 | 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] | 4200 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4201 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4202 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4203 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4204 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4205 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4206 | |
| 4207 | global.shctx_lookups++; |
| 4208 | |
| 4209 | /* allow the session to be freed automatically by openssl */ |
| 4210 | *do_copy = 0; |
| 4211 | |
| 4212 | /* tree key is zeros padded sessionid */ |
| 4213 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4214 | memcpy(tmpkey, key, key_len); |
| 4215 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4216 | key = tmpkey; |
| 4217 | } |
| 4218 | |
| 4219 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4220 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4221 | |
| 4222 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4223 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4224 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4225 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4226 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4227 | global.shctx_misses++; |
| 4228 | return NULL; |
| 4229 | } |
| 4230 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4231 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4232 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4233 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4234 | 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] | 4235 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4236 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4237 | |
| 4238 | /* decode ASN1 session */ |
| 4239 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4240 | 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] | 4241 | /* Reset session id and session id contenxt */ |
| 4242 | if (sess) { |
| 4243 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4244 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4245 | } |
| 4246 | |
| 4247 | return sess; |
| 4248 | } |
| 4249 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4250 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4251 | /* 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] | 4252 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *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 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4255 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4256 | unsigned int sid_length; |
| 4257 | const unsigned char *sid_data; |
| 4258 | (void)ctx; |
| 4259 | |
| 4260 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4261 | /* tree key is zeros padded sessionid */ |
| 4262 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4263 | memcpy(tmpkey, sid_data, sid_length); |
| 4264 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4265 | sid_data = tmpkey; |
| 4266 | } |
| 4267 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4268 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4269 | |
| 4270 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4271 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4272 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4273 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4274 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4275 | } |
| 4276 | |
| 4277 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4278 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4279 | } |
| 4280 | |
| 4281 | /* Set session cache mode to server and disable openssl internal cache. |
| 4282 | * Set shared cache callbacks on an ssl context. |
| 4283 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4284 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4285 | { |
| 4286 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4287 | |
| 4288 | if (!ssl_shctx) { |
| 4289 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4290 | return; |
| 4291 | } |
| 4292 | |
| 4293 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4294 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4295 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4296 | |
| 4297 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4298 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4299 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4300 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4301 | } |
| 4302 | |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4303 | int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx) |
| 4304 | { |
| 4305 | struct proxy *curproxy = bind_conf->frontend; |
| 4306 | int cfgerr = 0; |
| 4307 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4308 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4309 | const char *conf_ciphers; |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 4310 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4311 | const char *conf_ciphersuites; |
| 4312 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4313 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4314 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4315 | if (ssl_conf) { |
| 4316 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4317 | int i, min, max; |
| 4318 | int flags = MC_SSL_O_ALL; |
| 4319 | |
| 4320 | /* 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] | 4321 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4322 | 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] | 4323 | if (min) |
| 4324 | flags |= (methodVersions[min].flag - 1); |
| 4325 | if (max) |
| 4326 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4327 | min = max = CONF_TLSV_NONE; |
| 4328 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4329 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4330 | if (min) |
| 4331 | max = i; |
| 4332 | else |
| 4333 | min = max = i; |
| 4334 | } |
| 4335 | /* save real min/max */ |
| 4336 | conf_ssl_methods->min = min; |
| 4337 | conf_ssl_methods->max = max; |
| 4338 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4339 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4340 | 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] | 4341 | cfgerr += 1; |
| 4342 | } |
| 4343 | } |
| 4344 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4345 | 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] | 4346 | case SSL_SOCK_VERIFY_NONE: |
| 4347 | verify = SSL_VERIFY_NONE; |
| 4348 | break; |
| 4349 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4350 | verify = SSL_VERIFY_PEER; |
| 4351 | break; |
| 4352 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4353 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4354 | break; |
| 4355 | } |
| 4356 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4357 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4358 | char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file; |
| 4359 | char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file; |
| 4360 | if (ca_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4361 | /* load CAfile to verify */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4362 | if (!SSL_CTX_load_verify_locations(ctx, ca_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4363 | ha_alert("Proxy '%s': unable to load CA file '%s' for bind '%s' at [%s:%d].\n", |
| 4364 | 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] | 4365 | cfgerr++; |
| 4366 | } |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4367 | if (!((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) { |
| 4368 | /* set CA names for client cert request, function returns void */ |
| 4369 | SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(ca_file)); |
| 4370 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4371 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4372 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4373 | ha_alert("Proxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4374 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4375 | cfgerr++; |
| 4376 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4377 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4378 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4379 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4380 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4381 | if (!store || !X509_STORE_load_locations(store, crl_file, NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4382 | ha_alert("Proxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4383 | 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] | 4384 | cfgerr++; |
| 4385 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4386 | else { |
| 4387 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4388 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4389 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4390 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4391 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4392 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4393 | #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] | 4394 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4395 | 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] | 4396 | ha_alert("Proxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4397 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4398 | cfgerr++; |
| 4399 | } |
| 4400 | } |
| 4401 | #endif |
| 4402 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4403 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4404 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4405 | if (conf_ciphers && |
| 4406 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4407 | ha_alert("Proxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4408 | 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] | 4409 | cfgerr++; |
| 4410 | } |
| 4411 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 4412 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4413 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4414 | if (conf_ciphersuites && |
| 4415 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
| 4416 | ha_alert("Proxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4417 | curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4418 | cfgerr++; |
| 4419 | } |
| 4420 | #endif |
| 4421 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4422 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4423 | /* If tune.ssl.default-dh-param has not been set, |
| 4424 | neither has ssl-default-dh-file and no static DH |
| 4425 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4426 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4427 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4428 | (ssl_dh_ptr_index == -1 || |
| 4429 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4430 | STACK_OF(SSL_CIPHER) * ciphers = NULL; |
| 4431 | const SSL_CIPHER * cipher = NULL; |
| 4432 | char cipher_description[128]; |
| 4433 | /* The description of ciphers using an Ephemeral Diffie Hellman key exchange |
| 4434 | contains " Kx=DH " or " Kx=DH(". Beware of " Kx=DH/", |
| 4435 | which is not ephemeral DH. */ |
| 4436 | const char dhe_description[] = " Kx=DH "; |
| 4437 | const char dhe_export_description[] = " Kx=DH("; |
| 4438 | int idx = 0; |
| 4439 | int dhe_found = 0; |
| 4440 | SSL *ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4441 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4442 | ssl = SSL_new(ctx); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4443 | |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4444 | if (ssl) { |
| 4445 | ciphers = SSL_get_ciphers(ssl); |
| 4446 | |
| 4447 | if (ciphers) { |
| 4448 | for (idx = 0; idx < sk_SSL_CIPHER_num(ciphers); idx++) { |
| 4449 | cipher = sk_SSL_CIPHER_value(ciphers, idx); |
| 4450 | if (SSL_CIPHER_description(cipher, cipher_description, sizeof (cipher_description)) == cipher_description) { |
| 4451 | if (strstr(cipher_description, dhe_description) != NULL || |
| 4452 | strstr(cipher_description, dhe_export_description) != NULL) { |
| 4453 | dhe_found = 1; |
| 4454 | break; |
| 4455 | } |
Remi Gacogne | c1eab8c | 2014-06-12 18:20:11 +0200 | [diff] [blame] | 4456 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4457 | } |
| 4458 | } |
Remi Gacogne | 23d5d37 | 2014-10-10 17:04:26 +0200 | [diff] [blame] | 4459 | SSL_free(ssl); |
| 4460 | ssl = NULL; |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4461 | } |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4462 | |
Lukas Tribus | 9013272 | 2014-08-18 00:56:33 +0200 | [diff] [blame] | 4463 | if (dhe_found) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4464 | 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] | 4465 | } |
| 4466 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4467 | global_ssl.default_dh_param = 1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4468 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4469 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4470 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4471 | if (local_dh_1024 == NULL) { |
| 4472 | local_dh_1024 = ssl_get_dh_1024(); |
| 4473 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4474 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4475 | if (local_dh_2048 == NULL) { |
| 4476 | local_dh_2048 = ssl_get_dh_2048(); |
| 4477 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4478 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4479 | if (local_dh_4096 == NULL) { |
| 4480 | local_dh_4096 = ssl_get_dh_4096(); |
| 4481 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4482 | } |
| 4483 | } |
| 4484 | } |
| 4485 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4486 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4487 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4488 | #if HA_OPENSSL_VERSION_NUMBER >= 0x00907000L |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4489 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4490 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4491 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4492 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4493 | ssl_conf_cur = NULL; |
| 4494 | if (ssl_conf && ssl_conf->npn_str) |
| 4495 | ssl_conf_cur = ssl_conf; |
| 4496 | else if (bind_conf->ssl_conf.npn_str) |
| 4497 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4498 | if (ssl_conf_cur) |
| 4499 | 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] | 4500 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4501 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4502 | ssl_conf_cur = NULL; |
| 4503 | if (ssl_conf && ssl_conf->alpn_str) |
| 4504 | ssl_conf_cur = ssl_conf; |
| 4505 | else if (bind_conf->ssl_conf.alpn_str) |
| 4506 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4507 | if (ssl_conf_cur) |
| 4508 | 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] | 4509 | #endif |
Lukas Tribus | d13e925 | 2019-11-24 18:20:40 +0100 | [diff] [blame] | 4510 | #if ((HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) || defined(LIBRESSL_VERSION_NUMBER)) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4511 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4512 | if (conf_curves) { |
| 4513 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4514 | ha_alert("Proxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4515 | 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] | 4516 | cfgerr++; |
| 4517 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4518 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4519 | } |
| 4520 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4521 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4522 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4523 | int i; |
| 4524 | EC_KEY *ecdh; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4525 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4526 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4527 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4528 | NULL); |
| 4529 | |
| 4530 | if (ecdhe == NULL) { |
Eric Salama | 27c21cd | 2019-11-20 11:33:40 +0100 | [diff] [blame] | 4531 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4532 | return cfgerr; |
| 4533 | } |
| 4534 | #else |
| 4535 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4536 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4537 | ECDHE_DEFAULT_CURVE); |
| 4538 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4539 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4540 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4541 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4542 | ha_alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4543 | curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4544 | cfgerr++; |
| 4545 | } |
| 4546 | else { |
| 4547 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4548 | EC_KEY_free(ecdh); |
| 4549 | } |
| 4550 | } |
| 4551 | #endif |
| 4552 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4553 | return cfgerr; |
| 4554 | } |
| 4555 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4556 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4557 | { |
| 4558 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4559 | size_t prefixlen, suffixlen; |
| 4560 | |
| 4561 | /* Trivial case */ |
| 4562 | if (strcmp(pattern, hostname) == 0) |
| 4563 | return 1; |
| 4564 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4565 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4566 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4567 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4568 | pattern_wildcard = NULL; |
| 4569 | pattern_left_label_end = pattern; |
| 4570 | while (*pattern_left_label_end != '.') { |
| 4571 | switch (*pattern_left_label_end) { |
| 4572 | case 0: |
| 4573 | /* End of label not found */ |
| 4574 | return 0; |
| 4575 | case '*': |
| 4576 | /* If there is more than one wildcards */ |
| 4577 | if (pattern_wildcard) |
| 4578 | return 0; |
| 4579 | pattern_wildcard = pattern_left_label_end; |
| 4580 | break; |
| 4581 | } |
| 4582 | pattern_left_label_end++; |
| 4583 | } |
| 4584 | |
| 4585 | /* If it's not trivial and there is no wildcard, it can't |
| 4586 | * match */ |
| 4587 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4588 | return 0; |
| 4589 | |
| 4590 | /* Make sure all labels match except the leftmost */ |
| 4591 | hostname_left_label_end = strchr(hostname, '.'); |
| 4592 | if (!hostname_left_label_end |
| 4593 | || strcmp(pattern_left_label_end, hostname_left_label_end) != 0) |
| 4594 | return 0; |
| 4595 | |
| 4596 | /* Make sure the leftmost label of the hostname is long enough |
| 4597 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4598 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4599 | return 0; |
| 4600 | |
| 4601 | /* Finally compare the string on either side of the |
| 4602 | * wildcard */ |
| 4603 | prefixlen = pattern_wildcard - pattern; |
| 4604 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4605 | if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0)) |
| 4606 | || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4607 | return 0; |
| 4608 | |
| 4609 | return 1; |
| 4610 | } |
| 4611 | |
| 4612 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4613 | { |
| 4614 | SSL *ssl; |
| 4615 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4616 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4617 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4618 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4619 | |
| 4620 | int depth; |
| 4621 | X509 *cert; |
| 4622 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4623 | int i; |
| 4624 | X509_NAME *cert_subject; |
| 4625 | char *str; |
| 4626 | |
| 4627 | if (ok == 0) |
| 4628 | return ok; |
| 4629 | |
| 4630 | 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] | 4631 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4632 | ssl_ctx = conn->xprt_ctx; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4633 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4634 | /* We're checking if the provided hostnames match the desired one. The |
| 4635 | * desired hostname comes from the SNI we presented if any, or if not |
| 4636 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4637 | * directive. If neither is set, we don't care about the name so the |
| 4638 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4639 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4640 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4641 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4642 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4643 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4644 | if (!servername) |
| 4645 | return ok; |
| 4646 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4647 | |
| 4648 | /* We only need to verify the CN on the actual server cert, |
| 4649 | * not the indirect CAs */ |
| 4650 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4651 | if (depth != 0) |
| 4652 | return ok; |
| 4653 | |
| 4654 | /* At this point, the cert is *not* OK unless we can find a |
| 4655 | * hostname match */ |
| 4656 | ok = 0; |
| 4657 | |
| 4658 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4659 | /* It seems like this might happen if verify peer isn't set */ |
| 4660 | if (!cert) |
| 4661 | return ok; |
| 4662 | |
| 4663 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4664 | if (alt_names) { |
| 4665 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4666 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4667 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4668 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4669 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4670 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4671 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4672 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4673 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4674 | OPENSSL_free(str); |
| 4675 | } |
| 4676 | } |
| 4677 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4678 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4679 | } |
| 4680 | |
| 4681 | cert_subject = X509_get_subject_name(cert); |
| 4682 | i = -1; |
| 4683 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4684 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4685 | ASN1_STRING *value; |
| 4686 | value = X509_NAME_ENTRY_get_data(entry); |
| 4687 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4688 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4689 | OPENSSL_free(str); |
| 4690 | } |
| 4691 | } |
| 4692 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4693 | /* report the mismatch and indicate if SNI was used or not */ |
| 4694 | if (!ok && !conn->err_code) |
| 4695 | 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] | 4696 | return ok; |
| 4697 | } |
| 4698 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4699 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4700 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4701 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4702 | struct proxy *curproxy = srv->proxy; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4703 | int cfgerr = 0; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 4704 | long options = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4705 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4706 | SSL_OP_NO_SSLv2 | |
| 4707 | SSL_OP_NO_COMPRESSION; |
Remi Gacogne | af5c3da | 2014-05-19 10:29:58 +0200 | [diff] [blame] | 4708 | long mode = |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4709 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4710 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 4711 | SSL_MODE_RELEASE_BUFFERS | |
| 4712 | SSL_MODE_SMALL_BUFFERS; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4713 | int verify = SSL_VERIFY_NONE; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4714 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4715 | struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4716 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4717 | int flags = MC_SSL_O_ALL; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4718 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4719 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4720 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4721 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4722 | cfgerr++; |
| 4723 | } |
| 4724 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4725 | /* Automatic memory computations need to know we use SSL there */ |
| 4726 | global.ssl_used_backend = 1; |
| 4727 | |
| 4728 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4729 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4730 | 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] | 4731 | ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n", |
| 4732 | curproxy->id, srv->id, |
| 4733 | srv->conf.file, srv->conf.line); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4734 | cfgerr++; |
| 4735 | return cfgerr; |
| 4736 | } |
| 4737 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4738 | if (srv->use_ssl) |
| 4739 | srv->xprt = &ssl_sock; |
| 4740 | if (srv->check.use_ssl) |
Cyril Bonté | 9ce1311 | 2014-11-15 22:41:27 +0100 | [diff] [blame] | 4741 | srv->check.xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4742 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4743 | ctx = SSL_CTX_new(SSLv23_client_method()); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4744 | if (!ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4745 | ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 4746 | proxy_type_str(curproxy), curproxy->id, |
| 4747 | srv->id); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4748 | cfgerr++; |
| 4749 | return cfgerr; |
| 4750 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4751 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4752 | 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] | 4753 | ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. " |
| 4754 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4755 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4756 | else |
| 4757 | flags = conf_ssl_methods->flags; |
| 4758 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4759 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4760 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4761 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4762 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4763 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4764 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4765 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4766 | min = max = CONF_TLSV_NONE; |
| 4767 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4768 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4769 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4770 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4771 | if (min) { |
| 4772 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4773 | ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
| 4774 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4775 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4776 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4777 | hole = 0; |
| 4778 | } |
| 4779 | max = i; |
| 4780 | } |
| 4781 | else { |
| 4782 | min = max = i; |
| 4783 | } |
| 4784 | } |
| 4785 | else { |
| 4786 | if (min) |
| 4787 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4788 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4789 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4790 | ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
| 4791 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4792 | cfgerr += 1; |
| 4793 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4794 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4795 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4796 | /* 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] | 4797 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4798 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4799 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4800 | else |
| 4801 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4802 | if (flags & methodVersions[i].flag) |
| 4803 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4804 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4805 | /* 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] | 4806 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4807 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4808 | #endif |
| 4809 | |
| 4810 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4811 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4812 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4813 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 4814 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4815 | if (global_ssl.async) |
| 4816 | mode |= SSL_MODE_ASYNC; |
| 4817 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4818 | SSL_CTX_set_mode(ctx, mode); |
| 4819 | srv->ssl_ctx.ctx = ctx; |
| 4820 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4821 | if (srv->ssl_ctx.client_crt) { |
| 4822 | 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] | 4823 | ha_alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n", |
| 4824 | proxy_type_str(curproxy), curproxy->id, |
| 4825 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4826 | cfgerr++; |
| 4827 | } |
| 4828 | 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] | 4829 | ha_alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n", |
| 4830 | proxy_type_str(curproxy), curproxy->id, |
| 4831 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4832 | cfgerr++; |
| 4833 | } |
| 4834 | else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4835 | ha_alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 4836 | proxy_type_str(curproxy), curproxy->id, |
| 4837 | srv->id, srv->ssl_ctx.client_crt); |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 4838 | cfgerr++; |
| 4839 | } |
| 4840 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4841 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4842 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 4843 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4844 | switch (srv->ssl_ctx.verify) { |
| 4845 | case SSL_SOCK_VERIFY_NONE: |
| 4846 | verify = SSL_VERIFY_NONE; |
| 4847 | break; |
| 4848 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4849 | verify = SSL_VERIFY_PEER; |
| 4850 | break; |
| 4851 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4852 | SSL_CTX_set_verify(srv->ssl_ctx.ctx, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4853 | verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4854 | (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] | 4855 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4856 | if (srv->ssl_ctx.ca_file) { |
| 4857 | /* load CAfile to verify */ |
| 4858 | 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] | 4859 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to load CA file '%s'.\n", |
| 4860 | curproxy->id, srv->id, |
| 4861 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4862 | cfgerr++; |
| 4863 | } |
| 4864 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4865 | else { |
| 4866 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4867 | 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", |
| 4868 | curproxy->id, srv->id, |
| 4869 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4870 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4871 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n", |
| 4872 | curproxy->id, srv->id, |
| 4873 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4874 | cfgerr++; |
| 4875 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4876 | #ifdef X509_V_FLAG_CRL_CHECK |
| 4877 | if (srv->ssl_ctx.crl_file) { |
| 4878 | X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx); |
| 4879 | |
| 4880 | 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] | 4881 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n", |
| 4882 | curproxy->id, srv->id, |
| 4883 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4884 | cfgerr++; |
| 4885 | } |
| 4886 | else { |
| 4887 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4888 | } |
| 4889 | } |
| 4890 | #endif |
| 4891 | } |
| 4892 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4893 | SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_CLIENT | |
| 4894 | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 4895 | 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] | 4896 | if (srv->ssl_ctx.ciphers && |
| 4897 | !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] | 4898 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 4899 | curproxy->id, srv->id, |
| 4900 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4901 | cfgerr++; |
| 4902 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4903 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 4904 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4905 | if (srv->ssl_ctx.ciphersuites && |
Pierre Cheynier | bc34cd1 | 2019-03-21 16:15:47 +0000 | [diff] [blame] | 4906 | !SSL_CTX_set_ciphersuites(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphersuites)) { |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4907 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 4908 | curproxy->id, srv->id, |
| 4909 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites); |
| 4910 | cfgerr++; |
| 4911 | } |
| 4912 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 4913 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 4914 | if (srv->ssl_ctx.npn_str) |
| 4915 | SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, srv); |
| 4916 | #endif |
| 4917 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 4918 | if (srv->ssl_ctx.alpn_str) |
| 4919 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 4920 | #endif |
| 4921 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4922 | |
| 4923 | return cfgerr; |
| 4924 | } |
| 4925 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4926 | /* 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] | 4927 | * be NULL, in which case nothing is done. Returns the number of errors |
| 4928 | * encountered. |
| 4929 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4930 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4931 | { |
| 4932 | struct ebmb_node *node; |
| 4933 | struct sni_ctx *sni; |
| 4934 | int err = 0; |
| 4935 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4936 | /* Automatic memory computations need to know we use SSL there */ |
| 4937 | global.ssl_used_frontend = 1; |
| 4938 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4939 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4940 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4941 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4942 | err++; |
| 4943 | } |
| 4944 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 4945 | if (!bind_conf->initial_ctx) { |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4946 | err += ssl_sock_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4947 | /* It should not be necessary to call this function, but it's |
| 4948 | necessary first to check and move all initialisation related |
| 4949 | to initial_ctx in ssl_sock_initial_ctx. */ |
| 4950 | err += ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx); |
| 4951 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4952 | if (bind_conf->default_ctx) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4953 | 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] | 4954 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4955 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4956 | while (node) { |
| 4957 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4958 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4959 | /* only initialize the CTX on its first occurrence and |
| 4960 | if it is not the default_ctx */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4961 | err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4962 | node = ebmb_next(node); |
| 4963 | } |
| 4964 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4965 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4966 | while (node) { |
| 4967 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4968 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4969 | /* only initialize the CTX on its first occurrence and |
| 4970 | if it is not the default_ctx */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4971 | err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4972 | node = ebmb_next(node); |
| 4973 | } |
| 4974 | return err; |
| 4975 | } |
| 4976 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4977 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 4978 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 4979 | * alerts are directly emitted since the rest of the stack does it below. |
| 4980 | */ |
| 4981 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 4982 | { |
| 4983 | struct proxy *px = bind_conf->frontend; |
| 4984 | int alloc_ctx; |
| 4985 | int err; |
| 4986 | |
| 4987 | if (!bind_conf->is_ssl) { |
| 4988 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4989 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 4990 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4991 | } |
| 4992 | return 0; |
| 4993 | } |
| 4994 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4995 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4996 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 4997 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4998 | } |
| 4999 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5000 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5001 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5002 | return -1; |
| 5003 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5004 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5005 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5006 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5007 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5008 | sizeof(*sh_ssl_sess_tree), |
| 5009 | ((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] | 5010 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5011 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5012 | 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"); |
| 5013 | else |
| 5014 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5015 | return -1; |
| 5016 | } |
| 5017 | /* free block callback */ |
| 5018 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5019 | /* init the root tree within the extra space */ |
| 5020 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5021 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5022 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5023 | err = 0; |
| 5024 | /* initialize all certificate contexts */ |
| 5025 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5026 | |
| 5027 | /* initialize CA variables if the certificates generation is enabled */ |
| 5028 | err += ssl_sock_load_ca(bind_conf); |
| 5029 | |
| 5030 | return -err; |
| 5031 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5032 | |
| 5033 | /* release ssl context allocated for servers. */ |
| 5034 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5035 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5036 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 5037 | if (srv->ssl_ctx.alpn_str) |
| 5038 | free(srv->ssl_ctx.alpn_str); |
| 5039 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5040 | #ifdef OPENSSL_NPN_NEGOTIATED |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5041 | if (srv->ssl_ctx.npn_str) |
| 5042 | free(srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5043 | #endif |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5044 | if (srv->ssl_ctx.ctx) |
| 5045 | SSL_CTX_free(srv->ssl_ctx.ctx); |
| 5046 | } |
| 5047 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5048 | /* 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] | 5049 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5050 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5051 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5052 | { |
| 5053 | struct ebmb_node *node, *back; |
| 5054 | struct sni_ctx *sni; |
| 5055 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5056 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5057 | while (node) { |
| 5058 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5059 | back = ebmb_next(node); |
| 5060 | ebmb_delete(node); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5061 | if (!sni->order) { /* only free the CTX on its first occurrence */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5062 | SSL_CTX_free(sni->ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5063 | ssl_sock_free_ssl_conf(sni->conf); |
| 5064 | free(sni->conf); |
| 5065 | sni->conf = NULL; |
| 5066 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5067 | free(sni); |
| 5068 | node = back; |
| 5069 | } |
| 5070 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5071 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5072 | while (node) { |
| 5073 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5074 | back = ebmb_next(node); |
| 5075 | ebmb_delete(node); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5076 | if (!sni->order) { /* only free the CTX on its first occurrence */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5077 | SSL_CTX_free(sni->ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5078 | ssl_sock_free_ssl_conf(sni->conf); |
| 5079 | free(sni->conf); |
| 5080 | sni->conf = NULL; |
| 5081 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5082 | free(sni); |
| 5083 | node = back; |
| 5084 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5085 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5086 | bind_conf->initial_ctx = NULL; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5087 | bind_conf->default_ctx = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5088 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5089 | } |
| 5090 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5091 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5092 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5093 | { |
| 5094 | ssl_sock_free_ca(bind_conf); |
| 5095 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5096 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5097 | free(bind_conf->ca_sign_file); |
| 5098 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5099 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5100 | free(bind_conf->keys_ref->filename); |
| 5101 | free(bind_conf->keys_ref->tlskeys); |
| 5102 | LIST_DEL(&bind_conf->keys_ref->list); |
| 5103 | free(bind_conf->keys_ref); |
| 5104 | } |
| 5105 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5106 | bind_conf->ca_sign_pass = NULL; |
| 5107 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5108 | } |
| 5109 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5110 | /* Load CA cert file and private key used to generate certificates */ |
| 5111 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5112 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5113 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5114 | struct proxy *px = bind_conf->frontend; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5115 | FILE *fp; |
| 5116 | X509 *cacert = NULL; |
| 5117 | EVP_PKEY *capkey = NULL; |
| 5118 | int err = 0; |
| 5119 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 5120 | if (!bind_conf->generate_certs) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5121 | return err; |
| 5122 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5123 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5124 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5125 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5126 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5127 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5128 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5129 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5130 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5131 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5132 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5133 | "no CA certificate File configured at [%s:%d].\n", |
| 5134 | px->id, bind_conf->file, bind_conf->line); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5135 | goto load_error; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5136 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5137 | |
| 5138 | /* read in the CA certificate */ |
| 5139 | if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5140 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 5141 | 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] | 5142 | goto load_error; |
| 5143 | } |
| 5144 | if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5145 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n", |
| 5146 | 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] | 5147 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5148 | } |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5149 | rewind(fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5150 | 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] | 5151 | ha_alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n", |
| 5152 | 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] | 5153 | goto read_error; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5154 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5155 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5156 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5157 | bind_conf->ca_sign_cert = cacert; |
| 5158 | bind_conf->ca_sign_pkey = capkey; |
| 5159 | return err; |
| 5160 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5161 | read_error: |
| 5162 | fclose (fp); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5163 | if (capkey) EVP_PKEY_free(capkey); |
| 5164 | if (cacert) X509_free(cacert); |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5165 | load_error: |
| 5166 | bind_conf->generate_certs = 0; |
| 5167 | err++; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5168 | return err; |
| 5169 | } |
| 5170 | |
| 5171 | /* Release CA cert and private key used to generate certificated */ |
| 5172 | void |
| 5173 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5174 | { |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5175 | if (bind_conf->ca_sign_pkey) |
| 5176 | EVP_PKEY_free(bind_conf->ca_sign_pkey); |
| 5177 | if (bind_conf->ca_sign_cert) |
| 5178 | X509_free(bind_conf->ca_sign_cert); |
Willy Tarreau | 94ff03a | 2016-12-22 17:57:46 +0100 | [diff] [blame] | 5179 | bind_conf->ca_sign_pkey = NULL; |
| 5180 | bind_conf->ca_sign_cert = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5181 | } |
| 5182 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5183 | /* |
| 5184 | * This function is called if SSL * context is not yet allocated. The function |
| 5185 | * is designed to be called before any other data-layer operation and sets the |
| 5186 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5187 | * It returns 0 on success and -1 in error case. |
| 5188 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5189 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5190 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5191 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5192 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5193 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5194 | return 0; |
| 5195 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5196 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5197 | return 0; |
| 5198 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5199 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5200 | if (!ctx) { |
| 5201 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5202 | return -1; |
| 5203 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5204 | ctx->wait_event.tasklet = tasklet_new(); |
| 5205 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5206 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5207 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5208 | return -1; |
| 5209 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5210 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5211 | ctx->wait_event.tasklet->context = ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5212 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5213 | ctx->sent_early_data = 0; |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5214 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5215 | ctx->conn = conn; |
Olivier Houchard | 81284e6 | 2019-06-06 13:21:23 +0200 | [diff] [blame] | 5216 | ctx->send_wait = NULL; |
| 5217 | ctx->recv_wait = NULL; |
Emeric Brun | 87cfd66 | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5218 | ctx->xprt_st = 0; |
| 5219 | ctx->xprt_ctx = NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5220 | |
| 5221 | /* Only work with sockets for now, this should be adapted when we'll |
| 5222 | * add QUIC support. |
| 5223 | */ |
| 5224 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5225 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5226 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5227 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5228 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5229 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5230 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 5231 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5232 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5233 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5234 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5235 | /* If it is in client mode initiate SSL session |
| 5236 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5237 | if (objt_server(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5238 | int may_retry = 1; |
| 5239 | |
| 5240 | retry_connect: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5241 | /* Alloc a new SSL session ctx */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5242 | ctx->ssl = SSL_new(__objt_server(conn->target)->ssl_ctx.ctx); |
| 5243 | if (!ctx->ssl) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5244 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5245 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5246 | goto retry_connect; |
| 5247 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5248 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5249 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5250 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5251 | ctx->bio = BIO_new(ha_meth); |
| 5252 | if (!ctx->bio) { |
Olivier Houchard | b451b97 | 2020-01-24 15:17:38 +0100 | [diff] [blame] | 5253 | SSL_free(ctx->ssl); |
| 5254 | ctx->ssl = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5255 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5256 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5257 | goto retry_connect; |
| 5258 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5259 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5260 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5261 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5262 | BIO_set_data(ctx->bio, ctx); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5263 | SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5264 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5265 | /* set connection pointer */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5266 | if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) { |
| 5267 | SSL_free(ctx->ssl); |
| 5268 | ctx->ssl = NULL; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5269 | conn->xprt_ctx = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5270 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5271 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5272 | goto retry_connect; |
| 5273 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5274 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5275 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5276 | } |
| 5277 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5278 | SSL_set_connect_state(ctx->ssl); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5279 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5280 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5281 | 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] | 5282 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5283 | SSL_SESSION_free(sess); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5284 | free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
| 5285 | __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5286 | } else if (sess) { |
| 5287 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5288 | } |
| 5289 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5290 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5291 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5292 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5293 | |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 5294 | _HA_ATOMIC_ADD(&sslconns, 1); |
| 5295 | _HA_ATOMIC_ADD(&totalsslconns, 1); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5296 | *xprt_ctx = ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5297 | /* Start the handshake */ |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5298 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5299 | if (conn->flags & CO_FL_ERROR) |
| 5300 | goto err; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5301 | return 0; |
| 5302 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5303 | else if (objt_listener(conn->target)) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5304 | int may_retry = 1; |
| 5305 | |
| 5306 | retry_accept: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5307 | /* Alloc a new SSL session ctx */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5308 | ctx->ssl = SSL_new(__objt_listener(conn->target)->bind_conf->initial_ctx); |
| 5309 | if (!ctx->ssl) { |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5310 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5311 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5312 | goto retry_accept; |
| 5313 | } |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5314 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5315 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5316 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5317 | ctx->bio = BIO_new(ha_meth); |
| 5318 | if (!ctx->bio) { |
Olivier Houchard | b451b97 | 2020-01-24 15:17:38 +0100 | [diff] [blame] | 5319 | SSL_free(ctx->ssl); |
| 5320 | ctx->ssl = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5321 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5322 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5323 | goto retry_accept; |
| 5324 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5325 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5326 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5327 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5328 | BIO_set_data(ctx->bio, ctx); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5329 | SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5330 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5331 | /* set connection pointer */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5332 | if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) { |
| 5333 | SSL_free(ctx->ssl); |
| 5334 | ctx->ssl = NULL; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5335 | if (may_retry--) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 5336 | pool_gc(NULL); |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5337 | goto retry_accept; |
| 5338 | } |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5339 | conn->err_code = CO_ER_SSL_NO_MEM; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5340 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5341 | } |
| 5342 | |
Frédéric Lécaille | 583362f | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5343 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5344 | if (__objt_listener(conn->target)->bind_conf->ssl_conf.early_data) { |
| 5345 | b_alloc(&ctx->early_buf); |
| 5346 | SSL_set_max_early_data(ctx->ssl, |
| 5347 | /* Only allow early data if we managed to allocate |
| 5348 | * a buffer. |
| 5349 | */ |
| 5350 | (!b_is_null(&ctx->early_buf)) ? |
| 5351 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5352 | } |
| 5353 | #endif |
| 5354 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5355 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5356 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5357 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5358 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Emmanuel Hocdet | 510fce5 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 5359 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5360 | conn->flags |= CO_FL_EARLY_SSL_HS; |
| 5361 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5362 | |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 5363 | _HA_ATOMIC_ADD(&sslconns, 1); |
| 5364 | _HA_ATOMIC_ADD(&totalsslconns, 1); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5365 | *xprt_ctx = ctx; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5366 | /* Start the handshake */ |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5367 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5368 | if (conn->flags & CO_FL_ERROR) |
| 5369 | goto err; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5370 | return 0; |
| 5371 | } |
| 5372 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5373 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5374 | err: |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5375 | if (ctx && ctx->wait_event.tasklet) |
| 5376 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5377 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5378 | return -1; |
| 5379 | } |
| 5380 | |
| 5381 | |
| 5382 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5383 | * updates the FD status if it wants some polling before being called again. |
| 5384 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5385 | * otherwise it returns non-zero and removes itself from the connection's |
| 5386 | * flags (the bit is provided in <flag> by the caller). |
| 5387 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5388 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5389 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5390 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5391 | int ret; |
| 5392 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5393 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5394 | return 0; |
| 5395 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5396 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5397 | goto out_error; |
| 5398 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5399 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10101000L |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5400 | /* |
| 5401 | * Check if we have early data. If we do, we have to read them |
| 5402 | * before SSL_do_handshake() is called, And there's no way to |
| 5403 | * detect early data, except to try to read them |
| 5404 | */ |
| 5405 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5406 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5407 | |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5408 | while (1) { |
| 5409 | ret = SSL_read_early_data(ctx->ssl, |
| 5410 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5411 | &read_data); |
| 5412 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5413 | goto check_error; |
| 5414 | if (read_data > 0) { |
| 5415 | conn->flags |= CO_FL_EARLY_DATA; |
| 5416 | b_add(&ctx->early_buf, read_data); |
| 5417 | } |
| 5418 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5419 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5420 | if (!b_data(&ctx->early_buf)) |
| 5421 | b_free(&ctx->early_buf); |
| 5422 | break; |
| 5423 | } |
| 5424 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5425 | } |
| 5426 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5427 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5428 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5429 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5430 | * the reneg handshake. |
| 5431 | * Here we use SSL_peek as a workaround for reneg. |
| 5432 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5433 | if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5434 | char c; |
| 5435 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5436 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5437 | if (ret <= 0) { |
| 5438 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5439 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5440 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5441 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5442 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5443 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5444 | 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] | 5445 | return 0; |
| 5446 | } |
| 5447 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5448 | /* handshake may have been completed but we have |
| 5449 | * no more data to read. |
| 5450 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5451 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5452 | ret = 1; |
| 5453 | goto reneg_ok; |
| 5454 | } |
| 5455 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5456 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5457 | 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] | 5458 | return 0; |
| 5459 | } |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5460 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5461 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5462 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5463 | return 0; |
| 5464 | } |
| 5465 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5466 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5467 | /* if errno is null, then connection was successfully established */ |
| 5468 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5469 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5470 | if (!conn->err_code) { |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5471 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5472 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5473 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5474 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5475 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5476 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5477 | /* 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] | 5478 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5479 | empty_handshake = state == TLS_ST_BEFORE; |
| 5480 | #else |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5481 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5482 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5483 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5484 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5485 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5486 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5487 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5488 | else |
| 5489 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5490 | } |
| 5491 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5492 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5493 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5494 | else |
| 5495 | conn->err_code = CO_ER_SSL_ABORT; |
| 5496 | } |
| 5497 | } |
| 5498 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5499 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5500 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5501 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5502 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5503 | } |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5504 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5505 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5506 | goto out_error; |
| 5507 | } |
| 5508 | else { |
| 5509 | /* Fail on all other handshake errors */ |
| 5510 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5511 | * buffer, causing an RST to be emitted upon close() on |
| 5512 | * TCP sockets. We first try to drain possibly pending |
| 5513 | * data to avoid this as much as possible. |
| 5514 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 5515 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5516 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5517 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5518 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5519 | goto out_error; |
| 5520 | } |
| 5521 | } |
| 5522 | /* read some data: consider handshake completed */ |
| 5523 | goto reneg_ok; |
| 5524 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5525 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5526 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5527 | if (ret != 1) { |
| 5528 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5529 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5530 | |
| 5531 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5532 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5533 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5534 | 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] | 5535 | return 0; |
| 5536 | } |
| 5537 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5538 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5539 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5540 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5541 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5542 | return 0; |
| 5543 | } |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5544 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5545 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5546 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5547 | return 0; |
| 5548 | } |
| 5549 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5550 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5551 | /* if errno is null, then connection was successfully established */ |
| 5552 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5553 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5554 | if (!conn->err_code) { |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5555 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5556 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5557 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5558 | #else |
| 5559 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5560 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5561 | /* 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] | 5562 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5563 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5564 | #else |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5565 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5566 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5567 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5568 | if (empty_handshake) { |
| 5569 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5570 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5571 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5572 | else |
| 5573 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5574 | } |
| 5575 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5576 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5577 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5578 | else |
| 5579 | conn->err_code = CO_ER_SSL_ABORT; |
| 5580 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5581 | } |
| 5582 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5583 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5584 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5585 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5586 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5587 | } |
Lukas Tribus | 5db881f | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5588 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5589 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5590 | goto out_error; |
| 5591 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5592 | else { |
| 5593 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5594 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5595 | * buffer, causing an RST to be emitted upon close() on |
| 5596 | * TCP sockets. We first try to drain possibly pending |
| 5597 | * data to avoid this as much as possible. |
| 5598 | */ |
Willy Tarreau | d85c485 | 2015-03-13 00:40:28 +0100 | [diff] [blame] | 5599 | conn_sock_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5600 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5601 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5602 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5603 | goto out_error; |
| 5604 | } |
| 5605 | } |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5606 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5607 | else { |
| 5608 | /* |
| 5609 | * If the server refused the early data, we have to send a |
| 5610 | * 425 to the client, as we no longer have the data to sent |
| 5611 | * them again. |
| 5612 | */ |
| 5613 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5614 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5615 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5616 | goto out_error; |
| 5617 | } |
| 5618 | } |
| 5619 | } |
| 5620 | #endif |
| 5621 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5622 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5623 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5624 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5625 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5626 | /* ASYNC engine API doesn't support moving read/write |
| 5627 | * buffers. So we disable ASYNC mode right after |
| 5628 | * the handshake to avoid buffer oveflows. |
| 5629 | */ |
| 5630 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5631 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5632 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5633 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5634 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5635 | if (objt_server(conn->target)) { |
| 5636 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5637 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5638 | 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] | 5639 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5640 | else { |
| 5641 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5642 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5643 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5644 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5645 | } |
| 5646 | |
| 5647 | /* The connection is now established at both layers, it's time to leave */ |
| 5648 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5649 | return 1; |
| 5650 | |
| 5651 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5652 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5653 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5654 | ERR_clear_error(); |
| 5655 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5656 | /* free resumed session if exists */ |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5657 | if (objt_server(conn->target) && __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5658 | free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
| 5659 | __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL; |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5660 | } |
| 5661 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5662 | /* Fail on all other handshake errors */ |
| 5663 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5664 | if (!conn->err_code) |
| 5665 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5666 | return 0; |
| 5667 | } |
| 5668 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5669 | 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] | 5670 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5671 | struct wait_event *sw; |
| 5672 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5673 | |
Olivier Houchard | a37eb6a | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 5674 | if (!ctx) |
| 5675 | return -1; |
| 5676 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5677 | if (event_type & SUB_RETRY_RECV) { |
| 5678 | sw = param; |
| 5679 | BUG_ON(ctx->recv_wait != NULL || (sw->events & SUB_RETRY_RECV)); |
| 5680 | sw->events |= SUB_RETRY_RECV; |
| 5681 | ctx->recv_wait = sw; |
| 5682 | if (!(conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5683 | !(ctx->wait_event.events & SUB_RETRY_RECV)) |
| 5684 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event); |
| 5685 | event_type &= ~SUB_RETRY_RECV; |
| 5686 | } |
| 5687 | if (event_type & SUB_RETRY_SEND) { |
| 5688 | sw = param; |
| 5689 | BUG_ON(ctx->send_wait != NULL || (sw->events & SUB_RETRY_SEND)); |
| 5690 | sw->events |= SUB_RETRY_SEND; |
| 5691 | ctx->send_wait = sw; |
| 5692 | if (!(conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5693 | !(ctx->wait_event.events & SUB_RETRY_SEND)) |
| 5694 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
| 5695 | event_type &= ~SUB_RETRY_SEND; |
| 5696 | |
| 5697 | } |
| 5698 | if (event_type != 0) |
| 5699 | return -1; |
| 5700 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5701 | } |
| 5702 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5703 | 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] | 5704 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5705 | struct wait_event *sw; |
| 5706 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5707 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5708 | if (event_type & SUB_RETRY_RECV) { |
| 5709 | sw = param; |
| 5710 | BUG_ON(ctx->recv_wait != sw); |
| 5711 | ctx->recv_wait = NULL; |
| 5712 | sw->events &= ~SUB_RETRY_RECV; |
| 5713 | /* If we subscribed, and we're not doing the handshake, |
| 5714 | * then we subscribed because the upper layer asked for it, |
| 5715 | * as the upper layer is no longer interested, we can |
| 5716 | * unsubscribe too. |
| 5717 | */ |
| 5718 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5719 | (ctx->wait_event.events & SUB_RETRY_RECV)) |
| 5720 | conn_unsubscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, |
| 5721 | &ctx->wait_event); |
| 5722 | } |
| 5723 | if (event_type & SUB_RETRY_SEND) { |
| 5724 | sw = param; |
| 5725 | BUG_ON(ctx->send_wait != sw); |
| 5726 | ctx->send_wait = NULL; |
| 5727 | sw->events &= ~SUB_RETRY_SEND; |
| 5728 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS) && |
| 5729 | (ctx->wait_event.events & SUB_RETRY_SEND)) |
| 5730 | conn_unsubscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, |
| 5731 | &ctx->wait_event); |
| 5732 | |
| 5733 | } |
| 5734 | |
| 5735 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5736 | } |
| 5737 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 5738 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 5739 | * Returns 0 on success, and non-zero on failure. |
| 5740 | */ |
| 5741 | 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) |
| 5742 | { |
| 5743 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5744 | |
| 5745 | if (oldxprt_ops != NULL) |
| 5746 | *oldxprt_ops = ctx->xprt; |
| 5747 | if (oldxprt_ctx != NULL) |
| 5748 | *oldxprt_ctx = ctx->xprt_ctx; |
| 5749 | ctx->xprt = toadd_ops; |
| 5750 | ctx->xprt_ctx = toadd_ctx; |
| 5751 | return 0; |
| 5752 | } |
| 5753 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 5754 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 5755 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 5756 | * XPRT. |
| 5757 | */ |
| 5758 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 5759 | { |
| 5760 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5761 | |
| 5762 | if (ctx->xprt_ctx == toremove_ctx) { |
| 5763 | ctx->xprt_ctx = newctx; |
| 5764 | ctx->xprt = newops; |
| 5765 | return 0; |
| 5766 | } |
| 5767 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 5768 | } |
| 5769 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5770 | static struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned short state) |
| 5771 | { |
| 5772 | struct ssl_sock_ctx *ctx = context; |
| 5773 | |
| 5774 | /* First if we're doing an handshake, try that */ |
| 5775 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) |
| 5776 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
| 5777 | /* If we had an error, or the handshake is done and I/O is available, |
| 5778 | * let the upper layer know. |
| 5779 | * If no mux was set up yet, and nobody subscribed, then call |
| 5780 | * xprt_done_cb() ourself if it's set, or destroy the connection, |
| 5781 | * we can't be sure conn_fd_handler() will be called again. |
| 5782 | */ |
| 5783 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 5784 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 5785 | int ret = 0; |
| 5786 | int woke = 0; |
| 5787 | |
| 5788 | /* On error, wake any waiter */ |
| 5789 | if (ctx->recv_wait) { |
| 5790 | ctx->recv_wait->events &= ~SUB_RETRY_RECV; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5791 | tasklet_wakeup(ctx->recv_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5792 | ctx->recv_wait = NULL; |
| 5793 | woke = 1; |
| 5794 | } |
| 5795 | if (ctx->send_wait) { |
| 5796 | ctx->send_wait->events &= ~SUB_RETRY_SEND; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5797 | tasklet_wakeup(ctx->send_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5798 | ctx->send_wait = NULL; |
| 5799 | woke = 1; |
| 5800 | } |
| 5801 | /* If we're the first xprt for the connection, let the |
| 5802 | * upper layers know. If xprt_done_cb() is set, call it, |
| 5803 | * otherwise, we should have a mux, so call its wake |
| 5804 | * method if we didn't woke a tasklet already. |
| 5805 | */ |
| 5806 | if (ctx->conn->xprt_ctx == ctx) { |
| 5807 | if (ctx->conn->xprt_done_cb) |
| 5808 | ret = ctx->conn->xprt_done_cb(ctx->conn); |
| 5809 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
| 5810 | ctx->conn->mux->wake(ctx->conn); |
| 5811 | return NULL; |
| 5812 | } |
| 5813 | } |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5814 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5815 | /* If we have early data and somebody wants to receive, let them */ |
| 5816 | else if (b_data(&ctx->early_buf) && ctx->recv_wait) { |
| 5817 | ctx->recv_wait->events &= ~SUB_RETRY_RECV; |
| 5818 | tasklet_wakeup(ctx->recv_wait->tasklet); |
| 5819 | ctx->recv_wait = NULL; |
| 5820 | |
| 5821 | } |
| 5822 | #endif |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5823 | return NULL; |
| 5824 | } |
| 5825 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5826 | /* 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] | 5827 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5828 | * buffer wraps, in which case a second call may be performed. The connection's |
| 5829 | * flags are updated with whatever special event is detected (error, read0, |
| 5830 | * empty). The caller is responsible for taking care of those events and |
| 5831 | * avoiding the call if inappropriate. The function does not call the |
| 5832 | * connection's polling update function, so the caller is responsible for this. |
| 5833 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5834 | 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] | 5835 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5836 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 5837 | ssize_t ret; |
| 5838 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5839 | |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5840 | conn_refresh_polling_flags(conn); |
| 5841 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5842 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5843 | goto out_error; |
| 5844 | |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5845 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 5846 | if (b_data(&ctx->early_buf)) { |
| 5847 | try = b_contig_space(buf); |
| 5848 | if (try > b_data(&ctx->early_buf)) |
| 5849 | try = b_data(&ctx->early_buf); |
| 5850 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 5851 | b_add(buf, try); |
| 5852 | b_del(&ctx->early_buf, try); |
| 5853 | if (b_data(&ctx->early_buf) == 0) |
| 5854 | b_free(&ctx->early_buf); |
| 5855 | return try; |
| 5856 | } |
| 5857 | #endif |
| 5858 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5859 | if (conn->flags & CO_FL_HANDSHAKE) |
| 5860 | /* a handshake was requested */ |
| 5861 | return 0; |
| 5862 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5863 | /* read the largest possible block. For this, we perform only one call |
| 5864 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 5865 | * in which case we accept to do it once again. A new attempt is made on |
| 5866 | * EINTR too. |
| 5867 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 5868 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5869 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5870 | try = b_contig_space(buf); |
| 5871 | if (!try) |
| 5872 | break; |
| 5873 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5874 | if (try > count) |
| 5875 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5876 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5877 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | 510fce5 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 5878 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5879 | if (conn->flags & CO_FL_ERROR) { |
| 5880 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5881 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5882 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5883 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 5884 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5885 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5886 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5887 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5888 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5889 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5890 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 5891 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5892 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5893 | 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] | 5894 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5895 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5896 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5897 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5898 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5899 | break; |
| 5900 | } |
| 5901 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5902 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5903 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5904 | SUB_RETRY_RECV, |
| 5905 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5906 | /* handshake is running, and it may need to re-enable read */ |
| 5907 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5908 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5909 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 5910 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5911 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5912 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 5913 | break; |
| 5914 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5915 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5916 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 5917 | goto read0; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5918 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 5919 | * stack before shutting down the connection for |
| 5920 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 5921 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 5922 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5923 | /* otherwise it's a real error */ |
| 5924 | goto out_error; |
| 5925 | } |
| 5926 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5927 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5928 | return done; |
| 5929 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5930 | clear_ssl_error: |
| 5931 | /* Clear openssl global errors stack */ |
| 5932 | ssl_sock_dump_errors(conn); |
| 5933 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5934 | read0: |
| 5935 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5936 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 5937 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5938 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 5939 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5940 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5941 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5942 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5943 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5944 | } |
| 5945 | |
| 5946 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5947 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 5948 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 5949 | * 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] | 5950 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 5951 | * a second call may be performed. The connection's flags are updated with |
| 5952 | * whatever special event is detected (error, empty). The caller is responsible |
| 5953 | * for taking care of those events and avoiding the call if inappropriate. The |
| 5954 | * 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] | 5955 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 5956 | * caller to take care of this. It's up to the caller to update the buffer's |
| 5957 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5958 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5959 | 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] | 5960 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5961 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5962 | ssize_t ret; |
| 5963 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5964 | |
| 5965 | done = 0; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 5966 | conn_refresh_polling_flags(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5967 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5968 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5969 | goto out_error; |
| 5970 | |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 5971 | if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5972 | /* a handshake was requested */ |
| 5973 | return 0; |
| 5974 | |
| 5975 | /* send the largest possible block. For this we perform only one call |
| 5976 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 5977 | * in which case we accept to do it once again. |
| 5978 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5979 | while (count) { |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5980 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5981 | size_t written_data; |
| 5982 | #endif |
| 5983 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 5984 | try = b_contig_data(buf, done); |
| 5985 | if (try > count) |
| 5986 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 5987 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 5988 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5989 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5990 | global_ssl.max_record && try > global_ssl.max_record) { |
| 5991 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 5992 | } |
| 5993 | else { |
| 5994 | /* we need to keep the information about the fact that |
| 5995 | * we're not limiting the upcoming send(), because if it |
| 5996 | * fails, we'll have to retry with at least as many data. |
| 5997 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5998 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 5999 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6000 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6001 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6002 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6003 | unsigned int max_early; |
| 6004 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6005 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6006 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6007 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6008 | if (SSL_get0_session(ctx->ssl)) |
| 6009 | 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] | 6010 | else |
| 6011 | max_early = 0; |
| 6012 | } |
| 6013 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6014 | if (try + ctx->sent_early_data > max_early) { |
| 6015 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6016 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6017 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6018 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6019 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6020 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6021 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6022 | 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] | 6023 | if (ret == 1) { |
| 6024 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6025 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6026 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6027 | 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] | 6028 | /* Initiate the handshake, now */ |
| 6029 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6030 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6031 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6032 | } |
| 6033 | |
| 6034 | } else |
| 6035 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6036 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6037 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6038 | if (conn->flags & CO_FL_ERROR) { |
| 6039 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6040 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6041 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6042 | if (ret > 0) { |
Olivier Houchard | f24502b | 2019-01-17 19:09:11 +0100 | [diff] [blame] | 6043 | /* A send succeeded, so we can consier ourself connected */ |
| 6044 | conn->flags |= CO_FL_CONNECTED; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6045 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6046 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6047 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6048 | } |
| 6049 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6050 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6051 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6052 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6053 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6054 | /* handshake is running, and it may need to re-enable write */ |
| 6055 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6056 | 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] | 6057 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6058 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6059 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6060 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6061 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6062 | break; |
| 6063 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6064 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6065 | break; |
| 6066 | } |
| 6067 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6068 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6069 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6070 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6071 | SUB_RETRY_RECV, |
| 6072 | &ctx->wait_event); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6073 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6074 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6075 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6076 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6077 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6078 | break; |
| 6079 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6080 | goto out_error; |
| 6081 | } |
| 6082 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6083 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6084 | return done; |
| 6085 | |
| 6086 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6087 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6088 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6089 | ERR_clear_error(); |
| 6090 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6091 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6092 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6093 | } |
| 6094 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6095 | static void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6096 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6097 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6098 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6099 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6100 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6101 | if (ctx->wait_event.events != 0) |
| 6102 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6103 | ctx->wait_event.events, |
| 6104 | &ctx->wait_event); |
| 6105 | if (ctx->send_wait) { |
| 6106 | ctx->send_wait->events &= ~SUB_RETRY_SEND; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6107 | tasklet_wakeup(ctx->send_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6108 | } |
| 6109 | if (ctx->recv_wait) { |
| 6110 | ctx->recv_wait->events &= ~SUB_RETRY_RECV; |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6111 | tasklet_wakeup(ctx->recv_wait->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6112 | } |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6113 | if (ctx->xprt->close) |
| 6114 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6115 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6116 | if (global_ssl.async) { |
| 6117 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6118 | size_t num_all_fds = 0; |
| 6119 | int i; |
| 6120 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6121 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6122 | if (num_all_fds > 32) { |
| 6123 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6124 | return; |
| 6125 | } |
| 6126 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6127 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6128 | |
| 6129 | /* If an async job is pending, we must try to |
| 6130 | to catch the end using polling before calling |
| 6131 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6132 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6133 | for (i=0 ; i < num_all_fds ; i++) { |
| 6134 | /* switch on an handler designed to |
| 6135 | * handle the SSL_free |
| 6136 | */ |
| 6137 | afd = all_fd[i]; |
| 6138 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6139 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6140 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6141 | /* To ensure that the fd cache won't be used |
| 6142 | * and we'll catch a real RD event. |
| 6143 | */ |
| 6144 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6145 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6146 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6147 | pool_free(ssl_sock_ctx_pool, ctx); |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 6148 | _HA_ATOMIC_ADD(&jobs, 1); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6149 | return; |
| 6150 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6151 | /* Else we can remove the fds from the fdtab |
| 6152 | * and call SSL_free. |
| 6153 | * note: we do a fd_remove and not a delete |
| 6154 | * because the fd is owned by the engine. |
| 6155 | * the engine is responsible to close |
| 6156 | */ |
| 6157 | for (i=0 ; i < num_all_fds ; i++) |
| 6158 | fd_remove(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6159 | } |
| 6160 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6161 | SSL_free(ctx->ssl); |
Olivier Houchard | f6715e7 | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6162 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6163 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6164 | pool_free(ssl_sock_ctx_pool, ctx); |
Olivier Houchard | 2be5a4c | 2019-03-08 18:54:43 +0100 | [diff] [blame] | 6165 | _HA_ATOMIC_SUB(&sslconns, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6166 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6167 | } |
| 6168 | |
| 6169 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6170 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6171 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6172 | 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] | 6173 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6174 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6175 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6176 | if (conn->flags & CO_FL_HANDSHAKE) |
| 6177 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6178 | if (!clean) |
| 6179 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6180 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6181 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6182 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6183 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6184 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6185 | ERR_clear_error(); |
| 6186 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6187 | } |
| 6188 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6189 | /* used for ppv2 pkey alog (can be used for logging) */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6190 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6191 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6192 | struct ssl_sock_ctx *ctx; |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6193 | struct pkey_info *pkinfo; |
| 6194 | int bits = 0; |
| 6195 | int sig = TLSEXT_signature_anonymous; |
| 6196 | int len = -1; |
| 6197 | |
| 6198 | if (!ssl_sock_is_ssl(conn)) |
| 6199 | return 0; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6200 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6201 | 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] | 6202 | if (pkinfo) { |
| 6203 | sig = pkinfo->sig; |
| 6204 | bits = pkinfo->bits; |
| 6205 | } else { |
| 6206 | /* multicert and generated cert have no pkey info */ |
| 6207 | X509 *crt; |
| 6208 | EVP_PKEY *pkey; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6209 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6210 | if (!crt) |
| 6211 | return 0; |
| 6212 | pkey = X509_get_pubkey(crt); |
| 6213 | if (pkey) { |
| 6214 | bits = EVP_PKEY_bits(pkey); |
| 6215 | switch(EVP_PKEY_base_id(pkey)) { |
| 6216 | case EVP_PKEY_RSA: |
| 6217 | sig = TLSEXT_signature_rsa; |
| 6218 | break; |
| 6219 | case EVP_PKEY_EC: |
| 6220 | sig = TLSEXT_signature_ecdsa; |
| 6221 | break; |
| 6222 | case EVP_PKEY_DSA: |
| 6223 | sig = TLSEXT_signature_dsa; |
| 6224 | break; |
| 6225 | } |
| 6226 | EVP_PKEY_free(pkey); |
| 6227 | } |
| 6228 | } |
| 6229 | |
| 6230 | switch(sig) { |
| 6231 | case TLSEXT_signature_rsa: |
| 6232 | len = chunk_printf(out, "RSA%d", bits); |
| 6233 | break; |
| 6234 | case TLSEXT_signature_ecdsa: |
| 6235 | len = chunk_printf(out, "EC%d", bits); |
| 6236 | break; |
| 6237 | case TLSEXT_signature_dsa: |
| 6238 | len = chunk_printf(out, "DSA%d", bits); |
| 6239 | break; |
| 6240 | default: |
| 6241 | return 0; |
| 6242 | } |
| 6243 | if (len < 0) |
| 6244 | return 0; |
| 6245 | return 1; |
| 6246 | } |
| 6247 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6248 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6249 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6250 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6251 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6252 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6253 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6254 | X509 *crt; |
| 6255 | |
| 6256 | if (!ssl_sock_is_ssl(conn)) |
| 6257 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6258 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6259 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6260 | if (!crt) |
| 6261 | return NULL; |
| 6262 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6263 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6264 | } |
| 6265 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6266 | /* used for ppv2 authority */ |
| 6267 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6268 | { |
| 6269 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6270 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6271 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6272 | if (!ssl_sock_is_ssl(conn)) |
| 6273 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6274 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6275 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6276 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6277 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6278 | #endif |
| 6279 | } |
| 6280 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6281 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6282 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6283 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6284 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6285 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6286 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6287 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6288 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6289 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6290 | } |
| 6291 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6292 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6293 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6294 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6295 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6296 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6297 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6298 | return NULL; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6299 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6300 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6301 | } |
| 6302 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6303 | /* Extract a serial from a cert, and copy it to a chunk. |
| 6304 | * Returns 1 if serial is found and copied, 0 if no serial found and |
| 6305 | * -1 if output is not large enough. |
| 6306 | */ |
| 6307 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6308 | ssl_sock_get_serial(X509 *crt, struct buffer *out) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6309 | { |
| 6310 | ASN1_INTEGER *serial; |
| 6311 | |
| 6312 | serial = X509_get_serialNumber(crt); |
| 6313 | if (!serial) |
| 6314 | return 0; |
| 6315 | |
| 6316 | if (out->size < serial->length) |
| 6317 | return -1; |
| 6318 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6319 | memcpy(out->area, serial->data, serial->length); |
| 6320 | out->data = serial->length; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6321 | return 1; |
| 6322 | } |
| 6323 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6324 | /* Extract a cert to der, and copy it to a chunk. |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 6325 | * Returns 1 if the cert is found and copied, 0 on der conversion failure |
| 6326 | * and -1 if the output is not large enough. |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6327 | */ |
| 6328 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6329 | ssl_sock_crt2der(X509 *crt, struct buffer *out) |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6330 | { |
| 6331 | int len; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6332 | unsigned char *p = (unsigned char *) out->area;; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6333 | |
| 6334 | len =i2d_X509(crt, NULL); |
| 6335 | if (len <= 0) |
| 6336 | return 1; |
| 6337 | |
| 6338 | if (out->size < len) |
| 6339 | return -1; |
| 6340 | |
| 6341 | i2d_X509(crt,&p); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6342 | out->data = len; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6343 | return 1; |
| 6344 | } |
| 6345 | |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6346 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6347 | /* Copy Date in ASN1_UTCTIME format in struct buffer out. |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6348 | * Returns 1 if serial is found and copied, 0 if no valid time found |
| 6349 | * and -1 if output is not large enough. |
| 6350 | */ |
| 6351 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6352 | ssl_sock_get_time(ASN1_TIME *tm, struct buffer *out) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6353 | { |
| 6354 | if (tm->type == V_ASN1_GENERALIZEDTIME) { |
| 6355 | ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm; |
| 6356 | |
| 6357 | if (gentm->length < 12) |
| 6358 | return 0; |
| 6359 | if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30) |
| 6360 | return 0; |
| 6361 | if (out->size < gentm->length-2) |
| 6362 | return -1; |
| 6363 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6364 | memcpy(out->area, gentm->data+2, gentm->length-2); |
| 6365 | out->data = gentm->length-2; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6366 | return 1; |
| 6367 | } |
| 6368 | else if (tm->type == V_ASN1_UTCTIME) { |
| 6369 | ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm; |
| 6370 | |
| 6371 | if (utctm->length < 10) |
| 6372 | return 0; |
| 6373 | if (utctm->data[0] >= 0x35) |
| 6374 | return 0; |
| 6375 | if (out->size < utctm->length) |
| 6376 | return -1; |
| 6377 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6378 | memcpy(out->area, utctm->data, utctm->length); |
| 6379 | out->data = utctm->length; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6380 | return 1; |
| 6381 | } |
| 6382 | |
| 6383 | return 0; |
| 6384 | } |
| 6385 | |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6386 | /* Extract an entry from a X509_NAME and copy its value to an output chunk. |
| 6387 | * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough. |
| 6388 | */ |
| 6389 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6390 | ssl_sock_get_dn_entry(X509_NAME *a, const struct buffer *entry, int pos, |
| 6391 | struct buffer *out) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6392 | { |
| 6393 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6394 | ASN1_OBJECT *obj; |
| 6395 | ASN1_STRING *data; |
| 6396 | const unsigned char *data_ptr; |
| 6397 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6398 | int i, j, n; |
| 6399 | int cur = 0; |
| 6400 | const char *s; |
| 6401 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6402 | int name_count; |
| 6403 | |
| 6404 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6405 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6406 | out->data = 0; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6407 | for (i = 0; i < name_count; i++) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6408 | if (pos < 0) |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6409 | j = (name_count-1) - i; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6410 | else |
| 6411 | j = i; |
| 6412 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6413 | ne = X509_NAME_get_entry(a, j); |
| 6414 | obj = X509_NAME_ENTRY_get_object(ne); |
| 6415 | data = X509_NAME_ENTRY_get_data(ne); |
| 6416 | data_ptr = ASN1_STRING_get0_data(data); |
| 6417 | data_len = ASN1_STRING_length(data); |
| 6418 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6419 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6420 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6421 | s = tmp; |
| 6422 | } |
| 6423 | |
| 6424 | if (chunk_strcasecmp(entry, s) != 0) |
| 6425 | continue; |
| 6426 | |
| 6427 | if (pos < 0) |
| 6428 | cur--; |
| 6429 | else |
| 6430 | cur++; |
| 6431 | |
| 6432 | if (cur != pos) |
| 6433 | continue; |
| 6434 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6435 | if (data_len > out->size) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6436 | return -1; |
| 6437 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6438 | memcpy(out->area, data_ptr, data_len); |
| 6439 | out->data = data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6440 | return 1; |
| 6441 | } |
| 6442 | |
| 6443 | return 0; |
| 6444 | |
| 6445 | } |
| 6446 | |
| 6447 | /* Extract and format full DN from a X509_NAME and copy result into a chunk |
| 6448 | * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough. |
| 6449 | */ |
| 6450 | static int |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6451 | ssl_sock_get_dn_oneline(X509_NAME *a, struct buffer *out) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6452 | { |
| 6453 | X509_NAME_ENTRY *ne; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6454 | ASN1_OBJECT *obj; |
| 6455 | ASN1_STRING *data; |
| 6456 | const unsigned char *data_ptr; |
| 6457 | int data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6458 | int i, n, ln; |
| 6459 | int l = 0; |
| 6460 | const char *s; |
| 6461 | char *p; |
| 6462 | char tmp[128]; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6463 | int name_count; |
| 6464 | |
| 6465 | |
| 6466 | name_count = X509_NAME_entry_count(a); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6467 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6468 | out->data = 0; |
| 6469 | p = out->area; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6470 | for (i = 0; i < name_count; i++) { |
| 6471 | ne = X509_NAME_get_entry(a, i); |
| 6472 | obj = X509_NAME_ENTRY_get_object(ne); |
| 6473 | data = X509_NAME_ENTRY_get_data(ne); |
| 6474 | data_ptr = ASN1_STRING_get0_data(data); |
| 6475 | data_len = ASN1_STRING_length(data); |
| 6476 | n = OBJ_obj2nid(obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6477 | if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6478 | i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6479 | s = tmp; |
| 6480 | } |
| 6481 | ln = strlen(s); |
| 6482 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6483 | l += 1 + ln + 1 + data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6484 | if (l > out->size) |
| 6485 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6486 | out->data = l; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6487 | |
| 6488 | *(p++)='/'; |
| 6489 | memcpy(p, s, ln); |
| 6490 | p += ln; |
| 6491 | *(p++)='='; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6492 | memcpy(p, data_ptr, data_len); |
| 6493 | p += data_len; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6494 | } |
| 6495 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6496 | if (!out->data) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6497 | return 0; |
| 6498 | |
| 6499 | return 1; |
| 6500 | } |
| 6501 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6502 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6503 | { |
| 6504 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6505 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6506 | |
Olivier Houchard | aa2ecea | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6507 | if (!ssl_sock_is_ssl(conn)) |
| 6508 | return; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6509 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6510 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6511 | #endif |
| 6512 | } |
| 6513 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6514 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6515 | * to disable SNI. |
| 6516 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6517 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6518 | { |
| 6519 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6520 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6521 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6522 | char *prev_name; |
| 6523 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +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; |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6527 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6528 | /* if the SNI changes, we must destroy the reusable context so that a |
| 6529 | * new connection will present a new SNI. As an optimization we could |
| 6530 | * later imagine having a small cache of ssl_ctx to hold a few SNI per |
| 6531 | * server. |
| 6532 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6533 | prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6534 | if ((!prev_name && hostname) || |
| 6535 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6536 | SSL_set_session(ctx->ssl, NULL); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6537 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6538 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6539 | #endif |
| 6540 | } |
| 6541 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6542 | /* Extract peer certificate's common name into the chunk dest |
| 6543 | * Returns |
| 6544 | * the len of the extracted common name |
| 6545 | * or 0 if no CN found in DN |
| 6546 | * or -1 on error case (i.e. no peer certificate) |
| 6547 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6548 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6549 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6550 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6551 | struct ssl_sock_ctx *ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6552 | X509 *crt = NULL; |
| 6553 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6554 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6555 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6556 | .area = (char *)&find_cn, |
| 6557 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6558 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6559 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6560 | |
| 6561 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6562 | goto out; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6563 | ctx = conn->xprt_ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6564 | |
| 6565 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6566 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6567 | if (!crt) |
| 6568 | goto out; |
| 6569 | |
| 6570 | name = X509_get_subject_name(crt); |
| 6571 | if (!name) |
| 6572 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6573 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6574 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6575 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6576 | if (crt) |
| 6577 | X509_free(crt); |
| 6578 | |
| 6579 | return result; |
| 6580 | } |
| 6581 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6582 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6583 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6584 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6585 | struct ssl_sock_ctx *ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6586 | X509 *crt = NULL; |
| 6587 | |
| 6588 | if (!ssl_sock_is_ssl(conn)) |
| 6589 | return 0; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6590 | ctx = conn->xprt_ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6591 | |
| 6592 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6593 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6594 | if (!crt) |
| 6595 | return 0; |
| 6596 | |
| 6597 | X509_free(crt); |
| 6598 | return 1; |
| 6599 | } |
| 6600 | |
| 6601 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6602 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6603 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6604 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6605 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6606 | if (!ssl_sock_is_ssl(conn)) |
| 6607 | return 0; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6608 | ctx = conn->xprt_ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6609 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6610 | } |
| 6611 | |
| 6612 | /* returns result from SSL verify */ |
| 6613 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6614 | { |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6615 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6616 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6617 | if (!ssl_sock_is_ssl(conn)) |
| 6618 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Christopher Faulet | 4517b0c | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6619 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6620 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6621 | } |
| 6622 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6623 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6624 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6625 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6626 | * freed by the caller. NPN is also checked if available since older versions |
| 6627 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6628 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6629 | 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] | 6630 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6631 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6632 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6633 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6634 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6635 | return 0; |
| 6636 | |
| 6637 | *str = NULL; |
| 6638 | |
| 6639 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6640 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6641 | if (*str) |
| 6642 | return 1; |
| 6643 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6644 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6645 | 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] | 6646 | if (*str) |
| 6647 | return 1; |
| 6648 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6649 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6650 | return 0; |
| 6651 | } |
| 6652 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 6653 | /***** Below are some sample fetching functions for ACL/patterns *****/ |
| 6654 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6655 | static int |
| 6656 | smp_fetch_ssl_fc_has_early(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 6657 | { |
| 6658 | struct connection *conn; |
| 6659 | |
| 6660 | conn = objt_conn(smp->sess->origin); |
| 6661 | if (!conn || conn->xprt != &ssl_sock) |
| 6662 | return 0; |
| 6663 | |
| 6664 | smp->flags = 0; |
| 6665 | smp->data.type = SMP_T_BOOL; |
Emmanuel Hocdet | bb8643c | 2019-08-07 14:44:49 +0200 | [diff] [blame] | 6666 | #ifdef OPENSSL_IS_BORINGSSL |
| 6667 | { |
| 6668 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 6669 | smp->data.u.sint = (SSL_in_early_data(ctx->ssl) && |
| 6670 | SSL_early_data_accepted(ctx->ssl)); |
| 6671 | } |
| 6672 | #else |
Olivier Houchard | 25ae45a | 2017-11-29 19:51:19 +0100 | [diff] [blame] | 6673 | smp->data.u.sint = ((conn->flags & CO_FL_EARLY_DATA) && |
Olivier Houchard | 629693f | 2020-01-23 14:57:36 +0100 | [diff] [blame] | 6674 | (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS))) ? 1 : 0; |
Emmanuel Hocdet | bb8643c | 2019-08-07 14:44:49 +0200 | [diff] [blame] | 6675 | #endif |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6676 | return 1; |
| 6677 | } |
| 6678 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6679 | /* boolean, returns true if client cert was present */ |
| 6680 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6681 | 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] | 6682 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6683 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6684 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6685 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6686 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6687 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6688 | return 0; |
| 6689 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6690 | ctx = conn->xprt_ctx; |
| 6691 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6692 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6693 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6694 | return 0; |
| 6695 | } |
| 6696 | |
| 6697 | smp->flags = 0; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6698 | smp->data.type = SMP_T_BOOL; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6699 | 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] | 6700 | |
| 6701 | return 1; |
| 6702 | } |
| 6703 | |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6704 | /* binary, returns a certificate in a binary chunk (der/raw). |
| 6705 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6706 | * should be use. |
| 6707 | */ |
| 6708 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6709 | 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] | 6710 | { |
| 6711 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
| 6712 | X509 *crt = NULL; |
| 6713 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6714 | struct buffer *smp_trash; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6715 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6716 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6717 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6718 | conn = objt_conn(smp->sess->origin); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6719 | if (!conn || conn->xprt != &ssl_sock) |
| 6720 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6721 | ctx = conn->xprt_ctx; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6722 | |
| 6723 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 6724 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6725 | return 0; |
| 6726 | } |
| 6727 | |
| 6728 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6729 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6730 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6731 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6732 | |
| 6733 | if (!crt) |
| 6734 | goto out; |
| 6735 | |
| 6736 | smp_trash = get_trash_chunk(); |
| 6737 | if (ssl_sock_crt2der(crt, smp_trash) <= 0) |
| 6738 | goto out; |
| 6739 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6740 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6741 | smp->data.type = SMP_T_BIN; |
Emeric Brun | 43e7958 | 2014-10-29 19:03:26 +0100 | [diff] [blame] | 6742 | ret = 1; |
| 6743 | out: |
| 6744 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6745 | if (cert_peer && crt) |
| 6746 | X509_free(crt); |
| 6747 | return ret; |
| 6748 | } |
| 6749 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6750 | /* binary, returns serial of certificate in a binary chunk. |
| 6751 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6752 | * should be use. |
| 6753 | */ |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6754 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6755 | 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] | 6756 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6757 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6758 | X509 *crt = NULL; |
| 6759 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6760 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6761 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6762 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6763 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6764 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6765 | if (!conn || conn->xprt != &ssl_sock) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6766 | return 0; |
| 6767 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6768 | ctx = conn->xprt_ctx; |
| 6769 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6770 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6771 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6772 | return 0; |
| 6773 | } |
| 6774 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6775 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6776 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6777 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6778 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6779 | |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6780 | if (!crt) |
| 6781 | goto out; |
| 6782 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6783 | smp_trash = get_trash_chunk(); |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6784 | if (ssl_sock_get_serial(crt, smp_trash) <= 0) |
| 6785 | goto out; |
| 6786 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6787 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6788 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6789 | ret = 1; |
| 6790 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6791 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6792 | if (cert_peer && crt) |
Willy Tarreau | 8d59840 | 2012-10-22 17:58:39 +0200 | [diff] [blame] | 6793 | X509_free(crt); |
| 6794 | return ret; |
| 6795 | } |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 6796 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6797 | /* binary, returns the client certificate's SHA-1 fingerprint (SHA-1 hash of DER-encoded certificate) in a binary chunk. |
| 6798 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6799 | * should be use. |
| 6800 | */ |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6801 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6802 | 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] | 6803 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6804 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6805 | X509 *crt = NULL; |
| 6806 | const EVP_MD *digest; |
| 6807 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6808 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6809 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6810 | struct ssl_sock_ctx *ctx; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6811 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6812 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6813 | if (!conn || conn->xprt != &ssl_sock) |
| 6814 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6815 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6816 | |
| 6817 | if (!(conn->flags & CO_FL_CONNECTED)) { |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6818 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6819 | return 0; |
| 6820 | } |
| 6821 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6822 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6823 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6824 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6825 | crt = SSL_get_certificate(ctx->ssl); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6826 | if (!crt) |
| 6827 | goto out; |
| 6828 | |
| 6829 | smp_trash = get_trash_chunk(); |
| 6830 | digest = EVP_sha1(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6831 | X509_digest(crt, digest, (unsigned char *) smp_trash->area, |
| 6832 | (unsigned int *)&smp_trash->data); |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6833 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6834 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6835 | smp->data.type = SMP_T_BIN; |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6836 | ret = 1; |
| 6837 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6838 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6839 | if (cert_peer && crt) |
James Voth | a051b4a | 2013-05-14 20:37:59 +0200 | [diff] [blame] | 6840 | X509_free(crt); |
| 6841 | return ret; |
| 6842 | } |
| 6843 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6844 | /* string, returns certificate's notafter date in ASN1_UTCTIME format. |
| 6845 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6846 | * should be use. |
| 6847 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6848 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6849 | 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] | 6850 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6851 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6852 | X509 *crt = NULL; |
| 6853 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6854 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6855 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6856 | struct ssl_sock_ctx *ctx; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6857 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6858 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6859 | if (!conn || conn->xprt != &ssl_sock) |
| 6860 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6861 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6862 | |
| 6863 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6864 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6865 | return 0; |
| 6866 | } |
| 6867 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6868 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6869 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6870 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6871 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6872 | if (!crt) |
| 6873 | goto out; |
| 6874 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6875 | smp_trash = get_trash_chunk(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 6876 | if (ssl_sock_get_time(X509_getm_notAfter(crt), smp_trash) <= 0) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6877 | goto out; |
| 6878 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6879 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6880 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6881 | ret = 1; |
| 6882 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6883 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6884 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6885 | X509_free(crt); |
| 6886 | return ret; |
| 6887 | } |
| 6888 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6889 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's issuer |
| 6890 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6891 | * should be use. |
| 6892 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6893 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6894 | 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] | 6895 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6896 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6897 | X509 *crt = NULL; |
| 6898 | X509_NAME *name; |
| 6899 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6900 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6901 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6902 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6903 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6904 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6905 | if (!conn || conn->xprt != &ssl_sock) |
| 6906 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6907 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6908 | |
| 6909 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6910 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6911 | return 0; |
| 6912 | } |
| 6913 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6914 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6915 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6916 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6917 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6918 | if (!crt) |
| 6919 | goto out; |
| 6920 | |
| 6921 | name = X509_get_issuer_name(crt); |
| 6922 | if (!name) |
| 6923 | goto out; |
| 6924 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6925 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6926 | if (args && args[0].type == ARGT_STR) { |
| 6927 | int pos = 1; |
| 6928 | |
| 6929 | if (args[1].type == ARGT_SINT) |
| 6930 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6931 | |
| 6932 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 6933 | goto out; |
| 6934 | } |
| 6935 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 6936 | goto out; |
| 6937 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6938 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6939 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6940 | ret = 1; |
| 6941 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6942 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6943 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6944 | X509_free(crt); |
| 6945 | return ret; |
| 6946 | } |
| 6947 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6948 | /* string, returns notbefore date in ASN1_UTCTIME format. |
| 6949 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6950 | * should be use. |
| 6951 | */ |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6952 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6953 | 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] | 6954 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6955 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6956 | X509 *crt = NULL; |
| 6957 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6958 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6959 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6960 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6961 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 6962 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6963 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6964 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6965 | ctx = conn->xprt_ctx; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6966 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 6967 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6968 | smp->flags |= SMP_F_MAY_CHANGE; |
| 6969 | return 0; |
| 6970 | } |
| 6971 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6972 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6973 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6974 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6975 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6976 | if (!crt) |
| 6977 | goto out; |
| 6978 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 6979 | smp_trash = get_trash_chunk(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 6980 | if (ssl_sock_get_time(X509_getm_notBefore(crt), smp_trash) <= 0) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6981 | goto out; |
| 6982 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 6983 | smp->data.u.str = *smp_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 6984 | smp->data.type = SMP_T_STR; |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6985 | ret = 1; |
| 6986 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6987 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 6988 | if (cert_peer && crt) |
Emeric Brun | ce5ad80 | 2012-10-22 14:11:22 +0200 | [diff] [blame] | 6989 | X509_free(crt); |
| 6990 | return ret; |
| 6991 | } |
| 6992 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 6993 | /* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's subject |
| 6994 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 6995 | * should be use. |
| 6996 | */ |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 6997 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 6998 | 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] | 6999 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7000 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7001 | X509 *crt = NULL; |
| 7002 | X509_NAME *name; |
| 7003 | int ret = 0; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7004 | struct buffer *smp_trash; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7005 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7006 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7007 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7008 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7009 | if (!conn || conn->xprt != &ssl_sock) |
| 7010 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7011 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7012 | |
| 7013 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7014 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7015 | return 0; |
| 7016 | } |
| 7017 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7018 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7019 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7020 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7021 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7022 | if (!crt) |
| 7023 | goto out; |
| 7024 | |
| 7025 | name = X509_get_subject_name(crt); |
| 7026 | if (!name) |
| 7027 | goto out; |
| 7028 | |
Willy Tarreau | 47ca545 | 2012-12-23 20:22:19 +0100 | [diff] [blame] | 7029 | smp_trash = get_trash_chunk(); |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7030 | if (args && args[0].type == ARGT_STR) { |
| 7031 | int pos = 1; |
| 7032 | |
| 7033 | if (args[1].type == ARGT_SINT) |
| 7034 | pos = args[1].data.sint; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7035 | |
| 7036 | if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0) |
| 7037 | goto out; |
| 7038 | } |
| 7039 | else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0) |
| 7040 | goto out; |
| 7041 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7042 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7043 | smp->data.u.str = *smp_trash; |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7044 | ret = 1; |
| 7045 | out: |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7046 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
| 7047 | if (cert_peer && crt) |
Emeric Brun | 8785589 | 2012-10-17 17:39:35 +0200 | [diff] [blame] | 7048 | X509_free(crt); |
| 7049 | return ret; |
| 7050 | } |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7051 | |
| 7052 | /* integer, returns true if current session use a client certificate */ |
| 7053 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7054 | 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] | 7055 | { |
| 7056 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7057 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7058 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7059 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7060 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7061 | if (!conn || conn->xprt != &ssl_sock) |
| 7062 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7063 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7064 | |
| 7065 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7066 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7067 | return 0; |
| 7068 | } |
| 7069 | |
| 7070 | /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7071 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7072 | if (crt) { |
| 7073 | X509_free(crt); |
| 7074 | } |
| 7075 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7076 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7077 | smp->data.u.sint = (crt != NULL); |
Emeric Brun | 9143d37 | 2012-12-20 15:44:16 +0100 | [diff] [blame] | 7078 | return 1; |
| 7079 | } |
| 7080 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7081 | /* integer, returns the certificate version |
| 7082 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7083 | * should be use. |
| 7084 | */ |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7085 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7086 | 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] | 7087 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7088 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7089 | X509 *crt; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7090 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7091 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7092 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7093 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7094 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7095 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7096 | ctx = conn->xprt_ctx; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7097 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7098 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7099 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7100 | return 0; |
| 7101 | } |
| 7102 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7103 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7104 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7105 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7106 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7107 | if (!crt) |
| 7108 | return 0; |
| 7109 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7110 | smp->data.u.sint = (unsigned int)(1 + X509_get_version(crt)); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7111 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7112 | if (cert_peer) |
| 7113 | X509_free(crt); |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7114 | smp->data.type = SMP_T_SINT; |
Emeric Brun | a7359fd | 2012-10-17 15:03:11 +0200 | [diff] [blame] | 7115 | |
| 7116 | return 1; |
| 7117 | } |
| 7118 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7119 | /* string, returns the certificate's signature algorithm. |
| 7120 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7121 | * should be use. |
| 7122 | */ |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7123 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7124 | 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] | 7125 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7126 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7127 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7128 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7129 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7130 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7131 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7132 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7133 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7134 | if (!conn || conn->xprt != &ssl_sock) |
| 7135 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7136 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7137 | |
| 7138 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7139 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7140 | return 0; |
| 7141 | } |
| 7142 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7143 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7144 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7145 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7146 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7147 | if (!crt) |
| 7148 | return 0; |
| 7149 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7150 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 7151 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7152 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7153 | smp->data.u.str.area = (char *)OBJ_nid2sn(nid); |
| 7154 | if (!smp->data.u.str.area) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7155 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7156 | if (cert_peer) |
| 7157 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7158 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 7159 | } |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7160 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7161 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7162 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7163 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7164 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7165 | if (cert_peer) |
| 7166 | X509_free(crt); |
Emeric Brun | 7f56e74 | 2012-10-19 18:15:40 +0200 | [diff] [blame] | 7167 | |
| 7168 | return 1; |
| 7169 | } |
| 7170 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7171 | /* string, returns the certificate's key algorithm. |
| 7172 | * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate |
| 7173 | * should be use. |
| 7174 | */ |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7175 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7176 | 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] | 7177 | { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7178 | int cert_peer = (kw[4] == 'c') ? 1 : 0; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7179 | X509 *crt; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7180 | ASN1_OBJECT *algorithm; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7181 | int nid; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7182 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7183 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7184 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7185 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7186 | if (!conn || conn->xprt != &ssl_sock) |
| 7187 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7188 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7189 | |
| 7190 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7191 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7192 | return 0; |
| 7193 | } |
| 7194 | |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7195 | if (cert_peer) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7196 | crt = SSL_get_peer_certificate(ctx->ssl); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7197 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7198 | crt = SSL_get_certificate(ctx->ssl); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7199 | if (!crt) |
| 7200 | return 0; |
| 7201 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 7202 | X509_PUBKEY_get0_param(&algorithm, NULL, NULL, NULL, X509_get_X509_PUBKEY(crt)); |
| 7203 | nid = OBJ_obj2nid(algorithm); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7204 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7205 | smp->data.u.str.area = (char *)OBJ_nid2sn(nid); |
| 7206 | if (!smp->data.u.str.area) { |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7207 | /* SSL_get_peer_certificate increase X509 * ref count */ |
| 7208 | if (cert_peer) |
| 7209 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7210 | return 0; |
Emeric Brun | 9bf3ba2 | 2013-10-07 14:31:44 +0200 | [diff] [blame] | 7211 | } |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7212 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7213 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7214 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7215 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | ba841a1 | 2014-04-30 17:05:08 +0200 | [diff] [blame] | 7216 | if (cert_peer) |
| 7217 | X509_free(crt); |
Emeric Brun | 521a011 | 2012-10-22 12:22:55 +0200 | [diff] [blame] | 7218 | |
| 7219 | return 1; |
| 7220 | } |
| 7221 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7222 | /* boolean, returns true if front conn. transport layer is SSL. |
| 7223 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7224 | * char is 'b'. |
| 7225 | */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7226 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7227 | 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] | 7228 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7229 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7230 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7231 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7232 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7233 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7234 | return 1; |
| 7235 | } |
| 7236 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7237 | /* boolean, returns true if client present a SNI */ |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7238 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7239 | 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] | 7240 | { |
| 7241 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7242 | struct connection *conn = objt_conn(smp->sess->origin); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7243 | struct ssl_sock_ctx *ctx = conn ? conn->xprt_ctx : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7244 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7245 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7246 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7247 | conn->xprt_ctx && |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7248 | SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name) != NULL; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7249 | return 1; |
| 7250 | #else |
| 7251 | return 0; |
| 7252 | #endif |
| 7253 | } |
| 7254 | |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 7255 | /* boolean, returns true if client session has been resumed. |
| 7256 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7257 | * char is 'b'. |
| 7258 | */ |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7259 | static int |
| 7260 | smp_fetch_ssl_fc_is_resumed(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7261 | { |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 7262 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7263 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7264 | struct ssl_sock_ctx *ctx = conn ? conn->xprt_ctx : NULL; |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 7265 | |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7266 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7267 | smp->data.type = SMP_T_BOOL; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7268 | smp->data.u.sint = (conn && conn->xprt == &ssl_sock) && |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7269 | conn->xprt_ctx && |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7270 | SSL_session_reused(ctx->ssl); |
Nenad Merdanovic | 26ea822 | 2015-05-18 02:28:57 +0200 | [diff] [blame] | 7271 | return 1; |
| 7272 | } |
| 7273 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7274 | /* string, returns the used cipher if front conn. transport layer is SSL. |
| 7275 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7276 | * char is 'b'. |
| 7277 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7278 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7279 | 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] | 7280 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7281 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7282 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7283 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7284 | |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7285 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7286 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7287 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7288 | ctx = conn->xprt_ctx; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7289 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7290 | smp->data.u.str.area = (char *)SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7291 | if (!smp->data.u.str.area) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7292 | return 0; |
| 7293 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7294 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7295 | smp->flags |= SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7296 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7297 | |
| 7298 | return 1; |
| 7299 | } |
| 7300 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7301 | /* integer, returns the algoritm's keysize if front conn. transport layer |
| 7302 | * is SSL. |
| 7303 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7304 | * char is 'b'. |
| 7305 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7306 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7307 | 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] | 7308 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7309 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7310 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7311 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 7312 | int sint; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7313 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7314 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7315 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7316 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7317 | ctx = conn->xprt_ctx; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7318 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7319 | if (!SSL_get_cipher_bits(ctx->ssl, &sint)) |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7320 | return 0; |
| 7321 | |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7322 | smp->data.u.sint = sint; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7323 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7324 | |
| 7325 | return 1; |
| 7326 | } |
| 7327 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7328 | /* integer, returns the used keysize if front conn. transport layer is SSL. |
| 7329 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7330 | * char is 'b'. |
| 7331 | */ |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7332 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7333 | 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] | 7334 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7335 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7336 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7337 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7338 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7339 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7340 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7341 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7342 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7343 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7344 | 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] | 7345 | if (!smp->data.u.sint) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7346 | return 0; |
| 7347 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7348 | smp->data.type = SMP_T_SINT; |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7349 | |
| 7350 | return 1; |
| 7351 | } |
| 7352 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 7353 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7354 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7355 | 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] | 7356 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7357 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7358 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7359 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7360 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7361 | smp->data.type = SMP_T_STR; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7362 | |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 7363 | conn = (kw[4] != 'b' ) ? objt_conn(smp->sess->origin) : |
| 7364 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7365 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7366 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7367 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7368 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7369 | smp->data.u.str.area = NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7370 | SSL_get0_next_proto_negotiated(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7371 | (const unsigned char **)&smp->data.u.str.area, |
| 7372 | (unsigned *)&smp->data.u.str.data); |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7373 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7374 | if (!smp->data.u.str.area) |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7375 | return 0; |
| 7376 | |
| 7377 | return 1; |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7378 | } |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 7379 | #endif |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7380 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 7381 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7382 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7383 | 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] | 7384 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7385 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7386 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7387 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7388 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7389 | smp->data.type = SMP_T_STR; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7390 | |
Olivier Houchard | 6b77f49 | 2018-11-22 18:18:29 +0100 | [diff] [blame] | 7391 | conn = (kw[4] != 'b' ) ? objt_conn(smp->sess->origin) : |
| 7392 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 7393 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7394 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7395 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7396 | ctx = conn->xprt_ctx; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7397 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7398 | smp->data.u.str.area = NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7399 | SSL_get0_alpn_selected(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7400 | (const unsigned char **)&smp->data.u.str.area, |
| 7401 | (unsigned *)&smp->data.u.str.data); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7402 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7403 | if (!smp->data.u.str.area) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 7404 | return 0; |
| 7405 | |
| 7406 | return 1; |
| 7407 | } |
| 7408 | #endif |
| 7409 | |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 7410 | /* string, returns the used protocol if front conn. transport layer is SSL. |
| 7411 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7412 | * char is 'b'. |
| 7413 | */ |
Willy Tarreau | a33c654 | 2012-10-15 13:19:06 +0200 | [diff] [blame] | 7414 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7415 | 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] | 7416 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7417 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7418 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7419 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7420 | |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7421 | smp->flags = 0; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7422 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7423 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7424 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7425 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7426 | smp->data.u.str.area = (char *)SSL_get_version(ctx->ssl); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7427 | if (!smp->data.u.str.area) |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7428 | return 0; |
| 7429 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7430 | smp->data.type = SMP_T_STR; |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7431 | smp->flags = SMP_F_CONST; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7432 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7433 | |
| 7434 | return 1; |
| 7435 | } |
| 7436 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 7437 | /* 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] | 7438 | * This function is also usable on backend conn if the fetch keyword 5th |
| 7439 | * char is 'b'. |
| 7440 | */ |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7441 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 589fcad | 2012-10-16 14:13:26 +0200 | [diff] [blame] | 7442 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7443 | 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] | 7444 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7445 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7446 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
Willy Tarreau | e237fe1 | 2016-03-10 17:05:28 +0100 | [diff] [blame] | 7447 | SSL_SESSION *ssl_sess; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7448 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | be508f1 | 2016-03-10 11:47:01 +0100 | [diff] [blame] | 7449 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7450 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7451 | smp->data.type = SMP_T_BIN; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7452 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7453 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7454 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7455 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7456 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7457 | ssl_sess = SSL_get_session(ctx->ssl); |
Willy Tarreau | 192252e | 2015-04-04 01:47:55 +0200 | [diff] [blame] | 7458 | if (!ssl_sess) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7459 | return 0; |
| 7460 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7461 | smp->data.u.str.area = (char *)SSL_SESSION_get_id(ssl_sess, |
| 7462 | (unsigned int *)&smp->data.u.str.data); |
| 7463 | if (!smp->data.u.str.area || !smp->data.u.str.data) |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7464 | return 0; |
| 7465 | |
| 7466 | return 1; |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7467 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7468 | #endif |
| 7469 | |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7470 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 7471 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7472 | static int |
Patrick Hemmer | 6567466 | 2019-06-04 08:13:03 -0400 | [diff] [blame] | 7473 | smp_fetch_ssl_fc_random(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7474 | { |
| 7475 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7476 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 7477 | struct buffer *data; |
| 7478 | struct ssl_sock_ctx *ctx; |
| 7479 | |
| 7480 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7481 | return 0; |
| 7482 | ctx = conn->xprt_ctx; |
| 7483 | |
| 7484 | data = get_trash_chunk(); |
| 7485 | if (kw[7] == 'c') |
| 7486 | data->data = SSL_get_client_random(ctx->ssl, |
| 7487 | (unsigned char *) data->area, |
| 7488 | data->size); |
| 7489 | else |
| 7490 | data->data = SSL_get_server_random(ctx->ssl, |
| 7491 | (unsigned char *) data->area, |
| 7492 | data->size); |
| 7493 | if (!data->data) |
| 7494 | return 0; |
| 7495 | |
| 7496 | smp->flags = 0; |
| 7497 | smp->data.type = SMP_T_BIN; |
| 7498 | smp->data.u.str = *data; |
| 7499 | |
| 7500 | return 1; |
| 7501 | } |
| 7502 | |
| 7503 | static int |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7504 | smp_fetch_ssl_fc_session_key(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7505 | { |
| 7506 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7507 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
| 7508 | SSL_SESSION *ssl_sess; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7509 | struct buffer *data; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7510 | struct ssl_sock_ctx *ctx; |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7511 | |
| 7512 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7513 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7514 | ctx = conn->xprt_ctx; |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7515 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7516 | ssl_sess = SSL_get_session(ctx->ssl); |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7517 | if (!ssl_sess) |
| 7518 | return 0; |
| 7519 | |
| 7520 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7521 | data->data = SSL_SESSION_get_master_key(ssl_sess, |
| 7522 | (unsigned char *) data->area, |
| 7523 | data->size); |
| 7524 | if (!data->data) |
Patrick Hemmer | e027547 | 2018-04-28 19:15:51 -0400 | [diff] [blame] | 7525 | return 0; |
| 7526 | |
| 7527 | smp->flags = 0; |
| 7528 | smp->data.type = SMP_T_BIN; |
| 7529 | smp->data.u.str = *data; |
| 7530 | |
| 7531 | return 1; |
| 7532 | } |
| 7533 | #endif |
| 7534 | |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7535 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emeric Brun | fe68f68 | 2012-10-16 14:59:28 +0200 | [diff] [blame] | 7536 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7537 | 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] | 7538 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7539 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7540 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7541 | |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 7542 | smp->flags = SMP_F_CONST; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7543 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7544 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7545 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7546 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7547 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7548 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7549 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7550 | 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] | 7551 | if (!smp->data.u.str.area) |
Willy Tarreau | 3e394c9 | 2012-09-14 23:56:58 +0200 | [diff] [blame] | 7552 | return 0; |
| 7553 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7554 | smp->data.u.str.data = strlen(smp->data.u.str.area); |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7555 | return 1; |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7556 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7557 | #endif |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 7558 | |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7559 | static int |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7560 | smp_fetch_ssl_fc_cl_bin(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7561 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7562 | struct connection *conn; |
| 7563 | struct ssl_capture *capture; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7564 | struct ssl_sock_ctx *ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7565 | |
| 7566 | conn = objt_conn(smp->sess->origin); |
| 7567 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7568 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7569 | ctx = conn->xprt_ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7570 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7571 | capture = SSL_get_ex_data(ctx->ssl, ssl_capture_ptr_index); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7572 | if (!capture) |
| 7573 | return 0; |
| 7574 | |
| 7575 | smp->flags = SMP_F_CONST; |
| 7576 | smp->data.type = SMP_T_BIN; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7577 | smp->data.u.str.area = capture->ciphersuite; |
| 7578 | smp->data.u.str.data = capture->ciphersuite_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7579 | return 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7580 | } |
| 7581 | |
| 7582 | static int |
| 7583 | smp_fetch_ssl_fc_cl_hex(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7584 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7585 | struct buffer *data; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7586 | |
| 7587 | if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private)) |
| 7588 | return 0; |
| 7589 | |
| 7590 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7591 | 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] | 7592 | smp->data.type = SMP_T_BIN; |
| 7593 | smp->data.u.str = *data; |
| 7594 | return 1; |
| 7595 | } |
| 7596 | |
| 7597 | static int |
| 7598 | smp_fetch_ssl_fc_cl_xxh64(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7599 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7600 | struct connection *conn; |
| 7601 | struct ssl_capture *capture; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7602 | struct ssl_sock_ctx *ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7603 | |
| 7604 | conn = objt_conn(smp->sess->origin); |
| 7605 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7606 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7607 | ctx = conn->xprt_ctx; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7608 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7609 | capture = SSL_get_ex_data(ctx->ssl, ssl_capture_ptr_index); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7610 | if (!capture) |
| 7611 | return 0; |
| 7612 | |
| 7613 | smp->data.type = SMP_T_SINT; |
| 7614 | smp->data.u.sint = capture->xxh64; |
| 7615 | return 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7616 | } |
| 7617 | |
| 7618 | static int |
| 7619 | smp_fetch_ssl_fc_cl_str(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 7620 | { |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7621 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7622 | struct buffer *data; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7623 | int i; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7624 | |
| 7625 | if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private)) |
| 7626 | return 0; |
| 7627 | |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7628 | data = get_trash_chunk(); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7629 | for (i = 0; i + 1 < smp->data.u.str.data; i += 2) { |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7630 | const char *str; |
| 7631 | const SSL_CIPHER *cipher; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7632 | 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] | 7633 | uint16_t id = (bin[0] << 8) | bin[1]; |
| 7634 | #if defined(OPENSSL_IS_BORINGSSL) |
| 7635 | cipher = SSL_get_cipher_by_value(id); |
| 7636 | #else |
Willy Tarreau | b729077 | 2018-10-15 11:01:59 +0200 | [diff] [blame] | 7637 | struct connection *conn = __objt_conn(smp->sess->origin); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7638 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 7639 | cipher = SSL_CIPHER_find(ctx->ssl, bin); |
Emmanuel Hocdet | ddcde19 | 2017-09-01 17:32:08 +0200 | [diff] [blame] | 7640 | #endif |
| 7641 | str = SSL_CIPHER_get_name(cipher); |
| 7642 | if (!str || strcmp(str, "(NONE)") == 0) |
| 7643 | chunk_appendf(data, "%sUNKNOWN(%04x)", i == 0 ? "" : ",", id); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7644 | else |
| 7645 | chunk_appendf(data, "%s%s", i == 0 ? "" : ",", str); |
| 7646 | } |
| 7647 | smp->data.type = SMP_T_STR; |
| 7648 | smp->data.u.str = *data; |
| 7649 | return 1; |
| 7650 | #else |
| 7651 | return smp_fetch_ssl_fc_cl_xxh64(args, smp, kw, private); |
| 7652 | #endif |
| 7653 | } |
| 7654 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7655 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 7656 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7657 | 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] | 7658 | { |
Emeric Brun | eb8def9 | 2018-02-19 15:59:48 +0100 | [diff] [blame] | 7659 | struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) : |
| 7660 | smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7661 | int finished_len; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7662 | struct buffer *finished_trash; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7663 | struct ssl_sock_ctx *ctx; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7664 | |
| 7665 | smp->flags = 0; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7666 | if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock) |
| 7667 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7668 | ctx = conn->xprt_ctx; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7669 | |
| 7670 | if (!(conn->flags & CO_FL_CONNECTED)) { |
| 7671 | smp->flags |= SMP_F_MAY_CHANGE; |
| 7672 | return 0; |
| 7673 | } |
| 7674 | |
| 7675 | finished_trash = get_trash_chunk(); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7676 | if (!SSL_session_reused(ctx->ssl)) |
| 7677 | finished_len = SSL_get_peer_finished(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7678 | finished_trash->area, |
| 7679 | finished_trash->size); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7680 | else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7681 | finished_len = SSL_get_finished(ctx->ssl, |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7682 | finished_trash->area, |
| 7683 | finished_trash->size); |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7684 | |
| 7685 | if (!finished_len) |
| 7686 | return 0; |
| 7687 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 7688 | finished_trash->data = finished_len; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 7689 | smp->data.u.str = *finished_trash; |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7690 | smp->data.type = SMP_T_BIN; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7691 | |
| 7692 | return 1; |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7693 | } |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 7694 | #endif |
David S | c1ad52e | 2014-04-08 18:48:47 -0400 | [diff] [blame] | 7695 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7696 | /* 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] | 7697 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7698 | 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] | 7699 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7700 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7701 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7702 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7703 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7704 | if (!conn || conn->xprt != &ssl_sock) |
| 7705 | return 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7706 | ctx = conn->xprt_ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7707 | |
| 7708 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7709 | smp->flags = SMP_F_MAY_CHANGE; |
| 7710 | return 0; |
| 7711 | } |
| 7712 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7713 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7714 | 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] | 7715 | smp->flags = 0; |
| 7716 | |
| 7717 | return 1; |
| 7718 | } |
| 7719 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7720 | /* 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] | 7721 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7722 | 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] | 7723 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7724 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7725 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7726 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7727 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7728 | if (!conn || conn->xprt != &ssl_sock) |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7729 | return 0; |
| 7730 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7731 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7732 | smp->flags = SMP_F_MAY_CHANGE; |
| 7733 | return 0; |
| 7734 | } |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7735 | ctx = conn->xprt_ctx; |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7736 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7737 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7738 | 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] | 7739 | smp->flags = 0; |
| 7740 | |
| 7741 | return 1; |
| 7742 | } |
| 7743 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7744 | /* integer, returns the first verify error on client certificate */ |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7745 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7746 | 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] | 7747 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7748 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7749 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7750 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7751 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7752 | if (!conn || conn->xprt != &ssl_sock) |
| 7753 | return 0; |
| 7754 | |
| 7755 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 7756 | smp->flags = SMP_F_MAY_CHANGE; |
| 7757 | return 0; |
| 7758 | } |
| 7759 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7760 | ctx = conn->xprt_ctx; |
| 7761 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7762 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 7763 | 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] | 7764 | smp->flags = 0; |
| 7765 | |
| 7766 | return 1; |
| 7767 | } |
| 7768 | |
Emeric Brun | 2525b6b | 2012-10-18 15:59:43 +0200 | [diff] [blame] | 7769 | /* integer, returns the verify result on client cert */ |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7770 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 7771 | 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] | 7772 | { |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7773 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7774 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7775 | |
Thierry FOURNIER | 0a9a2b8 | 2015-05-11 15:20:49 +0200 | [diff] [blame] | 7776 | conn = objt_conn(smp->sess->origin); |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7777 | if (!conn || conn->xprt != &ssl_sock) |
| 7778 | return 0; |
| 7779 | |
| 7780 | if (!(conn->flags & CO_FL_CONNECTED)) { |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7781 | smp->flags = SMP_F_MAY_CHANGE; |
| 7782 | return 0; |
| 7783 | } |
| 7784 | |
Willy Tarreau | b363a1f | 2013-10-01 10:45:07 +0200 | [diff] [blame] | 7785 | if (!conn->xprt_ctx) |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7786 | return 0; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7787 | ctx = conn->xprt_ctx; |
Emeric Brun | baf8ffb | 2012-09-21 15:27:20 +0200 | [diff] [blame] | 7788 | |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 7789 | smp->data.type = SMP_T_SINT; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 7790 | 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] | 7791 | smp->flags = 0; |
| 7792 | |
| 7793 | return 1; |
| 7794 | } |
| 7795 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 7796 | /* parse the "ca-file" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7797 | 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] | 7798 | { |
| 7799 | if (!*args[cur_arg + 1]) { |
| 7800 | if (err) |
| 7801 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 7802 | return ERR_ALERT | ERR_FATAL; |
| 7803 | } |
| 7804 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7805 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7806 | 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] | 7807 | else |
| 7808 | memprintf(&conf->ca_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7809 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7810 | return 0; |
| 7811 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7812 | static int bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7813 | { |
| 7814 | return ssl_bind_parse_ca_file(args, cur_arg, px, &conf->ssl_conf, err); |
| 7815 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7816 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7817 | /* parse the "ca-sign-file" bind keyword */ |
| 7818 | static int bind_parse_ca_sign_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7819 | { |
| 7820 | if (!*args[cur_arg + 1]) { |
| 7821 | if (err) |
| 7822 | memprintf(err, "'%s' : missing CAfile path", args[cur_arg]); |
| 7823 | return ERR_ALERT | ERR_FATAL; |
| 7824 | } |
| 7825 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7826 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7827 | 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] | 7828 | else |
| 7829 | memprintf(&conf->ca_sign_file, "%s", args[cur_arg + 1]); |
| 7830 | |
| 7831 | return 0; |
| 7832 | } |
| 7833 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7834 | /* parse the "ca-sign-pass" bind keyword */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7835 | static int bind_parse_ca_sign_pass(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 CAkey password", args[cur_arg]); |
| 7840 | return ERR_ALERT | ERR_FATAL; |
| 7841 | } |
| 7842 | memprintf(&conf->ca_sign_pass, "%s", args[cur_arg + 1]); |
| 7843 | return 0; |
| 7844 | } |
| 7845 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7846 | /* parse the "ciphers" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7847 | 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] | 7848 | { |
| 7849 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 7850 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7851 | return ERR_ALERT | ERR_FATAL; |
| 7852 | } |
| 7853 | |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 7854 | free(conf->ciphers); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 7855 | conf->ciphers = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7856 | return 0; |
| 7857 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7858 | static int bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7859 | { |
| 7860 | return ssl_bind_parse_ciphers(args, cur_arg, px, &conf->ssl_conf, err); |
| 7861 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7862 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 7863 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7864 | /* parse the "ciphersuites" bind keyword */ |
| 7865 | static int ssl_bind_parse_ciphersuites(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7866 | { |
| 7867 | if (!*args[cur_arg + 1]) { |
| 7868 | memprintf(err, "'%s' : missing cipher suite", args[cur_arg]); |
| 7869 | return ERR_ALERT | ERR_FATAL; |
| 7870 | } |
| 7871 | |
| 7872 | free(conf->ciphersuites); |
| 7873 | conf->ciphersuites = strdup(args[cur_arg + 1]); |
| 7874 | return 0; |
| 7875 | } |
| 7876 | static int bind_parse_ciphersuites(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7877 | { |
| 7878 | return ssl_bind_parse_ciphersuites(args, cur_arg, px, &conf->ssl_conf, err); |
| 7879 | } |
| 7880 | #endif |
| 7881 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7882 | /* 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] | 7883 | 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] | 7884 | { |
Willy Tarreau | 3801103 | 2013-08-13 16:59:39 +0200 | [diff] [blame] | 7885 | char path[MAXPATHLEN]; |
Willy Tarreau | b75d692 | 2014-04-14 18:05:41 +0200 | [diff] [blame] | 7886 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7887 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 7888 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7889 | return ERR_ALERT | ERR_FATAL; |
| 7890 | } |
| 7891 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7892 | if ((*args[cur_arg + 1] != '/' ) && global_ssl.crt_base) { |
| 7893 | 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] | 7894 | memprintf(err, "'%s' : path too long", args[cur_arg]); |
| 7895 | return ERR_ALERT | ERR_FATAL; |
| 7896 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7897 | 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] | 7898 | return ssl_sock_load_cert(path, conf, err); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7899 | } |
| 7900 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7901 | return ssl_sock_load_cert(args[cur_arg + 1], conf, err); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7902 | } |
| 7903 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7904 | /* 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] | 7905 | static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7906 | { |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7907 | int err_code; |
| 7908 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7909 | if (!*args[cur_arg + 1]) { |
| 7910 | memprintf(err, "'%s' : missing certificate location", args[cur_arg]); |
| 7911 | return ERR_ALERT | ERR_FATAL; |
| 7912 | } |
| 7913 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7914 | err_code = ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err); |
| 7915 | if (err_code) |
Willy Tarreau | ad1731d | 2013-04-02 17:35:58 +0200 | [diff] [blame] | 7916 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7917 | |
Willy Tarreau | b131c87 | 2019-10-16 16:42:19 +0200 | [diff] [blame] | 7918 | return err_code; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 7919 | } |
| 7920 | |
Emeric Brun | fb510ea | 2012-10-05 12:00:26 +0200 | [diff] [blame] | 7921 | /* parse the "crl-file" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7922 | 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] | 7923 | { |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 7924 | #ifndef X509_V_FLAG_CRL_CHECK |
| 7925 | if (err) |
| 7926 | memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]); |
| 7927 | return ERR_ALERT | ERR_FATAL; |
| 7928 | #else |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 7929 | if (!*args[cur_arg + 1]) { |
| 7930 | if (err) |
| 7931 | memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]); |
| 7932 | return ERR_ALERT | ERR_FATAL; |
| 7933 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7934 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7935 | if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base) |
| 7936 | 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] | 7937 | else |
| 7938 | memprintf(&conf->crl_file, "%s", args[cur_arg + 1]); |
Emeric Brun | c8e8d12 | 2012-10-02 18:42:10 +0200 | [diff] [blame] | 7939 | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7940 | return 0; |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 7941 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7942 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7943 | static int bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7944 | { |
| 7945 | return ssl_bind_parse_crl_file(args, cur_arg, px, &conf->ssl_conf, err); |
| 7946 | } |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7947 | |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 7948 | /* parse the "curves" bind keyword keyword */ |
| 7949 | static int ssl_bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 7950 | { |
Lukas Tribus | d13e925 | 2019-11-24 18:20:40 +0100 | [diff] [blame] | 7951 | #if ((HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) || defined(LIBRESSL_VERSION_NUMBER)) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 7952 | if (!*args[cur_arg + 1]) { |
| 7953 | if (err) |
| 7954 | memprintf(err, "'%s' : missing curve suite", args[cur_arg]); |
| 7955 | return ERR_ALERT | ERR_FATAL; |
| 7956 | } |
| 7957 | conf->curves = strdup(args[cur_arg + 1]); |
| 7958 | return 0; |
| 7959 | #else |
| 7960 | if (err) |
| 7961 | memprintf(err, "'%s' : library does not support curve suite", args[cur_arg]); |
| 7962 | return ERR_ALERT | ERR_FATAL; |
| 7963 | #endif |
| 7964 | } |
| 7965 | static int bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7966 | { |
| 7967 | return ssl_bind_parse_curves(args, cur_arg, px, &conf->ssl_conf, err); |
| 7968 | } |
| 7969 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7970 | /* parse the "ecdhe" bind keyword keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7971 | 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] | 7972 | { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7973 | #if HA_OPENSSL_VERSION_NUMBER < 0x0090800fL |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7974 | if (err) |
| 7975 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]); |
| 7976 | return ERR_ALERT | ERR_FATAL; |
| 7977 | #elif defined(OPENSSL_NO_ECDH) |
| 7978 | if (err) |
| 7979 | memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]); |
| 7980 | return ERR_ALERT | ERR_FATAL; |
| 7981 | #else |
| 7982 | if (!*args[cur_arg + 1]) { |
| 7983 | if (err) |
| 7984 | memprintf(err, "'%s' : missing named curve", args[cur_arg]); |
| 7985 | return ERR_ALERT | ERR_FATAL; |
| 7986 | } |
| 7987 | |
| 7988 | conf->ecdhe = strdup(args[cur_arg + 1]); |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7989 | |
| 7990 | return 0; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 7991 | #endif |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7992 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 7993 | static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 7994 | { |
| 7995 | return ssl_bind_parse_ecdhe(args, cur_arg, px, &conf->ssl_conf, err); |
| 7996 | } |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 7997 | |
Bertrand Jacquin | ff13c06 | 2016-11-13 16:37:11 +0000 | [diff] [blame] | 7998 | /* parse the "crt-ignore-err" and "ca-ignore-err" bind keywords */ |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 7999 | static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8000 | { |
| 8001 | int code; |
| 8002 | char *p = args[cur_arg + 1]; |
| 8003 | unsigned long long *ignerr = &conf->crt_ignerr; |
| 8004 | |
| 8005 | if (!*p) { |
| 8006 | if (err) |
| 8007 | memprintf(err, "'%s' : missing error IDs list", args[cur_arg]); |
| 8008 | return ERR_ALERT | ERR_FATAL; |
| 8009 | } |
| 8010 | |
| 8011 | if (strcmp(args[cur_arg], "ca-ignore-err") == 0) |
| 8012 | ignerr = &conf->ca_ignerr; |
| 8013 | |
| 8014 | if (strcmp(p, "all") == 0) { |
| 8015 | *ignerr = ~0ULL; |
| 8016 | return 0; |
| 8017 | } |
| 8018 | |
| 8019 | while (p) { |
| 8020 | code = atoi(p); |
| 8021 | if ((code <= 0) || (code > 63)) { |
| 8022 | if (err) |
| 8023 | memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'", |
| 8024 | args[cur_arg], code, args[cur_arg + 1]); |
| 8025 | return ERR_ALERT | ERR_FATAL; |
| 8026 | } |
| 8027 | *ignerr |= 1ULL << code; |
| 8028 | p = strchr(p, ','); |
| 8029 | if (p) |
| 8030 | p++; |
| 8031 | } |
| 8032 | |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8033 | return 0; |
| 8034 | } |
| 8035 | |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8036 | /* parse tls_method_options "no-xxx" and "force-xxx" */ |
| 8037 | 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] | 8038 | { |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8039 | uint16_t v; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8040 | char *p; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8041 | p = strchr(arg, '-'); |
| 8042 | if (!p) |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8043 | goto fail; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8044 | p++; |
| 8045 | if (!strcmp(p, "sslv3")) |
| 8046 | v = CONF_SSLV3; |
| 8047 | else if (!strcmp(p, "tlsv10")) |
| 8048 | v = CONF_TLSV10; |
| 8049 | else if (!strcmp(p, "tlsv11")) |
| 8050 | v = CONF_TLSV11; |
| 8051 | else if (!strcmp(p, "tlsv12")) |
| 8052 | v = CONF_TLSV12; |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 8053 | else if (!strcmp(p, "tlsv13")) |
| 8054 | v = CONF_TLSV13; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8055 | else |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8056 | goto fail; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8057 | if (!strncmp(arg, "no-", 3)) |
| 8058 | methods->flags |= methodVersions[v].flag; |
| 8059 | else if (!strncmp(arg, "force-", 6)) |
| 8060 | methods->min = methods->max = v; |
| 8061 | else |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8062 | goto fail; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8063 | return 0; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8064 | fail: |
| 8065 | if (err) |
| 8066 | memprintf(err, "'%s' : option not implemented", arg); |
| 8067 | return ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8068 | } |
| 8069 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8070 | 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] | 8071 | { |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 8072 | 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] | 8073 | } |
| 8074 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8075 | 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] | 8076 | { |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8077 | return parse_tls_method_options(args[*cur_arg], &newsrv->ssl_ctx.methods, err); |
| 8078 | } |
| 8079 | |
| 8080 | /* parse tls_method min/max: "ssl-min-ver" and "ssl-max-ver" */ |
| 8081 | static int parse_tls_method_minmax(char **args, int cur_arg, struct tls_version_filter *methods, char **err) |
| 8082 | { |
| 8083 | uint16_t i, v = 0; |
| 8084 | char *argv = args[cur_arg + 1]; |
| 8085 | if (!*argv) { |
| 8086 | if (err) |
| 8087 | memprintf(err, "'%s' : missing the ssl/tls version", args[cur_arg]); |
| 8088 | return ERR_ALERT | ERR_FATAL; |
| 8089 | } |
| 8090 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 8091 | if (!strcmp(argv, methodVersions[i].name)) |
| 8092 | v = i; |
| 8093 | if (!v) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8094 | if (err) |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8095 | memprintf(err, "'%s' : unknown ssl/tls version", args[cur_arg + 1]); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8096 | return ERR_ALERT | ERR_FATAL; |
| 8097 | } |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8098 | if (!strcmp("ssl-min-ver", args[cur_arg])) |
| 8099 | methods->min = v; |
| 8100 | else if (!strcmp("ssl-max-ver", args[cur_arg])) |
| 8101 | methods->max = v; |
| 8102 | else { |
| 8103 | if (err) |
| 8104 | memprintf(err, "'%s' : option not implemented", args[cur_arg]); |
| 8105 | return ERR_ALERT | ERR_FATAL; |
| 8106 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8107 | return 0; |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8108 | } |
Emeric Brun | 2cb7ae5 | 2012-10-05 14:14:21 +0200 | [diff] [blame] | 8109 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 8110 | static int ssl_bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 8111 | { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 8112 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) && !defined(OPENSSL_IS_BORINGSSL) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 8113 | 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] | 8114 | #endif |
| 8115 | return parse_tls_method_minmax(args, cur_arg, &conf->ssl_methods, err); |
| 8116 | } |
| 8117 | |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8118 | static int bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8119 | { |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 8120 | 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] | 8121 | } |
| 8122 | |
| 8123 | static int srv_parse_tls_method_minmax(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8124 | { |
| 8125 | return parse_tls_method_minmax(args, *cur_arg, &newsrv->ssl_ctx.methods, err); |
| 8126 | } |
| 8127 | |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8128 | /* parse the "no-tls-tickets" bind keyword */ |
Emmanuel Hocdet | 4608ed9 | 2017-01-20 13:06:27 +0100 | [diff] [blame] | 8129 | 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] | 8130 | { |
Emeric Brun | 8967549 | 2012-10-05 13:48:26 +0200 | [diff] [blame] | 8131 | conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 8132 | return 0; |
| 8133 | } |
Emeric Brun | 2d0c482 | 2012-10-02 13:45:20 +0200 | [diff] [blame] | 8134 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 8135 | /* parse the "allow-0rtt" bind keyword */ |
| 8136 | static int ssl_bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 8137 | { |
| 8138 | conf->early_data = 1; |
| 8139 | return 0; |
| 8140 | } |
| 8141 | |
| 8142 | static int bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8143 | { |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 8144 | conf->ssl_conf.early_data = 1; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 8145 | return 0; |
| 8146 | } |
| 8147 | |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8148 | /* parse the "npn" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8149 | 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] | 8150 | { |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 8151 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8152 | char *p1, *p2; |
| 8153 | |
| 8154 | if (!*args[cur_arg + 1]) { |
| 8155 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]); |
| 8156 | return ERR_ALERT | ERR_FATAL; |
| 8157 | } |
| 8158 | |
| 8159 | free(conf->npn_str); |
| 8160 | |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 8161 | /* the NPN string is built as a suite of (<len> <name>)*, |
| 8162 | * so we reuse each comma to store the next <len> and need |
| 8163 | * one more for the end of the string. |
| 8164 | */ |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8165 | conf->npn_len = strlen(args[cur_arg + 1]) + 1; |
Willy Tarreau | 3724da1 | 2016-02-12 17:11:12 +0100 | [diff] [blame] | 8166 | conf->npn_str = calloc(1, conf->npn_len + 1); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 8167 | memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len); |
| 8168 | |
| 8169 | /* replace commas with the name length */ |
| 8170 | p1 = conf->npn_str; |
| 8171 | p2 = p1 + 1; |
| 8172 | while (1) { |
| 8173 | p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1)); |
| 8174 | if (!p2) |
| 8175 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8176 | |
| 8177 | if (p2 - (p1 + 1) > 255) { |
| 8178 | *p2 = '\0'; |
| 8179 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 8180 | return ERR_ALERT | ERR_FATAL; |
| 8181 | } |
| 8182 | |
| 8183 | *p1 = p2 - (p1 + 1); |
| 8184 | p1 = p2; |
| 8185 | |
| 8186 | if (!*p2) |
| 8187 | break; |
| 8188 | |
| 8189 | *(p2++) = '\0'; |
| 8190 | } |
| 8191 | return 0; |
| 8192 | #else |
| 8193 | if (err) |
| 8194 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]); |
| 8195 | return ERR_ALERT | ERR_FATAL; |
| 8196 | #endif |
| 8197 | } |
| 8198 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8199 | static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8200 | { |
| 8201 | return ssl_bind_parse_npn(args, cur_arg, px, &conf->ssl_conf, err); |
| 8202 | } |
| 8203 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8204 | /* parse the "alpn" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8205 | 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] | 8206 | { |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 8207 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8208 | char *p1, *p2; |
| 8209 | |
| 8210 | if (!*args[cur_arg + 1]) { |
| 8211 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[cur_arg]); |
| 8212 | return ERR_ALERT | ERR_FATAL; |
| 8213 | } |
| 8214 | |
| 8215 | free(conf->alpn_str); |
| 8216 | |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 8217 | /* the ALPN string is built as a suite of (<len> <name>)*, |
| 8218 | * so we reuse each comma to store the next <len> and need |
| 8219 | * one more for the end of the string. |
| 8220 | */ |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8221 | conf->alpn_len = strlen(args[cur_arg + 1]) + 1; |
Marcoen Hirschberg | bef6091 | 2016-02-12 17:05:24 +0100 | [diff] [blame] | 8222 | conf->alpn_str = calloc(1, conf->alpn_len + 1); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 8223 | memcpy(conf->alpn_str + 1, args[cur_arg + 1], conf->alpn_len); |
| 8224 | |
| 8225 | /* replace commas with the name length */ |
| 8226 | p1 = conf->alpn_str; |
| 8227 | p2 = p1 + 1; |
| 8228 | while (1) { |
| 8229 | p2 = memchr(p1 + 1, ',', conf->alpn_str + conf->alpn_len - (p1 + 1)); |
| 8230 | if (!p2) |
| 8231 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8232 | |
| 8233 | if (p2 - (p1 + 1) > 255) { |
| 8234 | *p2 = '\0'; |
| 8235 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[cur_arg], p1 + 1); |
| 8236 | return ERR_ALERT | ERR_FATAL; |
| 8237 | } |
| 8238 | |
| 8239 | *p1 = p2 - (p1 + 1); |
| 8240 | p1 = p2; |
| 8241 | |
| 8242 | if (!*p2) |
| 8243 | break; |
| 8244 | |
| 8245 | *(p2++) = '\0'; |
| 8246 | } |
| 8247 | return 0; |
| 8248 | #else |
| 8249 | if (err) |
| 8250 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[cur_arg]); |
| 8251 | return ERR_ALERT | ERR_FATAL; |
| 8252 | #endif |
| 8253 | } |
| 8254 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8255 | static int bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8256 | { |
| 8257 | return ssl_bind_parse_alpn(args, cur_arg, px, &conf->ssl_conf, err); |
| 8258 | } |
| 8259 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8260 | /* parse the "ssl" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8261 | 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] | 8262 | { |
Willy Tarreau | 71a8c7c | 2016-12-21 22:04:54 +0100 | [diff] [blame] | 8263 | conf->xprt = &ssl_sock; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 8264 | conf->is_ssl = 1; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 8265 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8266 | if (global_ssl.listen_default_ciphers && !conf->ssl_conf.ciphers) |
| 8267 | conf->ssl_conf.ciphers = strdup(global_ssl.listen_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8268 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8269 | if (global_ssl.listen_default_ciphersuites && !conf->ssl_conf.ciphersuites) |
| 8270 | conf->ssl_conf.ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 8271 | #endif |
Emmanuel Hocdet | 4608ed9 | 2017-01-20 13:06:27 +0100 | [diff] [blame] | 8272 | conf->ssl_options |= global_ssl.listen_default_ssloptions; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 8273 | conf->ssl_conf.ssl_methods.flags |= global_ssl.listen_default_sslmethods.flags; |
| 8274 | if (!conf->ssl_conf.ssl_methods.min) |
| 8275 | conf->ssl_conf.ssl_methods.min = global_ssl.listen_default_sslmethods.min; |
| 8276 | if (!conf->ssl_conf.ssl_methods.max) |
| 8277 | conf->ssl_conf.ssl_methods.max = global_ssl.listen_default_sslmethods.max; |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 8278 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 8279 | return 0; |
| 8280 | } |
| 8281 | |
Lukas Tribus | 53ae85c | 2017-05-04 15:45:40 +0000 | [diff] [blame] | 8282 | /* parse the "prefer-client-ciphers" bind keyword */ |
| 8283 | static int bind_parse_pcc(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8284 | { |
| 8285 | conf->ssl_options |= BC_SSL_O_PREF_CLIE_CIPH; |
| 8286 | return 0; |
| 8287 | } |
| 8288 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8289 | /* parse the "generate-certificates" bind keyword */ |
| 8290 | static int bind_parse_generate_certs(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8291 | { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 8292 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 8293 | conf->generate_certs = 1; |
| 8294 | #else |
| 8295 | memprintf(err, "%sthis version of openssl cannot generate SSL certificates.\n", |
| 8296 | err && *err ? *err : ""); |
| 8297 | #endif |
| 8298 | return 0; |
| 8299 | } |
| 8300 | |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 8301 | /* parse the "strict-sni" bind keyword */ |
| 8302 | static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8303 | { |
| 8304 | conf->strict_sni = 1; |
| 8305 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8306 | } |
| 8307 | |
| 8308 | /* parse the "tls-ticket-keys" bind keyword */ |
| 8309 | static int bind_parse_tls_ticket_keys(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8310 | { |
| 8311 | #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] | 8312 | FILE *f = NULL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8313 | int i = 0; |
| 8314 | char thisline[LINESIZE]; |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8315 | struct tls_keys_ref *keys_ref = NULL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8316 | |
| 8317 | if (!*args[cur_arg + 1]) { |
| 8318 | if (err) |
| 8319 | memprintf(err, "'%s' : missing TLS ticket keys file path", args[cur_arg]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8320 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8321 | } |
| 8322 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8323 | keys_ref = tlskeys_ref_lookup(args[cur_arg + 1]); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 8324 | if (keys_ref) { |
| 8325 | keys_ref->refcount++; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8326 | conf->keys_ref = keys_ref; |
| 8327 | return 0; |
| 8328 | } |
| 8329 | |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8330 | keys_ref = calloc(1, sizeof(*keys_ref)); |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8331 | if (!keys_ref) { |
| 8332 | if (err) |
| 8333 | memprintf(err, "'%s' : allocation error", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8334 | goto fail; |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8335 | } |
| 8336 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8337 | keys_ref->tlskeys = malloc(TLS_TICKETS_NO * sizeof(union tls_sess_key)); |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8338 | if (!keys_ref->tlskeys) { |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8339 | if (err) |
| 8340 | memprintf(err, "'%s' : allocation error", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8341 | goto fail; |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8342 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8343 | |
| 8344 | if ((f = fopen(args[cur_arg + 1], "r")) == NULL) { |
| 8345 | if (err) |
| 8346 | 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] | 8347 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8348 | } |
| 8349 | |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8350 | keys_ref->filename = strdup(args[cur_arg + 1]); |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8351 | if (!keys_ref->filename) { |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8352 | if (err) |
| 8353 | memprintf(err, "'%s' : allocation error", args[cur_arg+1]); |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8354 | goto fail; |
Emeric Brun | 09852f7 | 2019-01-10 10:51:13 +0100 | [diff] [blame] | 8355 | } |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8356 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8357 | keys_ref->key_size_bits = 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8358 | while (fgets(thisline, sizeof(thisline), f) != NULL) { |
| 8359 | int len = strlen(thisline); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8360 | int dec_size; |
| 8361 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8362 | /* Strip newline characters from the end */ |
| 8363 | if(thisline[len - 1] == '\n') |
| 8364 | thisline[--len] = 0; |
| 8365 | |
| 8366 | if(thisline[len - 1] == '\r') |
| 8367 | thisline[--len] = 0; |
| 8368 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8369 | dec_size = base64dec(thisline, len, (char *) (keys_ref->tlskeys + i % TLS_TICKETS_NO), sizeof(union tls_sess_key)); |
| 8370 | if (dec_size < 0) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8371 | if (err) |
| 8372 | 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] | 8373 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8374 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8375 | else if (!keys_ref->key_size_bits && (dec_size == sizeof(struct tls_sess_key_128))) { |
| 8376 | keys_ref->key_size_bits = 128; |
| 8377 | } |
| 8378 | else if (!keys_ref->key_size_bits && (dec_size == sizeof(struct tls_sess_key_256))) { |
| 8379 | keys_ref->key_size_bits = 256; |
| 8380 | } |
| 8381 | else if (((dec_size != sizeof(struct tls_sess_key_128)) && (dec_size != sizeof(struct tls_sess_key_256))) |
| 8382 | || ((dec_size == sizeof(struct tls_sess_key_128) && (keys_ref->key_size_bits != 128))) |
| 8383 | || ((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] | 8384 | if (err) |
| 8385 | 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] | 8386 | goto fail; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 8387 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8388 | i++; |
| 8389 | } |
| 8390 | |
| 8391 | if (i < TLS_TICKETS_NO) { |
| 8392 | if (err) |
| 8393 | 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] | 8394 | goto fail; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8395 | } |
| 8396 | |
| 8397 | fclose(f); |
| 8398 | |
| 8399 | /* Use penultimate key for encryption, handle when TLS_TICKETS_NO = 1 */ |
Nenad Merdanovic | 1789115 | 2016-03-25 22:16:57 +0100 | [diff] [blame] | 8400 | i -= 2; |
| 8401 | 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] | 8402 | keys_ref->unique_id = -1; |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 8403 | keys_ref->refcount = 1; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 8404 | HA_RWLOCK_INIT(&keys_ref->lock); |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 8405 | conf->keys_ref = keys_ref; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8406 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 8407 | LIST_ADD(&tlskeys_reference, &keys_ref->list); |
| 8408 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8409 | return 0; |
Christopher Faulet | 2bbc80d | 2019-10-21 09:55:49 +0200 | [diff] [blame] | 8410 | |
| 8411 | fail: |
| 8412 | if (f) |
| 8413 | fclose(f); |
| 8414 | if (keys_ref) { |
| 8415 | free(keys_ref->filename); |
| 8416 | free(keys_ref->tlskeys); |
| 8417 | free(keys_ref); |
| 8418 | } |
| 8419 | return ERR_ALERT | ERR_FATAL; |
| 8420 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 8421 | #else |
| 8422 | if (err) |
| 8423 | memprintf(err, "'%s' : TLS ticket callback extension not supported", args[cur_arg]); |
| 8424 | return ERR_ALERT | ERR_FATAL; |
| 8425 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 8426 | } |
| 8427 | |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8428 | /* parse the "verify" bind keyword */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8429 | 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] | 8430 | { |
| 8431 | if (!*args[cur_arg + 1]) { |
| 8432 | if (err) |
| 8433 | memprintf(err, "'%s' : missing verify method", args[cur_arg]); |
| 8434 | return ERR_ALERT | ERR_FATAL; |
| 8435 | } |
| 8436 | |
| 8437 | if (strcmp(args[cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8438 | conf->verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8439 | else if (strcmp(args[cur_arg + 1], "optional") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8440 | conf->verify = SSL_SOCK_VERIFY_OPTIONAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8441 | else if (strcmp(args[cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8442 | conf->verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8443 | else { |
| 8444 | if (err) |
| 8445 | memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n", |
| 8446 | args[cur_arg], args[cur_arg + 1]); |
| 8447 | return ERR_ALERT | ERR_FATAL; |
| 8448 | } |
| 8449 | |
| 8450 | return 0; |
| 8451 | } |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 8452 | static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8453 | { |
| 8454 | return ssl_bind_parse_verify(args, cur_arg, px, &conf->ssl_conf, err); |
| 8455 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 8456 | |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 8457 | /* parse the "no-ca-names" bind keyword */ |
| 8458 | static int ssl_bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err) |
| 8459 | { |
| 8460 | conf->no_ca_names = 1; |
| 8461 | return 0; |
| 8462 | } |
| 8463 | static int bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 8464 | { |
| 8465 | return ssl_bind_parse_no_ca_names(args, cur_arg, px, &conf->ssl_conf, err); |
| 8466 | } |
| 8467 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8468 | /************** "server" keywords ****************/ |
| 8469 | |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8470 | /* parse the "npn" bind keyword */ |
| 8471 | static int srv_parse_npn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8472 | { |
| 8473 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 8474 | char *p1, *p2; |
| 8475 | |
| 8476 | if (!*args[*cur_arg + 1]) { |
| 8477 | memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[*cur_arg]); |
| 8478 | return ERR_ALERT | ERR_FATAL; |
| 8479 | } |
| 8480 | |
| 8481 | free(newsrv->ssl_ctx.npn_str); |
| 8482 | |
| 8483 | /* the NPN string is built as a suite of (<len> <name>)*, |
| 8484 | * so we reuse each comma to store the next <len> and need |
| 8485 | * one more for the end of the string. |
| 8486 | */ |
| 8487 | newsrv->ssl_ctx.npn_len = strlen(args[*cur_arg + 1]) + 1; |
| 8488 | newsrv->ssl_ctx.npn_str = calloc(1, newsrv->ssl_ctx.npn_len + 1); |
| 8489 | memcpy(newsrv->ssl_ctx.npn_str + 1, args[*cur_arg + 1], |
| 8490 | newsrv->ssl_ctx.npn_len); |
| 8491 | |
| 8492 | /* replace commas with the name length */ |
| 8493 | p1 = newsrv->ssl_ctx.npn_str; |
| 8494 | p2 = p1 + 1; |
| 8495 | while (1) { |
| 8496 | p2 = memchr(p1 + 1, ',', newsrv->ssl_ctx.npn_str + |
| 8497 | newsrv->ssl_ctx.npn_len - (p1 + 1)); |
| 8498 | if (!p2) |
| 8499 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8500 | |
| 8501 | if (p2 - (p1 + 1) > 255) { |
| 8502 | *p2 = '\0'; |
| 8503 | memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[*cur_arg], p1 + 1); |
| 8504 | return ERR_ALERT | ERR_FATAL; |
| 8505 | } |
| 8506 | |
| 8507 | *p1 = p2 - (p1 + 1); |
| 8508 | p1 = p2; |
| 8509 | |
| 8510 | if (!*p2) |
| 8511 | break; |
| 8512 | |
| 8513 | *(p2++) = '\0'; |
| 8514 | } |
| 8515 | return 0; |
| 8516 | #else |
| 8517 | if (err) |
| 8518 | memprintf(err, "'%s' : library does not support TLS NPN extension", args[*cur_arg]); |
| 8519 | return ERR_ALERT | ERR_FATAL; |
| 8520 | #endif |
| 8521 | } |
| 8522 | |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8523 | /* parse the "alpn" or the "check-alpn" server keyword */ |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8524 | static int srv_parse_alpn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8525 | { |
| 8526 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 8527 | char *p1, *p2; |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8528 | char **alpn_str; |
| 8529 | int *alpn_len; |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8530 | |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8531 | if (*args[*cur_arg] == 'c') { |
| 8532 | alpn_str = &newsrv->check.alpn_str; |
| 8533 | alpn_len = &newsrv->check.alpn_len; |
| 8534 | } else { |
| 8535 | alpn_str = &newsrv->ssl_ctx.alpn_str; |
| 8536 | alpn_len = &newsrv->ssl_ctx.alpn_len; |
| 8537 | |
| 8538 | } |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8539 | if (!*args[*cur_arg + 1]) { |
| 8540 | memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[*cur_arg]); |
| 8541 | return ERR_ALERT | ERR_FATAL; |
| 8542 | } |
| 8543 | |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8544 | free(*alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8545 | |
| 8546 | /* the ALPN string is built as a suite of (<len> <name>)*, |
| 8547 | * so we reuse each comma to store the next <len> and need |
| 8548 | * one more for the end of the string. |
| 8549 | */ |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8550 | *alpn_len = strlen(args[*cur_arg + 1]) + 1; |
| 8551 | *alpn_str = calloc(1, *alpn_len + 1); |
| 8552 | memcpy(*alpn_str + 1, args[*cur_arg + 1], *alpn_len); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8553 | |
| 8554 | /* replace commas with the name length */ |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8555 | p1 = *alpn_str; |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8556 | p2 = p1 + 1; |
| 8557 | while (1) { |
Olivier Houchard | 9215014 | 2018-12-21 19:47:01 +0100 | [diff] [blame] | 8558 | p2 = memchr(p1 + 1, ',', *alpn_str + *alpn_len - (p1 + 1)); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 8559 | if (!p2) |
| 8560 | p2 = p1 + 1 + strlen(p1 + 1); |
| 8561 | |
| 8562 | if (p2 - (p1 + 1) > 255) { |
| 8563 | *p2 = '\0'; |
| 8564 | memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[*cur_arg], p1 + 1); |
| 8565 | return ERR_ALERT | ERR_FATAL; |
| 8566 | } |
| 8567 | |
| 8568 | *p1 = p2 - (p1 + 1); |
| 8569 | p1 = p2; |
| 8570 | |
| 8571 | if (!*p2) |
| 8572 | break; |
| 8573 | |
| 8574 | *(p2++) = '\0'; |
| 8575 | } |
| 8576 | return 0; |
| 8577 | #else |
| 8578 | if (err) |
| 8579 | memprintf(err, "'%s' : library does not support TLS ALPN extension", args[*cur_arg]); |
| 8580 | return ERR_ALERT | ERR_FATAL; |
| 8581 | #endif |
| 8582 | } |
| 8583 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8584 | /* parse the "ca-file" server keyword */ |
| 8585 | static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8586 | { |
| 8587 | if (!*args[*cur_arg + 1]) { |
| 8588 | if (err) |
| 8589 | memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]); |
| 8590 | return ERR_ALERT | ERR_FATAL; |
| 8591 | } |
| 8592 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8593 | if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base) |
| 8594 | 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] | 8595 | else |
| 8596 | memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]); |
| 8597 | |
| 8598 | return 0; |
| 8599 | } |
| 8600 | |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 8601 | /* parse the "check-sni" server keyword */ |
| 8602 | static int srv_parse_check_sni(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 SNI", args[*cur_arg]); |
| 8607 | return ERR_ALERT | ERR_FATAL; |
| 8608 | } |
| 8609 | |
| 8610 | newsrv->check.sni = strdup(args[*cur_arg + 1]); |
| 8611 | if (!newsrv->check.sni) { |
| 8612 | memprintf(err, "'%s' : failed to allocate memory", args[*cur_arg]); |
| 8613 | return ERR_ALERT | ERR_FATAL; |
| 8614 | } |
| 8615 | return 0; |
| 8616 | |
| 8617 | } |
| 8618 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8619 | /* parse the "check-ssl" server keyword */ |
| 8620 | static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8621 | { |
| 8622 | newsrv->check.use_ssl = 1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8623 | if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 8624 | newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8625 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8626 | if (global_ssl.connect_default_ciphersuites && !newsrv->ssl_ctx.ciphersuites) |
| 8627 | newsrv->ssl_ctx.ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 8628 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8629 | newsrv->ssl_ctx.options |= global_ssl.connect_default_ssloptions; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8630 | newsrv->ssl_ctx.methods.flags |= global_ssl.connect_default_sslmethods.flags; |
| 8631 | if (!newsrv->ssl_ctx.methods.min) |
| 8632 | newsrv->ssl_ctx.methods.min = global_ssl.connect_default_sslmethods.min; |
| 8633 | if (!newsrv->ssl_ctx.methods.max) |
| 8634 | newsrv->ssl_ctx.methods.max = global_ssl.connect_default_sslmethods.max; |
| 8635 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8636 | return 0; |
| 8637 | } |
| 8638 | |
| 8639 | /* parse the "ciphers" server keyword */ |
| 8640 | static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8641 | { |
| 8642 | if (!*args[*cur_arg + 1]) { |
| 8643 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 8644 | return ERR_ALERT | ERR_FATAL; |
| 8645 | } |
| 8646 | |
| 8647 | free(newsrv->ssl_ctx.ciphers); |
| 8648 | newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]); |
| 8649 | return 0; |
| 8650 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8651 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8652 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8653 | /* parse the "ciphersuites" server keyword */ |
| 8654 | static int srv_parse_ciphersuites(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8655 | { |
| 8656 | if (!*args[*cur_arg + 1]) { |
| 8657 | memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]); |
| 8658 | return ERR_ALERT | ERR_FATAL; |
| 8659 | } |
| 8660 | |
| 8661 | free(newsrv->ssl_ctx.ciphersuites); |
| 8662 | newsrv->ssl_ctx.ciphersuites = strdup(args[*cur_arg + 1]); |
| 8663 | return 0; |
| 8664 | } |
| 8665 | #endif |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8666 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8667 | /* parse the "crl-file" server keyword */ |
| 8668 | static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8669 | { |
| 8670 | #ifndef X509_V_FLAG_CRL_CHECK |
| 8671 | if (err) |
| 8672 | memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]); |
| 8673 | return ERR_ALERT | ERR_FATAL; |
| 8674 | #else |
| 8675 | if (!*args[*cur_arg + 1]) { |
| 8676 | if (err) |
| 8677 | memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]); |
| 8678 | return ERR_ALERT | ERR_FATAL; |
| 8679 | } |
| 8680 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8681 | if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base) |
| 8682 | 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] | 8683 | else |
| 8684 | memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]); |
| 8685 | |
| 8686 | return 0; |
| 8687 | #endif |
| 8688 | } |
| 8689 | |
Emeric Brun | a7aa309 | 2012-10-26 12:58:00 +0200 | [diff] [blame] | 8690 | /* parse the "crt" server keyword */ |
| 8691 | static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8692 | { |
| 8693 | if (!*args[*cur_arg + 1]) { |
| 8694 | if (err) |
| 8695 | memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]); |
| 8696 | return ERR_ALERT | ERR_FATAL; |
| 8697 | } |
| 8698 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8699 | if ((*args[*cur_arg + 1] != '/') && global_ssl.crt_base) |
Christopher Faulet | ff3a41e | 2017-11-23 09:13:32 +0100 | [diff] [blame] | 8700 | 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] | 8701 | else |
| 8702 | memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]); |
| 8703 | |
| 8704 | return 0; |
| 8705 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8706 | |
Frédéric Lécaille | 340ae60 | 2017-03-13 10:38:04 +0100 | [diff] [blame] | 8707 | /* parse the "no-check-ssl" server keyword */ |
| 8708 | static int srv_parse_no_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8709 | { |
| 8710 | newsrv->check.use_ssl = 0; |
| 8711 | free(newsrv->ssl_ctx.ciphers); |
| 8712 | newsrv->ssl_ctx.ciphers = NULL; |
| 8713 | newsrv->ssl_ctx.options &= ~global_ssl.connect_default_ssloptions; |
| 8714 | return 0; |
| 8715 | } |
| 8716 | |
Frédéric Lécaille | e892c4c | 2017-03-13 12:08:01 +0100 | [diff] [blame] | 8717 | /* parse the "no-send-proxy-v2-ssl" server keyword */ |
| 8718 | static int srv_parse_no_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8719 | { |
| 8720 | newsrv->pp_opts &= ~SRV_PP_V2; |
| 8721 | newsrv->pp_opts &= ~SRV_PP_V2_SSL; |
| 8722 | return 0; |
| 8723 | } |
| 8724 | |
| 8725 | /* parse the "no-send-proxy-v2-ssl-cn" server keyword */ |
| 8726 | static int srv_parse_no_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8727 | { |
| 8728 | newsrv->pp_opts &= ~SRV_PP_V2; |
| 8729 | newsrv->pp_opts &= ~SRV_PP_V2_SSL; |
| 8730 | newsrv->pp_opts &= ~SRV_PP_V2_SSL_CN; |
| 8731 | return 0; |
| 8732 | } |
| 8733 | |
Frédéric Lécaille | e381d76 | 2017-03-13 11:54:17 +0100 | [diff] [blame] | 8734 | /* parse the "no-ssl" server keyword */ |
| 8735 | static int srv_parse_no_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8736 | { |
| 8737 | newsrv->use_ssl = 0; |
| 8738 | free(newsrv->ssl_ctx.ciphers); |
| 8739 | newsrv->ssl_ctx.ciphers = NULL; |
| 8740 | return 0; |
| 8741 | } |
| 8742 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 8743 | /* parse the "allow-0rtt" server keyword */ |
| 8744 | static int srv_parse_allow_0rtt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8745 | { |
| 8746 | newsrv->ssl_ctx.options |= SRV_SSL_O_EARLY_DATA; |
| 8747 | return 0; |
| 8748 | } |
| 8749 | |
Willy Tarreau | 2a3fb1c | 2015-02-05 16:47:07 +0100 | [diff] [blame] | 8750 | /* parse the "no-ssl-reuse" server keyword */ |
| 8751 | static int srv_parse_no_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8752 | { |
| 8753 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_REUSE; |
| 8754 | return 0; |
| 8755 | } |
| 8756 | |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 8757 | /* parse the "no-tls-tickets" server keyword */ |
| 8758 | static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8759 | { |
| 8760 | newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS; |
| 8761 | return 0; |
| 8762 | } |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 8763 | /* parse the "send-proxy-v2-ssl" server keyword */ |
| 8764 | static int srv_parse_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8765 | { |
| 8766 | newsrv->pp_opts |= SRV_PP_V2; |
| 8767 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 8768 | return 0; |
| 8769 | } |
| 8770 | |
| 8771 | /* parse the "send-proxy-v2-ssl-cn" server keyword */ |
| 8772 | static int srv_parse_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8773 | { |
| 8774 | newsrv->pp_opts |= SRV_PP_V2; |
| 8775 | newsrv->pp_opts |= SRV_PP_V2_SSL; |
| 8776 | newsrv->pp_opts |= SRV_PP_V2_SSL_CN; |
| 8777 | return 0; |
| 8778 | } |
Emeric Brun | f9c5c47 | 2012-10-11 15:28:34 +0200 | [diff] [blame] | 8779 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8780 | /* parse the "sni" server keyword */ |
| 8781 | static int srv_parse_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8782 | { |
| 8783 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 8784 | memprintf(err, "'%s' : the current SSL library doesn't support the SNI TLS extension", args[*cur_arg]); |
| 8785 | return ERR_ALERT | ERR_FATAL; |
| 8786 | #else |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 8787 | char *arg; |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8788 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 8789 | arg = args[*cur_arg + 1]; |
| 8790 | if (!*arg) { |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8791 | memprintf(err, "'%s' : missing sni expression", args[*cur_arg]); |
| 8792 | return ERR_ALERT | ERR_FATAL; |
| 8793 | } |
| 8794 | |
Frédéric Lécaille | 9a146de | 2017-03-20 14:54:41 +0100 | [diff] [blame] | 8795 | free(newsrv->sni_expr); |
| 8796 | newsrv->sni_expr = strdup(arg); |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8797 | |
Willy Tarreau | 732eac4 | 2015-07-09 11:40:25 +0200 | [diff] [blame] | 8798 | return 0; |
| 8799 | #endif |
| 8800 | } |
| 8801 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8802 | /* parse the "ssl" server keyword */ |
| 8803 | static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8804 | { |
| 8805 | newsrv->use_ssl = 1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8806 | if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers) |
| 8807 | newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 8808 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 8809 | if (global_ssl.connect_default_ciphersuites && !newsrv->ssl_ctx.ciphersuites) |
| 8810 | newsrv->ssl_ctx.ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 8811 | #endif |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 8812 | return 0; |
| 8813 | } |
| 8814 | |
Frédéric Lécaille | 2cfcdbe | 2017-03-13 11:32:20 +0100 | [diff] [blame] | 8815 | /* parse the "ssl-reuse" server keyword */ |
| 8816 | static int srv_parse_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8817 | { |
| 8818 | newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_REUSE; |
| 8819 | return 0; |
| 8820 | } |
| 8821 | |
Frédéric Lécaille | 2cfcdbe | 2017-03-13 11:32:20 +0100 | [diff] [blame] | 8822 | /* parse the "tls-tickets" server keyword */ |
| 8823 | static int srv_parse_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8824 | { |
| 8825 | newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_TLS_TICKETS; |
| 8826 | return 0; |
| 8827 | } |
| 8828 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8829 | /* parse the "verify" server keyword */ |
| 8830 | static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8831 | { |
| 8832 | if (!*args[*cur_arg + 1]) { |
| 8833 | if (err) |
| 8834 | memprintf(err, "'%s' : missing verify method", args[*cur_arg]); |
| 8835 | return ERR_ALERT | ERR_FATAL; |
| 8836 | } |
| 8837 | |
| 8838 | if (strcmp(args[*cur_arg + 1], "none") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8839 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_NONE; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8840 | else if (strcmp(args[*cur_arg + 1], "required") == 0) |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 8841 | newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_REQUIRED; |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8842 | else { |
| 8843 | if (err) |
| 8844 | memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n", |
| 8845 | args[*cur_arg], args[*cur_arg + 1]); |
| 8846 | return ERR_ALERT | ERR_FATAL; |
| 8847 | } |
| 8848 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 8849 | return 0; |
| 8850 | } |
| 8851 | |
| 8852 | /* parse the "verifyhost" server keyword */ |
| 8853 | static int srv_parse_verifyhost(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err) |
| 8854 | { |
| 8855 | if (!*args[*cur_arg + 1]) { |
| 8856 | if (err) |
| 8857 | memprintf(err, "'%s' : missing hostname to verify against", args[*cur_arg]); |
| 8858 | return ERR_ALERT | ERR_FATAL; |
| 8859 | } |
| 8860 | |
Frédéric Lécaille | 273f321 | 2017-03-13 15:52:01 +0100 | [diff] [blame] | 8861 | free(newsrv->ssl_ctx.verify_host); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 8862 | newsrv->ssl_ctx.verify_host = strdup(args[*cur_arg + 1]); |
| 8863 | |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 8864 | return 0; |
| 8865 | } |
| 8866 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 8867 | /* parse the "ssl-default-bind-options" keyword in global section */ |
| 8868 | static int ssl_parse_default_bind_options(char **args, int section_type, struct proxy *curpx, |
| 8869 | struct proxy *defpx, const char *file, int line, |
| 8870 | char **err) { |
| 8871 | int i = 1; |
| 8872 | |
| 8873 | if (*(args[i]) == 0) { |
| 8874 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 8875 | return -1; |
| 8876 | } |
| 8877 | while (*(args[i])) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8878 | if (!strcmp(args[i], "no-tls-tickets")) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8879 | global_ssl.listen_default_ssloptions |= BC_SSL_O_NO_TLS_TICKETS; |
Lukas Tribus | 53ae85c | 2017-05-04 15:45:40 +0000 | [diff] [blame] | 8880 | else if (!strcmp(args[i], "prefer-client-ciphers")) |
| 8881 | global_ssl.listen_default_ssloptions |= BC_SSL_O_PREF_CLIE_CIPH; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8882 | else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) { |
| 8883 | if (!parse_tls_method_minmax(args, i, &global_ssl.listen_default_sslmethods, err)) |
| 8884 | i++; |
| 8885 | else { |
| 8886 | memprintf(err, "%s on global statement '%s'.", *err, args[0]); |
| 8887 | return -1; |
| 8888 | } |
| 8889 | } |
| 8890 | 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] | 8891 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 8892 | return -1; |
| 8893 | } |
| 8894 | i++; |
| 8895 | } |
| 8896 | return 0; |
| 8897 | } |
| 8898 | |
| 8899 | /* parse the "ssl-default-server-options" keyword in global section */ |
| 8900 | static int ssl_parse_default_server_options(char **args, int section_type, struct proxy *curpx, |
| 8901 | struct proxy *defpx, const char *file, int line, |
| 8902 | char **err) { |
| 8903 | int i = 1; |
| 8904 | |
| 8905 | if (*(args[i]) == 0) { |
| 8906 | memprintf(err, "global statement '%s' expects an option as an argument.", args[0]); |
| 8907 | return -1; |
| 8908 | } |
| 8909 | while (*(args[i])) { |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 8910 | if (!strcmp(args[i], "no-tls-tickets")) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8911 | global_ssl.connect_default_ssloptions |= SRV_SSL_O_NO_TLS_TICKETS; |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 8912 | else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) { |
| 8913 | if (!parse_tls_method_minmax(args, i, &global_ssl.connect_default_sslmethods, err)) |
| 8914 | i++; |
| 8915 | else { |
| 8916 | memprintf(err, "%s on global statement '%s'.", *err, args[0]); |
| 8917 | return -1; |
| 8918 | } |
| 8919 | } |
| 8920 | 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] | 8921 | memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]); |
| 8922 | return -1; |
| 8923 | } |
| 8924 | i++; |
| 8925 | } |
| 8926 | return 0; |
| 8927 | } |
| 8928 | |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8929 | /* parse the "ca-base" / "crt-base" keywords in global section. |
| 8930 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8931 | */ |
| 8932 | static int ssl_parse_global_ca_crt_base(char **args, int section_type, struct proxy *curpx, |
| 8933 | struct proxy *defpx, const char *file, int line, |
| 8934 | char **err) |
| 8935 | { |
| 8936 | char **target; |
| 8937 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 8938 | 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] | 8939 | |
| 8940 | if (too_many_args(1, args, err, NULL)) |
| 8941 | return -1; |
| 8942 | |
| 8943 | if (*target) { |
| 8944 | memprintf(err, "'%s' already specified.", args[0]); |
| 8945 | return -1; |
| 8946 | } |
| 8947 | |
| 8948 | if (*(args[1]) == 0) { |
| 8949 | memprintf(err, "global statement '%s' expects a directory path as an argument.", args[0]); |
| 8950 | return -1; |
| 8951 | } |
| 8952 | *target = strdup(args[1]); |
| 8953 | return 0; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8954 | } |
| 8955 | |
| 8956 | /* parse the "ssl-mode-async" keyword in global section. |
| 8957 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8958 | */ |
| 8959 | static int ssl_parse_global_ssl_async(char **args, int section_type, struct proxy *curpx, |
| 8960 | struct proxy *defpx, const char *file, int line, |
| 8961 | char **err) |
| 8962 | { |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 8963 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8964 | global_ssl.async = 1; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 8965 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8966 | return 0; |
| 8967 | #else |
| 8968 | memprintf(err, "'%s': openssl library does not support async mode", args[0]); |
| 8969 | return -1; |
| 8970 | #endif |
| 8971 | } |
| 8972 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 8973 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 8974 | static int ssl_check_async_engine_count(void) { |
| 8975 | int err_code = 0; |
| 8976 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 8977 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 8978 | 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] | 8979 | err_code = ERR_ABORT; |
| 8980 | } |
| 8981 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 8982 | } |
| 8983 | |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 8984 | /* parse the "ssl-engine" keyword in global section. |
| 8985 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 8986 | */ |
| 8987 | static int ssl_parse_global_ssl_engine(char **args, int section_type, struct proxy *curpx, |
| 8988 | struct proxy *defpx, const char *file, int line, |
| 8989 | char **err) |
| 8990 | { |
| 8991 | char *algo; |
| 8992 | int ret = -1; |
| 8993 | |
| 8994 | if (*(args[1]) == 0) { |
| 8995 | memprintf(err, "global statement '%s' expects a valid engine name as an argument.", args[0]); |
| 8996 | return ret; |
| 8997 | } |
| 8998 | |
| 8999 | if (*(args[2]) == 0) { |
| 9000 | /* if no list of algorithms is given, it defaults to ALL */ |
| 9001 | algo = strdup("ALL"); |
| 9002 | goto add_engine; |
| 9003 | } |
| 9004 | |
| 9005 | /* otherwise the expected format is ssl-engine <engine_name> algo <list of algo> */ |
| 9006 | if (strcmp(args[2], "algo") != 0) { |
| 9007 | memprintf(err, "global statement '%s' expects to have algo keyword.", args[0]); |
| 9008 | return ret; |
| 9009 | } |
| 9010 | |
| 9011 | if (*(args[3]) == 0) { |
| 9012 | memprintf(err, "global statement '%s' expects algorithm names as an argument.", args[0]); |
| 9013 | return ret; |
| 9014 | } |
| 9015 | algo = strdup(args[3]); |
| 9016 | |
| 9017 | add_engine: |
| 9018 | if (ssl_init_single_engine(args[1], algo)==0) { |
| 9019 | openssl_engines_initialized++; |
| 9020 | ret = 0; |
| 9021 | } |
| 9022 | free(algo); |
| 9023 | return ret; |
| 9024 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9025 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9026 | |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9027 | /* parse the "ssl-default-bind-ciphers" / "ssl-default-server-ciphers" keywords |
| 9028 | * in global section. Returns <0 on alert, >0 on warning, 0 on success. |
| 9029 | */ |
| 9030 | static int ssl_parse_global_ciphers(char **args, int section_type, struct proxy *curpx, |
| 9031 | struct proxy *defpx, const char *file, int line, |
| 9032 | char **err) |
| 9033 | { |
| 9034 | char **target; |
| 9035 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9036 | 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] | 9037 | |
| 9038 | if (too_many_args(1, args, err, NULL)) |
| 9039 | return -1; |
| 9040 | |
| 9041 | if (*(args[1]) == 0) { |
| 9042 | memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]); |
| 9043 | return -1; |
| 9044 | } |
| 9045 | |
| 9046 | free(*target); |
| 9047 | *target = strdup(args[1]); |
| 9048 | return 0; |
| 9049 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9050 | |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9051 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9052 | /* parse the "ssl-default-bind-ciphersuites" / "ssl-default-server-ciphersuites" keywords |
| 9053 | * in global section. Returns <0 on alert, >0 on warning, 0 on success. |
| 9054 | */ |
| 9055 | static int ssl_parse_global_ciphersuites(char **args, int section_type, struct proxy *curpx, |
| 9056 | struct proxy *defpx, const char *file, int line, |
| 9057 | char **err) |
| 9058 | { |
| 9059 | char **target; |
| 9060 | |
| 9061 | target = (args[0][12] == 'b') ? &global_ssl.listen_default_ciphersuites : &global_ssl.connect_default_ciphersuites; |
| 9062 | |
| 9063 | if (too_many_args(1, args, err, NULL)) |
| 9064 | return -1; |
| 9065 | |
| 9066 | if (*(args[1]) == 0) { |
| 9067 | memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]); |
| 9068 | return -1; |
| 9069 | } |
| 9070 | |
| 9071 | free(*target); |
| 9072 | *target = strdup(args[1]); |
| 9073 | return 0; |
| 9074 | } |
| 9075 | #endif |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9076 | |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9077 | /* parse various global tune.ssl settings consisting in positive integers. |
| 9078 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9079 | */ |
| 9080 | static int ssl_parse_global_int(char **args, int section_type, struct proxy *curpx, |
| 9081 | struct proxy *defpx, const char *file, int line, |
| 9082 | char **err) |
| 9083 | { |
| 9084 | int *target; |
| 9085 | |
| 9086 | if (strcmp(args[0], "tune.ssl.cachesize") == 0) |
| 9087 | target = &global.tune.sslcachesize; |
| 9088 | else if (strcmp(args[0], "tune.ssl.maxrecord") == 0) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9089 | target = (int *)&global_ssl.max_record; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9090 | else if (strcmp(args[0], "tune.ssl.ssl-ctx-cache-size") == 0) |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9091 | target = &global_ssl.ctx_cache; |
Willy Tarreau | 0bea58d | 2016-12-21 23:17:25 +0100 | [diff] [blame] | 9092 | else if (strcmp(args[0], "maxsslconn") == 0) |
| 9093 | target = &global.maxsslconn; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9094 | else if (strcmp(args[0], "tune.ssl.capture-cipherlist-size") == 0) |
| 9095 | target = &global_ssl.capture_cipherlist; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9096 | else { |
| 9097 | memprintf(err, "'%s' keyword not unhandled (please report this bug).", args[0]); |
| 9098 | return -1; |
| 9099 | } |
| 9100 | |
| 9101 | if (too_many_args(1, args, err, NULL)) |
| 9102 | return -1; |
| 9103 | |
| 9104 | if (*(args[1]) == 0) { |
| 9105 | memprintf(err, "'%s' expects an integer argument.", args[0]); |
| 9106 | return -1; |
| 9107 | } |
| 9108 | |
| 9109 | *target = atoi(args[1]); |
| 9110 | if (*target < 0) { |
| 9111 | memprintf(err, "'%s' expects a positive numeric value.", args[0]); |
| 9112 | return -1; |
| 9113 | } |
| 9114 | return 0; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9115 | } |
| 9116 | |
| 9117 | static int ssl_parse_global_capture_cipherlist(char **args, int section_type, struct proxy *curpx, |
| 9118 | struct proxy *defpx, const char *file, int line, |
| 9119 | char **err) |
| 9120 | { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9121 | int ret; |
| 9122 | |
| 9123 | ret = ssl_parse_global_int(args, section_type, curpx, defpx, file, line, err); |
| 9124 | if (ret != 0) |
| 9125 | return ret; |
| 9126 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9127 | if (pool_head_ssl_capture) { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9128 | memprintf(err, "'%s' is already configured.", args[0]); |
| 9129 | return -1; |
| 9130 | } |
| 9131 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 9132 | pool_head_ssl_capture = create_pool("ssl-capture", sizeof(struct ssl_capture) + global_ssl.capture_cipherlist, MEM_F_SHARED); |
| 9133 | if (!pool_head_ssl_capture) { |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9134 | memprintf(err, "Out of memory error."); |
| 9135 | return -1; |
| 9136 | } |
| 9137 | return 0; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9138 | } |
| 9139 | |
| 9140 | /* parse "ssl.force-private-cache". |
| 9141 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9142 | */ |
| 9143 | static int ssl_parse_global_private_cache(char **args, int section_type, struct proxy *curpx, |
| 9144 | struct proxy *defpx, const char *file, int line, |
| 9145 | char **err) |
| 9146 | { |
| 9147 | if (too_many_args(0, args, err, NULL)) |
| 9148 | return -1; |
| 9149 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9150 | global_ssl.private_cache = 1; |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9151 | return 0; |
| 9152 | } |
| 9153 | |
| 9154 | /* parse "ssl.lifetime". |
| 9155 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9156 | */ |
| 9157 | static int ssl_parse_global_lifetime(char **args, int section_type, struct proxy *curpx, |
| 9158 | struct proxy *defpx, const char *file, int line, |
| 9159 | char **err) |
| 9160 | { |
| 9161 | const char *res; |
| 9162 | |
| 9163 | if (too_many_args(1, args, err, NULL)) |
| 9164 | return -1; |
| 9165 | |
| 9166 | if (*(args[1]) == 0) { |
| 9167 | memprintf(err, "'%s' expects ssl sessions <lifetime> in seconds as argument.", args[0]); |
| 9168 | return -1; |
| 9169 | } |
| 9170 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9171 | 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] | 9172 | if (res == PARSE_TIME_OVER) { |
| 9173 | memprintf(err, "timer overflow in argument '%s' to <%s> (maximum value is 2147483647 s or ~68 years).", |
| 9174 | args[1], args[0]); |
| 9175 | return -1; |
| 9176 | } |
| 9177 | else if (res == PARSE_TIME_UNDER) { |
| 9178 | memprintf(err, "timer underflow in argument '%s' to <%s> (minimum non-null value is 1 s).", |
| 9179 | args[1], args[0]); |
| 9180 | return -1; |
| 9181 | } |
| 9182 | else if (res) { |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9183 | memprintf(err, "unexpected character '%c' in argument to <%s>.", *res, args[0]); |
| 9184 | return -1; |
| 9185 | } |
| 9186 | return 0; |
| 9187 | } |
| 9188 | |
| 9189 | #ifndef OPENSSL_NO_DH |
Willy Tarreau | 14e36a1 | 2016-12-21 23:28:13 +0100 | [diff] [blame] | 9190 | /* parse "ssl-dh-param-file". |
| 9191 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9192 | */ |
| 9193 | static int ssl_parse_global_dh_param_file(char **args, int section_type, struct proxy *curpx, |
| 9194 | struct proxy *defpx, const char *file, int line, |
| 9195 | char **err) |
| 9196 | { |
| 9197 | if (too_many_args(1, args, err, NULL)) |
| 9198 | return -1; |
| 9199 | |
| 9200 | if (*(args[1]) == 0) { |
| 9201 | memprintf(err, "'%s' expects a file path as an argument.", args[0]); |
| 9202 | return -1; |
| 9203 | } |
| 9204 | |
| 9205 | if (ssl_sock_load_global_dh_param_from_file(args[1])) { |
| 9206 | memprintf(err, "'%s': unable to load DH parameters from file <%s>.", args[0], args[1]); |
| 9207 | return -1; |
| 9208 | } |
| 9209 | return 0; |
| 9210 | } |
| 9211 | |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9212 | /* parse "ssl.default-dh-param". |
| 9213 | * Returns <0 on alert, >0 on warning, 0 on success. |
| 9214 | */ |
| 9215 | static int ssl_parse_global_default_dh(char **args, int section_type, struct proxy *curpx, |
| 9216 | struct proxy *defpx, const char *file, int line, |
| 9217 | char **err) |
| 9218 | { |
| 9219 | if (too_many_args(1, args, err, NULL)) |
| 9220 | return -1; |
| 9221 | |
| 9222 | if (*(args[1]) == 0) { |
| 9223 | memprintf(err, "'%s' expects an integer argument.", args[0]); |
| 9224 | return -1; |
| 9225 | } |
| 9226 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 9227 | global_ssl.default_dh_param = atoi(args[1]); |
| 9228 | if (global_ssl.default_dh_param < 1024) { |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9229 | memprintf(err, "'%s' expects a value >= 1024.", args[0]); |
| 9230 | return -1; |
| 9231 | } |
| 9232 | return 0; |
| 9233 | } |
| 9234 | #endif |
| 9235 | |
| 9236 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9237 | /* This function is used with TLS ticket keys management. It permits to browse |
| 9238 | * each reference. The variable <getnext> must contain the current node, |
| 9239 | * <end> point to the root node. |
| 9240 | */ |
| 9241 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9242 | static inline |
| 9243 | struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end) |
| 9244 | { |
| 9245 | struct tls_keys_ref *ref = getnext; |
| 9246 | |
| 9247 | while (1) { |
| 9248 | |
| 9249 | /* Get next list entry. */ |
| 9250 | ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list); |
| 9251 | |
| 9252 | /* If the entry is the last of the list, return NULL. */ |
| 9253 | if (&ref->list == end) |
| 9254 | return NULL; |
| 9255 | |
| 9256 | return ref; |
| 9257 | } |
| 9258 | } |
| 9259 | |
| 9260 | static inline |
| 9261 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 9262 | { |
| 9263 | int id; |
| 9264 | char *error; |
| 9265 | |
| 9266 | /* If the reference starts by a '#', this is numeric id. */ |
| 9267 | if (reference[0] == '#') { |
| 9268 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 9269 | id = strtol(reference + 1, &error, 10); |
| 9270 | if (*error != '\0') |
| 9271 | return NULL; |
| 9272 | |
| 9273 | /* Perform the unique id lookup. */ |
| 9274 | return tlskeys_ref_lookupid(id); |
| 9275 | } |
| 9276 | |
| 9277 | /* Perform the string lookup. */ |
| 9278 | return tlskeys_ref_lookup(reference); |
| 9279 | } |
| 9280 | #endif |
| 9281 | |
| 9282 | |
| 9283 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9284 | |
| 9285 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 9286 | |
| 9287 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 9288 | return cli_io_handler_tlskeys_files(appctx); |
| 9289 | } |
| 9290 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9291 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 9292 | * (next index to be dumped), and cli.p0 (next key reference). |
| 9293 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9294 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 9295 | |
| 9296 | struct stream_interface *si = appctx->owner; |
| 9297 | |
| 9298 | switch (appctx->st2) { |
| 9299 | case STAT_ST_INIT: |
| 9300 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 9301 | * quit the function with returning 0. The function is called |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9302 | * later and restart at the state "STAT_ST_INIT". |
| 9303 | */ |
| 9304 | chunk_reset(&trash); |
| 9305 | |
| 9306 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 9307 | chunk_appendf(&trash, "# id secret\n"); |
| 9308 | else |
| 9309 | chunk_appendf(&trash, "# id (file)\n"); |
| 9310 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 9311 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 9312 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9313 | return 0; |
| 9314 | } |
| 9315 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9316 | /* Now, we start the browsing of the references lists. |
| 9317 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 9318 | * available field of this pointer is <list>. It is used with the function |
| 9319 | * tlskeys_list_get_next() for retruning the first available entry |
| 9320 | */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9321 | if (appctx->ctx.cli.p0 == NULL) { |
| 9322 | appctx->ctx.cli.p0 = LIST_ELEM(&tlskeys_reference, struct tls_keys_ref *, list); |
| 9323 | 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] | 9324 | } |
| 9325 | |
| 9326 | appctx->st2 = STAT_ST_LIST; |
| 9327 | /* fall through */ |
| 9328 | |
| 9329 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9330 | while (appctx->ctx.cli.p0) { |
| 9331 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9332 | |
| 9333 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9334 | 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] | 9335 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9336 | |
| 9337 | if (appctx->ctx.cli.i1 == 0) |
| 9338 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 9339 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9340 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 9341 | int head; |
| 9342 | |
| 9343 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 9344 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9345 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 9346 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9347 | |
| 9348 | chunk_reset(t2); |
| 9349 | /* 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] | 9350 | if (ref->key_size_bits == 128) { |
| 9351 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 9352 | sizeof(struct tls_sess_key_128), |
| 9353 | t2->area, t2->size); |
| 9354 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 9355 | t2->area); |
| 9356 | } |
| 9357 | else if (ref->key_size_bits == 256) { |
| 9358 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 9359 | sizeof(struct tls_sess_key_256), |
| 9360 | t2->area, t2->size); |
| 9361 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 9362 | t2->area); |
| 9363 | } |
| 9364 | else { |
| 9365 | /* This case should never happen */ |
| 9366 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1); |
| 9367 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9368 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 9369 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9370 | /* let's try again later from this stream. We add ourselves into |
| 9371 | * this stream's users so that it can remove us upon termination. |
| 9372 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 9373 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 9374 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9375 | return 0; |
| 9376 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9377 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9378 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 9379 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9380 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9381 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 9382 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9383 | /* let's try again later from this stream. We add ourselves into |
| 9384 | * this stream's users so that it can remove us upon termination. |
| 9385 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 9386 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9387 | return 0; |
| 9388 | } |
| 9389 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9390 | 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] | 9391 | break; |
| 9392 | |
| 9393 | /* get next list entry and check the end of the list */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9394 | 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] | 9395 | } |
| 9396 | |
| 9397 | appctx->st2 = STAT_ST_FIN; |
| 9398 | /* fall through */ |
| 9399 | |
| 9400 | default: |
| 9401 | appctx->st2 = STAT_ST_FIN; |
| 9402 | return 1; |
| 9403 | } |
| 9404 | return 0; |
| 9405 | } |
| 9406 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9407 | /* 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] | 9408 | 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] | 9409 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9410 | /* no parameter, shows only file list */ |
| 9411 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9412 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9413 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 9414 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9415 | } |
| 9416 | |
| 9417 | if (args[2][0] == '*') { |
| 9418 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9419 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9420 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9421 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
| 9422 | if (!appctx->ctx.cli.p0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9423 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9424 | 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] | 9425 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9426 | return 1; |
| 9427 | } |
| 9428 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9429 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 9430 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9431 | } |
| 9432 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 9433 | 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] | 9434 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9435 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9436 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9437 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9438 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
| 9439 | if (!*args[3] || !*args[4]) { |
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 = "'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] | 9442 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9443 | return 1; |
| 9444 | } |
| 9445 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 9446 | ref = tlskeys_ref_lookup_ref(args[3]); |
| 9447 | if (!ref) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9448 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9449 | 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] | 9450 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9451 | return 1; |
| 9452 | } |
| 9453 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9454 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9455 | if (ret < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9456 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9457 | 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] | 9458 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9459 | return 1; |
| 9460 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9461 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9462 | trash.data = ret; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 9463 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) { |
| 9464 | appctx->ctx.cli.severity = LOG_ERR; |
| 9465 | appctx->ctx.cli.msg = "'set ssl tls-key' received a key of wrong size.\n"; |
| 9466 | appctx->st0 = CLI_ST_PRINT; |
| 9467 | return 1; |
| 9468 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9469 | appctx->ctx.cli.severity = LOG_INFO; |
Aurélien Nephtali | 6e8a41d | 2018-03-15 21:48:50 +0100 | [diff] [blame] | 9470 | appctx->ctx.cli.msg = "TLS ticket key updated!\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9471 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9472 | return 1; |
| 9473 | |
| 9474 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 9475 | #endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9476 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 9477 | 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] | 9478 | { |
| 9479 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 9480 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9481 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 9482 | |
| 9483 | if (!payload) |
| 9484 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9485 | |
| 9486 | /* Expect one parameter: the new response in base64 encoding */ |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 9487 | if (!*payload) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9488 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9489 | 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] | 9490 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9491 | return 1; |
| 9492 | } |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 9493 | |
| 9494 | /* remove \r and \n from the payload */ |
| 9495 | for (i = 0, j = 0; payload[i]; i++) { |
| 9496 | if (payload[i] == '\r' || payload[i] == '\n') |
| 9497 | continue; |
| 9498 | payload[j++] = payload[i]; |
| 9499 | } |
| 9500 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9501 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9502 | ret = base64dec(payload, j, trash.area, trash.size); |
| 9503 | if (ret < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9504 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9505 | 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] | 9506 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9507 | return 1; |
| 9508 | } |
| 9509 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 9510 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9511 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
| 9512 | if (err) { |
| 9513 | memprintf(&err, "%s.\n", err); |
| 9514 | appctx->ctx.cli.err = err; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9515 | appctx->st0 = CLI_ST_PRINT_FREE; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9516 | } |
Aurélien Nephtali | 9a4da68 | 2018-04-16 19:02:42 +0200 | [diff] [blame] | 9517 | else { |
| 9518 | appctx->ctx.cli.severity = LOG_ERR; |
| 9519 | appctx->ctx.cli.msg = "Failed to update OCSP response.\n"; |
| 9520 | appctx->st0 = CLI_ST_PRINT; |
| 9521 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9522 | return 1; |
| 9523 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9524 | appctx->ctx.cli.severity = LOG_INFO; |
Aurélien Nephtali | 6e8a41d | 2018-03-15 21:48:50 +0100 | [diff] [blame] | 9525 | appctx->ctx.cli.msg = "OCSP Response updated!\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 9526 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9527 | return 1; |
| 9528 | #else |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 9529 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9530 | 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] | 9531 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9532 | return 1; |
| 9533 | #endif |
| 9534 | |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9535 | } |
| 9536 | |
Willy Tarreau | 86a394e | 2019-05-09 14:15:32 +0200 | [diff] [blame] | 9537 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000100fL) |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9538 | static inline int sample_conv_var2smp_str(const struct arg *arg, struct sample *smp) |
| 9539 | { |
| 9540 | switch (arg->type) { |
| 9541 | case ARGT_STR: |
| 9542 | smp->data.type = SMP_T_STR; |
| 9543 | smp->data.u.str = arg->data.str; |
| 9544 | return 1; |
| 9545 | case ARGT_VAR: |
| 9546 | if (!vars_get_by_desc(&arg->data.var, smp)) |
| 9547 | return 0; |
| 9548 | if (!sample_casts[smp->data.type][SMP_T_STR]) |
| 9549 | return 0; |
| 9550 | if (!sample_casts[smp->data.type][SMP_T_STR](smp)) |
| 9551 | return 0; |
| 9552 | return 1; |
| 9553 | default: |
| 9554 | return 0; |
| 9555 | } |
| 9556 | } |
| 9557 | |
| 9558 | static int check_aes_gcm(struct arg *args, struct sample_conv *conv, |
| 9559 | const char *file, int line, char **err) |
| 9560 | { |
| 9561 | switch(args[0].data.sint) { |
| 9562 | case 128: |
| 9563 | case 192: |
| 9564 | case 256: |
| 9565 | break; |
| 9566 | default: |
| 9567 | memprintf(err, "key size must be 128, 192 or 256 (bits)."); |
| 9568 | return 0; |
| 9569 | } |
| 9570 | /* Try to decode a variable. */ |
| 9571 | vars_check_arg(&args[1], NULL); |
| 9572 | vars_check_arg(&args[2], NULL); |
| 9573 | vars_check_arg(&args[3], NULL); |
| 9574 | return 1; |
| 9575 | } |
| 9576 | |
| 9577 | /* Arguements: AES size in bits, nonce, key, tag. The last three arguments are base64 encoded */ |
| 9578 | static int sample_conv_aes_gcm_dec(const struct arg *arg_p, struct sample *smp, void *private) |
| 9579 | { |
| 9580 | struct sample nonce, key, aead_tag; |
| 9581 | struct buffer *smp_trash, *smp_trash_alloc; |
| 9582 | EVP_CIPHER_CTX *ctx; |
| 9583 | int dec_size, ret; |
| 9584 | |
| 9585 | smp_set_owner(&nonce, smp->px, smp->sess, smp->strm, smp->opt); |
| 9586 | if (!sample_conv_var2smp_str(&arg_p[1], &nonce)) |
| 9587 | return 0; |
| 9588 | |
| 9589 | smp_set_owner(&key, smp->px, smp->sess, smp->strm, smp->opt); |
| 9590 | if (!sample_conv_var2smp_str(&arg_p[2], &key)) |
| 9591 | return 0; |
| 9592 | |
| 9593 | smp_set_owner(&aead_tag, smp->px, smp->sess, smp->strm, smp->opt); |
| 9594 | if (!sample_conv_var2smp_str(&arg_p[3], &aead_tag)) |
| 9595 | return 0; |
| 9596 | |
| 9597 | smp_trash = get_trash_chunk(); |
| 9598 | smp_trash_alloc = alloc_trash_chunk(); |
| 9599 | if (!smp_trash_alloc) |
| 9600 | return 0; |
| 9601 | |
| 9602 | ctx = EVP_CIPHER_CTX_new(); |
| 9603 | |
| 9604 | if (!ctx) |
| 9605 | goto err; |
| 9606 | |
| 9607 | dec_size = base64dec(nonce.data.u.str.area, nonce.data.u.str.data, smp_trash->area, smp_trash->size); |
| 9608 | if (dec_size < 0) |
| 9609 | goto err; |
| 9610 | smp_trash->data = dec_size; |
| 9611 | |
| 9612 | /* Set cipher type and mode */ |
| 9613 | switch(arg_p[0].data.sint) { |
| 9614 | case 128: |
| 9615 | EVP_DecryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL); |
| 9616 | break; |
| 9617 | case 192: |
| 9618 | EVP_DecryptInit_ex(ctx, EVP_aes_192_gcm(), NULL, NULL, NULL); |
| 9619 | break; |
| 9620 | case 256: |
| 9621 | EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL); |
| 9622 | break; |
| 9623 | } |
| 9624 | |
| 9625 | EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, smp_trash->data, NULL); |
| 9626 | |
| 9627 | /* Initialise IV */ |
| 9628 | if(!EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, (unsigned char *) smp_trash->area)) |
| 9629 | goto err; |
| 9630 | |
| 9631 | dec_size = base64dec(key.data.u.str.area, key.data.u.str.data, smp_trash->area, smp_trash->size); |
| 9632 | if (dec_size < 0) |
| 9633 | goto err; |
| 9634 | smp_trash->data = dec_size; |
| 9635 | |
| 9636 | /* Initialise key */ |
| 9637 | if (!EVP_DecryptInit_ex(ctx, NULL, NULL, (unsigned char *) smp_trash->area, NULL)) |
| 9638 | goto err; |
| 9639 | |
| 9640 | if (!EVP_DecryptUpdate(ctx, (unsigned char *) smp_trash->area, (int *) &smp_trash->data, |
| 9641 | (unsigned char *) smp->data.u.str.area, (int) smp->data.u.str.data)) |
| 9642 | goto err; |
| 9643 | |
| 9644 | dec_size = base64dec(aead_tag.data.u.str.area, aead_tag.data.u.str.data, smp_trash_alloc->area, smp_trash_alloc->size); |
| 9645 | if (dec_size < 0) |
| 9646 | goto err; |
| 9647 | smp_trash_alloc->data = dec_size; |
| 9648 | dec_size = smp_trash->data; |
| 9649 | |
| 9650 | EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, smp_trash_alloc->data, (void *) smp_trash_alloc->area); |
| 9651 | ret = EVP_DecryptFinal_ex(ctx, (unsigned char *) smp_trash->area + smp_trash->data, (int *) &smp_trash->data); |
| 9652 | |
| 9653 | if (ret <= 0) |
| 9654 | goto err; |
| 9655 | |
| 9656 | smp->data.u.str.data = dec_size + smp_trash->data; |
| 9657 | smp->data.u.str.area = smp_trash->area; |
| 9658 | smp->data.type = SMP_T_BIN; |
| 9659 | smp->flags &= ~SMP_F_CONST; |
| 9660 | free_trash_chunk(smp_trash_alloc); |
| 9661 | return 1; |
| 9662 | |
| 9663 | err: |
| 9664 | free_trash_chunk(smp_trash_alloc); |
| 9665 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9666 | } |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9667 | # endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9668 | |
| 9669 | /* register cli keywords */ |
| 9670 | static struct cli_kw_list cli_kws = {{ },{ |
| 9671 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 9672 | { { "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] | 9673 | { { "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] | 9674 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 9675 | { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9676 | { { NULL }, NULL, NULL, NULL } |
| 9677 | }}; |
| 9678 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9679 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 9680 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9681 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9682 | * Please take care of keeping this list alphabetically sorted. |
| 9683 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 9684 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9685 | { "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] | 9686 | { "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] | 9687 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Jérôme Magnin | e064a80 | 2018-12-03 22:21:04 +0100 | [diff] [blame] | 9688 | { "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] | 9689 | #endif |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9690 | { "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] | 9691 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 9692 | { "ssl_bc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_STR, SMP_USE_L5SRV }, |
| 9693 | #endif |
Emeric Brun | 74f7ffa | 2018-02-19 16:14:12 +0100 | [diff] [blame] | 9694 | { "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] | 9695 | { "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] | 9696 | { "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] | 9697 | { "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] | 9698 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | 645ae79 | 2014-04-30 14:21:06 +0200 | [diff] [blame] | 9699 | { "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] | 9700 | #endif |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9701 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
Patrick Hemmer | 6567466 | 2019-06-04 08:13:03 -0400 | [diff] [blame] | 9702 | { "ssl_bc_client_random", smp_fetch_ssl_fc_random, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
| 9703 | { "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] | 9704 | { "ssl_bc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV }, |
| 9705 | #endif |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9706 | { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 9707 | { "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] | 9708 | { "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] | 9709 | { "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] | 9710 | { "ssl_c_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9711 | { "ssl_c_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9712 | { "ssl_c_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9713 | { "ssl_c_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9714 | { "ssl_c_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9715 | { "ssl_c_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9716 | { "ssl_c_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9717 | { "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] | 9718 | { "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] | 9719 | { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI }, |
| 9720 | { "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] | 9721 | { "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] | 9722 | { "ssl_f_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9723 | { "ssl_f_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9724 | { "ssl_f_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9725 | { "ssl_f_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9726 | { "ssl_f_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9727 | { "ssl_f_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9728 | { "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] | 9729 | { "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] | 9730 | { "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] | 9731 | { "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] | 9732 | { "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] | 9733 | { "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] | 9734 | { "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] | 9735 | { "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] | 9736 | { "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] | 9737 | { "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] | 9738 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9739 | { "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] | 9740 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 9741 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9742 | { "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] | 9743 | #endif |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9744 | { "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] | 9745 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Emeric Brun | b73a9b0 | 2014-04-30 18:49:19 +0200 | [diff] [blame] | 9746 | { "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] | 9747 | #endif |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 9748 | { "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] | 9749 | #if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9750 | { "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] | 9751 | #endif |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9752 | #if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
Patrick Hemmer | 6567466 | 2019-06-04 08:13:03 -0400 | [diff] [blame] | 9753 | { "ssl_fc_client_random", smp_fetch_ssl_fc_random, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9754 | { "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] | 9755 | { "ssl_fc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9756 | #endif |
Patrick Hemmer | 4196677 | 2018-04-28 19:15:48 -0400 | [diff] [blame] | 9757 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Thierry FOURNIER | 7654c9f | 2013-12-17 00:20:33 +0100 | [diff] [blame] | 9758 | { "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] | 9759 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9760 | { "ssl_fc_cipherlist_bin", smp_fetch_ssl_fc_cl_bin, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9761 | { "ssl_fc_cipherlist_hex", smp_fetch_ssl_fc_cl_hex, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI }, |
| 9762 | { "ssl_fc_cipherlist_str", smp_fetch_ssl_fc_cl_str, 0, NULL, SMP_T_STR, SMP_USE_L5CLI }, |
| 9763 | { "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] | 9764 | { NULL, NULL, 0, 0, 0 }, |
| 9765 | }}; |
| 9766 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9767 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |
| 9768 | |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9769 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9770 | * Please take care of keeping this list alphabetically sorted. |
| 9771 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 9772 | static struct acl_kw_list acl_kws = {ILH, { |
Thierry FOURNIER | c5a4e98 | 2014-03-05 16:07:08 +0100 | [diff] [blame] | 9773 | { "ssl_fc_sni_end", "ssl_fc_sni", PAT_MATCH_END }, |
| 9774 | { "ssl_fc_sni_reg", "ssl_fc_sni", PAT_MATCH_REG }, |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 9775 | { /* END */ }, |
Willy Tarreau | 7875d09 | 2012-09-10 08:20:03 +0200 | [diff] [blame] | 9776 | }}; |
| 9777 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9778 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
| 9779 | |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 9780 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9781 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 9782 | * all code contributors. |
| 9783 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 9784 | * the config parser can report an appropriate error when a known keyword was |
| 9785 | * not enabled. |
| 9786 | */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9787 | static struct ssl_bind_kw ssl_bind_kws[] = { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 9788 | { "allow-0rtt", ssl_bind_parse_allow_0rtt, 0 }, /* allow 0-RTT */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9789 | { "alpn", ssl_bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 9790 | { "ca-file", ssl_bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 9791 | { "ciphers", ssl_bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9792 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9793 | { "ciphersuites", ssl_bind_parse_ciphersuites, 1 }, /* set TLS 1.3 cipher suite */ |
| 9794 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9795 | { "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] | 9796 | { "curves", ssl_bind_parse_curves, 1 }, /* set SSL curve suite */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9797 | { "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] | 9798 | { "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] | 9799 | { "npn", ssl_bind_parse_npn, 1 }, /* set NPN supported protocols */ |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 9800 | { "ssl-min-ver", ssl_bind_parse_tls_method_minmax,1 }, /* minimum version */ |
| 9801 | { "ssl-max-ver", ssl_bind_parse_tls_method_minmax,1 }, /* maximum version */ |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 9802 | { "verify", ssl_bind_parse_verify, 1 }, /* set SSL verify method */ |
| 9803 | { NULL, NULL, 0 }, |
| 9804 | }; |
| 9805 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9806 | /* no initcall for ssl_bind_kws, these ones are parsed in the parser loop */ |
| 9807 | |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 9808 | static struct bind_kw_list bind_kws = { "SSL", { }, { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 9809 | { "allow-0rtt", bind_parse_allow_0rtt, 0 }, /* Allow 0RTT */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9810 | { "alpn", bind_parse_alpn, 1 }, /* set ALPN supported protocols */ |
| 9811 | { "ca-file", bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */ |
| 9812 | { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */ |
| 9813 | { "ca-sign-file", bind_parse_ca_sign_file, 1 }, /* set CAFile used to generate and sign server certs */ |
| 9814 | { "ca-sign-pass", bind_parse_ca_sign_pass, 1 }, /* set CAKey passphrase */ |
| 9815 | { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */ |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9816 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9817 | { "ciphersuites", bind_parse_ciphersuites, 1 }, /* set TLS 1.3 cipher suite */ |
| 9818 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9819 | { "crl-file", bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */ |
| 9820 | { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */ |
| 9821 | { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */ |
| 9822 | { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */ |
| 9823 | { "curves", bind_parse_curves, 1 }, /* set SSL curve suite */ |
| 9824 | { "ecdhe", bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */ |
| 9825 | { "force-sslv3", bind_parse_tls_method_options, 0 }, /* force SSLv3 */ |
| 9826 | { "force-tlsv10", bind_parse_tls_method_options, 0 }, /* force TLSv10 */ |
| 9827 | { "force-tlsv11", bind_parse_tls_method_options, 0 }, /* force TLSv11 */ |
| 9828 | { "force-tlsv12", bind_parse_tls_method_options, 0 }, /* force TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 9829 | { "force-tlsv13", bind_parse_tls_method_options, 0 }, /* force TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9830 | { "generate-certificates", bind_parse_generate_certs, 0 }, /* enable the server certificates generation */ |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 9831 | { "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] | 9832 | { "no-sslv3", bind_parse_tls_method_options, 0 }, /* disable SSLv3 */ |
| 9833 | { "no-tlsv10", bind_parse_tls_method_options, 0 }, /* disable TLSv10 */ |
| 9834 | { "no-tlsv11", bind_parse_tls_method_options, 0 }, /* disable TLSv11 */ |
| 9835 | { "no-tlsv12", bind_parse_tls_method_options, 0 }, /* disable TLSv12 */ |
Emmanuel Hocdet | 42fb980 | 2017-03-30 19:29:39 +0200 | [diff] [blame] | 9836 | { "no-tlsv13", bind_parse_tls_method_options, 0 }, /* disable TLSv13 */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9837 | { "no-tls-tickets", bind_parse_no_tls_tickets, 0 }, /* disable session resumption tickets */ |
| 9838 | { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9839 | { "ssl-min-ver", bind_parse_tls_method_minmax, 1 }, /* minimum version */ |
| 9840 | { "ssl-max-ver", bind_parse_tls_method_minmax, 1 }, /* maximum version */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 9841 | { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */ |
| 9842 | { "tls-ticket-keys", bind_parse_tls_ticket_keys, 1 }, /* set file to load TLS ticket keys from */ |
| 9843 | { "verify", bind_parse_verify, 1 }, /* set SSL verify method */ |
| 9844 | { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */ |
| 9845 | { "prefer-client-ciphers", bind_parse_pcc, 0 }, /* prefer client ciphers */ |
Willy Tarreau | 79eeafa | 2012-09-14 07:53:05 +0200 | [diff] [blame] | 9846 | { NULL, NULL, 0 }, |
| 9847 | }}; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9848 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9849 | INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |
| 9850 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 9851 | /* Note: must not be declared <const> as its list will be overwritten. |
| 9852 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 9853 | * all code contributors. |
| 9854 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 9855 | * the config parser can report an appropriate error when a known keyword was |
| 9856 | * not enabled. |
| 9857 | */ |
| 9858 | static struct srv_kw_list srv_kws = { "SSL", { }, { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 9859 | { "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] | 9860 | { "alpn", srv_parse_alpn, 1, 1 }, /* Set ALPN supported protocols */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9861 | { "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] | 9862 | { "check-alpn", srv_parse_alpn, 1, 1 }, /* Set ALPN used for checks */ |
Olivier Houchard | 9130a96 | 2017-10-17 17:33:43 +0200 | [diff] [blame] | 9863 | { "check-sni", srv_parse_check_sni, 1, 1 }, /* set SNI */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9864 | { "check-ssl", srv_parse_check_ssl, 0, 1 }, /* enable SSL for health checks */ |
| 9865 | { "ciphers", srv_parse_ciphers, 1, 1 }, /* select the cipher suite */ |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9866 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9867 | { "ciphersuites", srv_parse_ciphersuites, 1, 1 }, /* select the cipher suite */ |
| 9868 | #endif |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9869 | { "crl-file", srv_parse_crl_file, 1, 1 }, /* set certificate revocation list file use on server cert verify */ |
| 9870 | { "crt", srv_parse_crt, 1, 1 }, /* set client certificate */ |
| 9871 | { "force-sslv3", srv_parse_tls_method_options, 0, 1 }, /* force SSLv3 */ |
| 9872 | { "force-tlsv10", srv_parse_tls_method_options, 0, 1 }, /* force TLSv10 */ |
| 9873 | { "force-tlsv11", srv_parse_tls_method_options, 0, 1 }, /* force TLSv11 */ |
| 9874 | { "force-tlsv12", srv_parse_tls_method_options, 0, 1 }, /* force TLSv12 */ |
| 9875 | { "force-tlsv13", srv_parse_tls_method_options, 0, 1 }, /* force TLSv13 */ |
| 9876 | { "no-check-ssl", srv_parse_no_check_ssl, 0, 1 }, /* disable SSL for health checks */ |
| 9877 | { "no-send-proxy-v2-ssl", srv_parse_no_send_proxy_ssl, 0, 1 }, /* do not send PROXY protocol header v2 with SSL info */ |
| 9878 | { "no-send-proxy-v2-ssl-cn", srv_parse_no_send_proxy_cn, 0, 1 }, /* do not send PROXY protocol header v2 with CN */ |
| 9879 | { "no-ssl", srv_parse_no_ssl, 0, 1 }, /* disable SSL processing */ |
| 9880 | { "no-ssl-reuse", srv_parse_no_ssl_reuse, 0, 1 }, /* disable session reuse */ |
| 9881 | { "no-sslv3", srv_parse_tls_method_options, 0, 0 }, /* disable SSLv3 */ |
| 9882 | { "no-tlsv10", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv10 */ |
| 9883 | { "no-tlsv11", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv11 */ |
| 9884 | { "no-tlsv12", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv12 */ |
| 9885 | { "no-tlsv13", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv13 */ |
| 9886 | { "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] | 9887 | { "npn", srv_parse_npn, 1, 1 }, /* Set NPN supported protocols */ |
Emmanuel Hocdet | e1c722b | 2017-03-31 15:02:54 +0200 | [diff] [blame] | 9888 | { "send-proxy-v2-ssl", srv_parse_send_proxy_ssl, 0, 1 }, /* send PROXY protocol header v2 with SSL info */ |
| 9889 | { "send-proxy-v2-ssl-cn", srv_parse_send_proxy_cn, 0, 1 }, /* send PROXY protocol header v2 with CN */ |
| 9890 | { "sni", srv_parse_sni, 1, 1 }, /* send SNI extension */ |
| 9891 | { "ssl", srv_parse_ssl, 0, 1 }, /* enable SSL processing */ |
| 9892 | { "ssl-min-ver", srv_parse_tls_method_minmax, 1, 1 }, /* minimum version */ |
| 9893 | { "ssl-max-ver", srv_parse_tls_method_minmax, 1, 1 }, /* maximum version */ |
| 9894 | { "ssl-reuse", srv_parse_ssl_reuse, 0, 1 }, /* enable session reuse */ |
| 9895 | { "tls-tickets", srv_parse_tls_tickets, 0, 1 }, /* enable session resumption tickets */ |
| 9896 | { "verify", srv_parse_verify, 1, 1 }, /* set SSL verify method */ |
| 9897 | { "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] | 9898 | { NULL, NULL, 0, 0 }, |
| 9899 | }}; |
| 9900 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9901 | INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws); |
| 9902 | |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 9903 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 9904 | { CFG_GLOBAL, "ca-base", ssl_parse_global_ca_crt_base }, |
| 9905 | { CFG_GLOBAL, "crt-base", ssl_parse_global_ca_crt_base }, |
Willy Tarreau | 0bea58d | 2016-12-21 23:17:25 +0100 | [diff] [blame] | 9906 | { CFG_GLOBAL, "maxsslconn", ssl_parse_global_int }, |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 9907 | { CFG_GLOBAL, "ssl-default-bind-options", ssl_parse_default_bind_options }, |
| 9908 | { CFG_GLOBAL, "ssl-default-server-options", ssl_parse_default_server_options }, |
Willy Tarreau | 14e36a1 | 2016-12-21 23:28:13 +0100 | [diff] [blame] | 9909 | #ifndef OPENSSL_NO_DH |
| 9910 | { CFG_GLOBAL, "ssl-dh-param-file", ssl_parse_global_dh_param_file }, |
| 9911 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 9912 | { CFG_GLOBAL, "ssl-mode-async", ssl_parse_global_ssl_async }, |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9913 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 9914 | { CFG_GLOBAL, "ssl-engine", ssl_parse_global_ssl_engine }, |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 9915 | #endif |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 9916 | { CFG_GLOBAL, "tune.ssl.cachesize", ssl_parse_global_int }, |
| 9917 | #ifndef OPENSSL_NO_DH |
| 9918 | { CFG_GLOBAL, "tune.ssl.default-dh-param", ssl_parse_global_default_dh }, |
| 9919 | #endif |
| 9920 | { CFG_GLOBAL, "tune.ssl.force-private-cache", ssl_parse_global_private_cache }, |
| 9921 | { CFG_GLOBAL, "tune.ssl.lifetime", ssl_parse_global_lifetime }, |
| 9922 | { CFG_GLOBAL, "tune.ssl.maxrecord", ssl_parse_global_int }, |
| 9923 | { CFG_GLOBAL, "tune.ssl.ssl-ctx-cache-size", ssl_parse_global_int }, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 9924 | { CFG_GLOBAL, "tune.ssl.capture-cipherlist-size", ssl_parse_global_capture_cipherlist }, |
Willy Tarreau | f22e968 | 2016-12-21 23:23:19 +0100 | [diff] [blame] | 9925 | { CFG_GLOBAL, "ssl-default-bind-ciphers", ssl_parse_global_ciphers }, |
| 9926 | { CFG_GLOBAL, "ssl-default-server-ciphers", ssl_parse_global_ciphers }, |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 9927 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 9928 | { CFG_GLOBAL, "ssl-default-bind-ciphersuites", ssl_parse_global_ciphersuites }, |
| 9929 | { CFG_GLOBAL, "ssl-default-server-ciphersuites", ssl_parse_global_ciphersuites }, |
| 9930 | #endif |
Emeric Brun | 2c86cbf | 2014-10-30 15:56:50 +0100 | [diff] [blame] | 9931 | { 0, NULL, NULL }, |
| 9932 | }}; |
| 9933 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9934 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 9935 | |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9936 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 9937 | static struct sample_conv_kw_list conv_kws = {ILH, { |
Willy Tarreau | 86a394e | 2019-05-09 14:15:32 +0200 | [diff] [blame] | 9938 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1000100fL) |
Nenad Merdanovic | c31499d | 2019-03-23 11:00:32 +0100 | [diff] [blame] | 9939 | { "aes_gcm_dec", sample_conv_aes_gcm_dec, ARG4(4,SINT,STR,STR,STR), check_aes_gcm, SMP_T_BIN, SMP_T_BIN }, |
| 9940 | #endif |
| 9941 | { NULL, NULL, 0, 0, 0 }, |
| 9942 | }}; |
| 9943 | |
| 9944 | INITCALL1(STG_REGISTER, sample_register_convs, &conv_kws); |
| 9945 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 9946 | /* transport-layer operations for SSL sockets */ |
Willy Tarreau | d9f5cca | 2016-12-22 21:08:52 +0100 | [diff] [blame] | 9947 | static struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9948 | .snd_buf = ssl_sock_from_buf, |
| 9949 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 9950 | .subscribe = ssl_subscribe, |
| 9951 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 9952 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 9953 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9954 | .rcv_pipe = NULL, |
| 9955 | .snd_pipe = NULL, |
| 9956 | .shutr = NULL, |
| 9957 | .shutw = ssl_sock_shutw, |
| 9958 | .close = ssl_sock_close, |
| 9959 | .init = ssl_sock_init, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 9960 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 9961 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 9962 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 9963 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 9964 | .get_alpn = ssl_sock_get_alpn, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 9965 | .name = "SSL", |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 9966 | }; |
| 9967 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9968 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 9969 | struct session *sess, struct stream *s, int flags) |
| 9970 | { |
| 9971 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9972 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9973 | |
| 9974 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9975 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9976 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 9977 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9978 | 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] | 9979 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 9980 | s->req.flags |= CF_READ_NULL; |
| 9981 | return ACT_RET_YIELD; |
| 9982 | } |
| 9983 | } |
| 9984 | return (ACT_RET_CONT); |
| 9985 | } |
| 9986 | |
| 9987 | 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) |
| 9988 | { |
| 9989 | rule->action_ptr = ssl_action_wait_for_hs; |
| 9990 | |
| 9991 | return ACT_RET_PRS_OK; |
| 9992 | } |
| 9993 | |
| 9994 | static struct action_kw_list http_req_actions = {ILH, { |
| 9995 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 9996 | { /* END */ } |
| 9997 | }}; |
| 9998 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 9999 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 10000 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10001 | #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] | 10002 | |
| 10003 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 10004 | { |
| 10005 | if (ptr) { |
| 10006 | chunk_destroy(ptr); |
| 10007 | free(ptr); |
| 10008 | } |
| 10009 | } |
| 10010 | |
| 10011 | #endif |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 10012 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 10013 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 10014 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 10015 | } |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 10016 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10017 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 10018 | static void __ssl_sock_init(void) |
| 10019 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10020 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10021 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 10022 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10023 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10024 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 10025 | if (global_ssl.listen_default_ciphers) |
| 10026 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 10027 | if (global_ssl.connect_default_ciphers) |
| 10028 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Emmanuel Hocdet | 839af57 | 2019-05-14 16:27:35 +0200 | [diff] [blame] | 10029 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 10030 | if (global_ssl.listen_default_ciphersuites) |
| 10031 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 10032 | if (global_ssl.connect_default_ciphersuites) |
| 10033 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 10034 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 10035 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 10036 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 10037 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10038 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 10039 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10040 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10041 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 10042 | n = sk_SSL_COMP_num(cm); |
| 10043 | while (n--) { |
| 10044 | (void) sk_SSL_COMP_pop(cm); |
| 10045 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 10046 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 10047 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10048 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 10049 | ssl_locking_init(); |
| 10050 | #endif |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10051 | #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] | 10052 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 10053 | #endif |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 10054 | 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] | 10055 | 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] | 10056 | 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] | 10057 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10058 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 10059 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10060 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 10061 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 10062 | hap_register_post_check(tlskeys_finalize_config); |
| 10063 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10064 | |
| 10065 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 10066 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 10067 | |
| 10068 | #ifndef OPENSSL_NO_DH |
| 10069 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 10070 | hap_register_post_deinit(ssl_free_dh); |
| 10071 | #endif |
| 10072 | #ifndef OPENSSL_NO_ENGINE |
| 10073 | hap_register_post_deinit(ssl_free_engines); |
| 10074 | #endif |
| 10075 | /* Load SSL string for the verbose & debug mode. */ |
| 10076 | ERR_load_SSL_strings(); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 10077 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
| 10078 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 10079 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 10080 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 10081 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 10082 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 10083 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 10084 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10085 | } |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 10086 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10087 | /* Compute and register the version string */ |
| 10088 | static void ssl_register_build_options() |
| 10089 | { |
| 10090 | char *ptr = NULL; |
| 10091 | int i; |
| 10092 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10093 | memprintf(&ptr, "Built with OpenSSL version : " |
| 10094 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 10095 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10096 | #else /* OPENSSL_IS_BORINGSSL */ |
| 10097 | OPENSSL_VERSION_TEXT |
| 10098 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 10099 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 10100 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10101 | #endif |
| 10102 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 10103 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10104 | "no (library version too old)" |
| 10105 | #elif defined(OPENSSL_NO_TLSEXT) |
| 10106 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 10107 | #else |
| 10108 | "yes" |
| 10109 | #endif |
| 10110 | "", ptr); |
| 10111 | |
| 10112 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 10113 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 10114 | "yes" |
| 10115 | #else |
| 10116 | #ifdef OPENSSL_NO_TLSEXT |
| 10117 | "no (because of OPENSSL_NO_TLSEXT)" |
| 10118 | #else |
| 10119 | "no (version might be too old, 0.9.8f min needed)" |
| 10120 | #endif |
| 10121 | #endif |
| 10122 | "", ptr); |
| 10123 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 10124 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 10125 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 10126 | if (methodVersions[i].option) |
| 10127 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 10128 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10129 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10130 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 10131 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 10132 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 10133 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10134 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10135 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10136 | void ssl_free_engines(void) { |
| 10137 | struct ssl_engine_list *wl, *wlb; |
| 10138 | /* free up engine list */ |
| 10139 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 10140 | ENGINE_finish(wl->e); |
| 10141 | ENGINE_free(wl->e); |
| 10142 | LIST_DEL(&wl->list); |
| 10143 | free(wl); |
| 10144 | } |
| 10145 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 10146 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 10147 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10148 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10149 | void ssl_free_dh(void) { |
| 10150 | if (local_dh_1024) { |
| 10151 | DH_free(local_dh_1024); |
| 10152 | local_dh_1024 = NULL; |
| 10153 | } |
| 10154 | if (local_dh_2048) { |
| 10155 | DH_free(local_dh_2048); |
| 10156 | local_dh_2048 = NULL; |
| 10157 | } |
| 10158 | if (local_dh_4096) { |
| 10159 | DH_free(local_dh_4096); |
| 10160 | local_dh_4096 = NULL; |
| 10161 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 10162 | if (global_dh) { |
| 10163 | DH_free(global_dh); |
| 10164 | global_dh = NULL; |
| 10165 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 10166 | } |
| 10167 | #endif |
| 10168 | |
| 10169 | __attribute__((destructor)) |
| 10170 | static void __ssl_sock_deinit(void) |
| 10171 | { |
| 10172 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 10173 | if (ssl_ctx_lru_tree) { |
| 10174 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 10175 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 10176 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10177 | #endif |
| 10178 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10179 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10180 | ERR_remove_state(0); |
| 10181 | ERR_free_strings(); |
| 10182 | |
| 10183 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 10184 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10185 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 10186 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10187 | CRYPTO_cleanup_all_ex_data(); |
| 10188 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 10189 | BIO_meth_free(ha_meth); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 10190 | } |
| 10191 | |
| 10192 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 10193 | /* |
| 10194 | * Local variables: |
| 10195 | * c-indent-level: 8 |
| 10196 | * c-basic-offset: 8 |
| 10197 | * End: |
| 10198 | */ |