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 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 43 | #include <import/ebpttree.h> |
| 44 | #include <import/ebsttree.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 45 | #include <import/lru.h> |
| 46 | #include <import/xxhash.h> |
| 47 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 48 | #include <haproxy/api.h> |
| 49 | #include <haproxy/arg.h> |
| 50 | #include <haproxy/base64.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 51 | #include <haproxy/channel.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 52 | #include <haproxy/chunk.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 53 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 54 | #include <haproxy/connection.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 55 | #include <haproxy/dynbuf.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 56 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 57 | #include <haproxy/fd.h> |
| 58 | #include <haproxy/freq_ctr.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 59 | #include <haproxy/frontend.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 60 | #include <haproxy/global.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 61 | #include <haproxy/http_rules.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 62 | #include <haproxy/log.h> |
Willy Tarreau | 6019fab | 2020-05-27 16:26:00 +0200 | [diff] [blame] | 63 | #include <haproxy/openssl-compat.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 64 | #include <haproxy/pattern-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 65 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 66 | #include <haproxy/proxy.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 67 | #include <haproxy/server.h> |
Willy Tarreau | 334099c | 2020-06-03 18:38:48 +0200 | [diff] [blame] | 68 | #include <haproxy/shctx.h> |
Willy Tarreau | 47d7f90 | 2020-06-04 14:25:47 +0200 | [diff] [blame] | 69 | #include <haproxy/ssl_ckch.h> |
Willy Tarreau | 52d8872 | 2020-06-04 14:29:23 +0200 | [diff] [blame] | 70 | #include <haproxy/ssl_crtlist.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 71 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | b2bd865 | 2020-06-04 14:21:22 +0200 | [diff] [blame] | 72 | #include <haproxy/ssl_utils.h> |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 73 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 74 | #include <haproxy/stream-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 75 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 76 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 77 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 78 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 79 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 80 | #include <haproxy/vars.h> |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 81 | #include <haproxy/xprt_quic.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 82 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 83 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 84 | /* ***** READ THIS before adding code here! ***** |
| 85 | * |
| 86 | * Due to API incompatibilities between multiple OpenSSL versions and their |
| 87 | * derivatives, it's often tempting to add macros to (re-)define certain |
| 88 | * symbols. Please do not do this here, and do it in common/openssl-compat.h |
| 89 | * exclusively so that the whole code consistently uses the same macros. |
| 90 | * |
| 91 | * Whenever possible if a macro is missing in certain versions, it's better |
| 92 | * to conditionally define it in openssl-compat.h than using lots of ifdefs. |
| 93 | */ |
| 94 | |
Willy Tarreau | 71b734c | 2014-01-28 15:19:44 +0100 | [diff] [blame] | 95 | int sslconns = 0; |
| 96 | int totalsslconns = 0; |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 97 | int nb_engines = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 98 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 99 | static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */ |
| 100 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 101 | struct global_ssl global_ssl = { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 102 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 103 | .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS, |
| 104 | #endif |
| 105 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 106 | .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS, |
| 107 | #endif |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 108 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 109 | .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES, |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 110 | .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES, |
| 111 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 112 | .listen_default_ssloptions = BC_SSL_O_NONE, |
| 113 | .connect_default_ssloptions = SRV_SSL_O_NONE, |
| 114 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 115 | .listen_default_sslmethods.flags = MC_SSL_O_ALL, |
| 116 | .listen_default_sslmethods.min = CONF_TLSV_NONE, |
| 117 | .listen_default_sslmethods.max = CONF_TLSV_NONE, |
| 118 | .connect_default_sslmethods.flags = MC_SSL_O_ALL, |
| 119 | .connect_default_sslmethods.min = CONF_TLSV_NONE, |
| 120 | .connect_default_sslmethods.max = CONF_TLSV_NONE, |
| 121 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 122 | #ifdef DEFAULT_SSL_MAX_RECORD |
| 123 | .max_record = DEFAULT_SSL_MAX_RECORD, |
| 124 | #endif |
| 125 | .default_dh_param = SSL_DEFAULT_DH_PARAM, |
| 126 | .ctx_cache = DEFAULT_SSL_CTX_CACHE, |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 127 | .capture_cipherlist = 0, |
William Lallemand | 3af48e7 | 2020-02-03 17:15:52 +0100 | [diff] [blame] | 128 | .extra_files = SSL_GF_ALL, |
William Lallemand | 8e8581e | 2020-10-20 17:36:46 +0200 | [diff] [blame] | 129 | .extra_files_noext = 0, |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 130 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 131 | .keylog = 0 |
| 132 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 133 | }; |
| 134 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 135 | static BIO_METHOD *ha_meth; |
| 136 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 137 | DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx)); |
| 138 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 139 | /* ssl stats module */ |
| 140 | enum { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 141 | SSL_ST_SESS, |
| 142 | SSL_ST_REUSED_SESS, |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 143 | SSL_ST_FAILED_HANDSHAKE, |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 144 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 145 | SSL_ST_STATS_COUNT /* must be the last member of the enum */ |
| 146 | }; |
| 147 | |
| 148 | static struct name_desc ssl_stats[] = { |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 149 | [SSL_ST_SESS] = { .name = "ssl_sess", |
| 150 | .desc = "Total number of ssl sessions established" }, |
| 151 | [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess", |
| 152 | .desc = "Total number of ssl sessions reused" }, |
| 153 | [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake", |
| 154 | .desc = "Total number of failed handshake" }, |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | static struct ssl_counters { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 158 | long long sess; |
| 159 | long long reused_sess; |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 160 | long long failed_handshake; |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 161 | } ssl_counters; |
| 162 | |
| 163 | static void ssl_fill_stats(void *data, struct field *stats) |
| 164 | { |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 165 | struct ssl_counters *counters = data; |
| 166 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 167 | stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess); |
| 168 | stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess); |
| 169 | stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake); |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static struct stats_module ssl_stats_module = { |
| 173 | .name = "ssl", |
| 174 | .fill_stats = ssl_fill_stats, |
| 175 | .stats = ssl_stats, |
| 176 | .stats_count = SSL_ST_STATS_COUNT, |
| 177 | .counters = &ssl_counters, |
| 178 | .counters_size = sizeof(ssl_counters), |
| 179 | .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV), |
| 180 | .clearable = 1, |
| 181 | }; |
| 182 | |
| 183 | INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module); |
| 184 | |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 185 | /* ssl_sock_io_cb is exported to see it resolved in "show fd" */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 186 | struct task *ssl_sock_io_cb(struct task *, void *, unsigned int); |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 187 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 188 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 189 | /* Methods to implement OpenSSL BIO */ |
| 190 | static int ha_ssl_write(BIO *h, const char *buf, int num) |
| 191 | { |
| 192 | struct buffer tmpbuf; |
| 193 | struct ssl_sock_ctx *ctx; |
| 194 | int ret; |
| 195 | |
| 196 | ctx = BIO_get_data(h); |
| 197 | tmpbuf.size = num; |
| 198 | tmpbuf.area = (void *)(uintptr_t)buf; |
| 199 | tmpbuf.data = num; |
| 200 | tmpbuf.head = 0; |
| 201 | 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] | 202 | 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] | 203 | BIO_set_retry_write(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 204 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 205 | } else if (ret == 0) |
| 206 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 207 | return ret; |
| 208 | } |
| 209 | |
| 210 | static int ha_ssl_gets(BIO *h, char *buf, int size) |
| 211 | { |
| 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | static int ha_ssl_puts(BIO *h, const char *str) |
| 217 | { |
| 218 | |
| 219 | return ha_ssl_write(h, str, strlen(str)); |
| 220 | } |
| 221 | |
| 222 | static int ha_ssl_read(BIO *h, char *buf, int size) |
| 223 | { |
| 224 | struct buffer tmpbuf; |
| 225 | struct ssl_sock_ctx *ctx; |
| 226 | int ret; |
| 227 | |
| 228 | ctx = BIO_get_data(h); |
| 229 | tmpbuf.size = size; |
| 230 | tmpbuf.area = buf; |
| 231 | tmpbuf.data = 0; |
| 232 | tmpbuf.head = 0; |
| 233 | 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] | 234 | 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] | 235 | BIO_set_retry_read(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 236 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 237 | } else if (ret == 0) |
| 238 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 239 | |
| 240 | return ret; |
| 241 | } |
| 242 | |
| 243 | static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2) |
| 244 | { |
| 245 | int ret = 0; |
| 246 | switch (cmd) { |
| 247 | case BIO_CTRL_DUP: |
| 248 | case BIO_CTRL_FLUSH: |
| 249 | ret = 1; |
| 250 | break; |
| 251 | } |
| 252 | return ret; |
| 253 | } |
| 254 | |
| 255 | static int ha_ssl_new(BIO *h) |
| 256 | { |
| 257 | BIO_set_init(h, 1); |
| 258 | BIO_set_data(h, NULL); |
| 259 | BIO_clear_flags(h, ~0); |
| 260 | return 1; |
| 261 | } |
| 262 | |
| 263 | static int ha_ssl_free(BIO *data) |
| 264 | { |
| 265 | |
| 266 | return 1; |
| 267 | } |
| 268 | |
| 269 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 270 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 271 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 272 | static HA_RWLOCK_T *ssl_rwlocks; |
| 273 | |
| 274 | |
| 275 | unsigned long ssl_id_function(void) |
| 276 | { |
| 277 | return (unsigned long)tid; |
| 278 | } |
| 279 | |
| 280 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 281 | { |
| 282 | if (mode & CRYPTO_LOCK) { |
| 283 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 284 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 285 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 286 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 287 | } |
| 288 | else { |
| 289 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 290 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 291 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 292 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 293 | } |
| 294 | } |
| 295 | |
| 296 | static int ssl_locking_init(void) |
| 297 | { |
| 298 | int i; |
| 299 | |
| 300 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 301 | if (!ssl_rwlocks) |
| 302 | return -1; |
| 303 | |
| 304 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 305 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 306 | |
| 307 | CRYPTO_set_id_callback(ssl_id_function); |
| 308 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 309 | |
| 310 | return 0; |
| 311 | } |
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 | #endif |
| 314 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 315 | __decl_thread(HA_SPINLOCK_T ckch_lock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 316 | |
William Lallemand | bc6ca7c | 2019-10-29 23:48:19 +0100 | [diff] [blame] | 317 | |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 318 | /* |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 319 | * deduplicate cafile (and crlfile) |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 320 | */ |
| 321 | struct cafile_entry { |
| 322 | X509_STORE *ca_store; |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 323 | STACK_OF(X509_NAME) *ca_list; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 324 | struct ebmb_node node; |
| 325 | char path[0]; |
| 326 | }; |
| 327 | |
| 328 | static struct eb_root cafile_tree = EB_ROOT_UNIQUE; |
| 329 | |
| 330 | static X509_STORE* ssl_store_get0_locations_file(char *path) |
| 331 | { |
| 332 | struct ebmb_node *eb; |
| 333 | |
| 334 | eb = ebst_lookup(&cafile_tree, path); |
| 335 | if (eb) { |
| 336 | struct cafile_entry *ca_e; |
| 337 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 338 | return ca_e->ca_store; |
| 339 | } |
| 340 | return NULL; |
| 341 | } |
| 342 | |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 343 | int ssl_store_load_locations_file(char *path, int create_if_none) |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 344 | { |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 345 | X509_STORE *store = ssl_store_get0_locations_file(path); |
| 346 | |
| 347 | /* If this function is called by the CLI, we should not call the |
| 348 | * X509_STORE_load_locations function because it performs forbidden disk |
| 349 | * accesses. */ |
| 350 | if (!store && create_if_none) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 351 | struct cafile_entry *ca_e; |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 352 | store = X509_STORE_new(); |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 353 | if (X509_STORE_load_locations(store, path, NULL)) { |
| 354 | int pathlen; |
| 355 | pathlen = strlen(path); |
| 356 | ca_e = calloc(1, sizeof(*ca_e) + pathlen + 1); |
| 357 | if (ca_e) { |
| 358 | memcpy(ca_e->path, path, pathlen + 1); |
| 359 | ca_e->ca_store = store; |
| 360 | ebst_insert(&cafile_tree, &ca_e->node); |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 361 | } |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 362 | } else { |
| 363 | X509_STORE_free(store); |
| 364 | store = NULL; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 365 | } |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 366 | } |
Remi Tricot-Le Breton | fb00f31 | 2021-03-23 16:41:53 +0100 | [diff] [blame] | 367 | return (store != NULL); |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 368 | } |
| 369 | |
| 370 | /* mimic what X509_STORE_load_locations do with store_ctx */ |
| 371 | static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path) |
| 372 | { |
| 373 | X509_STORE *store; |
| 374 | store = ssl_store_get0_locations_file(path); |
| 375 | if (store_ctx && store) { |
| 376 | int i; |
| 377 | X509_OBJECT *obj; |
| 378 | STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store); |
| 379 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 380 | obj = sk_X509_OBJECT_value(objs, i); |
| 381 | switch (X509_OBJECT_get_type(obj)) { |
| 382 | case X509_LU_X509: |
| 383 | X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj)); |
| 384 | break; |
| 385 | case X509_LU_CRL: |
| 386 | X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj)); |
| 387 | break; |
| 388 | default: |
| 389 | break; |
| 390 | } |
| 391 | } |
| 392 | return 1; |
| 393 | } |
| 394 | return 0; |
| 395 | } |
| 396 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 397 | /* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */ |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 398 | static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path) |
| 399 | { |
| 400 | X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx); |
| 401 | return ssl_set_cert_crl_file(store_ctx, path); |
| 402 | } |
| 403 | |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 404 | /* |
| 405 | Extract CA_list from CA_file already in tree. |
| 406 | Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility. |
| 407 | Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX. |
| 408 | */ |
| 409 | static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path) |
| 410 | { |
| 411 | struct ebmb_node *eb; |
| 412 | struct cafile_entry *ca_e; |
| 413 | |
| 414 | eb = ebst_lookup(&cafile_tree, path); |
| 415 | if (!eb) |
| 416 | return NULL; |
| 417 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 418 | |
| 419 | if (ca_e->ca_list == NULL) { |
| 420 | int i; |
| 421 | unsigned long key; |
| 422 | struct eb_root ca_name_tree = EB_ROOT; |
| 423 | struct eb64_node *node, *back; |
| 424 | struct { |
| 425 | struct eb64_node node; |
| 426 | X509_NAME *xname; |
| 427 | } *ca_name; |
| 428 | STACK_OF(X509_OBJECT) *objs; |
| 429 | STACK_OF(X509_NAME) *skn; |
| 430 | X509 *x; |
| 431 | X509_NAME *xn; |
| 432 | |
| 433 | skn = sk_X509_NAME_new_null(); |
| 434 | /* take x509 from cafile_tree */ |
| 435 | objs = X509_STORE_get0_objects(ca_e->ca_store); |
| 436 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 437 | x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i)); |
| 438 | if (!x) |
| 439 | continue; |
| 440 | xn = X509_get_subject_name(x); |
| 441 | if (!xn) |
| 442 | continue; |
| 443 | /* Check for duplicates. */ |
| 444 | key = X509_NAME_hash(xn); |
| 445 | for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL; |
| 446 | node && ca_name == NULL; |
| 447 | node = eb64_next(node)) { |
| 448 | ca_name = container_of(node, typeof(*ca_name), node); |
| 449 | if (X509_NAME_cmp(xn, ca_name->xname) != 0) |
| 450 | ca_name = NULL; |
| 451 | } |
| 452 | /* find a duplicate */ |
| 453 | if (ca_name) |
| 454 | continue; |
| 455 | ca_name = calloc(1, sizeof *ca_name); |
| 456 | xn = X509_NAME_dup(xn); |
| 457 | if (!ca_name || |
| 458 | !xn || |
| 459 | !sk_X509_NAME_push(skn, xn)) { |
| 460 | free(ca_name); |
| 461 | X509_NAME_free(xn); |
| 462 | sk_X509_NAME_pop_free(skn, X509_NAME_free); |
| 463 | sk_X509_NAME_free(skn); |
| 464 | skn = NULL; |
| 465 | break; |
| 466 | } |
| 467 | ca_name->node.key = key; |
| 468 | ca_name->xname = xn; |
| 469 | eb64_insert(&ca_name_tree, &ca_name->node); |
| 470 | } |
| 471 | ca_e->ca_list = skn; |
| 472 | /* remove temporary ca_name tree */ |
| 473 | node = eb64_first(&ca_name_tree); |
| 474 | while (node) { |
| 475 | ca_name = container_of(node, typeof(*ca_name), node); |
| 476 | back = eb64_next(node); |
| 477 | eb64_delete(node); |
| 478 | free(ca_name); |
| 479 | node = back; |
| 480 | } |
| 481 | } |
| 482 | return ca_e->ca_list; |
| 483 | } |
| 484 | |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 485 | struct pool_head *pool_head_ssl_capture __read_mostly = NULL; |
William Lallemand | 15e1694 | 2020-05-15 00:25:08 +0200 | [diff] [blame] | 486 | int ssl_capture_ptr_index = -1; |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 487 | int ssl_app_data_index = -1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 488 | |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 489 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 490 | int ssl_keylog_index = -1; |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 491 | struct pool_head *pool_head_ssl_keylog __read_mostly = NULL; |
| 492 | struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL; |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 493 | #endif |
| 494 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 495 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 496 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 497 | #endif |
| 498 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 499 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 500 | unsigned int openssl_engines_initialized; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 501 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 502 | struct ssl_engine_list { |
| 503 | struct list list; |
| 504 | ENGINE *e; |
| 505 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 506 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 507 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 508 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 509 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 510 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 511 | static DH *local_dh_1024 = NULL; |
| 512 | static DH *local_dh_2048 = NULL; |
| 513 | static DH *local_dh_4096 = NULL; |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 514 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 515 | #endif /* OPENSSL_NO_DH */ |
| 516 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 517 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 518 | /* X509V3 Extensions that will be added on generated certificates */ |
| 519 | #define X509V3_EXT_SIZE 5 |
| 520 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 521 | "basicConstraints", |
| 522 | "nsComment", |
| 523 | "subjectKeyIdentifier", |
| 524 | "authorityKeyIdentifier", |
| 525 | "keyUsage", |
| 526 | }; |
| 527 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 528 | "CA:FALSE", |
| 529 | "\"OpenSSL Generated Certificate\"", |
| 530 | "hash", |
| 531 | "keyid,issuer:always", |
| 532 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 533 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 534 | /* LRU cache to store generated certificate */ |
| 535 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 536 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 537 | static unsigned int ssl_ctx_serial; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 538 | __decl_rwlock(ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 539 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 540 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 541 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 542 | /* The order here matters for picking a default context, |
| 543 | * keep the most common keytype at the bottom of the list |
| 544 | */ |
| 545 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 546 | "dsa", |
| 547 | "ecdsa", |
| 548 | "rsa" |
| 549 | }; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 550 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 551 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 552 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 553 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 554 | /* Dedicated callback functions for heartbeat and clienthello. |
| 555 | */ |
| 556 | #ifdef TLS1_RT_HEARTBEAT |
| 557 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 558 | int content_type, const void *buf, size_t len, |
| 559 | SSL *ssl); |
| 560 | #endif |
| 561 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 562 | int content_type, const void *buf, size_t len, |
| 563 | SSL *ssl); |
| 564 | |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 565 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 566 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 567 | int content_type, const void *buf, size_t len, |
| 568 | SSL *ssl); |
| 569 | #endif |
| 570 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 571 | /* List head of all registered SSL/TLS protocol message callbacks. */ |
| 572 | struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks); |
| 573 | |
| 574 | /* Registers the function <func> in order to be called on SSL/TLS protocol |
| 575 | * message processing. It will return 0 if the function <func> is not set |
| 576 | * or if it fails to allocate memory. |
| 577 | */ |
| 578 | int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func) |
| 579 | { |
| 580 | struct ssl_sock_msg_callback *cbk; |
| 581 | |
| 582 | if (!func) |
| 583 | return 0; |
| 584 | |
| 585 | cbk = calloc(1, sizeof(*cbk)); |
| 586 | if (!cbk) { |
| 587 | ha_alert("out of memory in ssl_sock_register_msg_callback().\n"); |
| 588 | return 0; |
| 589 | } |
| 590 | |
| 591 | cbk->func = func; |
| 592 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 593 | LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 594 | |
| 595 | return 1; |
| 596 | } |
| 597 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 598 | /* Used to register dedicated SSL/TLS protocol message callbacks. |
| 599 | */ |
| 600 | static int ssl_sock_register_msg_callbacks(void) |
| 601 | { |
| 602 | #ifdef TLS1_RT_HEARTBEAT |
| 603 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat)) |
| 604 | return ERR_ABORT; |
| 605 | #endif |
| 606 | if (global_ssl.capture_cipherlist > 0) { |
| 607 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello)) |
| 608 | return ERR_ABORT; |
| 609 | } |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 610 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 611 | if (global_ssl.keylog > 0) { |
| 612 | if (!ssl_sock_register_msg_callback(ssl_init_keylog)) |
| 613 | return ERR_ABORT; |
| 614 | } |
| 615 | #endif |
| 616 | |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 617 | return ERR_NONE; |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 618 | } |
| 619 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 620 | /* Used to free all SSL/TLS protocol message callbacks that were |
| 621 | * registered by using ssl_sock_register_msg_callback(). |
| 622 | */ |
| 623 | static void ssl_sock_unregister_msg_callbacks(void) |
| 624 | { |
| 625 | struct ssl_sock_msg_callback *cbk, *cbkback; |
| 626 | |
| 627 | list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 628 | LIST_DELETE(&cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 629 | free(cbk); |
| 630 | } |
| 631 | } |
| 632 | |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 633 | SSL *ssl_sock_get_ssl_object(struct connection *conn) |
| 634 | { |
| 635 | if (!ssl_sock_is_ssl(conn)) |
| 636 | return NULL; |
| 637 | |
| 638 | return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl; |
| 639 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 640 | /* |
| 641 | * This function gives the detail of the SSL error. It is used only |
| 642 | * if the debug mode and the verbose mode are activated. It dump all |
| 643 | * the SSL error until the stack was empty. |
| 644 | */ |
| 645 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 646 | { |
| 647 | unsigned long ret; |
| 648 | |
| 649 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 650 | while(1) { |
| 651 | ret = ERR_get_error(); |
| 652 | if (ret == 0) |
| 653 | return; |
Willy Tarreau | 566cebc | 2021-03-02 19:32:39 +0100 | [diff] [blame] | 654 | fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n", |
| 655 | conn->handle.fd, ret, |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 656 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 657 | } |
| 658 | } |
| 659 | } |
| 660 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 661 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 662 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 663 | int ssl_init_single_engine(const char *engine_id, const char *def_algorithms) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 664 | { |
| 665 | int err_code = ERR_ABORT; |
| 666 | ENGINE *engine; |
| 667 | struct ssl_engine_list *el; |
| 668 | |
| 669 | /* grab the structural reference to the engine */ |
| 670 | engine = ENGINE_by_id(engine_id); |
| 671 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 672 | 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] | 673 | goto fail_get; |
| 674 | } |
| 675 | |
| 676 | if (!ENGINE_init(engine)) { |
| 677 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 678 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 679 | goto fail_init; |
| 680 | } |
| 681 | |
| 682 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 683 | 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] | 684 | goto fail_set_method; |
| 685 | } |
| 686 | |
| 687 | el = calloc(1, sizeof(*el)); |
| 688 | el->e = engine; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 689 | LIST_INSERT(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 690 | nb_engines++; |
| 691 | if (global_ssl.async) |
| 692 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 693 | return 0; |
| 694 | |
| 695 | fail_set_method: |
| 696 | /* release the functional reference from ENGINE_init() */ |
| 697 | ENGINE_finish(engine); |
| 698 | |
| 699 | fail_init: |
| 700 | /* release the structural reference from ENGINE_by_id() */ |
| 701 | ENGINE_free(engine); |
| 702 | |
| 703 | fail_get: |
| 704 | return err_code; |
| 705 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 706 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 707 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 708 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 709 | /* |
| 710 | * openssl async fd handler |
| 711 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 712 | void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 713 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 714 | struct ssl_sock_ctx *ctx = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 715 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 716 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 717 | * to poll this fd until it is requested |
| 718 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 719 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 720 | fd_cant_recv(fd); |
| 721 | |
| 722 | /* crypto engine is available, let's notify the associated |
| 723 | * connection that it can pursue its processing. |
| 724 | */ |
Olivier Houchard | a459826 | 2020-09-15 22:16:02 +0200 | [diff] [blame] | 725 | tasklet_wakeup(ctx->wait_event.tasklet); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 726 | } |
| 727 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 728 | /* |
| 729 | * openssl async delayed SSL_free handler |
| 730 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 731 | void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 732 | { |
| 733 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 734 | OSSL_ASYNC_FD all_fd[32]; |
| 735 | size_t num_all_fds = 0; |
| 736 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 737 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 738 | /* We suppose that the async job for a same SSL * |
| 739 | * are serialized. So if we are awake it is |
| 740 | * because the running job has just finished |
| 741 | * and we can remove all async fds safely |
| 742 | */ |
| 743 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 744 | if (num_all_fds > 32) { |
| 745 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 746 | return; |
| 747 | } |
| 748 | |
| 749 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
| 750 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 751 | fd_stop_both(all_fd[i]); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 752 | |
| 753 | /* 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] | 754 | SSL_free(ssl); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 755 | _HA_ATOMIC_DEC(&sslconns); |
| 756 | _HA_ATOMIC_DEC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 757 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 758 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 759 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 760 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 761 | */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 762 | static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 763 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 764 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 765 | OSSL_ASYNC_FD del_fd[32]; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 766 | SSL *ssl = ctx->ssl; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 767 | size_t num_add_fds = 0; |
| 768 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 769 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 770 | |
| 771 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 772 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 773 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 774 | 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] | 775 | return; |
| 776 | } |
| 777 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 778 | 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] | 779 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 780 | /* We remove unused fds from the fdtab */ |
| 781 | for (i=0 ; i < num_del_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 782 | fd_stop_both(del_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 783 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 784 | /* We add new fds to the fdtab */ |
| 785 | for (i=0 ; i < num_add_fds ; i++) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 786 | fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 787 | } |
| 788 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 789 | num_add_fds = 0; |
| 790 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 791 | if (num_add_fds > 32) { |
| 792 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 793 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 794 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 795 | |
| 796 | /* We activate the polling for all known async fds */ |
| 797 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 798 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 799 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 800 | /* To ensure that the fd cache won't be used |
| 801 | * We'll prefer to catch a real RD event |
| 802 | * because handling an EAGAIN on this fd will |
| 803 | * result in a context switch and also |
| 804 | * some engines uses a fd in blocking mode. |
| 805 | */ |
| 806 | fd_cant_recv(add_fd[i]); |
| 807 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 808 | |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 809 | } |
| 810 | #endif |
| 811 | |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 812 | #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] | 813 | /* |
| 814 | * This function returns the number of seconds elapsed |
| 815 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 816 | * date presented un ASN1_GENERALIZEDTIME. |
| 817 | * |
| 818 | * In parsing error case, it returns -1. |
| 819 | */ |
| 820 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 821 | { |
| 822 | long epoch; |
| 823 | char *p, *end; |
| 824 | const unsigned short month_offset[12] = { |
| 825 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 826 | }; |
| 827 | int year, month; |
| 828 | |
| 829 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 830 | |
| 831 | p = (char *)d->data; |
| 832 | end = p + d->length; |
| 833 | |
| 834 | if (end - p < 4) return -1; |
| 835 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 836 | p += 4; |
| 837 | if (end - p < 2) return -1; |
| 838 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 839 | if (month < 1 || month > 12) return -1; |
| 840 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 841 | We consider leap years and the current month (<marsh or not) */ |
| 842 | epoch = ( ((year - 1970) * 365) |
| 843 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 844 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 845 | + month_offset[month-1] |
| 846 | ) * 24 * 60 * 60; |
| 847 | p += 2; |
| 848 | if (end - p < 2) return -1; |
| 849 | /* Add the number of seconds of completed days of current month */ |
| 850 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 851 | p += 2; |
| 852 | if (end - p < 2) return -1; |
| 853 | /* Add the completed hours of the current day */ |
| 854 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 855 | p += 2; |
| 856 | if (end - p < 2) return -1; |
| 857 | /* Add the completed minutes of the current hour */ |
| 858 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 859 | p += 2; |
| 860 | if (p == end) return -1; |
| 861 | /* Test if there is available seconds */ |
| 862 | if (p[0] < '0' || p[0] > '9') |
| 863 | goto nosec; |
| 864 | if (end - p < 2) return -1; |
| 865 | /* Add the seconds of the current minute */ |
| 866 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 867 | p += 2; |
| 868 | if (p == end) return -1; |
| 869 | /* Ignore seconds float part if present */ |
| 870 | if (p[0] == '.') { |
| 871 | do { |
| 872 | if (++p == end) return -1; |
| 873 | } while (p[0] >= '0' && p[0] <= '9'); |
| 874 | } |
| 875 | |
| 876 | nosec: |
| 877 | if (p[0] == 'Z') { |
| 878 | if (end - p != 1) return -1; |
| 879 | return epoch; |
| 880 | } |
| 881 | else if (p[0] == '+') { |
| 882 | if (end - p != 5) return -1; |
| 883 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 884 | 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] | 885 | } |
| 886 | else if (p[0] == '-') { |
| 887 | if (end - p != 5) return -1; |
| 888 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 889 | 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] | 890 | } |
| 891 | |
| 892 | return -1; |
| 893 | } |
| 894 | |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 895 | /* |
| 896 | * struct alignment works here such that the key.key is the same as key_data |
| 897 | * Do not change the placement of key_data |
| 898 | */ |
| 899 | struct certificate_ocsp { |
| 900 | struct ebmb_node key; |
| 901 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 902 | struct buffer response; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 903 | int refcount; |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 904 | long expire; |
| 905 | }; |
| 906 | |
| 907 | struct ocsp_cbk_arg { |
| 908 | int is_single; |
| 909 | int single_kt; |
| 910 | union { |
| 911 | struct certificate_ocsp *s_ocsp; |
| 912 | /* |
| 913 | * m_ocsp will have multiple entries dependent on key type |
| 914 | * Entry 0 - DSA |
| 915 | * Entry 1 - ECDSA |
| 916 | * Entry 2 - RSA |
| 917 | */ |
| 918 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 919 | }; |
| 920 | }; |
| 921 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 922 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 923 | |
| 924 | /* This function starts to check if the OCSP response (in DER format) contained |
| 925 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 926 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 927 | * contained in the OCSP Response and exits on error if no match. |
| 928 | * If it's a valid OCSP Response: |
| 929 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 930 | * pointed by 'ocsp'. |
| 931 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 932 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 933 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 934 | * already present in the container, it will be overwritten. |
| 935 | * |
| 936 | * Note: OCSP response containing more than one OCSP Single response is not |
| 937 | * considered valid. |
| 938 | * |
| 939 | * Returns 0 on success, 1 in error case. |
| 940 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 941 | static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response, |
| 942 | struct certificate_ocsp *ocsp, |
| 943 | OCSP_CERTID *cid, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 944 | { |
| 945 | OCSP_RESPONSE *resp; |
| 946 | OCSP_BASICRESP *bs = NULL; |
| 947 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 948 | OCSP_CERTID *id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 949 | unsigned char *p = (unsigned char *) ocsp_response->area; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 950 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 951 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 952 | int reason; |
| 953 | int ret = 1; |
| 954 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 955 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, |
| 956 | ocsp_response->data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 957 | if (!resp) { |
| 958 | memprintf(err, "Unable to parse OCSP response"); |
| 959 | goto out; |
| 960 | } |
| 961 | |
| 962 | rc = OCSP_response_status(resp); |
| 963 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 964 | memprintf(err, "OCSP response status not successful"); |
| 965 | goto out; |
| 966 | } |
| 967 | |
| 968 | bs = OCSP_response_get1_basic(resp); |
| 969 | if (!bs) { |
| 970 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 971 | goto out; |
| 972 | } |
| 973 | |
| 974 | count_sr = OCSP_resp_count(bs); |
| 975 | if (count_sr > 1) { |
| 976 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 977 | goto out; |
| 978 | } |
| 979 | |
| 980 | sr = OCSP_resp_get0(bs, 0); |
| 981 | if (!sr) { |
| 982 | memprintf(err, "Failed to get OCSP single response"); |
| 983 | goto out; |
| 984 | } |
| 985 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 986 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 987 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 988 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
Emmanuel Hocdet | ef60705 | 2017-10-24 14:57:16 +0200 | [diff] [blame] | 989 | if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) { |
Emmanuel Hocdet | 872085c | 2017-10-10 15:18:52 +0200 | [diff] [blame] | 990 | memprintf(err, "OCSP single response: certificate status is unknown"); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 991 | goto out; |
| 992 | } |
| 993 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 994 | if (!nextupd) { |
| 995 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 996 | goto out; |
| 997 | } |
| 998 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 999 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1000 | if (!rc) { |
| 1001 | memprintf(err, "OCSP single response: no longer valid."); |
| 1002 | goto out; |
| 1003 | } |
| 1004 | |
| 1005 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1006 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1007 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 1008 | goto out; |
| 1009 | } |
| 1010 | } |
| 1011 | |
| 1012 | if (!ocsp) { |
| 1013 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 1014 | unsigned char *p; |
| 1015 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1016 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1017 | if (!rc) { |
| 1018 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 1019 | goto out; |
| 1020 | } |
| 1021 | |
| 1022 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 1023 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 1024 | goto out; |
| 1025 | } |
| 1026 | |
| 1027 | p = key; |
| 1028 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1029 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1030 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1031 | if (!ocsp) { |
| 1032 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 1033 | goto out; |
| 1034 | } |
| 1035 | } |
| 1036 | |
| 1037 | /* According to comments on "chunk_dup", the |
| 1038 | previous chunk buffer will be freed */ |
| 1039 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 1040 | memprintf(err, "OCSP response: Memory allocation error"); |
| 1041 | goto out; |
| 1042 | } |
| 1043 | |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1044 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 1045 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1046 | ret = 0; |
| 1047 | out: |
Janusz Dziemidowicz | 8d71049 | 2017-03-08 16:59:41 +0100 | [diff] [blame] | 1048 | ERR_clear_error(); |
| 1049 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1050 | if (bs) |
| 1051 | OCSP_BASICRESP_free(bs); |
| 1052 | |
| 1053 | if (resp) |
| 1054 | OCSP_RESPONSE_free(resp); |
| 1055 | |
| 1056 | return ret; |
| 1057 | } |
| 1058 | /* |
| 1059 | * External function use to update the OCSP response in the OCSP response's |
| 1060 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 1061 | * to update in DER format. |
| 1062 | * |
| 1063 | * Returns 0 on success, 1 in error case. |
| 1064 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1065 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1066 | { |
| 1067 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 1068 | } |
| 1069 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1070 | #endif |
| 1071 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1072 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 1073 | 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) |
| 1074 | { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1075 | struct tls_keys_ref *ref; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1076 | union tls_sess_key *keys; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1077 | struct connection *conn; |
| 1078 | int head; |
| 1079 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1080 | int ret = -1; /* error by default */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1081 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1082 | conn = SSL_get_ex_data(s, ssl_app_data_index); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1083 | ref = __objt_listener(conn->target)->bind_conf->keys_ref; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1084 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1085 | |
| 1086 | keys = ref->tlskeys; |
| 1087 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1088 | |
| 1089 | if (enc) { |
| 1090 | memcpy(key_name, keys[head].name, 16); |
| 1091 | |
| 1092 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1093 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1094 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1095 | if (ref->key_size_bits == 128) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1096 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1097 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv)) |
| 1098 | goto end; |
| 1099 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1100 | 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] | 1101 | ret = 1; |
| 1102 | } |
| 1103 | else if (ref->key_size_bits == 256 ) { |
| 1104 | |
| 1105 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv)) |
| 1106 | goto end; |
| 1107 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1108 | 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] | 1109 | ret = 1; |
| 1110 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1111 | } else { |
| 1112 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 1113 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 1114 | goto found; |
| 1115 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1116 | ret = 0; |
| 1117 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1118 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1119 | found: |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1120 | if (ref->key_size_bits == 128) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1121 | 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] | 1122 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv)) |
| 1123 | goto end; |
| 1124 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1125 | ret = i ? 2 : 1; |
| 1126 | } |
| 1127 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1128 | 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] | 1129 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv)) |
| 1130 | goto end; |
| 1131 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1132 | ret = i ? 2 : 1; |
| 1133 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1134 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1135 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1136 | end: |
| 1137 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1138 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1139 | } |
| 1140 | |
| 1141 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 1142 | { |
| 1143 | struct tls_keys_ref *ref; |
| 1144 | |
| 1145 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1146 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 1147 | return ref; |
| 1148 | return NULL; |
| 1149 | } |
| 1150 | |
| 1151 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 1152 | { |
| 1153 | struct tls_keys_ref *ref; |
| 1154 | |
| 1155 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1156 | if (ref->unique_id == unique_id) |
| 1157 | return ref; |
| 1158 | return NULL; |
| 1159 | } |
| 1160 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1161 | /* Update the key into ref: if keysize doesn't |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1162 | * match existing ones, this function returns -1 |
| 1163 | * else it returns 0 on success. |
| 1164 | */ |
| 1165 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1166 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1167 | { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1168 | if (ref->key_size_bits == 128) { |
| 1169 | if (tlskey->data != sizeof(struct tls_sess_key_128)) |
| 1170 | return -1; |
| 1171 | } |
| 1172 | else if (ref->key_size_bits == 256) { |
| 1173 | if (tlskey->data != sizeof(struct tls_sess_key_256)) |
| 1174 | return -1; |
| 1175 | } |
| 1176 | else |
| 1177 | return -1; |
| 1178 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1179 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1180 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 1181 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1182 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 1183 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1184 | |
| 1185 | return 0; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1186 | } |
| 1187 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1188 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1189 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1190 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 1191 | |
| 1192 | if(!ref) { |
| 1193 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 1194 | return 1; |
| 1195 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1196 | if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) { |
| 1197 | memprintf(err, "Invalid key size"); |
| 1198 | return 1; |
| 1199 | } |
| 1200 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1201 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1202 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1203 | |
| 1204 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1205 | * automatic ids. It's called just after the basic checks. It returns |
| 1206 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1207 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1208 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1209 | { |
| 1210 | int i = 0; |
| 1211 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 1212 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 1213 | |
| 1214 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 1215 | if (ref->unique_id == -1) { |
| 1216 | /* Look for the first free id. */ |
| 1217 | while (1) { |
| 1218 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 1219 | if (ref2->unique_id == i) { |
| 1220 | i++; |
| 1221 | break; |
| 1222 | } |
| 1223 | } |
| 1224 | if (&ref2->list == &tlskeys_reference) |
| 1225 | break; |
| 1226 | } |
| 1227 | |
| 1228 | /* Uses the unique id and increment it for the next entry. */ |
| 1229 | ref->unique_id = i; |
| 1230 | i++; |
| 1231 | } |
| 1232 | } |
| 1233 | |
| 1234 | /* This sort the reference list by id. */ |
| 1235 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1236 | LIST_DELETE(&ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1237 | list_for_each_entry(ref3, &tkr, list) { |
| 1238 | if (ref->unique_id < ref3->unique_id) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1239 | LIST_APPEND(&ref3->list, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1240 | break; |
| 1241 | } |
| 1242 | } |
| 1243 | if (&ref3->list == &tkr) |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1244 | LIST_APPEND(&tkr, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1245 | } |
| 1246 | |
| 1247 | /* swap root */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1248 | LIST_INSERT(&tkr, &tlskeys_reference); |
| 1249 | LIST_DELETE(&tkr); |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1250 | return ERR_NONE; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1251 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1252 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 1253 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1254 | #ifndef OPENSSL_NO_OCSP |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1255 | int ocsp_ex_index = -1; |
| 1256 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1257 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 1258 | { |
| 1259 | switch (evp_keytype) { |
| 1260 | case EVP_PKEY_RSA: |
| 1261 | return 2; |
| 1262 | case EVP_PKEY_DSA: |
| 1263 | return 0; |
| 1264 | case EVP_PKEY_EC: |
| 1265 | return 1; |
| 1266 | } |
| 1267 | |
| 1268 | return -1; |
| 1269 | } |
| 1270 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1271 | /* |
| 1272 | * Callback used to set OCSP status extension content in server hello. |
| 1273 | */ |
| 1274 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 1275 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1276 | struct certificate_ocsp *ocsp; |
| 1277 | struct ocsp_cbk_arg *ocsp_arg; |
| 1278 | char *ssl_buf; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1279 | SSL_CTX *ctx; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1280 | EVP_PKEY *ssl_pkey; |
| 1281 | int key_type; |
| 1282 | int index; |
| 1283 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1284 | ctx = SSL_get_SSL_CTX(ssl); |
| 1285 | if (!ctx) |
| 1286 | return SSL_TLSEXT_ERR_NOACK; |
| 1287 | |
| 1288 | ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
| 1289 | if (!ocsp_arg) |
| 1290 | return SSL_TLSEXT_ERR_NOACK; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1291 | |
| 1292 | ssl_pkey = SSL_get_privatekey(ssl); |
| 1293 | if (!ssl_pkey) |
| 1294 | return SSL_TLSEXT_ERR_NOACK; |
| 1295 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1296 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1297 | |
| 1298 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 1299 | ocsp = ocsp_arg->s_ocsp; |
| 1300 | else { |
| 1301 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 1302 | * the certificate type |
| 1303 | */ |
| 1304 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 1305 | |
| 1306 | if (index < 0) |
| 1307 | return SSL_TLSEXT_ERR_NOACK; |
| 1308 | |
| 1309 | ocsp = ocsp_arg->m_ocsp[index]; |
| 1310 | |
| 1311 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1312 | |
| 1313 | if (!ocsp || |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1314 | !ocsp->response.area || |
| 1315 | !ocsp->response.data || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1316 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1317 | return SSL_TLSEXT_ERR_NOACK; |
| 1318 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1319 | ssl_buf = OPENSSL_malloc(ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1320 | if (!ssl_buf) |
| 1321 | return SSL_TLSEXT_ERR_NOACK; |
| 1322 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1323 | memcpy(ssl_buf, ocsp->response.area, ocsp->response.data); |
| 1324 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1325 | |
| 1326 | return SSL_TLSEXT_ERR_OK; |
| 1327 | } |
| 1328 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1329 | #endif |
| 1330 | |
Ilya Shipitsin | b3201a3 | 2020-10-18 09:11:50 +0500 | [diff] [blame] | 1331 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1332 | |
| 1333 | |
| 1334 | /* |
| 1335 | * Decrease the refcount of the struct ocsp_response and frees it if it's not |
| 1336 | * used anymore. Also removes it from the tree if free'd. |
| 1337 | */ |
| 1338 | static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp) |
| 1339 | { |
| 1340 | if (!ocsp) |
| 1341 | return; |
| 1342 | |
| 1343 | ocsp->refcount--; |
| 1344 | if (ocsp->refcount <= 0) { |
| 1345 | ebmb_delete(&ocsp->key); |
| 1346 | chunk_destroy(&ocsp->response); |
| 1347 | free(ocsp); |
| 1348 | } |
| 1349 | } |
| 1350 | |
| 1351 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1352 | /* |
| 1353 | * This function enables the handling of OCSP status extension on 'ctx' if a |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1354 | * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP |
| 1355 | * status extension, the issuer's certificate is mandatory. It should be |
| 1356 | * present in ckch->ocsp_issuer. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1357 | * |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1358 | * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an |
| 1359 | * OCSP response. If file is empty or content is not a valid OCSP response, |
| 1360 | * OCSP status extension is enabled but OCSP response is ignored (a warning is |
| 1361 | * displayed). |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1362 | * |
| 1363 | * 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] | 1364 | * successfully enabled, or -1 in other error case. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1365 | */ |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1366 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, STACK_OF(X509) *chain) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1367 | { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1368 | X509 *x, *issuer; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1369 | OCSP_CERTID *cid = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1370 | int i, ret = -1; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1371 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1372 | char *warn = NULL; |
| 1373 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1374 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1375 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1376 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1377 | x = ckch->cert; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1378 | if (!x) |
| 1379 | goto out; |
| 1380 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1381 | issuer = ckch->ocsp_issuer; |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1382 | /* take issuer from chain over ocsp_issuer, is what is done historicaly */ |
| 1383 | if (chain) { |
| 1384 | /* check if one of the certificate of the chain is the issuer */ |
| 1385 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1386 | X509 *ti = sk_X509_value(chain, i); |
| 1387 | if (X509_check_issued(ti, x) == X509_V_OK) { |
| 1388 | issuer = ti; |
| 1389 | break; |
| 1390 | } |
| 1391 | } |
| 1392 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1393 | if (!issuer) |
| 1394 | goto out; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1395 | |
| 1396 | cid = OCSP_cert_to_id(0, x, issuer); |
| 1397 | if (!cid) |
| 1398 | goto out; |
| 1399 | |
| 1400 | i = i2d_OCSP_CERTID(cid, NULL); |
| 1401 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1402 | goto out; |
| 1403 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1404 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1405 | if (!ocsp) |
| 1406 | goto out; |
| 1407 | |
| 1408 | p = ocsp->key_data; |
| 1409 | i2d_OCSP_CERTID(cid, &p); |
| 1410 | |
| 1411 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1412 | if (iocsp == ocsp) |
| 1413 | ocsp = NULL; |
| 1414 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1415 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1416 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1417 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1418 | #endif |
| 1419 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1420 | |
| 1421 | if (!callback) { |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1422 | struct ocsp_cbk_arg *cb_arg; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1423 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1424 | |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1425 | cb_arg = calloc(1, sizeof(*cb_arg)); |
| 1426 | if (!cb_arg) |
| 1427 | goto out; |
| 1428 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1429 | cb_arg->is_single = 1; |
| 1430 | cb_arg->s_ocsp = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1431 | iocsp->refcount++; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1432 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1433 | pkey = X509_get_pubkey(x); |
| 1434 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1435 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1436 | |
| 1437 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1438 | SSL_CTX_set_ex_data(ctx, ocsp_ex_index, cb_arg); /* we use the ex_data instead of the cb_arg function here, so we can use the cleanup callback to free */ |
| 1439 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1440 | } else { |
| 1441 | /* |
| 1442 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1443 | * Update that cb_arg with the new cert's staple |
| 1444 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1445 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1446 | struct certificate_ocsp *tmp_ocsp; |
| 1447 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1448 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1449 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1450 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1451 | cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1452 | |
| 1453 | /* |
| 1454 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1455 | * the order of operations below matter, take care when changing it |
| 1456 | */ |
| 1457 | tmp_ocsp = cb_arg->s_ocsp; |
| 1458 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1459 | cb_arg->s_ocsp = NULL; |
| 1460 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1461 | cb_arg->is_single = 0; |
| 1462 | cb_arg->single_kt = 0; |
| 1463 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1464 | pkey = X509_get_pubkey(x); |
| 1465 | key_type = EVP_PKEY_base_id(pkey); |
| 1466 | EVP_PKEY_free(pkey); |
| 1467 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1468 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1469 | if (index >= 0 && !cb_arg->m_ocsp[index]) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1470 | cb_arg->m_ocsp[index] = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1471 | iocsp->refcount++; |
| 1472 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1473 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1474 | |
| 1475 | ret = 0; |
| 1476 | |
| 1477 | warn = NULL; |
William Lallemand | 86e4d63 | 2020-08-07 00:44:32 +0200 | [diff] [blame] | 1478 | if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) { |
William Lallemand | 3b5f360 | 2019-10-16 18:05:05 +0200 | [diff] [blame] | 1479 | memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1480 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1481 | } |
| 1482 | |
| 1483 | out: |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1484 | if (cid) |
| 1485 | OCSP_CERTID_free(cid); |
| 1486 | |
| 1487 | if (ocsp) |
| 1488 | free(ocsp); |
| 1489 | |
| 1490 | if (warn) |
| 1491 | free(warn); |
| 1492 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1493 | return ret; |
| 1494 | } |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 1495 | #endif |
| 1496 | |
| 1497 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1498 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, STACK_OF(X509) *chain) |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1499 | { |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1500 | return SSL_CTX_set_ocsp_response(ctx, (const uint8_t *)ckch->ocsp_response->area, ckch->ocsp_response->data); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1501 | } |
| 1502 | #endif |
| 1503 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1504 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 1505 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1506 | |
| 1507 | #define CT_EXTENSION_TYPE 18 |
| 1508 | |
William Lallemand | 03c331c | 2020-05-13 10:10:01 +0200 | [diff] [blame] | 1509 | int sctl_ex_index = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1510 | |
| 1511 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1512 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1513 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1514 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1515 | *out = (unsigned char *) sctl->area; |
| 1516 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1517 | |
| 1518 | return 1; |
| 1519 | } |
| 1520 | |
| 1521 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1522 | { |
| 1523 | return 1; |
| 1524 | } |
| 1525 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1526 | static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1527 | { |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1528 | int ret = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1529 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1530 | if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1531 | goto out; |
| 1532 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1533 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1534 | |
| 1535 | ret = 0; |
| 1536 | |
| 1537 | out: |
| 1538 | return ret; |
| 1539 | } |
| 1540 | |
| 1541 | #endif |
| 1542 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1543 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1544 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1545 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1546 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1547 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1548 | (void)ret; /* shut gcc stupid warning */ |
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 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1551 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1552 | * change this to #if and do not assign a default value to this macro! |
| 1553 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1554 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1555 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1556 | if ((conn->flags & (CO_FL_WAIT_L6_CONN | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == 0) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1557 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1558 | conn->err_code = CO_ER_SSL_RENEG; |
| 1559 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1560 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1561 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1562 | |
| 1563 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1564 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1565 | /* Long certificate chains optimz |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1566 | If write and read bios are different, we |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1567 | consider that the buffering was activated, |
| 1568 | so we rise the output buffer size from 4k |
| 1569 | to 16k */ |
| 1570 | write_bio = SSL_get_wbio(ssl); |
| 1571 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1572 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1573 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1574 | } |
| 1575 | } |
| 1576 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1577 | } |
| 1578 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1579 | /* Callback is called for each certificate of the chain during a verify |
| 1580 | ok is set to 1 if preverify detect no error on current certificate. |
| 1581 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1582 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1583 | { |
| 1584 | SSL *ssl; |
| 1585 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1586 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1587 | int err, depth; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1588 | |
| 1589 | 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] | 1590 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1591 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1592 | ctx = conn->xprt_ctx; |
| 1593 | |
| 1594 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1595 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1596 | if (ok) /* no errors */ |
| 1597 | return ok; |
| 1598 | |
| 1599 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1600 | err = X509_STORE_CTX_get_error(x_store); |
| 1601 | |
| 1602 | /* check if CA error needs to be ignored */ |
| 1603 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1604 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1605 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1606 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1607 | } |
| 1608 | |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1609 | 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] | 1610 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1611 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1612 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1613 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1614 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1615 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1616 | return 0; |
| 1617 | } |
| 1618 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1619 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1620 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1621 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1622 | /* check if certificate error needs to be ignored */ |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1623 | 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] | 1624 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1625 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1626 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1627 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1628 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1629 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1630 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1631 | } |
| 1632 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1633 | #ifdef TLS1_RT_HEARTBEAT |
| 1634 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 1635 | int content_type, const void *buf, size_t len, |
| 1636 | SSL *ssl) |
| 1637 | { |
| 1638 | /* test heartbeat received (write_p is set to 0 |
| 1639 | for a received record) */ |
| 1640 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
| 1641 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 1642 | const unsigned char *p = buf; |
| 1643 | unsigned int payload; |
| 1644 | |
| 1645 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
| 1646 | |
| 1647 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1648 | if (*p != TLS1_HB_REQUEST) |
| 1649 | return; |
| 1650 | |
| 1651 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
| 1652 | goto kill_it; |
| 1653 | |
| 1654 | payload = (p[1] * 256) + p[2]; |
| 1655 | if (3 + payload + 16 <= len) |
| 1656 | return; /* OK no problem */ |
| 1657 | kill_it: |
| 1658 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1659 | * advertised payload is larger than the advertised packet |
| 1660 | * length, so we have garbage in the buffer between the |
| 1661 | * payload and the end of the buffer (p+len). We can't know |
| 1662 | * if the SSL stack is patched, and we don't know if we can |
| 1663 | * safely wipe out the area between p+3+len and payload. |
| 1664 | * So instead, we prevent the response from being sent by |
| 1665 | * setting the max_send_fragment to 0 and we report an SSL |
| 1666 | * error, which will kill this connection. It will be reported |
| 1667 | * above as SSL_ERROR_SSL while an other handshake failure with |
| 1668 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1669 | */ |
| 1670 | ssl->max_send_fragment = 0; |
| 1671 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1672 | } |
| 1673 | } |
| 1674 | #endif |
| 1675 | |
| 1676 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 1677 | int content_type, const void *buf, size_t len, |
| 1678 | SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1679 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1680 | struct ssl_capture *capture; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1681 | unsigned char *msg; |
| 1682 | unsigned char *end; |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1683 | size_t rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1684 | |
| 1685 | /* This function is called for "from client" and "to server" |
| 1686 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1687 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1688 | */ |
| 1689 | |
| 1690 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1691 | * otherwise it is set to 1. |
| 1692 | */ |
| 1693 | if (write_p != 0) |
| 1694 | return; |
| 1695 | |
| 1696 | /* content_type contains the type of message received or sent |
| 1697 | * according with the SSL/TLS protocol spec. This message is |
| 1698 | * encoded with one byte. The value 256 (two bytes) is used |
| 1699 | * for designing the SSL/TLS record layer. According with the |
| 1700 | * rfc6101, the expected message (other than 256) are: |
| 1701 | * - change_cipher_spec(20) |
| 1702 | * - alert(21) |
| 1703 | * - handshake(22) |
| 1704 | * - application_data(23) |
| 1705 | * - (255) |
| 1706 | * We are interessed by the handshake and specially the client |
| 1707 | * hello. |
| 1708 | */ |
| 1709 | if (content_type != 22) |
| 1710 | return; |
| 1711 | |
| 1712 | /* The message length is at least 4 bytes, containing the |
| 1713 | * message type and the message length. |
| 1714 | */ |
| 1715 | if (len < 4) |
| 1716 | return; |
| 1717 | |
| 1718 | /* First byte of the handshake message id the type of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1719 | * message. The known types are: |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1720 | * - hello_request(0) |
| 1721 | * - client_hello(1) |
| 1722 | * - server_hello(2) |
| 1723 | * - certificate(11) |
| 1724 | * - server_key_exchange (12) |
| 1725 | * - certificate_request(13) |
| 1726 | * - server_hello_done(14) |
| 1727 | * We are interested by the client hello. |
| 1728 | */ |
| 1729 | msg = (unsigned char *)buf; |
| 1730 | if (msg[0] != 1) |
| 1731 | return; |
| 1732 | |
| 1733 | /* Next three bytes are the length of the message. The total length |
| 1734 | * must be this decoded length + 4. If the length given as argument |
| 1735 | * is not the same, we abort the protocol dissector. |
| 1736 | */ |
| 1737 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1738 | if (len < rec_len + 4) |
| 1739 | return; |
| 1740 | msg += 4; |
| 1741 | end = msg + rec_len; |
| 1742 | if (end < msg) |
| 1743 | return; |
| 1744 | |
| 1745 | /* Expect 2 bytes for protocol version (1 byte for major and 1 byte |
| 1746 | * 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] | 1747 | * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28. |
| 1748 | */ |
| 1749 | msg += 1 + 1 + 4 + 28; |
| 1750 | if (msg > end) |
| 1751 | return; |
| 1752 | |
| 1753 | /* Next, is session id: |
| 1754 | * if present, we have to jump by length + 1 for the size information |
| 1755 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1756 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1757 | if (msg[0] > 0) |
| 1758 | msg += msg[0]; |
| 1759 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1760 | if (msg > end) |
| 1761 | return; |
| 1762 | |
| 1763 | /* Next two bytes are the ciphersuite length. */ |
| 1764 | if (msg + 2 > end) |
| 1765 | return; |
| 1766 | rec_len = (msg[0] << 8) + msg[1]; |
| 1767 | msg += 2; |
| 1768 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1769 | return; |
| 1770 | |
Willy Tarreau | b454e90 | 2021-03-22 15:09:41 +0100 | [diff] [blame] | 1771 | capture = pool_alloc(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1772 | if (!capture) |
| 1773 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1774 | /* Compute the xxh64 of the ciphersuite. */ |
| 1775 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1776 | |
| 1777 | /* Capture the ciphersuite. */ |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1778 | capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ? |
| 1779 | global_ssl.capture_cipherlist : rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1780 | memcpy(capture->ciphersuite, msg, capture->ciphersuite_len); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1781 | |
| 1782 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1783 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1784 | |
| 1785 | |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 1786 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1787 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 1788 | int content_type, const void *buf, size_t len, |
| 1789 | SSL *ssl) |
| 1790 | { |
| 1791 | struct ssl_keylog *keylog; |
| 1792 | |
| 1793 | if (SSL_get_ex_data(ssl, ssl_keylog_index)) |
| 1794 | return; |
| 1795 | |
Willy Tarreau | f208ac0 | 2021-03-22 21:10:12 +0100 | [diff] [blame] | 1796 | keylog = pool_zalloc(pool_head_ssl_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1797 | if (!keylog) |
| 1798 | return; |
| 1799 | |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1800 | if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) { |
| 1801 | pool_free(pool_head_ssl_keylog, keylog); |
| 1802 | return; |
| 1803 | } |
| 1804 | } |
| 1805 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1806 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1807 | /* Callback is called for ssl protocol analyse */ |
| 1808 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1809 | { |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1810 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 1811 | struct ssl_sock_msg_callback *cbk; |
| 1812 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1813 | /* Try to call all callback functions that were registered by using |
| 1814 | * ssl_sock_register_msg_callback(). |
| 1815 | */ |
| 1816 | list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) { |
| 1817 | cbk->func(conn, write_p, version, content_type, buf, len, ssl); |
| 1818 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1819 | } |
| 1820 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1821 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1822 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1823 | const unsigned char *in, unsigned int inlen, |
| 1824 | void *arg) |
| 1825 | { |
| 1826 | struct server *srv = arg; |
| 1827 | |
| 1828 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1829 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1830 | return SSL_TLSEXT_ERR_OK; |
| 1831 | return SSL_TLSEXT_ERR_NOACK; |
| 1832 | } |
| 1833 | #endif |
| 1834 | |
| 1835 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1836 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1837 | * negotiable protocols for NPN. |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1838 | */ |
| 1839 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1840 | unsigned int *len, void *arg) |
| 1841 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1842 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1843 | |
| 1844 | *data = (const unsigned char *)conf->npn_str; |
| 1845 | *len = conf->npn_len; |
| 1846 | return SSL_TLSEXT_ERR_OK; |
| 1847 | } |
| 1848 | #endif |
| 1849 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1850 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1851 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1852 | * negotiable protocols for ALPN. |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1853 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1854 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1855 | unsigned char *outlen, |
| 1856 | const unsigned char *server, |
| 1857 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1858 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1859 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1860 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1861 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1862 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1863 | return SSL_TLSEXT_ERR_NOACK; |
| 1864 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1865 | return SSL_TLSEXT_ERR_OK; |
| 1866 | } |
| 1867 | #endif |
| 1868 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1869 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1870 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1871 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 1872 | /* Configure a DNS SAN extenion on a certificate. */ |
| 1873 | int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) { |
| 1874 | int failure = 0; |
| 1875 | X509_EXTENSION *san_ext = NULL; |
| 1876 | CONF *conf = NULL; |
| 1877 | struct buffer *san_name = get_trash_chunk(); |
| 1878 | |
| 1879 | conf = NCONF_new(NULL); |
| 1880 | if (!conf) { |
| 1881 | failure = 1; |
| 1882 | goto cleanup; |
| 1883 | } |
| 1884 | |
| 1885 | /* Build an extension based on the DNS entry above */ |
| 1886 | chunk_appendf(san_name, "DNS:%s", servername); |
| 1887 | san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area); |
| 1888 | if (!san_ext) { |
| 1889 | failure = 1; |
| 1890 | goto cleanup; |
| 1891 | } |
| 1892 | |
| 1893 | /* Add the extension */ |
| 1894 | if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) { |
| 1895 | failure = 1; |
| 1896 | goto cleanup; |
| 1897 | } |
| 1898 | |
| 1899 | /* Success */ |
| 1900 | failure = 0; |
| 1901 | |
| 1902 | cleanup: |
| 1903 | if (NULL != san_ext) X509_EXTENSION_free(san_ext); |
| 1904 | if (NULL != conf) NCONF_free(conf); |
| 1905 | |
| 1906 | return failure; |
| 1907 | } |
| 1908 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1909 | /* Create a X509 certificate with the specified servername and serial. This |
| 1910 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1911 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1912 | 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] | 1913 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 1914 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
| 1915 | EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1916 | SSL_CTX *ssl_ctx = NULL; |
| 1917 | X509 *newcrt = NULL; |
| 1918 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1919 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1920 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1921 | X509_NAME *name; |
| 1922 | const EVP_MD *digest; |
| 1923 | X509V3_CTX ctx; |
| 1924 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1925 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1926 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 1927 | /* Get the private key of the default certificate and use it */ |
Ilya Shipitsin | af20488 | 2020-12-19 03:12:12 +0500 | [diff] [blame] | 1928 | #ifdef HAVE_SSL_CTX_get0_privatekey |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1929 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 1930 | #else |
| 1931 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 1932 | if (tmp_ssl) |
| 1933 | pkey = SSL_get_privatekey(tmp_ssl); |
| 1934 | #endif |
| 1935 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1936 | goto mkcert_error; |
| 1937 | |
| 1938 | /* Create the certificate */ |
| 1939 | if (!(newcrt = X509_new())) |
| 1940 | goto mkcert_error; |
| 1941 | |
| 1942 | /* Set version number for the certificate (X509v3) and the serial |
| 1943 | * number */ |
| 1944 | if (X509_set_version(newcrt, 2L) != 1) |
| 1945 | goto mkcert_error; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 1946 | ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1947 | |
| 1948 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 1949 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 1950 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1951 | goto mkcert_error; |
| 1952 | |
| 1953 | /* set public key in the certificate */ |
| 1954 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1955 | goto mkcert_error; |
| 1956 | |
| 1957 | /* Set issuer name from the CA */ |
| 1958 | if (!(name = X509_get_subject_name(cacert))) |
| 1959 | goto mkcert_error; |
| 1960 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 1961 | goto mkcert_error; |
| 1962 | |
| 1963 | /* Set the subject name using the same, but the CN */ |
| 1964 | name = X509_NAME_dup(name); |
| 1965 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 1966 | (const unsigned char *)servername, |
| 1967 | -1, -1, 0) != 1) { |
| 1968 | X509_NAME_free(name); |
| 1969 | goto mkcert_error; |
| 1970 | } |
| 1971 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 1972 | X509_NAME_free(name); |
| 1973 | goto mkcert_error; |
| 1974 | } |
| 1975 | X509_NAME_free(name); |
| 1976 | |
| 1977 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1978 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1979 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 1980 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 1981 | X509_EXTENSION *ext; |
| 1982 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1983 | 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] | 1984 | goto mkcert_error; |
| 1985 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 1986 | X509_EXTENSION_free(ext); |
| 1987 | goto mkcert_error; |
| 1988 | } |
| 1989 | X509_EXTENSION_free(ext); |
| 1990 | } |
| 1991 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 1992 | /* Add SAN extension */ |
| 1993 | if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) { |
| 1994 | goto mkcert_error; |
| 1995 | } |
| 1996 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1997 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1998 | |
| 1999 | key_type = EVP_PKEY_base_id(capkey); |
| 2000 | |
| 2001 | if (key_type == EVP_PKEY_DSA) |
| 2002 | digest = EVP_sha1(); |
| 2003 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2004 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2005 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2006 | digest = EVP_sha256(); |
| 2007 | else { |
Ilya Shipitsin | ec36c91 | 2021-01-07 11:57:42 +0500 | [diff] [blame] | 2008 | #ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2009 | int nid; |
| 2010 | |
| 2011 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 2012 | goto mkcert_error; |
| 2013 | if (!(digest = EVP_get_digestbynid(nid))) |
| 2014 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 2015 | #else |
| 2016 | goto mkcert_error; |
| 2017 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2018 | } |
| 2019 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2020 | if (!(X509_sign(newcrt, capkey, digest))) |
| 2021 | goto mkcert_error; |
| 2022 | |
| 2023 | /* Create and set the new SSL_CTX */ |
| 2024 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 2025 | goto mkcert_error; |
| 2026 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 2027 | goto mkcert_error; |
| 2028 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 2029 | goto mkcert_error; |
| 2030 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 2031 | goto mkcert_error; |
| 2032 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2033 | /* Build chaining the CA cert and the rest of the chain, keep these order */ |
| 2034 | #if defined(SSL_CTX_add1_chain_cert) |
| 2035 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) { |
| 2036 | goto mkcert_error; |
| 2037 | } |
| 2038 | |
| 2039 | if (bind_conf->ca_sign_ckch->chain) { |
| 2040 | for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) { |
| 2041 | X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i); |
| 2042 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) { |
| 2043 | goto mkcert_error; |
| 2044 | } |
| 2045 | } |
| 2046 | } |
| 2047 | #endif |
| 2048 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2049 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2050 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2051 | #ifndef OPENSSL_NO_DH |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2052 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2053 | #endif |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2054 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 2055 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2056 | 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] | 2057 | EC_KEY *ecc; |
| 2058 | int nid; |
| 2059 | |
| 2060 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 2061 | goto end; |
| 2062 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 2063 | goto end; |
| 2064 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 2065 | EC_KEY_free(ecc); |
| 2066 | } |
| 2067 | #endif |
| 2068 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2069 | return ssl_ctx; |
| 2070 | |
| 2071 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2072 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2073 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2074 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 2075 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2076 | return NULL; |
| 2077 | } |
| 2078 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2079 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2080 | 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] | 2081 | { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 2082 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2083 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2084 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2085 | return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2086 | } |
| 2087 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2088 | /* 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] | 2089 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2090 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2091 | 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] | 2092 | { |
| 2093 | struct lru64 *lru = NULL; |
| 2094 | |
| 2095 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2096 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2097 | lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2098 | if (lru && lru->domain) { |
| 2099 | if (ssl) |
| 2100 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2101 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2102 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2103 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2104 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2105 | } |
| 2106 | return NULL; |
| 2107 | } |
| 2108 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2109 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2110 | * function is not thread-safe, it should only be used to check if a certificate |
| 2111 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2112 | * thread). It is kept for backward compatibility. */ |
| 2113 | SSL_CTX * |
| 2114 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2115 | { |
| 2116 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2117 | } |
| 2118 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2119 | /* Set a certificate int the LRU cache used to store generated |
| 2120 | * certificate. Return 0 on success, otherwise -1 */ |
| 2121 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2122 | 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] | 2123 | { |
| 2124 | struct lru64 *lru = NULL; |
| 2125 | |
| 2126 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2127 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2128 | lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2129 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2130 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2131 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2132 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2133 | if (lru->domain && lru->data) |
| 2134 | lru->free((SSL_CTX *)lru->data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2135 | lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2136 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2137 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2138 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2139 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2140 | } |
| 2141 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2142 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2143 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2144 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2145 | { |
| 2146 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2147 | } |
| 2148 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2149 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2150 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2151 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2152 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2153 | 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] | 2154 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2155 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2156 | SSL_CTX *ssl_ctx = NULL; |
| 2157 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2158 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2159 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2160 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2161 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2162 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2163 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2164 | if (lru && lru->domain) |
| 2165 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2166 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2167 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2168 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2169 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2170 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2171 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2172 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2173 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2174 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2175 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2176 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2177 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2178 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2179 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2180 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2181 | return 0; |
| 2182 | } |
| 2183 | static int |
| 2184 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2185 | { |
| 2186 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2187 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2188 | |
Willy Tarreau | f5bdb64 | 2019-07-17 11:29:32 +0200 | [diff] [blame] | 2189 | if (conn_get_dst(conn)) { |
Willy Tarreau | 085a151 | 2019-07-17 14:47:35 +0200 | [diff] [blame] | 2190 | key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst)); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2191 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2192 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2193 | } |
| 2194 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2195 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2196 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2197 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2198 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2199 | |
| 2200 | 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] | 2201 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2202 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2203 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2204 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2205 | #endif |
| 2206 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2207 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2208 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2209 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2210 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2211 | 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] | 2212 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2213 | 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] | 2214 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2215 | #endif |
| 2216 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2217 | 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] | 2218 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2219 | 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] | 2220 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2221 | #endif |
| 2222 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2223 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2224 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2225 | /* Unusable in this context. */ |
| 2226 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2227 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2228 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2229 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2230 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2231 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2232 | |
| 2233 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2234 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2235 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2236 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2237 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2238 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2239 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2240 | } |
| 2241 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2242 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2243 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2244 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2245 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2246 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2247 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2248 | } |
| 2249 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2250 | 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] | 2251 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2252 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2253 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2254 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2255 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2256 | } |
| 2257 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2258 | 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] | 2259 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2260 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2261 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2262 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2263 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2264 | } |
| 2265 | 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] | 2266 | #if SSL_OP_NO_TLSv1_3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2267 | 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] | 2268 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2269 | #endif |
| 2270 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2271 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
| 2272 | #if SSL_OP_NO_TLSv1_3 |
| 2273 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2274 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2275 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2276 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2277 | #endif |
| 2278 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2279 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2280 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 2281 | struct methodVersions methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2282 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2283 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2284 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2285 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2286 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2287 | {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] | 2288 | }; |
| 2289 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2290 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2291 | { |
| 2292 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2293 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2294 | SSL_set_SSL_CTX(ssl, ctx); |
| 2295 | } |
| 2296 | |
Ilya Shipitsin | 1fc44d4 | 2021-01-23 00:09:14 +0500 | [diff] [blame] | 2297 | #ifdef HAVE_SSL_CLIENT_HELLO_CB |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2298 | |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2299 | int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2300 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2301 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2302 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2303 | |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2304 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs) |
| 2305 | return SSL_TLSEXT_ERR_OK; |
| 2306 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2307 | } |
| 2308 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2309 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2310 | int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2311 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2312 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2313 | #else |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2314 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2315 | { |
| 2316 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2317 | struct connection *conn; |
| 2318 | struct bind_conf *s; |
| 2319 | const uint8_t *extension_data; |
| 2320 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2321 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2322 | |
| 2323 | char *wildp = NULL; |
| 2324 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2325 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2326 | 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] | 2327 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2328 | int i; |
| 2329 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2330 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | a882552 | 2018-10-15 13:20:07 +0200 | [diff] [blame] | 2331 | s = __objt_listener(conn->target)->bind_conf; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2332 | |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2333 | #ifdef USE_QUIC |
| 2334 | if (conn->qc) { |
| 2335 | /* Look for the QUIC transport parameters. */ |
| 2336 | #ifdef OPENSSL_IS_BORINGSSL |
| 2337 | if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS, |
| 2338 | &extension_data, &extension_len)) |
| 2339 | #else |
| 2340 | if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS, |
| 2341 | &extension_data, &extension_len)) |
| 2342 | #endif |
| 2343 | goto abort; |
| 2344 | |
| 2345 | if (!quic_transport_params_store(conn->qc, 0, extension_data, |
| 2346 | extension_data + extension_len)) |
| 2347 | goto abort; |
| 2348 | } |
| 2349 | #endif |
| 2350 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2351 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2352 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2353 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2354 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2355 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2356 | #else |
| 2357 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2358 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2359 | /* |
| 2360 | * The server_name extension was given too much extensibility when it |
| 2361 | * was written, so parsing the normal case is a bit complex. |
| 2362 | */ |
| 2363 | size_t len; |
| 2364 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2365 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2366 | /* Extract the length of the supplied list of names. */ |
| 2367 | len = (*extension_data++) << 8; |
| 2368 | len |= *extension_data++; |
| 2369 | if (len + 2 != extension_len) |
| 2370 | goto abort; |
| 2371 | /* |
| 2372 | * The list in practice only has a single element, so we only consider |
| 2373 | * the first one. |
| 2374 | */ |
| 2375 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2376 | goto abort; |
| 2377 | extension_len = len - 1; |
| 2378 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2379 | if (extension_len <= 2) |
| 2380 | goto abort; |
| 2381 | len = (*extension_data++) << 8; |
| 2382 | len |= *extension_data++; |
| 2383 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2384 | || memchr(extension_data, 0, len) != NULL) |
| 2385 | goto abort; |
| 2386 | servername = extension_data; |
| 2387 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2388 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2389 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
| 2390 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2391 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2392 | } |
| 2393 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2394 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2395 | if (!s->strict_sni) { |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2396 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2397 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2398 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2399 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2400 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2401 | goto abort; |
| 2402 | } |
| 2403 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2404 | /* extract/check clientHello information */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2405 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2406 | 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] | 2407 | #else |
| 2408 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2409 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2410 | uint8_t sign; |
| 2411 | size_t len; |
| 2412 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2413 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2414 | len = (*extension_data++) << 8; |
| 2415 | len |= *extension_data++; |
| 2416 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2417 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2418 | if (len % 2 != 0) |
| 2419 | goto abort; |
| 2420 | for (; len > 0; len -= 2) { |
| 2421 | extension_data++; /* hash */ |
| 2422 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2423 | switch (sign) { |
| 2424 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2425 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2426 | break; |
| 2427 | case TLSEXT_signature_ecdsa: |
| 2428 | has_ecdsa_sig = 1; |
| 2429 | break; |
| 2430 | default: |
| 2431 | continue; |
| 2432 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2433 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2434 | break; |
| 2435 | } |
| 2436 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2437 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2438 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2439 | } |
| 2440 | 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] | 2441 | const SSL_CIPHER *cipher; |
| 2442 | size_t len; |
| 2443 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2444 | has_ecdsa_sig = 0; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2445 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2446 | len = ctx->cipher_suites_len; |
| 2447 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2448 | #else |
| 2449 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2450 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2451 | if (len % 2 != 0) |
| 2452 | goto abort; |
| 2453 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2454 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2455 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2456 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2457 | #else |
| 2458 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2459 | #endif |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 2460 | if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2461 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2462 | break; |
| 2463 | } |
| 2464 | } |
| 2465 | } |
| 2466 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2467 | for (i = 0; i < trash.size && i < servername_len; i++) { |
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]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2471 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2472 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2473 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2474 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2475 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2476 | /* Look for an ECDSA, RSA and DSA certificate, first in the single |
| 2477 | * name and if not found in the wildcard */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2478 | for (i = 0; i < 2; i++) { |
| 2479 | if (i == 0) /* lookup in full qualified names */ |
| 2480 | node = ebst_lookup(&s->sni_ctx, trash.area); |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2481 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2482 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2483 | else |
| 2484 | break; |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2485 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2486 | for (n = node; n; n = ebmb_next_dup(n)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2487 | |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2488 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2489 | if (!container_of(n, struct sni_ctx, name)->neg) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2490 | struct sni_ctx *sni, *sni_tmp; |
| 2491 | int skip = 0; |
| 2492 | |
| 2493 | if (i == 1 && wildp) { /* wildcard */ |
| 2494 | /* If this is a wildcard, look for an exclusion on the same crt-list line */ |
| 2495 | sni = container_of(n, struct sni_ctx, name); |
| 2496 | list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2497 | if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2498 | skip = 1; |
| 2499 | break; |
| 2500 | } |
| 2501 | } |
| 2502 | if (skip) |
| 2503 | continue; |
| 2504 | } |
| 2505 | |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2506 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2507 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2508 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2509 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2510 | break; |
| 2511 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2512 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2513 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2514 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2515 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2516 | if (!node_anonymous) |
| 2517 | node_anonymous = n; |
| 2518 | break; |
| 2519 | } |
| 2520 | } |
| 2521 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2522 | } |
| 2523 | /* Once the certificates are found, select them depending on what is |
| 2524 | * supported in the client and by key_signature priority order: EDSA > |
| 2525 | * RSA > DSA */ |
William Lallemand | 5b1d1f6 | 2020-08-14 15:30:13 +0200 | [diff] [blame] | 2526 | if (has_ecdsa_sig && node_ecdsa) |
| 2527 | node = node_ecdsa; |
| 2528 | else if (has_rsa_sig && node_rsa) |
| 2529 | node = node_rsa; |
| 2530 | else if (node_anonymous) |
| 2531 | node = node_anonymous; |
| 2532 | else if (node_ecdsa) |
| 2533 | node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */ |
| 2534 | else |
| 2535 | node = node_rsa; /* no rsa signature case (far far away) */ |
| 2536 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2537 | if (node) { |
| 2538 | /* switch ctx */ |
| 2539 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2540 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 2541 | if (conf) { |
| 2542 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2543 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2544 | if (conf->early_data) |
| 2545 | allow_early = 1; |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2546 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2547 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
| 2548 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2549 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2550 | |
William Lallemand | 0201047 | 2019-10-18 11:02:19 +0200 | [diff] [blame] | 2551 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2552 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2553 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2554 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2555 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2556 | } |
| 2557 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2558 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2559 | /* no certificate match, is the default_ctx */ |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2560 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2561 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2562 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2563 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2564 | allow_early: |
| 2565 | #ifdef OPENSSL_IS_BORINGSSL |
| 2566 | if (allow_early) |
| 2567 | SSL_set_early_data_enabled(ssl, 1); |
| 2568 | #else |
| 2569 | if (!allow_early) |
| 2570 | SSL_set_max_early_data(ssl, 0); |
| 2571 | #endif |
| 2572 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2573 | abort: |
| 2574 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2575 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2576 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2577 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2578 | #else |
| 2579 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2580 | return 0; |
| 2581 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2582 | } |
| 2583 | |
| 2584 | #else /* OPENSSL_IS_BORINGSSL */ |
| 2585 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2586 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2587 | * warning when no match is found, which implies the default (first) cert |
| 2588 | * will keep being used. |
| 2589 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2590 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2591 | { |
| 2592 | const char *servername; |
| 2593 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2594 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2595 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2596 | int i; |
| 2597 | (void)al; /* shut gcc stupid warning */ |
| 2598 | |
| 2599 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2600 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2601 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2602 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2603 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2604 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2605 | if (s->strict_sni) |
| 2606 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2607 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2608 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2609 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2610 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2611 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2612 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2613 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2614 | if (!servername[i]) |
| 2615 | break; |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2616 | trash.area[i] = tolower((unsigned char)servername[i]); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2617 | if (!wildp && (trash.area[i] == '.')) |
| 2618 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2619 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2620 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2621 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2622 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2623 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2624 | /* lookup in full qualified names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2625 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2626 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2627 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2628 | node = n; |
| 2629 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2630 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2631 | } |
| 2632 | if (!node && wildp) { |
| 2633 | /* lookup in wildcards names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2634 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2635 | /* lookup a not neg filter */ |
| 2636 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2637 | node = n; |
| 2638 | break; |
| 2639 | } |
| 2640 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2641 | } |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2642 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2643 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2644 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2645 | /* switch ctx done in ssl_sock_generate_certificate */ |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2646 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2647 | return SSL_TLSEXT_ERR_OK; |
| 2648 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2649 | #endif |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2650 | if (s->strict_sni) { |
| 2651 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2652 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2653 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2654 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2655 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2656 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2657 | } |
| 2658 | |
| 2659 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2660 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2661 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2662 | return SSL_TLSEXT_ERR_OK; |
| 2663 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2664 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2665 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2666 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2667 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2668 | |
| 2669 | static DH * ssl_get_dh_1024(void) |
| 2670 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2671 | static unsigned char dh1024_p[]={ |
| 2672 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2673 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2674 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2675 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2676 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2677 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2678 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2679 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2680 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2681 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2682 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2683 | }; |
| 2684 | static unsigned char dh1024_g[]={ |
| 2685 | 0x02, |
| 2686 | }; |
| 2687 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2688 | BIGNUM *p; |
| 2689 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2690 | DH *dh = DH_new(); |
| 2691 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2692 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2693 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2694 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2695 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2696 | DH_free(dh); |
| 2697 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2698 | } else { |
| 2699 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2700 | } |
| 2701 | } |
| 2702 | return dh; |
| 2703 | } |
| 2704 | |
| 2705 | static DH *ssl_get_dh_2048(void) |
| 2706 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2707 | static unsigned char dh2048_p[]={ |
| 2708 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2709 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2710 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2711 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2712 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2713 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2714 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2715 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2716 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2717 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2718 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2719 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2720 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2721 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2722 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2723 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2724 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2725 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2726 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2727 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2728 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2729 | 0xB7,0x1F,0x77,0xF3, |
| 2730 | }; |
| 2731 | static unsigned char dh2048_g[]={ |
| 2732 | 0x02, |
| 2733 | }; |
| 2734 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2735 | BIGNUM *p; |
| 2736 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2737 | DH *dh = DH_new(); |
| 2738 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2739 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2740 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2741 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2742 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2743 | DH_free(dh); |
| 2744 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2745 | } else { |
| 2746 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2747 | } |
| 2748 | } |
| 2749 | return dh; |
| 2750 | } |
| 2751 | |
| 2752 | static DH *ssl_get_dh_4096(void) |
| 2753 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2754 | static unsigned char dh4096_p[]={ |
| 2755 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2756 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2757 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2758 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2759 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2760 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2761 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2762 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2763 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2764 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2765 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2766 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2767 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2768 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2769 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2770 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2771 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2772 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2773 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2774 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2775 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2776 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2777 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2778 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2779 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2780 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2781 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2782 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2783 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2784 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2785 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2786 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2787 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2788 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2789 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2790 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2791 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2792 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2793 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2794 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2795 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2796 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2797 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2798 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2799 | static unsigned char dh4096_g[]={ |
| 2800 | 0x02, |
| 2801 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2802 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2803 | BIGNUM *p; |
| 2804 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2805 | DH *dh = DH_new(); |
| 2806 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2807 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2808 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2809 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2810 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2811 | DH_free(dh); |
| 2812 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2813 | } else { |
| 2814 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2815 | } |
| 2816 | } |
| 2817 | return dh; |
| 2818 | } |
| 2819 | |
| 2820 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2821 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2822 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2823 | { |
| 2824 | DH *dh = NULL; |
| 2825 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2826 | int type; |
| 2827 | |
| 2828 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2829 | |
| 2830 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2831 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2832 | */ |
| 2833 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 2834 | keylen = EVP_PKEY_bits(pkey); |
| 2835 | } |
| 2836 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2837 | if (keylen > global_ssl.default_dh_param) { |
| 2838 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2839 | } |
| 2840 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2841 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2842 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2843 | } |
| 2844 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2845 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2846 | } |
| 2847 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2848 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2849 | } |
| 2850 | |
| 2851 | return dh; |
| 2852 | } |
| 2853 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2854 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2855 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2856 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2857 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2858 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2859 | if (in == NULL) |
| 2860 | goto end; |
| 2861 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2862 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2863 | goto end; |
| 2864 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2865 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 2866 | |
| 2867 | end: |
| 2868 | if (in) |
| 2869 | BIO_free(in); |
| 2870 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 2871 | ERR_clear_error(); |
| 2872 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2873 | return dh; |
| 2874 | } |
| 2875 | |
| 2876 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 2877 | { |
| 2878 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 2879 | |
| 2880 | if (global_dh) { |
| 2881 | return 0; |
| 2882 | } |
| 2883 | |
| 2884 | return -1; |
| 2885 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2886 | #endif |
| 2887 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 2888 | /* This function allocates a sni_ctx and adds it to the ckch_inst */ |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2889 | static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst, |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 2890 | struct bind_conf *s, struct ssl_bind_conf *conf, |
| 2891 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2892 | { |
| 2893 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2894 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2895 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2896 | if (*name == '!') { |
| 2897 | neg = 1; |
| 2898 | name++; |
| 2899 | } |
| 2900 | if (*name == '*') { |
| 2901 | wild = 1; |
| 2902 | name++; |
| 2903 | } |
| 2904 | /* !* filter is a nop */ |
| 2905 | if (neg && wild) |
| 2906 | return order; |
| 2907 | if (*name) { |
| 2908 | int j, len; |
| 2909 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2910 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2911 | trash.area[j] = tolower((unsigned char)name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2912 | if (j >= trash.size) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2913 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2914 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 2915 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2916 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 2917 | if (!sc) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 2918 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2919 | memcpy(sc->name.key, trash.area, len + 1); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 2920 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2921 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2922 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2923 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2924 | sc->order = order++; |
| 2925 | sc->neg = neg; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2926 | sc->wild = wild; |
| 2927 | sc->name.node.leaf_p = NULL; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 2928 | sc->ckch_inst = ckch_inst; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2929 | LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 2930 | } |
| 2931 | return order; |
| 2932 | } |
| 2933 | |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 2934 | /* |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2935 | * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree |
| 2936 | * This function can't return an error. |
| 2937 | * |
| 2938 | * *CAUTION*: The caller must lock the sni tree if called in multithreading mode |
| 2939 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 2940 | void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf) |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2941 | { |
| 2942 | |
| 2943 | struct sni_ctx *sc0, *sc0b, *sc1; |
| 2944 | struct ebmb_node *node; |
| 2945 | |
| 2946 | list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) { |
| 2947 | |
| 2948 | /* ignore if sc0 was already inserted in a tree */ |
| 2949 | if (sc0->name.node.leaf_p) |
| 2950 | continue; |
| 2951 | |
| 2952 | /* Check for duplicates. */ |
| 2953 | if (sc0->wild) |
| 2954 | node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key); |
| 2955 | else |
| 2956 | node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key); |
| 2957 | |
| 2958 | for (; node; node = ebmb_next_dup(node)) { |
| 2959 | sc1 = ebmb_entry(node, struct sni_ctx, name); |
| 2960 | if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf |
| 2961 | && sc1->neg == sc0->neg && sc1->wild == sc0->wild) { |
| 2962 | /* it's a duplicate, we should remove and free it */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2963 | LIST_DELETE(&sc0->by_ckch_inst); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 2964 | SSL_CTX_free(sc0->ctx); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2965 | ha_free(&sc0); |
William Lallemand | e15029b | 2019-10-14 10:46:58 +0200 | [diff] [blame] | 2966 | break; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2967 | } |
| 2968 | } |
| 2969 | |
| 2970 | /* if duplicate, ignore the insertion */ |
| 2971 | if (!sc0) |
| 2972 | continue; |
| 2973 | |
| 2974 | if (sc0->wild) |
| 2975 | ebst_insert(&bind_conf->sni_w_ctx, &sc0->name); |
| 2976 | else |
| 2977 | ebst_insert(&bind_conf->sni_ctx, &sc0->name); |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 2978 | } |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2979 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 2980 | /* replace the default_ctx if required with the instance's ctx. */ |
| 2981 | if (ckch_inst->is_default) { |
| 2982 | SSL_CTX_free(bind_conf->default_ctx); |
| 2983 | SSL_CTX_up_ref(ckch_inst->ctx); |
| 2984 | bind_conf->default_ctx = ckch_inst->ctx; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 2985 | } |
| 2986 | } |
| 2987 | |
| 2988 | /* |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 2989 | * tree used to store the ckchs ordered by filename/bundle name |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 2990 | */ |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 2991 | struct eb_root ckchs_tree = EB_ROOT_UNIQUE; |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 2992 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 2993 | /* tree of crtlist (crt-list/directory) */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 2994 | struct eb_root crtlists_tree = EB_ROOT_UNIQUE; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 2995 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2996 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2997 | * If there is no DH parameter available in the ckchs, the global |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 2998 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 2999 | * DH parameter available in ckchs nor in global, the default |
| 3000 | * DH parameters are applied on the SSL_CTX. |
| 3001 | * Returns a bitfield containing the flags: |
| 3002 | * ERR_FATAL in any fatal error case |
| 3003 | * ERR_ALERT if a reason of the error is availabine in err |
| 3004 | * ERR_WARN if a warning is available into err |
| 3005 | * The value 0 means there is no error nor warning and |
| 3006 | * the operation succeed. |
| 3007 | */ |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3008 | #ifndef OPENSSL_NO_DH |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3009 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, |
| 3010 | const char *path, char **err) |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3011 | { |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3012 | int ret = 0; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3013 | DH *dh = NULL; |
| 3014 | |
William Lallemand | a8c7374 | 2019-07-31 18:31:34 +0200 | [diff] [blame] | 3015 | if (ckch && ckch->dh) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3016 | dh = ckch->dh; |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3017 | if (!SSL_CTX_set_tmp_dh(ctx, dh)) { |
| 3018 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 3019 | err && *err ? *err : "", path); |
| 3020 | #if defined(SSL_CTX_set_dh_auto) |
| 3021 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3022 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3023 | err && *err ? *err : ""); |
| 3024 | #else |
| 3025 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3026 | err && *err ? *err : ""); |
| 3027 | #endif |
| 3028 | ret |= ERR_WARN; |
| 3029 | goto end; |
| 3030 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3031 | |
| 3032 | if (ssl_dh_ptr_index >= 0) { |
| 3033 | /* store a pointer to the DH params to avoid complaining about |
| 3034 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 3035 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 3036 | } |
| 3037 | } |
| 3038 | else if (global_dh) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3039 | if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) { |
| 3040 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 3041 | err && *err ? *err : "", path); |
| 3042 | #if defined(SSL_CTX_set_dh_auto) |
| 3043 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3044 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3045 | err && *err ? *err : ""); |
| 3046 | #else |
| 3047 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3048 | err && *err ? *err : ""); |
| 3049 | #endif |
| 3050 | ret |= ERR_WARN; |
| 3051 | goto end; |
| 3052 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3053 | } |
| 3054 | else { |
| 3055 | /* Clear openssl global errors stack */ |
| 3056 | ERR_clear_error(); |
| 3057 | |
Willy Tarreau | 6d27a92 | 2020-11-05 19:38:05 +0100 | [diff] [blame] | 3058 | if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3059 | /* we are limited to DH parameter of 1024 bits anyway */ |
| 3060 | if (local_dh_1024 == NULL) |
| 3061 | local_dh_1024 = ssl_get_dh_1024(); |
| 3062 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3063 | if (local_dh_1024 == NULL) { |
| 3064 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3065 | err && *err ? *err : "", path); |
| 3066 | ret |= ERR_ALERT | ERR_FATAL; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3067 | goto end; |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3068 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3069 | |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3070 | if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) { |
| 3071 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3072 | err && *err ? *err : "", path); |
| 3073 | #if defined(SSL_CTX_set_dh_auto) |
| 3074 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3075 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3076 | err && *err ? *err : ""); |
| 3077 | #else |
| 3078 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3079 | err && *err ? *err : ""); |
| 3080 | #endif |
| 3081 | ret |= ERR_WARN; |
| 3082 | goto end; |
| 3083 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3084 | } |
| 3085 | else { |
| 3086 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 3087 | } |
William Lallemand | 8d0f893 | 2019-10-17 18:03:58 +0200 | [diff] [blame] | 3088 | } |
| 3089 | |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3090 | end: |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3091 | ERR_clear_error(); |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3092 | return ret; |
| 3093 | } |
Emmanuel Hocdet | 54227d8 | 2019-07-30 17:04:01 +0200 | [diff] [blame] | 3094 | #endif |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3095 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3096 | |
| 3097 | /* Load a certificate chain into an SSL context. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3098 | * Returns a bitfield containing the flags: |
| 3099 | * ERR_FATAL in any fatal error case |
| 3100 | * ERR_ALERT if the reason of the error is available in err |
| 3101 | * ERR_WARN if a warning is available into err |
| 3102 | * The value 0 means there is no error nor warning and |
| 3103 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3104 | */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3105 | static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch, |
| 3106 | SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3107 | { |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3108 | int errcode = 0; |
| 3109 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3110 | if (find_chain == NULL) { |
| 3111 | errcode |= ERR_FATAL; |
| 3112 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3113 | } |
| 3114 | |
| 3115 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 3116 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 3117 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3118 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3119 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3120 | } |
| 3121 | |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3122 | if (ckch->chain) { |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3123 | *find_chain = ckch->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3124 | } else { |
| 3125 | /* Find Certificate Chain in global */ |
| 3126 | struct issuer_chain *issuer; |
Emmanuel Hocdet | ef87e0a | 2020-03-23 11:29:11 +0100 | [diff] [blame] | 3127 | issuer = ssl_get0_issuer_chain(ckch->cert); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3128 | if (issuer) |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3129 | *find_chain = issuer->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3130 | } |
William Lallemand | 8588857 | 2020-02-27 14:48:35 +0100 | [diff] [blame] | 3131 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3132 | if (!*find_chain) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3133 | /* always put a null chain stack in the SSL_CTX so it does not |
| 3134 | * try to build the chain from the verify store */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3135 | *find_chain = sk_X509_new_null(); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3136 | } |
| 3137 | |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3138 | /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */ |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3139 | #ifdef SSL_CTX_set1_chain |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3140 | if (!SSL_CTX_set1_chain(ctx, *find_chain)) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3141 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 3142 | err && *err ? *err : "", path); |
| 3143 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3144 | goto end; |
| 3145 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3146 | #else |
| 3147 | { /* legacy compat (< openssl 1.0.2) */ |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3148 | X509 *ca; |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3149 | STACK_OF(X509) *chain; |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3150 | chain = X509_chain_up_ref(*find_chain); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3151 | while ((ca = sk_X509_shift(chain))) |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3152 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3153 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3154 | err && *err ? *err : "", path); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3155 | X509_free(ca); |
| 3156 | sk_X509_pop_free(chain, X509_free); |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3157 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3158 | goto end; |
| 3159 | } |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3160 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3161 | #endif |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3162 | |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3163 | #ifdef SSL_CTX_build_cert_chain |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3164 | /* remove the Root CA from the SSL_CTX if the option is activated */ |
| 3165 | if (global_ssl.skip_self_issued_ca) { |
| 3166 | if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) { |
| 3167 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3168 | err && *err ? *err : "", path); |
| 3169 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3170 | goto end; |
| 3171 | } |
| 3172 | } |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3173 | #endif |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3174 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3175 | end: |
| 3176 | return errcode; |
| 3177 | } |
| 3178 | |
| 3179 | |
| 3180 | /* Loads the info in ckch into ctx |
| 3181 | * Returns a bitfield containing the flags: |
| 3182 | * ERR_FATAL in any fatal error case |
| 3183 | * ERR_ALERT if the reason of the error is available in err |
| 3184 | * ERR_WARN if a warning is available into err |
| 3185 | * The value 0 means there is no error nor warning and |
| 3186 | * the operation succeed. |
| 3187 | */ |
| 3188 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 3189 | { |
| 3190 | int errcode = 0; |
| 3191 | STACK_OF(X509) *find_chain = NULL; |
| 3192 | |
| 3193 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3194 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3195 | err && *err ? *err : "", path); |
| 3196 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3197 | return errcode; |
| 3198 | } |
| 3199 | |
| 3200 | /* Load certificate chain */ |
| 3201 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3202 | if (errcode & ERR_CODE) |
| 3203 | goto end; |
| 3204 | |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3205 | #ifndef OPENSSL_NO_DH |
| 3206 | /* store a NULL pointer to indicate we have not yet loaded |
| 3207 | a custom DH param file */ |
| 3208 | if (ssl_dh_ptr_index >= 0) { |
| 3209 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3210 | } |
| 3211 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3212 | errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err); |
| 3213 | if (errcode & ERR_CODE) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3214 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3215 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3216 | goto end; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3217 | } |
| 3218 | #endif |
| 3219 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 3220 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3221 | if (sctl_ex_index >= 0 && ckch->sctl) { |
| 3222 | if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) { |
| 3223 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3224 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3225 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3226 | goto end; |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3227 | } |
| 3228 | } |
| 3229 | #endif |
| 3230 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 3231 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL) |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3232 | /* Load OCSP Info into context */ |
| 3233 | if (ckch->ocsp_response) { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 3234 | if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3235 | 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", |
| 3236 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3237 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3238 | goto end; |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3239 | } |
| 3240 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3241 | #endif |
| 3242 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3243 | end: |
| 3244 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3245 | } |
| 3246 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3247 | |
| 3248 | /* Loads the info of a ckch built out of a backend certificate into an SSL ctx |
| 3249 | * Returns a bitfield containing the flags: |
| 3250 | * ERR_FATAL in any fatal error case |
| 3251 | * ERR_ALERT if the reason of the error is available in err |
| 3252 | * ERR_WARN if a warning is available into err |
| 3253 | * The value 0 means there is no error nor warning and |
| 3254 | * the operation succeed. |
| 3255 | */ |
| 3256 | static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, |
| 3257 | SSL_CTX *ctx, char **err) |
| 3258 | { |
| 3259 | int errcode = 0; |
| 3260 | STACK_OF(X509) *find_chain = NULL; |
| 3261 | |
| 3262 | /* Load the private key */ |
| 3263 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3264 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3265 | err && *err ? *err : "", path); |
| 3266 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3267 | } |
| 3268 | |
| 3269 | /* Load certificate chain */ |
| 3270 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3271 | if (errcode & ERR_CODE) |
| 3272 | goto end; |
| 3273 | |
| 3274 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3275 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3276 | err && *err ? *err : "", path); |
| 3277 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3278 | } |
| 3279 | |
| 3280 | end: |
| 3281 | return errcode; |
| 3282 | } |
| 3283 | |
| 3284 | |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3285 | /* |
| 3286 | * This function allocate a ckch_inst and create its snis |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3287 | * |
| 3288 | * Returns a bitfield containing the flags: |
| 3289 | * ERR_FATAL in any fatal error case |
| 3290 | * ERR_ALERT if the reason of the error is available in err |
| 3291 | * ERR_WARN if a warning is available into err |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3292 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3293 | int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf, |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3294 | struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3295 | { |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3296 | SSL_CTX *ctx; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3297 | int i; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3298 | int order = 0; |
| 3299 | X509_NAME *xname; |
| 3300 | char *str; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3301 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3302 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3303 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3304 | STACK_OF(GENERAL_NAME) *names; |
| 3305 | #endif |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3306 | struct cert_key_and_chain *ckch; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3307 | struct ckch_inst *ckch_inst = NULL; |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3308 | int errcode = 0; |
| 3309 | |
| 3310 | *ckchi = NULL; |
William Lallemand | a59191b | 2019-05-15 16:08:56 +0200 | [diff] [blame] | 3311 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3312 | if (!ckchs || !ckchs->ckch) |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3313 | return ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3314 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3315 | ckch = ckchs->ckch; |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3316 | |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3317 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 3318 | if (!ctx) { |
| 3319 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3320 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3321 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3322 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3323 | } |
| 3324 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3325 | errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err); |
| 3326 | if (errcode & ERR_CODE) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3327 | goto error; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3328 | |
| 3329 | ckch_inst = ckch_inst_new(); |
| 3330 | if (!ckch_inst) { |
| 3331 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3332 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3333 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3334 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3335 | } |
| 3336 | |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3337 | pkey = X509_get_pubkey(ckch->cert); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3338 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3339 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3340 | switch(EVP_PKEY_base_id(pkey)) { |
| 3341 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3342 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3343 | break; |
| 3344 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3345 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3346 | break; |
| 3347 | case EVP_PKEY_DSA: |
| 3348 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3349 | break; |
| 3350 | } |
| 3351 | EVP_PKEY_free(pkey); |
| 3352 | } |
| 3353 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3354 | if (fcount) { |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3355 | while (fcount--) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3356 | order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, sni_filter[fcount], order); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3357 | if (order < 0) { |
| 3358 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3359 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3360 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3361 | } |
| 3362 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3363 | } |
| 3364 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3365 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3366 | names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3367 | if (names) { |
| 3368 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3369 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3370 | if (name->type == GEN_DNS) { |
| 3371 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3372 | order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3373 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3374 | if (order < 0) { |
| 3375 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3376 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3377 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3378 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3379 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3380 | } |
| 3381 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3382 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3383 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3384 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3385 | xname = X509_get_subject_name(ckch->cert); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3386 | i = -1; |
| 3387 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3388 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3389 | ASN1_STRING *value; |
| 3390 | |
| 3391 | value = X509_NAME_ENTRY_get_data(entry); |
| 3392 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3393 | order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3394 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3395 | if (order < 0) { |
| 3396 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3397 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3398 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3399 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3400 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3401 | } |
| 3402 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3403 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3404 | * the tree, so it will be discovered and cleaned in time. |
| 3405 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3406 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3407 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3408 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3409 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3410 | err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3411 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3412 | goto error; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3413 | } |
| 3414 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3415 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3416 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3417 | bind_conf->default_ssl_conf = ssl_conf; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3418 | ckch_inst->is_default = 1; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3419 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3420 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3421 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3422 | /* Always keep a reference to the newly constructed SSL_CTX in the |
| 3423 | * instance. This way if the instance has no SNIs, the SSL_CTX will |
| 3424 | * still be linked. */ |
| 3425 | SSL_CTX_up_ref(ctx); |
| 3426 | ckch_inst->ctx = ctx; |
| 3427 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3428 | /* everything succeed, the ckch instance can be used */ |
| 3429 | ckch_inst->bind_conf = bind_conf; |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 3430 | ckch_inst->ssl_conf = ssl_conf; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3431 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3432 | |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3433 | SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */ |
| 3434 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3435 | *ckchi = ckch_inst; |
| 3436 | return errcode; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3437 | |
| 3438 | error: |
| 3439 | /* free the allocated sni_ctxs */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3440 | if (ckch_inst) { |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3441 | if (ckch_inst->is_default) |
| 3442 | SSL_CTX_free(ctx); |
| 3443 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3444 | ckch_inst_free(ckch_inst); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3445 | ckch_inst = NULL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3446 | } |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3447 | SSL_CTX_free(ctx); |
| 3448 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3449 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3450 | } |
| 3451 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3452 | |
| 3453 | /* |
| 3454 | * This function allocate a ckch_inst that will be used on the backend side |
| 3455 | * (server line) |
| 3456 | * |
| 3457 | * Returns a bitfield containing the flags: |
| 3458 | * ERR_FATAL in any fatal error case |
| 3459 | * ERR_ALERT if the reason of the error is available in err |
| 3460 | * ERR_WARN if a warning is available into err |
| 3461 | */ |
| 3462 | int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs, |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3463 | struct ckch_inst **ckchi, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3464 | { |
| 3465 | SSL_CTX *ctx; |
| 3466 | struct cert_key_and_chain *ckch; |
| 3467 | struct ckch_inst *ckch_inst = NULL; |
| 3468 | int errcode = 0; |
| 3469 | |
| 3470 | *ckchi = NULL; |
| 3471 | |
| 3472 | if (!ckchs || !ckchs->ckch) |
| 3473 | return ERR_FATAL; |
| 3474 | |
| 3475 | ckch = ckchs->ckch; |
| 3476 | |
| 3477 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3478 | if (!ctx) { |
| 3479 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3480 | err && *err ? *err : "", path); |
| 3481 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3482 | goto error; |
| 3483 | } |
| 3484 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3485 | errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err); |
| 3486 | if (errcode & ERR_CODE) |
| 3487 | goto error; |
| 3488 | |
| 3489 | ckch_inst = ckch_inst_new(); |
| 3490 | if (!ckch_inst) { |
| 3491 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3492 | err && *err ? *err : "", path); |
| 3493 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3494 | goto error; |
| 3495 | } |
| 3496 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3497 | /* everything succeed, the ckch instance can be used */ |
| 3498 | ckch_inst->bind_conf = NULL; |
| 3499 | ckch_inst->ssl_conf = NULL; |
| 3500 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3501 | ckch_inst->ctx = ctx; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3502 | ckch_inst->is_server_instance = 1; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3503 | |
| 3504 | *ckchi = ckch_inst; |
| 3505 | return errcode; |
| 3506 | |
| 3507 | error: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3508 | SSL_CTX_free(ctx); |
| 3509 | |
| 3510 | return errcode; |
| 3511 | } |
| 3512 | |
Willy Tarreau | 8c5414a | 2019-10-16 17:06:25 +0200 | [diff] [blame] | 3513 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3514 | static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs, |
| 3515 | struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3516 | char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3517 | { |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3518 | int errcode = 0; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3519 | |
| 3520 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | e7eb1fe | 2020-09-16 16:17:51 +0200 | [diff] [blame] | 3521 | errcode |= ckch_inst_new_load_store(path, ckchs, bind_conf, ssl_conf, sni_filter, fcount, ckch_inst, err); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3522 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3523 | if (errcode & ERR_CODE) |
| 3524 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3525 | |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3526 | ssl_sock_load_cert_sni(*ckch_inst, bind_conf); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3527 | |
| 3528 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3529 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3530 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3531 | } |
| 3532 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3533 | /* This function generates a <struct ckch_inst *> for a <struct server *>, and |
| 3534 | * fill the SSL_CTX of the server. |
| 3535 | * |
| 3536 | * Returns a set of ERR_* flags possibly with an error in <err>. */ |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3537 | static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs, |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3538 | struct server *server, struct ckch_inst **ckch_inst, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3539 | { |
| 3540 | int errcode = 0; |
| 3541 | |
| 3542 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3543 | errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3544 | |
| 3545 | if (errcode & ERR_CODE) |
| 3546 | return errcode; |
| 3547 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3548 | (*ckch_inst)->server = server; |
| 3549 | /* Keep the reference to the SSL_CTX in the server. */ |
| 3550 | SSL_CTX_up_ref((*ckch_inst)->ctx); |
| 3551 | server->ssl_ctx.ctx = (*ckch_inst)->ctx; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3552 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3553 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3554 | return errcode; |
| 3555 | } |
| 3556 | |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3557 | |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3558 | |
| 3559 | |
| 3560 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3561 | * done once. Zero is returned if the operation fails. No error is returned |
| 3562 | * if the random is said as not implemented, because we expect that openssl |
| 3563 | * will use another method once needed. |
| 3564 | */ |
| 3565 | static int ssl_initialize_random() |
| 3566 | { |
| 3567 | unsigned char random; |
| 3568 | static int random_initialized = 0; |
| 3569 | |
| 3570 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3571 | random_initialized = 1; |
| 3572 | |
| 3573 | return random_initialized; |
| 3574 | } |
| 3575 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3576 | /* Load a crt-list file, this is done in 2 parts: |
| 3577 | * - store the content of the file in a crtlist structure with crtlist_entry structures |
| 3578 | * - generate the instances by iterating on entries in the crtlist struct |
| 3579 | * |
| 3580 | * Nothing is locked there, this function is used in the configuration parser. |
| 3581 | * |
| 3582 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3583 | */ |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3584 | int ssl_sock_load_cert_list_file(char *file, int dir, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3585 | { |
| 3586 | struct crtlist *crtlist = NULL; |
| 3587 | struct ebmb_node *eb; |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3588 | struct crtlist_entry *entry = NULL; |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3589 | struct bind_conf_list *bind_conf_node = NULL; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3590 | int cfgerr = 0; |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3591 | char *end; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3592 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3593 | bind_conf_node = malloc(sizeof(*bind_conf_node)); |
| 3594 | if (!bind_conf_node) { |
| 3595 | memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : ""); |
| 3596 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3597 | goto error; |
| 3598 | } |
| 3599 | bind_conf_node->next = NULL; |
| 3600 | bind_conf_node->bind_conf = bind_conf; |
| 3601 | |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3602 | /* strip trailing slashes, including first one */ |
| 3603 | for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--) |
| 3604 | *end = 0; |
| 3605 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3606 | /* look for an existing crtlist or create one */ |
| 3607 | eb = ebst_lookup(&crtlists_tree, file); |
| 3608 | if (eb) { |
| 3609 | crtlist = ebmb_entry(eb, struct crtlist, node); |
| 3610 | } else { |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3611 | /* load a crt-list OR a directory */ |
| 3612 | if (dir) |
| 3613 | cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err); |
| 3614 | else |
| 3615 | cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err); |
| 3616 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3617 | if (!(cfgerr & ERR_CODE)) |
| 3618 | ebst_insert(&crtlists_tree, &crtlist->node); |
| 3619 | } |
| 3620 | |
| 3621 | if (cfgerr & ERR_CODE) { |
| 3622 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3623 | goto error; |
| 3624 | } |
| 3625 | |
| 3626 | /* generates ckch instance from the crtlist_entry */ |
| 3627 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3628 | struct ckch_store *store; |
| 3629 | struct ckch_inst *ckch_inst = NULL; |
| 3630 | |
| 3631 | store = entry->node.key; |
| 3632 | cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err); |
| 3633 | if (cfgerr & ERR_CODE) { |
| 3634 | memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err); |
| 3635 | goto error; |
| 3636 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3637 | LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry); |
William Lallemand | caa1619 | 2020-04-08 16:29:15 +0200 | [diff] [blame] | 3638 | ckch_inst->crtlist_entry = entry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3639 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3640 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3641 | /* add the bind_conf to the list */ |
| 3642 | bind_conf_node->next = crtlist->bind_conf; |
| 3643 | crtlist->bind_conf = bind_conf_node; |
| 3644 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3645 | return cfgerr; |
| 3646 | error: |
| 3647 | { |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3648 | struct crtlist_entry *lastentry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3649 | struct ckch_inst *inst, *s_inst; |
| 3650 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3651 | lastentry = entry; /* which entry we tried to generate last */ |
| 3652 | if (lastentry) { |
| 3653 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3654 | if (entry == lastentry) /* last entry we tried to generate, no need to go further */ |
| 3655 | break; |
| 3656 | |
| 3657 | list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) { |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3658 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3659 | /* this was not generated for this bind_conf, skip */ |
| 3660 | if (inst->bind_conf != bind_conf) |
| 3661 | continue; |
| 3662 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3663 | /* free the sni_ctx and instance */ |
| 3664 | ckch_inst_free(inst); |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3665 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3666 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3667 | } |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3668 | free(bind_conf_node); |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3669 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3670 | return cfgerr; |
| 3671 | } |
| 3672 | |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3673 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
| 3674 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
| 3675 | { |
| 3676 | struct stat buf; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3677 | int cfgerr = 0; |
| 3678 | struct ckch_store *ckchs; |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3679 | struct ckch_inst *ckch_inst = NULL; |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3680 | int found = 0; /* did we found a file to load ? */ |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3681 | |
| 3682 | if ((ckchs = ckchs_lookup(path))) { |
| 3683 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3684 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3685 | found++; |
| 3686 | } else if (stat(path, &buf) == 0) { |
| 3687 | found++; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3688 | if (S_ISDIR(buf.st_mode) == 0) { |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3689 | ckchs = ckchs_load_cert_file(path, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3690 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3691 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3692 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3693 | } else { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3694 | cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3695 | } |
| 3696 | } else { |
| 3697 | /* stat failed, could be a bundle */ |
| 3698 | if (global_ssl.extra_files & SSL_GF_BUNDLE) { |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3699 | char fp[MAXPATHLEN+1] = {0}; |
| 3700 | int n = 0; |
| 3701 | |
| 3702 | /* Load all possible certs and keys in separate ckch_store */ |
| 3703 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3704 | struct stat buf; |
| 3705 | int ret; |
| 3706 | |
| 3707 | ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3708 | if (ret > sizeof(fp)) |
| 3709 | continue; |
| 3710 | |
| 3711 | if ((ckchs = ckchs_lookup(fp))) { |
| 3712 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3713 | found++; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3714 | } else { |
| 3715 | if (stat(fp, &buf) == 0) { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3716 | found++; |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3717 | ckchs = ckchs_load_cert_file(fp, err); |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3718 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3719 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3720 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3721 | } |
| 3722 | } |
| 3723 | } |
William Lallemand | b7fdfdf | 2020-12-04 15:45:02 +0100 | [diff] [blame] | 3724 | #if HA_OPENSSL_VERSION_NUMBER < 0x10101000L |
| 3725 | if (found) { |
| 3726 | memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n", |
| 3727 | err && *err ? *err : "", path); |
| 3728 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3729 | } |
| 3730 | #endif |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3731 | } |
| 3732 | } |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3733 | if (!found) { |
| 3734 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3735 | err && *err ? *err : "", path, strerror(errno)); |
| 3736 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3737 | } |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3738 | |
| 3739 | return cfgerr; |
| 3740 | } |
| 3741 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3742 | |
| 3743 | /* Create a full ssl context and ckch instance that will be used for a specific |
| 3744 | * backend server (server configuration line). |
| 3745 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3746 | */ |
| 3747 | int ssl_sock_load_srv_cert(char *path, struct server *server, char **err) |
| 3748 | { |
| 3749 | struct stat buf; |
| 3750 | int cfgerr = 0; |
| 3751 | struct ckch_store *ckchs; |
| 3752 | int found = 0; /* did we found a file to load ? */ |
| 3753 | |
| 3754 | if ((ckchs = ckchs_lookup(path))) { |
| 3755 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3756 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3757 | found++; |
| 3758 | } else if (stat(path, &buf) == 0) { |
| 3759 | /* We do not manage directories on backend side. */ |
| 3760 | if (S_ISDIR(buf.st_mode) == 0) { |
| 3761 | ++found; |
| 3762 | ckchs = ckchs_load_cert_file(path, err); |
| 3763 | if (!ckchs) |
| 3764 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3765 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3766 | } |
| 3767 | } |
| 3768 | if (!found) { |
| 3769 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3770 | err && *err ? *err : "", path, strerror(errno)); |
| 3771 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3772 | } |
| 3773 | |
| 3774 | return cfgerr; |
| 3775 | } |
| 3776 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3777 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3778 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3779 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3780 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3781 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3782 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3783 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3784 | SSL_OP_NO_SSLv2 | |
| 3785 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3786 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3787 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3788 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3789 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3790 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3791 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3792 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3793 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3794 | SSL_MODE_RELEASE_BUFFERS | |
| 3795 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3796 | 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] | 3797 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3798 | int flags = MC_SSL_O_ALL; |
| 3799 | int cfgerr = 0; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3800 | const int default_min_ver = CONF_TLSV12; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3801 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3802 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3803 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3804 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3805 | 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] | 3806 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3807 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3808 | 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] | 3809 | else |
| 3810 | flags = conf_ssl_methods->flags; |
| 3811 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3812 | min = conf_ssl_methods->min; |
| 3813 | max = conf_ssl_methods->max; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3814 | |
| 3815 | /* default minimum is TLSV12, */ |
| 3816 | if (!min) { |
| 3817 | if (!max || (max >= default_min_ver)) { |
| 3818 | min = default_min_ver; |
| 3819 | } else { |
| 3820 | ha_warning("Proxy '%s': Ambiguous configuration for bind '%s' at [%s:%d]: the ssl-min-ver value is not configured and the ssl-max-ver value is lower than the default ssl-min-ver value (%s). " |
| 3821 | "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n", |
| 3822 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name); |
| 3823 | min = max; |
| 3824 | } |
| 3825 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3826 | /* 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] | 3827 | if (min) |
| 3828 | flags |= (methodVersions[min].flag - 1); |
| 3829 | if (max) |
| 3830 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3831 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3832 | min = max = CONF_TLSV_NONE; |
| 3833 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3834 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3835 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3836 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3837 | if (min) { |
| 3838 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3839 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 3840 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3841 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 3842 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3843 | hole = 0; |
| 3844 | } |
| 3845 | max = i; |
| 3846 | } |
| 3847 | else { |
| 3848 | min = max = i; |
| 3849 | } |
| 3850 | } |
| 3851 | else { |
| 3852 | if (min) |
| 3853 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3854 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3855 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3856 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 3857 | 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] | 3858 | cfgerr += 1; |
| 3859 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 3860 | /* save real min/max in bind_conf */ |
| 3861 | conf_ssl_methods->min = min; |
| 3862 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3863 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 3864 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3865 | /* 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] | 3866 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3867 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3868 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3869 | else |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 3870 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) { |
| 3871 | /* clear every version flags in case SSL_CTX_new() |
| 3872 | * returns an SSL_CTX with disabled versions */ |
| 3873 | SSL_CTX_clear_options(ctx, methodVersions[i].option); |
| 3874 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3875 | if (flags & methodVersions[i].flag) |
| 3876 | options |= methodVersions[i].option; |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 3877 | |
| 3878 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3879 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3880 | /* 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] | 3881 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 3882 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 3883 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3884 | |
| 3885 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 3886 | options |= SSL_OP_NO_TICKET; |
| 3887 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 3888 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 3889 | |
| 3890 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 3891 | options |= SSL_OP_NO_RENEGOTIATION; |
| 3892 | #endif |
| 3893 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3894 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 3895 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 3896 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 3897 | if (global_ssl.async) |
| 3898 | mode |= SSL_MODE_ASYNC; |
| 3899 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3900 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3901 | if (global_ssl.life_time) |
| 3902 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3903 | |
| 3904 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3905 | #ifdef OPENSSL_IS_BORINGSSL |
| 3906 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 3907 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Ilya Shipitsin | e9ff899 | 2020-01-19 12:20:14 +0500 | [diff] [blame] | 3908 | #elif defined(SSL_OP_NO_ANTI_REPLAY) |
Olivier Houchard | 545989f | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 3909 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 3910 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 3911 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 3912 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3913 | #else |
| 3914 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3915 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 3916 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3917 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3918 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3919 | } |
| 3920 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3921 | |
| 3922 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 3923 | { |
| 3924 | if (first == block) { |
| 3925 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 3926 | if (first->len > 0) |
| 3927 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 3928 | } |
| 3929 | } |
| 3930 | |
| 3931 | /* return first block from sh_ssl_sess */ |
| 3932 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 3933 | { |
| 3934 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 3935 | |
| 3936 | } |
| 3937 | |
| 3938 | /* store a session into the cache |
| 3939 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 3940 | * data: asn1 encoded session |
| 3941 | * data_len: asn1 encoded session length |
| 3942 | * Returns 1 id session was stored (else 0) |
| 3943 | */ |
| 3944 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 3945 | { |
| 3946 | struct shared_block *first; |
| 3947 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 3948 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 3949 | 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] | 3950 | if (!first) { |
| 3951 | /* Could not retrieve enough free blocks to store that session */ |
| 3952 | return 0; |
| 3953 | } |
| 3954 | |
| 3955 | /* STORE the key in the first elem */ |
| 3956 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 3957 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 3958 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 3959 | |
| 3960 | /* it returns the already existing node |
| 3961 | or current node if none, never returns null */ |
| 3962 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 3963 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 3964 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 3965 | /* release the reserved row */ |
| 3966 | shctx_row_dec_hot(ssl_shctx, first); |
| 3967 | /* replace the previous session already in the tree */ |
| 3968 | sh_ssl_sess = oldsh_ssl_sess; |
| 3969 | /* ignore the previous session data, only use the header */ |
| 3970 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 3971 | shctx_row_inc_hot(ssl_shctx, first); |
| 3972 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 3973 | } |
| 3974 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 3975 | 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] | 3976 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3977 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 3978 | } |
| 3979 | |
| 3980 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 3981 | |
| 3982 | return 1; |
| 3983 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 3984 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3985 | /* SSL callback used when a new session is created while connecting to a server */ |
| 3986 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 3987 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 3988 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3989 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3990 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 3991 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 3992 | |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 3993 | /* RWLOCK: only read lock the SSL cache even when writing in it because there is |
| 3994 | * one cache per thread, it only prevents to flush it from the CLI in |
| 3995 | * another thread */ |
| 3996 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 3997 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 3998 | int len; |
| 3999 | unsigned char *ptr; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4000 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4001 | len = i2d_SSL_SESSION(sess, NULL); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4002 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4003 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4004 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4005 | } else { |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4006 | ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len); |
| 4007 | s->ssl_ctx.reused_sess[tid].ptr = ptr; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4008 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4009 | } |
| 4010 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4011 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4012 | &ptr); |
| 4013 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4014 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4015 | } else { |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4016 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4017 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4018 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4019 | } |
| 4020 | |
| 4021 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4022 | } |
| 4023 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4024 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4025 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4026 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4027 | { |
| 4028 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4029 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4030 | unsigned char *p; |
| 4031 | int data_len; |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4032 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4033 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4034 | |
| 4035 | /* Session id is already stored in to key and session id is known |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 4036 | * so we don't store it to keep size. |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4037 | * note: SSL_SESSION_set1_id is using |
| 4038 | * a memcpy so we need to use a different pointer |
| 4039 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4040 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4041 | */ |
| 4042 | |
| 4043 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4044 | |
| 4045 | /* copy value in an other buffer */ |
| 4046 | memcpy(encid, sid_data, sid_length); |
| 4047 | |
| 4048 | /* pad with 0 */ |
| 4049 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4050 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4051 | |
| 4052 | /* force length to zero to avoid ASN1 encoding */ |
| 4053 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4054 | |
| 4055 | /* force length to zero to avoid ASN1 encoding */ |
| 4056 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4057 | |
| 4058 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4059 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4060 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4061 | goto err; |
| 4062 | |
| 4063 | p = encsess; |
| 4064 | |
| 4065 | /* process ASN1 session encoding before the lock */ |
| 4066 | i2d_SSL_SESSION(sess, &p); |
| 4067 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4068 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4069 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4070 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4071 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4072 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4073 | err: |
| 4074 | /* reset original length values */ |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4075 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4076 | 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] | 4077 | |
| 4078 | return 0; /* do not increment session reference count */ |
| 4079 | } |
| 4080 | |
| 4081 | /* 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] | 4082 | 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] | 4083 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4084 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4085 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4086 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4087 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4088 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4089 | |
| 4090 | global.shctx_lookups++; |
| 4091 | |
| 4092 | /* allow the session to be freed automatically by openssl */ |
| 4093 | *do_copy = 0; |
| 4094 | |
| 4095 | /* tree key is zeros padded sessionid */ |
| 4096 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4097 | memcpy(tmpkey, key, key_len); |
| 4098 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4099 | key = tmpkey; |
| 4100 | } |
| 4101 | |
| 4102 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4103 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4104 | |
| 4105 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4106 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4107 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4108 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4109 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4110 | global.shctx_misses++; |
| 4111 | return NULL; |
| 4112 | } |
| 4113 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4114 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4115 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4116 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4117 | 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] | 4118 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4119 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4120 | |
| 4121 | /* decode ASN1 session */ |
| 4122 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4123 | 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] | 4124 | /* Reset session id and session id contenxt */ |
| 4125 | if (sess) { |
| 4126 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4127 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4128 | } |
| 4129 | |
| 4130 | return sess; |
| 4131 | } |
| 4132 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4133 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4134 | /* 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] | 4135 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4136 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4137 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4138 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4139 | unsigned int sid_length; |
| 4140 | const unsigned char *sid_data; |
| 4141 | (void)ctx; |
| 4142 | |
| 4143 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4144 | /* tree key is zeros padded sessionid */ |
| 4145 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4146 | memcpy(tmpkey, sid_data, sid_length); |
| 4147 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4148 | sid_data = tmpkey; |
| 4149 | } |
| 4150 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4151 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4152 | |
| 4153 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4154 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4155 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4156 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4157 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4158 | } |
| 4159 | |
| 4160 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4161 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4162 | } |
| 4163 | |
| 4164 | /* Set session cache mode to server and disable openssl internal cache. |
| 4165 | * Set shared cache callbacks on an ssl context. |
| 4166 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4167 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4168 | { |
| 4169 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4170 | |
| 4171 | if (!ssl_shctx) { |
| 4172 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4173 | return; |
| 4174 | } |
| 4175 | |
| 4176 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4177 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4178 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4179 | |
| 4180 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4181 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4182 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4183 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4184 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4185 | |
| 4186 | /* |
| 4187 | * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
| 4188 | * |
| 4189 | * The format is: |
| 4190 | * * <Label> <space> <ClientRandom> <space> <Secret> |
| 4191 | * We only need to copy the secret as there is a sample fetch for the ClientRandom |
| 4192 | */ |
| 4193 | |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 4194 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4195 | void SSL_CTX_keylog(const SSL *ssl, const char *line) |
| 4196 | { |
| 4197 | struct ssl_keylog *keylog; |
| 4198 | char *lastarg = NULL; |
| 4199 | char *dst = NULL; |
| 4200 | |
| 4201 | keylog = SSL_get_ex_data(ssl, ssl_keylog_index); |
| 4202 | if (!keylog) |
| 4203 | return; |
| 4204 | |
| 4205 | lastarg = strrchr(line, ' '); |
| 4206 | if (lastarg == NULL || ++lastarg == NULL) |
| 4207 | return; |
| 4208 | |
| 4209 | dst = pool_alloc(pool_head_ssl_keylog_str); |
| 4210 | if (!dst) |
| 4211 | return; |
| 4212 | |
| 4213 | strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1); |
| 4214 | dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0'; |
| 4215 | |
| 4216 | if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) { |
| 4217 | if (keylog->client_random) |
| 4218 | goto error; |
| 4219 | keylog->client_random = dst; |
| 4220 | |
| 4221 | } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) { |
| 4222 | if (keylog->client_early_traffic_secret) |
| 4223 | goto error; |
| 4224 | keylog->client_early_traffic_secret = dst; |
| 4225 | |
| 4226 | } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4227 | if(keylog->client_handshake_traffic_secret) |
| 4228 | goto error; |
| 4229 | keylog->client_handshake_traffic_secret = dst; |
| 4230 | |
| 4231 | } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4232 | if (keylog->server_handshake_traffic_secret) |
| 4233 | goto error; |
| 4234 | keylog->server_handshake_traffic_secret = dst; |
| 4235 | |
| 4236 | } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) { |
| 4237 | if (keylog->client_traffic_secret_0) |
| 4238 | goto error; |
| 4239 | keylog->client_traffic_secret_0 = dst; |
| 4240 | |
| 4241 | } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) { |
| 4242 | if (keylog->server_traffic_secret_0) |
| 4243 | goto error; |
| 4244 | keylog->server_traffic_secret_0 = dst; |
| 4245 | |
| 4246 | } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) { |
| 4247 | if (keylog->early_exporter_secret) |
| 4248 | goto error; |
| 4249 | keylog->early_exporter_secret = dst; |
| 4250 | |
| 4251 | } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) { |
| 4252 | if (keylog->exporter_secret) |
| 4253 | goto error; |
| 4254 | keylog->exporter_secret = dst; |
| 4255 | } else { |
| 4256 | goto error; |
| 4257 | } |
| 4258 | |
| 4259 | return; |
| 4260 | |
| 4261 | error: |
| 4262 | pool_free(pool_head_ssl_keylog_str, dst); |
| 4263 | |
| 4264 | return; |
| 4265 | } |
| 4266 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4267 | |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4268 | /* |
| 4269 | * This function applies the SSL configuration on a SSL_CTX |
| 4270 | * It returns an error code and fills the <err> buffer |
| 4271 | */ |
| 4272 | int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx, char **err) |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4273 | { |
| 4274 | struct proxy *curproxy = bind_conf->frontend; |
| 4275 | int cfgerr = 0; |
| 4276 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4277 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4278 | const char *conf_ciphers; |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4279 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4280 | const char *conf_ciphersuites; |
| 4281 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4282 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4283 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4284 | if (ssl_conf) { |
| 4285 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4286 | int i, min, max; |
| 4287 | int flags = MC_SSL_O_ALL; |
| 4288 | |
| 4289 | /* 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] | 4290 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4291 | 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] | 4292 | if (min) |
| 4293 | flags |= (methodVersions[min].flag - 1); |
| 4294 | if (max) |
| 4295 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4296 | min = max = CONF_TLSV_NONE; |
| 4297 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4298 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4299 | if (min) |
| 4300 | max = i; |
| 4301 | else |
| 4302 | min = max = i; |
| 4303 | } |
| 4304 | /* save real min/max */ |
| 4305 | conf_ssl_methods->min = min; |
| 4306 | conf_ssl_methods->max = max; |
| 4307 | if (!min) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4308 | memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4309 | err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4310 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4311 | } |
| 4312 | } |
| 4313 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4314 | 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] | 4315 | case SSL_SOCK_VERIFY_NONE: |
| 4316 | verify = SSL_VERIFY_NONE; |
| 4317 | break; |
| 4318 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4319 | verify = SSL_VERIFY_PEER; |
| 4320 | break; |
| 4321 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4322 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4323 | break; |
| 4324 | } |
| 4325 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4326 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4327 | char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file; |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4328 | char *ca_verify_file = (ssl_conf && ssl_conf->ca_verify_file) ? ssl_conf->ca_verify_file : bind_conf->ssl_conf.ca_verify_file; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4329 | char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file; |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4330 | if (ca_file || ca_verify_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4331 | /* set CAfile to verify */ |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4332 | if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4333 | memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n", |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4334 | err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4335 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4336 | } |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4337 | if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) { |
| 4338 | memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n", |
| 4339 | err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4340 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4341 | } |
| 4342 | if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) { |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4343 | /* set CA names for client cert request, function returns void */ |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 4344 | SSL_CTX_set_client_CA_list(ctx, SSL_dup_CA_list(ssl_get_client_ca_file(ca_file))); |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4345 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4346 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4347 | else { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4348 | memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4349 | err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4350 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4351 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4352 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4353 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4354 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4355 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4356 | if (!ssl_set_cert_crl_file(store, crl_file)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4357 | memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4358 | err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4359 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4360 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4361 | else { |
| 4362 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4363 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4364 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4365 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4366 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4367 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4368 | #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] | 4369 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4370 | if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4371 | memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4372 | err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4373 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4374 | } |
| 4375 | } |
| 4376 | #endif |
| 4377 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4378 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4379 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4380 | if (conf_ciphers && |
| 4381 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4382 | memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4383 | err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4384 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4385 | } |
| 4386 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4387 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4388 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4389 | if (conf_ciphersuites && |
| 4390 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4391 | memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4392 | err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4393 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4394 | } |
| 4395 | #endif |
| 4396 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4397 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4398 | /* If tune.ssl.default-dh-param has not been set, |
| 4399 | neither has ssl-default-dh-file and no static DH |
| 4400 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4401 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4402 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4403 | (ssl_dh_ptr_index == -1 || |
| 4404 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Willy Tarreau | 3ba77d2 | 2020-05-08 09:31:18 +0200 | [diff] [blame] | 4405 | /* default to dh-param 2048 */ |
| 4406 | global_ssl.default_dh_param = 2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4407 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4408 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4409 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4410 | if (local_dh_1024 == NULL) { |
| 4411 | local_dh_1024 = ssl_get_dh_1024(); |
| 4412 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4413 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4414 | if (local_dh_2048 == NULL) { |
| 4415 | local_dh_2048 = ssl_get_dh_2048(); |
| 4416 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4417 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4418 | if (local_dh_4096 == NULL) { |
| 4419 | local_dh_4096 = ssl_get_dh_4096(); |
| 4420 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4421 | } |
| 4422 | } |
| 4423 | } |
| 4424 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4425 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4426 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Ilya Shipitsin | 7ff7747 | 2021-02-08 16:55:06 +0500 | [diff] [blame] | 4427 | #ifdef SSL_CTRL_SET_MSG_CALLBACK |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4428 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4429 | #endif |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 4430 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4431 | SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog); |
| 4432 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4433 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4434 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4435 | ssl_conf_cur = NULL; |
| 4436 | if (ssl_conf && ssl_conf->npn_str) |
| 4437 | ssl_conf_cur = ssl_conf; |
| 4438 | else if (bind_conf->ssl_conf.npn_str) |
| 4439 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4440 | if (ssl_conf_cur) |
| 4441 | 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] | 4442 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4443 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4444 | ssl_conf_cur = NULL; |
| 4445 | if (ssl_conf && ssl_conf->alpn_str) |
| 4446 | ssl_conf_cur = ssl_conf; |
| 4447 | else if (bind_conf->ssl_conf.alpn_str) |
| 4448 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4449 | if (ssl_conf_cur) |
| 4450 | 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] | 4451 | #endif |
Ilya Shipitsin | 0aa8c29 | 2020-11-04 00:39:07 +0500 | [diff] [blame] | 4452 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4453 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4454 | if (conf_curves) { |
| 4455 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4456 | memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4457 | err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4458 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4459 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4460 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4461 | } |
| 4462 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4463 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4464 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4465 | int i; |
| 4466 | EC_KEY *ecdh; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4467 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4468 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4469 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4470 | NULL); |
| 4471 | |
| 4472 | if (ecdhe == NULL) { |
Eric Salama | 3c8bde8 | 2019-11-20 11:33:40 +0100 | [diff] [blame] | 4473 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4474 | return cfgerr; |
| 4475 | } |
| 4476 | #else |
| 4477 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4478 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4479 | ECDHE_DEFAULT_CURVE); |
| 4480 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4481 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4482 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4483 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4484 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4485 | err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4486 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4487 | } |
| 4488 | else { |
| 4489 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4490 | EC_KEY_free(ecdh); |
| 4491 | } |
| 4492 | } |
| 4493 | #endif |
| 4494 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4495 | return cfgerr; |
| 4496 | } |
| 4497 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4498 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4499 | { |
| 4500 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4501 | size_t prefixlen, suffixlen; |
| 4502 | |
| 4503 | /* Trivial case */ |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4504 | if (strcasecmp(pattern, hostname) == 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4505 | return 1; |
| 4506 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4507 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4508 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4509 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4510 | pattern_wildcard = NULL; |
| 4511 | pattern_left_label_end = pattern; |
| 4512 | while (*pattern_left_label_end != '.') { |
| 4513 | switch (*pattern_left_label_end) { |
| 4514 | case 0: |
| 4515 | /* End of label not found */ |
| 4516 | return 0; |
| 4517 | case '*': |
| 4518 | /* If there is more than one wildcards */ |
| 4519 | if (pattern_wildcard) |
| 4520 | return 0; |
| 4521 | pattern_wildcard = pattern_left_label_end; |
| 4522 | break; |
| 4523 | } |
| 4524 | pattern_left_label_end++; |
| 4525 | } |
| 4526 | |
| 4527 | /* If it's not trivial and there is no wildcard, it can't |
| 4528 | * match */ |
| 4529 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4530 | return 0; |
| 4531 | |
| 4532 | /* Make sure all labels match except the leftmost */ |
| 4533 | hostname_left_label_end = strchr(hostname, '.'); |
| 4534 | if (!hostname_left_label_end |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4535 | || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4536 | return 0; |
| 4537 | |
| 4538 | /* Make sure the leftmost label of the hostname is long enough |
| 4539 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4540 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4541 | return 0; |
| 4542 | |
| 4543 | /* Finally compare the string on either side of the |
| 4544 | * wildcard */ |
| 4545 | prefixlen = pattern_wildcard - pattern; |
| 4546 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4547 | if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0)) |
| 4548 | || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4549 | return 0; |
| 4550 | |
| 4551 | return 1; |
| 4552 | } |
| 4553 | |
| 4554 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4555 | { |
| 4556 | SSL *ssl; |
| 4557 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4558 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4559 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4560 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4561 | |
| 4562 | int depth; |
| 4563 | X509 *cert; |
| 4564 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4565 | int i; |
| 4566 | X509_NAME *cert_subject; |
| 4567 | char *str; |
| 4568 | |
| 4569 | if (ok == 0) |
| 4570 | return ok; |
| 4571 | |
| 4572 | 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] | 4573 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4574 | ssl_ctx = conn->xprt_ctx; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4575 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4576 | /* We're checking if the provided hostnames match the desired one. The |
| 4577 | * desired hostname comes from the SNI we presented if any, or if not |
| 4578 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4579 | * directive. If neither is set, we don't care about the name so the |
| 4580 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4581 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4582 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4583 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4584 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4585 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4586 | if (!servername) |
| 4587 | return ok; |
| 4588 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4589 | |
| 4590 | /* We only need to verify the CN on the actual server cert, |
| 4591 | * not the indirect CAs */ |
| 4592 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4593 | if (depth != 0) |
| 4594 | return ok; |
| 4595 | |
| 4596 | /* At this point, the cert is *not* OK unless we can find a |
| 4597 | * hostname match */ |
| 4598 | ok = 0; |
| 4599 | |
| 4600 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4601 | /* It seems like this might happen if verify peer isn't set */ |
| 4602 | if (!cert) |
| 4603 | return ok; |
| 4604 | |
| 4605 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4606 | if (alt_names) { |
| 4607 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4608 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4609 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4610 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4611 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4612 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4613 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4614 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4615 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4616 | OPENSSL_free(str); |
| 4617 | } |
| 4618 | } |
| 4619 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4620 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4621 | } |
| 4622 | |
| 4623 | cert_subject = X509_get_subject_name(cert); |
| 4624 | i = -1; |
| 4625 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4626 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4627 | ASN1_STRING *value; |
| 4628 | value = X509_NAME_ENTRY_get_data(entry); |
| 4629 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4630 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4631 | OPENSSL_free(str); |
| 4632 | } |
| 4633 | } |
| 4634 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4635 | /* report the mismatch and indicate if SNI was used or not */ |
| 4636 | if (!ok && !conn->err_code) |
| 4637 | 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] | 4638 | return ok; |
| 4639 | } |
| 4640 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4641 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4642 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4643 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4644 | struct proxy *curproxy = srv->proxy; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4645 | int cfgerr = 0; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4646 | SSL_CTX *ctx = srv->ssl_ctx.ctx; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4647 | |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4648 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4649 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4650 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Thierry Fournier | 383085f | 2013-01-24 14:15:43 +0100 | [diff] [blame] | 4651 | cfgerr++; |
| 4652 | } |
| 4653 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4654 | /* Automatic memory computations need to know we use SSL there */ |
| 4655 | global.ssl_used_backend = 1; |
| 4656 | |
| 4657 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4658 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4659 | 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] | 4660 | ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n", |
| 4661 | curproxy->id, srv->id, |
| 4662 | srv->conf.file, srv->conf.line); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4663 | cfgerr++; |
| 4664 | return cfgerr; |
| 4665 | } |
| 4666 | } |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 4667 | if (srv->use_ssl == 1) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4668 | srv->xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4669 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4670 | /* The context will be uninitialized if there wasn't any "cert" option |
| 4671 | * in the server line. */ |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4672 | if (!ctx) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4673 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 4674 | if (!ctx) { |
| 4675 | ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n", |
| 4676 | proxy_type_str(curproxy), curproxy->id, |
| 4677 | srv->id); |
| 4678 | cfgerr++; |
| 4679 | return cfgerr; |
| 4680 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4681 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4682 | srv->ssl_ctx.ctx = ctx; |
| 4683 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4684 | |
| 4685 | cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, srv->ssl_ctx.ctx); |
| 4686 | |
| 4687 | return cfgerr; |
| 4688 | } |
| 4689 | |
| 4690 | |
| 4691 | /* Initialize an SSL context that will be used on the backend side. |
| 4692 | * Returns an error count. |
| 4693 | */ |
| 4694 | int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx) |
| 4695 | { |
| 4696 | struct proxy *curproxy = srv->proxy; |
| 4697 | int cfgerr = 0; |
| 4698 | long options = |
| 4699 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4700 | SSL_OP_NO_SSLv2 | |
| 4701 | SSL_OP_NO_COMPRESSION; |
| 4702 | long mode = |
| 4703 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4704 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 4705 | SSL_MODE_RELEASE_BUFFERS | |
| 4706 | SSL_MODE_SMALL_BUFFERS; |
| 4707 | int verify = SSL_VERIFY_NONE; |
| 4708 | const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
| 4709 | int i, min, max, hole; |
| 4710 | int flags = MC_SSL_O_ALL; |
| 4711 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4712 | 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] | 4713 | ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. " |
| 4714 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4715 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4716 | else |
| 4717 | flags = conf_ssl_methods->flags; |
| 4718 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4719 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4720 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4721 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4722 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4723 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4724 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4725 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4726 | min = max = CONF_TLSV_NONE; |
| 4727 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4728 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4729 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4730 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4731 | if (min) { |
| 4732 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4733 | ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
| 4734 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4735 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4736 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4737 | hole = 0; |
| 4738 | } |
| 4739 | max = i; |
| 4740 | } |
| 4741 | else { |
| 4742 | min = max = i; |
| 4743 | } |
| 4744 | } |
| 4745 | else { |
| 4746 | if (min) |
| 4747 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4748 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4749 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4750 | ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
| 4751 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4752 | cfgerr += 1; |
| 4753 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4754 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4755 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4756 | /* 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] | 4757 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4758 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4759 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4760 | else |
| 4761 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4762 | if (flags & methodVersions[i].flag) |
| 4763 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4764 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4765 | /* 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] | 4766 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4767 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4768 | #endif |
| 4769 | |
| 4770 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4771 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4772 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4773 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4774 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4775 | if (global_ssl.async) |
| 4776 | mode |= SSL_MODE_ASYNC; |
| 4777 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4778 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4779 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4780 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 4781 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4782 | switch (srv->ssl_ctx.verify) { |
| 4783 | case SSL_SOCK_VERIFY_NONE: |
| 4784 | verify = SSL_VERIFY_NONE; |
| 4785 | break; |
| 4786 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4787 | verify = SSL_VERIFY_PEER; |
| 4788 | break; |
| 4789 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4790 | SSL_CTX_set_verify(ctx, verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4791 | (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] | 4792 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4793 | if (srv->ssl_ctx.ca_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4794 | /* set CAfile to verify */ |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4795 | if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4796 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to set CA file '%s'.\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4797 | curproxy->id, srv->id, |
| 4798 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4799 | cfgerr++; |
| 4800 | } |
| 4801 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4802 | else { |
| 4803 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4804 | 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", |
| 4805 | curproxy->id, srv->id, |
| 4806 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4807 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4808 | ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n", |
| 4809 | curproxy->id, srv->id, |
| 4810 | srv->conf.file, srv->conf.line); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4811 | cfgerr++; |
| 4812 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4813 | #ifdef X509_V_FLAG_CRL_CHECK |
| 4814 | if (srv->ssl_ctx.crl_file) { |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4815 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4816 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4817 | if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4818 | ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n", |
| 4819 | curproxy->id, srv->id, |
| 4820 | srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4821 | cfgerr++; |
| 4822 | } |
| 4823 | else { |
| 4824 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4825 | } |
| 4826 | } |
| 4827 | #endif |
| 4828 | } |
| 4829 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4830 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 4831 | SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4832 | if (srv->ssl_ctx.ciphers && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4833 | !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4834 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n", |
| 4835 | curproxy->id, srv->id, |
| 4836 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4837 | cfgerr++; |
| 4838 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4839 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4840 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4841 | if (srv->ssl_ctx.ciphersuites && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4842 | !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) { |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4843 | ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 4844 | curproxy->id, srv->id, |
| 4845 | srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites); |
| 4846 | cfgerr++; |
| 4847 | } |
| 4848 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 4849 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 4850 | if (srv->ssl_ctx.npn_str) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4851 | SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 4852 | #endif |
| 4853 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 4854 | if (srv->ssl_ctx.alpn_str) |
| 4855 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 4856 | #endif |
| 4857 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4858 | |
| 4859 | return cfgerr; |
| 4860 | } |
| 4861 | |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 4862 | /* |
| 4863 | * Create an initial CTX used to start the SSL connections. |
| 4864 | * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs. |
| 4865 | * Returns 0 if succeeded, or something >0 if not. |
| 4866 | */ |
| 4867 | #ifdef USE_QUIC |
| 4868 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 4869 | { |
| 4870 | if (bind_conf->xprt == xprt_get(XPRT_QUIC)) |
| 4871 | return ssl_quic_initial_ctx(bind_conf); |
| 4872 | else |
| 4873 | return ssl_sock_initial_ctx(bind_conf); |
| 4874 | } |
| 4875 | #else |
| 4876 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 4877 | { |
| 4878 | return ssl_sock_initial_ctx(bind_conf); |
| 4879 | } |
| 4880 | #endif |
| 4881 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4882 | /* 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] | 4883 | * be NULL, in which case nothing is done. Returns the number of errors |
| 4884 | * encountered. |
| 4885 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4886 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4887 | { |
| 4888 | struct ebmb_node *node; |
| 4889 | struct sni_ctx *sni; |
| 4890 | int err = 0; |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4891 | int errcode = 0; |
| 4892 | char *errmsg = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4893 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4894 | /* Automatic memory computations need to know we use SSL there */ |
| 4895 | global.ssl_used_frontend = 1; |
| 4896 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4897 | /* Make sure openssl opens /dev/urandom before the chroot */ |
| 4898 | if (!ssl_initialize_random()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4899 | ha_alert("OpenSSL random data generator initialization failed.\n"); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4900 | err++; |
| 4901 | } |
| 4902 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 4903 | if (!bind_conf->initial_ctx) { |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 4904 | err += ssl_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4905 | /* It should not be necessary to call this function, but it's |
| 4906 | necessary first to check and move all initialisation related |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 4907 | to initial_ctx in ssl_initial_ctx. */ |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4908 | errcode |= ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx, &errmsg); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4909 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4910 | if (bind_conf->default_ctx) |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4911 | errcode |= ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, &errmsg); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4912 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4913 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4914 | while (node) { |
| 4915 | sni = ebmb_entry(node, struct sni_ctx, name); |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4916 | if (!sni->order && sni->ctx != bind_conf->default_ctx) |
| 4917 | /* only initialize the CTX on its first occurrence and |
| 4918 | if it is not the default_ctx */ |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4919 | errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4920 | node = ebmb_next(node); |
| 4921 | } |
| 4922 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4923 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4924 | while (node) { |
| 4925 | sni = ebmb_entry(node, struct sni_ctx, name); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4926 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 4927 | /* only initialize the CTX on its first occurrence and |
| 4928 | if it is not the default_ctx */ |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4929 | errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg); |
| 4930 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4931 | node = ebmb_next(node); |
| 4932 | } |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4933 | |
| 4934 | if (errcode & ERR_WARN) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 4935 | ha_warning("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4936 | } else if (errcode & ERR_CODE) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 4937 | ha_alert("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4938 | err++; |
| 4939 | } |
| 4940 | |
| 4941 | free(errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4942 | return err; |
| 4943 | } |
| 4944 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4945 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 4946 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 4947 | * alerts are directly emitted since the rest of the stack does it below. |
| 4948 | */ |
| 4949 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 4950 | { |
| 4951 | struct proxy *px = bind_conf->frontend; |
| 4952 | int alloc_ctx; |
| 4953 | int err; |
| 4954 | |
| 4955 | if (!bind_conf->is_ssl) { |
| 4956 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4957 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 4958 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4959 | } |
| 4960 | return 0; |
| 4961 | } |
| 4962 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4963 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4964 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 4965 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4966 | } |
| 4967 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4968 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 4969 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 4970 | return -1; |
| 4971 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4972 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 4973 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 4974 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 4975 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 4976 | sizeof(*sh_ssl_sess_tree), |
| 4977 | ((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] | 4978 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 4979 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 4980 | 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"); |
| 4981 | else |
| 4982 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 4983 | return -1; |
| 4984 | } |
| 4985 | /* free block callback */ |
| 4986 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 4987 | /* init the root tree within the extra space */ |
| 4988 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 4989 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4990 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4991 | err = 0; |
| 4992 | /* initialize all certificate contexts */ |
| 4993 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 4994 | |
| 4995 | /* initialize CA variables if the certificates generation is enabled */ |
| 4996 | err += ssl_sock_load_ca(bind_conf); |
| 4997 | |
| 4998 | return -err; |
| 4999 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5000 | |
| 5001 | /* release ssl context allocated for servers. */ |
| 5002 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5003 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5004 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 5005 | if (srv->ssl_ctx.alpn_str) |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5006 | ha_free(&srv->ssl_ctx.alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5007 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5008 | #ifdef OPENSSL_NPN_NEGOTIATED |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5009 | if (srv->ssl_ctx.npn_str) |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5010 | ha_free(&srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5011 | #endif |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5012 | if (srv->ssl_ctx.reused_sess) { |
| 5013 | int i; |
| 5014 | |
| 5015 | for (i = 0; i < global.nbthread; i++) |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5016 | ha_free(&srv->ssl_ctx.reused_sess[i].ptr); |
| 5017 | ha_free(&srv->ssl_ctx.reused_sess); |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5018 | } |
| 5019 | |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5020 | if (srv->ssl_ctx.ctx) { |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5021 | SSL_CTX_free(srv->ssl_ctx.ctx); |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5022 | srv->ssl_ctx.ctx = NULL; |
| 5023 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5024 | } |
| 5025 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5026 | /* 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] | 5027 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5028 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5029 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5030 | { |
| 5031 | struct ebmb_node *node, *back; |
| 5032 | struct sni_ctx *sni; |
| 5033 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5034 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5035 | while (node) { |
| 5036 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5037 | back = ebmb_next(node); |
| 5038 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5039 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5040 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5041 | free(sni); |
| 5042 | node = back; |
| 5043 | } |
| 5044 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5045 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5046 | while (node) { |
| 5047 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5048 | back = ebmb_next(node); |
| 5049 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5050 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5051 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5052 | free(sni); |
| 5053 | node = back; |
| 5054 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5055 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5056 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5057 | bind_conf->initial_ctx = NULL; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5058 | SSL_CTX_free(bind_conf->default_ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5059 | bind_conf->default_ctx = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5060 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5061 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5062 | |
| 5063 | |
| 5064 | void ssl_sock_deinit() |
| 5065 | { |
| 5066 | crtlist_deinit(); /* must be free'd before the ckchs */ |
| 5067 | ckch_deinit(); |
| 5068 | } |
| 5069 | REGISTER_POST_DEINIT(ssl_sock_deinit); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5070 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5071 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5072 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5073 | { |
| 5074 | ssl_sock_free_ca(bind_conf); |
| 5075 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5076 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5077 | free(bind_conf->ca_sign_file); |
| 5078 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5079 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5080 | free(bind_conf->keys_ref->filename); |
| 5081 | free(bind_conf->keys_ref->tlskeys); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5082 | LIST_DELETE(&bind_conf->keys_ref->list); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5083 | free(bind_conf->keys_ref); |
| 5084 | } |
| 5085 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5086 | bind_conf->ca_sign_pass = NULL; |
| 5087 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5088 | } |
| 5089 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5090 | /* Load CA cert file and private key used to generate certificates */ |
| 5091 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5092 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5093 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5094 | struct proxy *px = bind_conf->frontend; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5095 | struct cert_key_and_chain *ckch = NULL; |
| 5096 | int ret = 0; |
| 5097 | char *err = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5098 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 5099 | if (!bind_conf->generate_certs) |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5100 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5101 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5102 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5103 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5104 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5105 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5106 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5107 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5108 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5109 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5110 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5111 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5112 | "no CA certificate File configured at [%s:%d].\n", |
| 5113 | px->id, bind_conf->file, bind_conf->line); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5114 | goto failed; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5115 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5116 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5117 | /* Allocate cert structure */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 5118 | ckch = calloc(1, sizeof(*ckch)); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5119 | if (!ckch) { |
| 5120 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n", |
| 5121 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5122 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5123 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5124 | |
| 5125 | /* Try to parse file */ |
| 5126 | if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) { |
| 5127 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n", |
| 5128 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err); |
Willy Tarreau | 01acf56 | 2021-02-26 21:12:15 +0100 | [diff] [blame] | 5129 | free(err); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5130 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5131 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5132 | |
| 5133 | /* Fail if missing cert or pkey */ |
| 5134 | if ((!ckch->cert) || (!ckch->key)) { |
| 5135 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n", |
| 5136 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5137 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5138 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5139 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5140 | /* Final assignment to bind */ |
| 5141 | bind_conf->ca_sign_ckch = ckch; |
| 5142 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5143 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5144 | failed: |
| 5145 | if (ckch) { |
| 5146 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 5147 | free(ckch); |
| 5148 | } |
| 5149 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5150 | bind_conf->generate_certs = 0; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5151 | ret++; |
| 5152 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5153 | } |
| 5154 | |
| 5155 | /* Release CA cert and private key used to generate certificated */ |
| 5156 | void |
| 5157 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5158 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5159 | if (bind_conf->ca_sign_ckch) { |
| 5160 | ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5161 | ha_free(&bind_conf->ca_sign_ckch); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5162 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5163 | } |
| 5164 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5165 | /* |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5166 | * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and |
| 5167 | * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings. |
| 5168 | * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom |
| 5169 | * data for the BIO and store <conn> as user data of the SSL session object. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 5170 | * This is the responsibility of the caller to check the validity of all the pointers passed |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5171 | * as parameters to this function. |
| 5172 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to |
| 5173 | * CO_ER_SSL_NO_MEM. |
| 5174 | */ |
| 5175 | int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx, |
| 5176 | SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx) |
| 5177 | { |
| 5178 | int retry = 1; |
| 5179 | |
| 5180 | retry: |
| 5181 | /* Alloc a new SSL session. */ |
| 5182 | *ssl = SSL_new(ssl_ctx); |
| 5183 | if (!*ssl) { |
| 5184 | if (!retry--) |
| 5185 | goto err; |
| 5186 | |
| 5187 | pool_gc(NULL); |
| 5188 | goto retry; |
| 5189 | } |
| 5190 | |
| 5191 | *bio = BIO_new(bio_meth); |
| 5192 | if (!*bio) { |
| 5193 | SSL_free(*ssl); |
| 5194 | *ssl = NULL; |
| 5195 | if (!retry--) |
| 5196 | goto err; |
| 5197 | |
| 5198 | pool_gc(NULL); |
| 5199 | goto retry; |
| 5200 | } |
| 5201 | |
| 5202 | BIO_set_data(*bio, ctx); |
| 5203 | SSL_set_bio(*ssl, *bio, *bio); |
| 5204 | |
| 5205 | /* set connection pointer. */ |
| 5206 | if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) { |
| 5207 | SSL_free(*ssl); |
| 5208 | *ssl = NULL; |
| 5209 | if (!retry--) |
| 5210 | goto err; |
| 5211 | |
| 5212 | pool_gc(NULL); |
| 5213 | goto retry; |
| 5214 | } |
| 5215 | |
| 5216 | return 0; |
| 5217 | |
| 5218 | err: |
| 5219 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5220 | return -1; |
| 5221 | } |
| 5222 | |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 5223 | /* This function is called when all the XPRT have been initialized. We can |
| 5224 | * now attempt to start the SSL handshake. |
| 5225 | */ |
| 5226 | static int ssl_sock_start(struct connection *conn, void *xprt_ctx) |
| 5227 | { |
| 5228 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5229 | |
| 5230 | if (ctx->xprt->start) { |
| 5231 | int ret; |
| 5232 | |
| 5233 | ret = ctx->xprt->start(conn, ctx->xprt_ctx); |
| 5234 | if (ret < 0) |
| 5235 | return ret; |
| 5236 | } |
| 5237 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 5238 | |
| 5239 | return 0; |
| 5240 | } |
| 5241 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5242 | /* |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5243 | * This function is called if SSL * context is not yet allocated. The function |
| 5244 | * is designed to be called before any other data-layer operation and sets the |
| 5245 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5246 | * It returns 0 on success and -1 in error case. |
| 5247 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5248 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5249 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5250 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5251 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5252 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5253 | return 0; |
| 5254 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5255 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5256 | if (!ctx) { |
| 5257 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5258 | return -1; |
| 5259 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5260 | ctx->wait_event.tasklet = tasklet_new(); |
| 5261 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5262 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5263 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5264 | return -1; |
| 5265 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5266 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5267 | ctx->wait_event.tasklet->context = ctx; |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5268 | ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5269 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5270 | ctx->sent_early_data = 0; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5271 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5272 | ctx->conn = conn; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5273 | ctx->subs = NULL; |
Emeric Brun | 5762a0d | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5274 | ctx->xprt_st = 0; |
| 5275 | ctx->xprt_ctx = NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5276 | |
| 5277 | /* Only work with sockets for now, this should be adapted when we'll |
| 5278 | * add QUIC support. |
| 5279 | */ |
| 5280 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5281 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5282 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5283 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5284 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5285 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5286 | if (global.maxsslconn && sslconns >= global.maxsslconn) { |
| 5287 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5288 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5289 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5290 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5291 | /* If it is in client mode initiate SSL session |
| 5292 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5293 | if (objt_server(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5294 | if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx, |
| 5295 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5296 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5297 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5298 | SSL_set_connect_state(ctx->ssl); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5299 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock)); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5300 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5301 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5302 | 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] | 5303 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5304 | SSL_SESSION_free(sess); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5305 | ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5306 | } else if (sess) { |
| 5307 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5308 | } |
| 5309 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5310 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock)); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5311 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5312 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5313 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5314 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 5315 | _HA_ATOMIC_INC(&sslconns); |
| 5316 | _HA_ATOMIC_INC(&totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5317 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5318 | return 0; |
| 5319 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5320 | else if (objt_listener(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5321 | struct bind_conf *bc = __objt_listener(conn->target)->bind_conf; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5322 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5323 | if (ssl_bio_and_sess_init(conn, bc->initial_ctx, |
| 5324 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5325 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5326 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5327 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5328 | if (bc->ssl_conf.early_data) { |
Frédéric Lécaille | 3139c1b | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5329 | b_alloc(&ctx->early_buf); |
| 5330 | SSL_set_max_early_data(ctx->ssl, |
| 5331 | /* Only allow early data if we managed to allocate |
| 5332 | * a buffer. |
| 5333 | */ |
| 5334 | (!b_is_null(&ctx->early_buf)) ? |
| 5335 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5336 | } |
| 5337 | #endif |
| 5338 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5339 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5340 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5341 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5342 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5343 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Willy Tarreau | a84986a | 2021-02-03 11:21:38 +0100 | [diff] [blame] | 5344 | if (bc->ssl_conf.early_data) |
| 5345 | conn->flags |= CO_FL_EARLY_SSL_HS; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5346 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5347 | |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 5348 | _HA_ATOMIC_INC(&sslconns); |
| 5349 | _HA_ATOMIC_INC(&totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5350 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5351 | return 0; |
| 5352 | } |
| 5353 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5354 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5355 | err: |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5356 | if (ctx && ctx->wait_event.tasklet) |
| 5357 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5358 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5359 | return -1; |
| 5360 | } |
| 5361 | |
| 5362 | |
| 5363 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5364 | * updates the FD status if it wants some polling before being called again. |
| 5365 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5366 | * otherwise it returns non-zero and removes itself from the connection's |
| 5367 | * flags (the bit is provided in <flag> by the caller). |
| 5368 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5369 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5370 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5371 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5372 | int ret; |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5373 | struct ssl_counters *counters = NULL; |
| 5374 | struct ssl_counters *counters_px = NULL; |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5375 | struct listener *li; |
| 5376 | struct server *srv; |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5377 | socklen_t lskerr; |
| 5378 | int skerr; |
| 5379 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5380 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5381 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5382 | return 0; |
| 5383 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5384 | /* get counters */ |
| 5385 | switch (obj_type(conn->target)) { |
| 5386 | case OBJ_TYPE_LISTENER: |
| 5387 | li = objt_listener(conn->target); |
| 5388 | counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module); |
| 5389 | counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe, |
| 5390 | &ssl_stats_module); |
| 5391 | break; |
| 5392 | |
| 5393 | case OBJ_TYPE_SERVER: |
| 5394 | srv = objt_server(conn->target); |
| 5395 | counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module); |
| 5396 | counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be, |
| 5397 | &ssl_stats_module); |
| 5398 | break; |
| 5399 | |
| 5400 | default: |
| 5401 | break; |
| 5402 | } |
| 5403 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5404 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5405 | goto out_error; |
| 5406 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5407 | /* don't start calculating a handshake on a dead connection */ |
| 5408 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) |
| 5409 | goto out_error; |
| 5410 | |
| 5411 | /* FIXME/WT: for now we don't have a clear way to inspect the connection |
| 5412 | * status from the lower layers, so let's check the FD directly. Ideally |
| 5413 | * the xprt layers should provide some status indicating their knowledge |
| 5414 | * of shutdowns or error. |
| 5415 | */ |
| 5416 | skerr = 0; |
| 5417 | lskerr = sizeof(skerr); |
| 5418 | if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) || |
| 5419 | skerr != 0) |
| 5420 | goto out_error; |
| 5421 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5422 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5423 | /* |
| 5424 | * Check if we have early data. If we do, we have to read them |
| 5425 | * before SSL_do_handshake() is called, And there's no way to |
| 5426 | * detect early data, except to try to read them |
| 5427 | */ |
| 5428 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5429 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5430 | |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5431 | while (1) { |
| 5432 | ret = SSL_read_early_data(ctx->ssl, |
| 5433 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5434 | &read_data); |
| 5435 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5436 | goto check_error; |
| 5437 | if (read_data > 0) { |
| 5438 | conn->flags |= CO_FL_EARLY_DATA; |
| 5439 | b_add(&ctx->early_buf, read_data); |
| 5440 | } |
| 5441 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5442 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5443 | if (!b_data(&ctx->early_buf)) |
| 5444 | b_free(&ctx->early_buf); |
| 5445 | break; |
| 5446 | } |
| 5447 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5448 | } |
| 5449 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5450 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5451 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5452 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5453 | * the reneg handshake. |
| 5454 | * Here we use SSL_peek as a workaround for reneg. |
| 5455 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 5456 | if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5457 | char c; |
| 5458 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5459 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5460 | if (ret <= 0) { |
| 5461 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5462 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5463 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5464 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5465 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5466 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5467 | 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] | 5468 | return 0; |
| 5469 | } |
| 5470 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5471 | /* handshake may have been completed but we have |
| 5472 | * no more data to read. |
| 5473 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5474 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5475 | ret = 1; |
| 5476 | goto reneg_ok; |
| 5477 | } |
| 5478 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5479 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5480 | 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] | 5481 | return 0; |
| 5482 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5483 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5484 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5485 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5486 | return 0; |
| 5487 | } |
| 5488 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5489 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5490 | /* if errno is null, then connection was successfully established */ |
| 5491 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5492 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5493 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5494 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5495 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5496 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5497 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5498 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5499 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5500 | /* 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] | 5501 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5502 | empty_handshake = state == TLS_ST_BEFORE; |
| 5503 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5504 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5505 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5506 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5507 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5508 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5509 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5510 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5511 | else |
| 5512 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5513 | } |
| 5514 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5515 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5516 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5517 | else |
| 5518 | conn->err_code = CO_ER_SSL_ABORT; |
| 5519 | } |
| 5520 | } |
| 5521 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5522 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5523 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5524 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5525 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5526 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5527 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5528 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5529 | goto out_error; |
| 5530 | } |
| 5531 | else { |
| 5532 | /* Fail on all other handshake errors */ |
| 5533 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5534 | * buffer, causing an RST to be emitted upon close() on |
| 5535 | * TCP sockets. We first try to drain possibly pending |
| 5536 | * data to avoid this as much as possible. |
| 5537 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5538 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5539 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5540 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5541 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5542 | goto out_error; |
| 5543 | } |
| 5544 | } |
| 5545 | /* read some data: consider handshake completed */ |
| 5546 | goto reneg_ok; |
| 5547 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5548 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5549 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5550 | if (ret != 1) { |
| 5551 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5552 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5553 | |
| 5554 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5555 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5556 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5557 | 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] | 5558 | return 0; |
| 5559 | } |
| 5560 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5561 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5562 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5563 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5564 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5565 | return 0; |
| 5566 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5567 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5568 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5569 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5570 | return 0; |
| 5571 | } |
| 5572 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5573 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5574 | /* if errno is null, then connection was successfully established */ |
| 5575 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5576 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5577 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5578 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5579 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5580 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5581 | #else |
| 5582 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5583 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5584 | /* 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] | 5585 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5586 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5587 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5588 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5589 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5590 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5591 | if (empty_handshake) { |
| 5592 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5593 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5594 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5595 | else |
| 5596 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5597 | } |
| 5598 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5599 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5600 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5601 | else |
| 5602 | conn->err_code = CO_ER_SSL_ABORT; |
| 5603 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5604 | } |
| 5605 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5606 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5607 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5608 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5609 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5610 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5611 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5612 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5613 | goto out_error; |
| 5614 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5615 | else { |
| 5616 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5617 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5618 | * buffer, causing an RST to be emitted upon close() on |
| 5619 | * TCP sockets. We first try to drain possibly pending |
| 5620 | * data to avoid this as much as possible. |
| 5621 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5622 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5623 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5624 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5625 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5626 | goto out_error; |
| 5627 | } |
| 5628 | } |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5629 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5630 | else { |
| 5631 | /* |
| 5632 | * If the server refused the early data, we have to send a |
| 5633 | * 425 to the client, as we no longer have the data to sent |
| 5634 | * them again. |
| 5635 | */ |
| 5636 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5637 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5638 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5639 | goto out_error; |
| 5640 | } |
| 5641 | } |
| 5642 | } |
| 5643 | #endif |
| 5644 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5645 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5646 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5647 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5648 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5649 | /* ASYNC engine API doesn't support moving read/write |
| 5650 | * buffers. So we disable ASYNC mode right after |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 5651 | * the handshake to avoid buffer overflow. |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5652 | */ |
| 5653 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5654 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5655 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5656 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5657 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5658 | if (objt_server(conn->target)) { |
| 5659 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5660 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5661 | 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] | 5662 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5663 | else { |
| 5664 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5665 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5666 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5667 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5668 | |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5669 | if (counters) { |
| 5670 | ++counters->sess; |
| 5671 | ++counters_px->sess; |
| 5672 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5673 | } |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5674 | else if (counters) { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5675 | ++counters->reused_sess; |
| 5676 | ++counters_px->reused_sess; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5677 | } |
| 5678 | |
| 5679 | /* The connection is now established at both layers, it's time to leave */ |
| 5680 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5681 | return 1; |
| 5682 | |
| 5683 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5684 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5685 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5686 | ERR_clear_error(); |
| 5687 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5688 | /* free resumed session if exists */ |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5689 | if (objt_server(conn->target)) { |
| 5690 | struct server *s = __objt_server(conn->target); |
| 5691 | /* RWLOCK: only rdlock the SSL cache even when writing in it because there is |
| 5692 | * one cache per thread, it only prevents to flush it from the CLI in |
| 5693 | * another thread */ |
| 5694 | |
| 5695 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5696 | if (s->ssl_ctx.reused_sess[tid].ptr) |
| 5697 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5698 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5699 | } |
| 5700 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5701 | if (counters) { |
| 5702 | ++counters->failed_handshake; |
| 5703 | ++counters_px->failed_handshake; |
| 5704 | } |
| 5705 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5706 | /* Fail on all other handshake errors */ |
| 5707 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5708 | if (!conn->err_code) |
| 5709 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5710 | return 0; |
| 5711 | } |
| 5712 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5713 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 5714 | * event subscriber <es> is not allowed to change from a previous call as long |
| 5715 | * as at least one event is still subscribed. The <event_type> must only be a |
| 5716 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, |
| 5717 | * unless the transport layer was already released. |
| 5718 | */ |
| 5719 | static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5720 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5721 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5722 | |
Olivier Houchard | 0ff2865 | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 5723 | if (!ctx) |
| 5724 | return -1; |
| 5725 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5726 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5727 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5728 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5729 | ctx->subs = es; |
| 5730 | es->events |= event_type; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5731 | |
| 5732 | /* we may have to subscribe to lower layers for new events */ |
| 5733 | event_type &= ~ctx->wait_event.events; |
| 5734 | if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5735 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5736 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5737 | } |
| 5738 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5739 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 5740 | * The <es> pointer is not allowed to differ from the one passed to the |
| 5741 | * subscribe() call. It always returns zero. |
| 5742 | */ |
| 5743 | static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5744 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5745 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5746 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5747 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5748 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5749 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5750 | es->events &= ~event_type; |
| 5751 | if (!es->events) |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5752 | ctx->subs = NULL; |
| 5753 | |
| 5754 | /* If we subscribed, and we're not doing the handshake, |
| 5755 | * then we subscribed because the upper layer asked for it, |
| 5756 | * as the upper layer is no longer interested, we can |
| 5757 | * unsubscribe too. |
| 5758 | */ |
| 5759 | event_type &= ctx->wait_event.events; |
| 5760 | if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5761 | conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5762 | |
| 5763 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5764 | } |
| 5765 | |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5766 | /* The connection has been taken over, so destroy the old tasklet and create |
| 5767 | * a new one. The original thread ID must be passed into orig_tid |
| 5768 | * It should be called with the takeover lock for the old thread held. |
| 5769 | * Returns 0 on success, and -1 on failure |
| 5770 | */ |
| 5771 | static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid) |
| 5772 | { |
| 5773 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5774 | struct tasklet *tl = tasklet_new(); |
| 5775 | |
| 5776 | if (!tl) |
| 5777 | return -1; |
| 5778 | |
| 5779 | ctx->wait_event.tasklet->context = NULL; |
| 5780 | tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid); |
| 5781 | ctx->wait_event.tasklet = tl; |
| 5782 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5783 | ctx->wait_event.tasklet->context = ctx; |
| 5784 | return 0; |
| 5785 | } |
| 5786 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5787 | /* notify the next xprt that the connection is about to become idle and that it |
| 5788 | * may be stolen at any time after the function returns and that any tasklet in |
| 5789 | * the chain must be careful before dereferencing its context. |
| 5790 | */ |
| 5791 | static void ssl_set_idle(struct connection *conn, void *xprt_ctx) |
| 5792 | { |
| 5793 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5794 | |
| 5795 | if (!ctx || !ctx->wait_event.tasklet) |
| 5796 | return; |
| 5797 | |
| 5798 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 5799 | if (ctx->xprt) |
| 5800 | xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx); |
| 5801 | } |
| 5802 | |
| 5803 | /* notify the next xprt that the connection is not idle anymore and that it may |
| 5804 | * not be stolen before the next xprt_set_idle(). |
| 5805 | */ |
| 5806 | static void ssl_set_used(struct connection *conn, void *xprt_ctx) |
| 5807 | { |
| 5808 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5809 | |
| 5810 | if (!ctx || !ctx->wait_event.tasklet) |
| 5811 | return; |
| 5812 | |
| 5813 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 5814 | if (ctx->xprt) |
| 5815 | xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx); |
| 5816 | } |
| 5817 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 5818 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 5819 | * Returns 0 on success, and non-zero on failure. |
| 5820 | */ |
| 5821 | 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) |
| 5822 | { |
| 5823 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5824 | |
| 5825 | if (oldxprt_ops != NULL) |
| 5826 | *oldxprt_ops = ctx->xprt; |
| 5827 | if (oldxprt_ctx != NULL) |
| 5828 | *oldxprt_ctx = ctx->xprt_ctx; |
| 5829 | ctx->xprt = toadd_ops; |
| 5830 | ctx->xprt_ctx = toadd_ctx; |
| 5831 | return 0; |
| 5832 | } |
| 5833 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 5834 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 5835 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 5836 | * XPRT. |
| 5837 | */ |
| 5838 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 5839 | { |
| 5840 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5841 | |
| 5842 | if (ctx->xprt_ctx == toremove_ctx) { |
| 5843 | ctx->xprt_ctx = newctx; |
| 5844 | ctx->xprt = newops; |
| 5845 | return 0; |
| 5846 | } |
| 5847 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 5848 | } |
| 5849 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 5850 | struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5851 | { |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5852 | struct tasklet *tl = (struct tasklet *)t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5853 | struct ssl_sock_ctx *ctx = context; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5854 | struct connection *conn; |
| 5855 | int conn_in_list; |
| 5856 | int ret = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5857 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5858 | if (state & TASK_F_USR1) { |
| 5859 | /* the tasklet was idling on an idle connection, it might have |
| 5860 | * been stolen, let's be careful! |
| 5861 | */ |
| 5862 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 5863 | if (tl->context == NULL) { |
| 5864 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 5865 | tasklet_free(tl); |
| 5866 | return NULL; |
| 5867 | } |
| 5868 | conn = ctx->conn; |
| 5869 | conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 5870 | if (conn_in_list) |
| 5871 | conn_delete_from_tree(&conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5872 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5873 | } else { |
| 5874 | conn = ctx->conn; |
| 5875 | conn_in_list = 0; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5876 | } |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5877 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5878 | /* First if we're doing an handshake, try that */ |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5879 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5880 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5881 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 5882 | /* handshake completed, leave the bulk queue */ |
Willy Tarreau | 4c48edb | 2021-03-09 17:58:02 +0100 | [diff] [blame] | 5883 | _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5884 | } |
| 5885 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5886 | /* If we had an error, or the handshake is done and I/O is available, |
| 5887 | * let the upper layer know. |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 5888 | * If no mux was set up yet, then call conn_create_mux() |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5889 | * we can't be sure conn_fd_handler() will be called again. |
| 5890 | */ |
| 5891 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 5892 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5893 | int woke = 0; |
| 5894 | |
| 5895 | /* On error, wake any waiter */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5896 | if (ctx->subs) { |
| 5897 | tasklet_wakeup(ctx->subs->tasklet); |
| 5898 | ctx->subs->events = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5899 | woke = 1; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5900 | ctx->subs = NULL; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5901 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5902 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5903 | /* If we're the first xprt for the connection, let the |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 5904 | * upper layers know. If we have no mux, create it, |
| 5905 | * and once we have a mux, call its wake method if we didn't |
| 5906 | * woke a tasklet already. |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5907 | */ |
| 5908 | if (ctx->conn->xprt_ctx == ctx) { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 5909 | if (!ctx->conn->mux) |
| 5910 | ret = conn_create_mux(ctx->conn); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5911 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5912 | ret = ctx->conn->mux->wake(ctx->conn); |
| 5913 | goto leave; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5914 | } |
| 5915 | } |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 5916 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5917 | /* If we have early data and somebody wants to receive, let them */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5918 | else if (b_data(&ctx->early_buf) && ctx->subs && |
| 5919 | ctx->subs->events & SUB_RETRY_RECV) { |
| 5920 | tasklet_wakeup(ctx->subs->tasklet); |
| 5921 | ctx->subs->events &= ~SUB_RETRY_RECV; |
| 5922 | if (!ctx->subs->events) |
| 5923 | ctx->subs = NULL; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5924 | } |
| 5925 | #endif |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5926 | leave: |
| 5927 | if (!ret && conn_in_list) { |
| 5928 | struct server *srv = objt_server(conn->target); |
| 5929 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5930 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5931 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5932 | ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5933 | else |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 5934 | ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 5935 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5936 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 5937 | return t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5938 | } |
| 5939 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5940 | /* 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] | 5941 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5942 | * buffer wraps, in which case a second call may be performed. The connection's |
| 5943 | * flags are updated with whatever special event is detected (error, read0, |
| 5944 | * empty). The caller is responsible for taking care of those events and |
| 5945 | * avoiding the call if inappropriate. The function does not call the |
| 5946 | * connection's polling update function, so the caller is responsible for this. |
| 5947 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5948 | 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] | 5949 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5950 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 5951 | ssize_t ret; |
| 5952 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5953 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5954 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5955 | goto out_error; |
| 5956 | |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 5957 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5958 | if (b_data(&ctx->early_buf)) { |
| 5959 | try = b_contig_space(buf); |
| 5960 | if (try > b_data(&ctx->early_buf)) |
| 5961 | try = b_data(&ctx->early_buf); |
| 5962 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 5963 | b_add(buf, try); |
| 5964 | b_del(&ctx->early_buf, try); |
| 5965 | if (b_data(&ctx->early_buf) == 0) |
| 5966 | b_free(&ctx->early_buf); |
| 5967 | return try; |
| 5968 | } |
| 5969 | #endif |
| 5970 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 5971 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5972 | /* a handshake was requested */ |
| 5973 | return 0; |
| 5974 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5975 | /* read the largest possible block. For this, we perform only one call |
| 5976 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 5977 | * in which case we accept to do it once again. A new attempt is made on |
| 5978 | * EINTR too. |
| 5979 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 5980 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5981 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5982 | try = b_contig_space(buf); |
| 5983 | if (!try) |
| 5984 | break; |
| 5985 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 5986 | if (try > count) |
| 5987 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 5988 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5989 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | f967c31 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 5990 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5991 | if (conn->flags & CO_FL_ERROR) { |
| 5992 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5993 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5994 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5995 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 5996 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5997 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5998 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5999 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6000 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6001 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6002 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6003 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6004 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6005 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6006 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6007 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6008 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6009 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6010 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6011 | break; |
| 6012 | } |
| 6013 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6014 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6015 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6016 | SUB_RETRY_RECV, |
| 6017 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6018 | /* handshake is running, and it may need to re-enable read */ |
| 6019 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6020 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6021 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6022 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6023 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6024 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6025 | break; |
| 6026 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6027 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6028 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 6029 | goto read0; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6030 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 6031 | * stack before shutting down the connection for |
| 6032 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6033 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 6034 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6035 | /* otherwise it's a real error */ |
| 6036 | goto out_error; |
| 6037 | } |
| 6038 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6039 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6040 | return done; |
| 6041 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6042 | clear_ssl_error: |
| 6043 | /* Clear openssl global errors stack */ |
| 6044 | ssl_sock_dump_errors(conn); |
| 6045 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6046 | read0: |
| 6047 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6048 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6049 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6050 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6051 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6052 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6053 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6054 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6055 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6056 | } |
| 6057 | |
| 6058 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6059 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 6060 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 6061 | * 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] | 6062 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 6063 | * a second call may be performed. The connection's flags are updated with |
| 6064 | * whatever special event is detected (error, empty). The caller is responsible |
| 6065 | * for taking care of those events and avoiding the call if inappropriate. The |
| 6066 | * 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] | 6067 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 6068 | * caller to take care of this. It's up to the caller to update the buffer's |
| 6069 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6070 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6071 | 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] | 6072 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6073 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6074 | ssize_t ret; |
| 6075 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6076 | |
| 6077 | done = 0; |
| 6078 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6079 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6080 | goto out_error; |
| 6081 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6082 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6083 | /* a handshake was requested */ |
| 6084 | return 0; |
| 6085 | |
| 6086 | /* send the largest possible block. For this we perform only one call |
| 6087 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 6088 | * in which case we accept to do it once again. |
| 6089 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6090 | while (count) { |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6091 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6092 | size_t written_data; |
| 6093 | #endif |
| 6094 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6095 | try = b_contig_data(buf, done); |
| 6096 | if (try > count) |
| 6097 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6098 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6099 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6100 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6101 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6102 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6103 | } |
| 6104 | else { |
| 6105 | /* we need to keep the information about the fact that |
| 6106 | * we're not limiting the upcoming send(), because if it |
| 6107 | * fails, we'll have to retry with at least as many data. |
| 6108 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6109 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6110 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6111 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6112 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6113 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6114 | unsigned int max_early; |
| 6115 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6116 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6117 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6118 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6119 | if (SSL_get0_session(ctx->ssl)) |
| 6120 | 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] | 6121 | else |
| 6122 | max_early = 0; |
| 6123 | } |
| 6124 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6125 | if (try + ctx->sent_early_data > max_early) { |
| 6126 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6127 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6128 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6129 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6130 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6131 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6132 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6133 | 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] | 6134 | if (ret == 1) { |
| 6135 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6136 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6137 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6138 | 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] | 6139 | /* Initiate the handshake, now */ |
| 6140 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6141 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6142 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6143 | } |
| 6144 | |
| 6145 | } else |
| 6146 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6147 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6148 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6149 | if (conn->flags & CO_FL_ERROR) { |
| 6150 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6151 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6152 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6153 | if (ret > 0) { |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 6154 | /* A send succeeded, so we can consider ourself connected */ |
| 6155 | conn->flags &= ~CO_FL_WAIT_L4L6; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6156 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6157 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6158 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6159 | } |
| 6160 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6161 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6162 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6163 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6164 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6165 | /* handshake is running, and it may need to re-enable write */ |
| 6166 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6167 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6168 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6169 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6170 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6171 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6172 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6173 | break; |
| 6174 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6175 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6176 | break; |
| 6177 | } |
| 6178 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6179 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6180 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6181 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6182 | SUB_RETRY_RECV, |
| 6183 | &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6184 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6185 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6186 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6187 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6188 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6189 | break; |
| 6190 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6191 | goto out_error; |
| 6192 | } |
| 6193 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6194 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6195 | return done; |
| 6196 | |
| 6197 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6198 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6199 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6200 | ERR_clear_error(); |
| 6201 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6202 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6203 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6204 | } |
| 6205 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6206 | static void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6207 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6208 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6209 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6210 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6211 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6212 | if (ctx->wait_event.events != 0) |
| 6213 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6214 | ctx->wait_event.events, |
| 6215 | &ctx->wait_event); |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6216 | if (ctx->subs) { |
| 6217 | ctx->subs->events = 0; |
| 6218 | tasklet_wakeup(ctx->subs->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6219 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6220 | |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6221 | if (ctx->xprt->close) |
| 6222 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6223 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6224 | if (global_ssl.async) { |
| 6225 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6226 | size_t num_all_fds = 0; |
| 6227 | int i; |
| 6228 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6229 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6230 | if (num_all_fds > 32) { |
| 6231 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6232 | return; |
| 6233 | } |
| 6234 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6235 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6236 | |
| 6237 | /* If an async job is pending, we must try to |
| 6238 | to catch the end using polling before calling |
| 6239 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6240 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6241 | for (i=0 ; i < num_all_fds ; i++) { |
| 6242 | /* switch on an handler designed to |
| 6243 | * handle the SSL_free |
| 6244 | */ |
| 6245 | afd = all_fd[i]; |
| 6246 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6247 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6248 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6249 | /* To ensure that the fd cache won't be used |
| 6250 | * and we'll catch a real RD event. |
| 6251 | */ |
| 6252 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6253 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6254 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6255 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6256 | _HA_ATOMIC_INC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6257 | return; |
| 6258 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6259 | /* Else we can remove the fds from the fdtab |
| 6260 | * and call SSL_free. |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6261 | * note: we do a fd_stop_both and not a delete |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6262 | * because the fd is owned by the engine. |
| 6263 | * the engine is responsible to close |
| 6264 | */ |
| 6265 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6266 | fd_stop_both(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6267 | } |
| 6268 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6269 | SSL_free(ctx->ssl); |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6270 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6271 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6272 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6273 | _HA_ATOMIC_DEC(&sslconns); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6274 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6275 | } |
| 6276 | |
| 6277 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6278 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6279 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6280 | 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] | 6281 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6282 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6283 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6284 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6285 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6286 | if (!clean) |
| 6287 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6288 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6289 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6290 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6291 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6292 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6293 | ERR_clear_error(); |
| 6294 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6295 | } |
| 6296 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6297 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6298 | /* used for ppv2 pkey algo (can be used for logging) */ |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6299 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
| 6300 | { |
| 6301 | struct ssl_sock_ctx *ctx; |
| 6302 | X509 *crt; |
| 6303 | |
| 6304 | if (!ssl_sock_is_ssl(conn)) |
| 6305 | return 0; |
| 6306 | |
| 6307 | ctx = conn->xprt_ctx; |
| 6308 | |
| 6309 | crt = SSL_get_certificate(ctx->ssl); |
| 6310 | if (!crt) |
| 6311 | return 0; |
| 6312 | |
| 6313 | return cert_get_pkey_algo(crt, out); |
| 6314 | } |
| 6315 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6316 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6317 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6318 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6319 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6320 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6321 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6322 | X509 *crt; |
| 6323 | |
| 6324 | if (!ssl_sock_is_ssl(conn)) |
| 6325 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6326 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6327 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6328 | if (!crt) |
| 6329 | return NULL; |
| 6330 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6331 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6332 | } |
| 6333 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6334 | /* used for ppv2 authority */ |
| 6335 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6336 | { |
| 6337 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6338 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6339 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6340 | if (!ssl_sock_is_ssl(conn)) |
| 6341 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6342 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6343 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6344 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6345 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6346 | #endif |
| 6347 | } |
| 6348 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6349 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6350 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6351 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6352 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6353 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6354 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6355 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6356 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6357 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6358 | } |
| 6359 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6360 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6361 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6362 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6363 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6364 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6365 | if (!ssl_sock_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6366 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6367 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6368 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6369 | } |
| 6370 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6371 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6372 | { |
| 6373 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6374 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6375 | |
Olivier Houchard | e488ea8 | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6376 | if (!ssl_sock_is_ssl(conn)) |
| 6377 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6378 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6379 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6380 | #endif |
| 6381 | } |
| 6382 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6383 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6384 | * to disable SNI. |
| 6385 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6386 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6387 | { |
| 6388 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6389 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6390 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6391 | char *prev_name; |
| 6392 | |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6393 | if (!ssl_sock_is_ssl(conn)) |
| 6394 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6395 | ctx = conn->xprt_ctx; |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6396 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6397 | /* if the SNI changes, we must destroy the reusable context so that a |
| 6398 | * new connection will present a new SNI. As an optimization we could |
| 6399 | * later imagine having a small cache of ssl_ctx to hold a few SNI per |
| 6400 | * server. |
| 6401 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6402 | prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6403 | if ((!prev_name && hostname) || |
| 6404 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6405 | SSL_set_session(ctx->ssl, NULL); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6406 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6407 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6408 | #endif |
| 6409 | } |
| 6410 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6411 | /* Extract peer certificate's common name into the chunk dest |
| 6412 | * Returns |
| 6413 | * the len of the extracted common name |
| 6414 | * or 0 if no CN found in DN |
| 6415 | * or -1 on error case (i.e. no peer certificate) |
| 6416 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6417 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6418 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6419 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6420 | struct ssl_sock_ctx *ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6421 | X509 *crt = NULL; |
| 6422 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6423 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6424 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6425 | .area = (char *)&find_cn, |
| 6426 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6427 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6428 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6429 | |
| 6430 | if (!ssl_sock_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6431 | goto out; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6432 | ctx = conn->xprt_ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6433 | |
| 6434 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6435 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6436 | if (!crt) |
| 6437 | goto out; |
| 6438 | |
| 6439 | name = X509_get_subject_name(crt); |
| 6440 | if (!name) |
| 6441 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6442 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6443 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6444 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6445 | if (crt) |
| 6446 | X509_free(crt); |
| 6447 | |
| 6448 | return result; |
| 6449 | } |
| 6450 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6451 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6452 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6453 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6454 | struct ssl_sock_ctx *ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6455 | X509 *crt = NULL; |
| 6456 | |
| 6457 | if (!ssl_sock_is_ssl(conn)) |
| 6458 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6459 | ctx = conn->xprt_ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6460 | |
| 6461 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6462 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6463 | if (!crt) |
| 6464 | return 0; |
| 6465 | |
| 6466 | X509_free(crt); |
| 6467 | return 1; |
| 6468 | } |
| 6469 | |
| 6470 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6471 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6472 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6473 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6474 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6475 | if (!ssl_sock_is_ssl(conn)) |
| 6476 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6477 | ctx = conn->xprt_ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6478 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6479 | } |
| 6480 | |
| 6481 | /* returns result from SSL verify */ |
| 6482 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6483 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6484 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6485 | |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6486 | if (!ssl_sock_is_ssl(conn)) |
| 6487 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6488 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6489 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6490 | } |
| 6491 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6492 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6493 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6494 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6495 | * freed by the caller. NPN is also checked if available since older versions |
| 6496 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6497 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6498 | 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] | 6499 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6500 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6501 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6502 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6503 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6504 | return 0; |
| 6505 | |
| 6506 | *str = NULL; |
| 6507 | |
| 6508 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6509 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6510 | if (*str) |
| 6511 | return 1; |
| 6512 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6513 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6514 | 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] | 6515 | if (*str) |
| 6516 | return 1; |
| 6517 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6518 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6519 | return 0; |
| 6520 | } |
| 6521 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6522 | /* "issuers-chain-path" load chain certificate in global */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6523 | int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6524 | { |
| 6525 | X509 *ca; |
| 6526 | X509_NAME *name = NULL; |
| 6527 | ASN1_OCTET_STRING *skid = NULL; |
| 6528 | STACK_OF(X509) *chain = NULL; |
| 6529 | struct issuer_chain *issuer; |
| 6530 | struct eb64_node *node; |
| 6531 | char *path; |
| 6532 | u64 key; |
| 6533 | int ret = 0; |
| 6534 | |
| 6535 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 6536 | if (chain == NULL) { |
| 6537 | chain = sk_X509_new_null(); |
| 6538 | skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL); |
| 6539 | name = X509_get_subject_name(ca); |
| 6540 | } |
| 6541 | if (!sk_X509_push(chain, ca)) { |
| 6542 | X509_free(ca); |
| 6543 | goto end; |
| 6544 | } |
| 6545 | } |
| 6546 | if (!chain) { |
| 6547 | memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp); |
| 6548 | goto end; |
| 6549 | } |
| 6550 | if (!skid) { |
| 6551 | memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp); |
| 6552 | goto end; |
| 6553 | } |
| 6554 | if (!name) { |
| 6555 | memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp); |
| 6556 | goto end; |
| 6557 | } |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6558 | key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0); |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6559 | for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) { |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6560 | issuer = container_of(node, typeof(*issuer), node); |
| 6561 | if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) { |
| 6562 | memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path); |
| 6563 | goto end; |
| 6564 | } |
| 6565 | } |
| 6566 | issuer = calloc(1, sizeof *issuer); |
| 6567 | path = strdup(fp); |
| 6568 | if (!issuer || !path) { |
| 6569 | free(issuer); |
| 6570 | free(path); |
| 6571 | goto end; |
| 6572 | } |
| 6573 | issuer->node.key = key; |
| 6574 | issuer->path = path; |
| 6575 | issuer->chain = chain; |
| 6576 | chain = NULL; |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6577 | eb64_insert(&cert_issuer_tree, &issuer->node); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6578 | ret = 1; |
| 6579 | end: |
| 6580 | if (skid) |
| 6581 | ASN1_OCTET_STRING_free(skid); |
| 6582 | if (chain) |
| 6583 | sk_X509_pop_free(chain, X509_free); |
| 6584 | return ret; |
| 6585 | } |
| 6586 | |
William Lallemand | da8584c | 2020-05-14 10:14:37 +0200 | [diff] [blame] | 6587 | struct issuer_chain* ssl_get0_issuer_chain(X509 *cert) |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6588 | { |
| 6589 | AUTHORITY_KEYID *akid; |
| 6590 | struct issuer_chain *issuer = NULL; |
| 6591 | |
| 6592 | akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL); |
William Lallemand | f69cd68 | 2020-11-19 16:24:13 +0100 | [diff] [blame] | 6593 | if (akid && akid->keyid) { |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6594 | struct eb64_node *node; |
| 6595 | u64 hk; |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6596 | hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0); |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6597 | for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) { |
| 6598 | struct issuer_chain *ti = container_of(node, typeof(*issuer), node); |
| 6599 | if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) { |
| 6600 | issuer = ti; |
| 6601 | break; |
| 6602 | } |
| 6603 | } |
| 6604 | AUTHORITY_KEYID_free(akid); |
| 6605 | } |
| 6606 | return issuer; |
| 6607 | } |
| 6608 | |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6609 | void ssl_free_global_issuers(void) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6610 | { |
| 6611 | struct eb64_node *node, *back; |
| 6612 | struct issuer_chain *issuer; |
| 6613 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6614 | node = eb64_first(&cert_issuer_tree); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6615 | while (node) { |
| 6616 | issuer = container_of(node, typeof(*issuer), node); |
| 6617 | back = eb64_next(node); |
| 6618 | eb64_delete(node); |
| 6619 | free(issuer->path); |
| 6620 | sk_X509_pop_free(issuer->chain, X509_free); |
| 6621 | free(issuer); |
| 6622 | node = back; |
| 6623 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6624 | } |
| 6625 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 6626 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6627 | static int ssl_check_async_engine_count(void) { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 6628 | int err_code = ERR_NONE; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6629 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6630 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 6631 | 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] | 6632 | err_code = ERR_ABORT; |
| 6633 | } |
| 6634 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 6635 | } |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 6636 | #endif |
| 6637 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6638 | /* "show fd" helper to dump ssl internals. Warning: the output buffer is often |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6639 | * the common trash! It returns non-zero if the connection entry looks suspicious. |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6640 | */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 6641 | static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx) |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6642 | { |
| 6643 | const struct ssl_sock_ctx *sctx = ctx; |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6644 | int ret = 0; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6645 | |
| 6646 | if (!sctx) |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6647 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6648 | |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6649 | if (sctx->conn != conn) { |
| 6650 | chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn); |
| 6651 | ret = 1; |
| 6652 | } |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6653 | chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st); |
| 6654 | |
| 6655 | if (sctx->xprt) { |
| 6656 | chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name); |
| 6657 | if (sctx->xprt_ctx) |
| 6658 | chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx); |
| 6659 | } |
| 6660 | |
| 6661 | chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6662 | |
| 6663 | /* as soon as a shutdown is reported the lower layer unregisters its |
| 6664 | * subscriber, so the situations below are transient and rare enough to |
| 6665 | * be reported as suspicious. In any case they shouldn't last. |
| 6666 | */ |
| 6667 | if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR))) |
| 6668 | ret = 1; |
| 6669 | if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR))) |
| 6670 | ret = 1; |
| 6671 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6672 | chunk_appendf(&trash, " .subs=%p", sctx->subs); |
| 6673 | if (sctx->subs) { |
| 6674 | chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6675 | if (sctx->subs->tasklet->calls >= 1000000) |
| 6676 | ret = 1; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6677 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 6678 | sctx->subs->tasklet->calls, |
| 6679 | sctx->subs->tasklet->context); |
| 6680 | resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process); |
| 6681 | chunk_appendf(&trash, ")"); |
| 6682 | } |
| 6683 | chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data); |
| 6684 | chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6685 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6686 | } |
| 6687 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6688 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6689 | /* This function is used with TLS ticket keys management. It permits to browse |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6690 | * each reference. The variable <ref> must point to the current node's list |
| 6691 | * element (which starts by the root), and <end> must point to the root node. |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6692 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6693 | static inline |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6694 | struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6695 | { |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6696 | /* Get next list entry. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6697 | ref = ref->n; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6698 | |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6699 | /* If the entry is the last of the list, return NULL. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6700 | if (ref == end) |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6701 | return NULL; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6702 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6703 | return LIST_ELEM(ref, struct tls_keys_ref *, list); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6704 | } |
| 6705 | |
| 6706 | static inline |
| 6707 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 6708 | { |
| 6709 | int id; |
| 6710 | char *error; |
| 6711 | |
| 6712 | /* If the reference starts by a '#', this is numeric id. */ |
| 6713 | if (reference[0] == '#') { |
| 6714 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 6715 | id = strtol(reference + 1, &error, 10); |
| 6716 | if (*error != '\0') |
| 6717 | return NULL; |
| 6718 | |
| 6719 | /* Perform the unique id lookup. */ |
| 6720 | return tlskeys_ref_lookupid(id); |
| 6721 | } |
| 6722 | |
| 6723 | /* Perform the string lookup. */ |
| 6724 | return tlskeys_ref_lookup(reference); |
| 6725 | } |
| 6726 | #endif |
| 6727 | |
| 6728 | |
| 6729 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 6730 | |
| 6731 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 6732 | |
| 6733 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 6734 | return cli_io_handler_tlskeys_files(appctx); |
| 6735 | } |
| 6736 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6737 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 6738 | * (next index to be dumped), and cli.p0 (next key reference). |
| 6739 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6740 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 6741 | |
| 6742 | struct stream_interface *si = appctx->owner; |
| 6743 | |
| 6744 | switch (appctx->st2) { |
| 6745 | case STAT_ST_INIT: |
| 6746 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 6747 | * quit the function with returning 0. The function is called |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6748 | * later and restart at the state "STAT_ST_INIT". |
| 6749 | */ |
| 6750 | chunk_reset(&trash); |
| 6751 | |
| 6752 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 6753 | chunk_appendf(&trash, "# id secret\n"); |
| 6754 | else |
| 6755 | chunk_appendf(&trash, "# id (file)\n"); |
| 6756 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6757 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6758 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6759 | return 0; |
| 6760 | } |
| 6761 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6762 | /* Now, we start the browsing of the references lists. |
| 6763 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 6764 | * available field of this pointer is <list>. It is used with the function |
| 6765 | * tlskeys_list_get_next() for retruning the first available entry |
| 6766 | */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6767 | if (appctx->ctx.cli.p0 == NULL) |
| 6768 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6769 | |
| 6770 | appctx->st2 = STAT_ST_LIST; |
| 6771 | /* fall through */ |
| 6772 | |
| 6773 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6774 | while (appctx->ctx.cli.p0) { |
| 6775 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6776 | |
| 6777 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6778 | 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] | 6779 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6780 | |
| 6781 | if (appctx->ctx.cli.i1 == 0) |
| 6782 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 6783 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6784 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6785 | int head; |
| 6786 | |
| 6787 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 6788 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6789 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6790 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6791 | |
| 6792 | chunk_reset(t2); |
| 6793 | /* 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] | 6794 | if (ref->key_size_bits == 128) { |
| 6795 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 6796 | sizeof(struct tls_sess_key_128), |
| 6797 | t2->area, t2->size); |
| 6798 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 6799 | t2->area); |
| 6800 | } |
| 6801 | else if (ref->key_size_bits == 256) { |
| 6802 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 6803 | sizeof(struct tls_sess_key_256), |
| 6804 | t2->area, t2->size); |
| 6805 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 6806 | t2->area); |
| 6807 | } |
| 6808 | else { |
| 6809 | /* This case should never happen */ |
| 6810 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1); |
| 6811 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6812 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6813 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6814 | /* let's try again later from this stream. We add ourselves into |
| 6815 | * this stream's users so that it can remove us upon termination. |
| 6816 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6817 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6818 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6819 | return 0; |
| 6820 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6821 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6822 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6823 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6824 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6825 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6826 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6827 | /* let's try again later from this stream. We add ourselves into |
| 6828 | * this stream's users so that it can remove us upon termination. |
| 6829 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6830 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6831 | return 0; |
| 6832 | } |
| 6833 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6834 | 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] | 6835 | break; |
| 6836 | |
| 6837 | /* get next list entry and check the end of the list */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6838 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6839 | } |
| 6840 | |
| 6841 | appctx->st2 = STAT_ST_FIN; |
| 6842 | /* fall through */ |
| 6843 | |
| 6844 | default: |
| 6845 | appctx->st2 = STAT_ST_FIN; |
| 6846 | return 1; |
| 6847 | } |
| 6848 | return 0; |
| 6849 | } |
| 6850 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6851 | /* 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] | 6852 | 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] | 6853 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6854 | /* no parameter, shows only file list */ |
| 6855 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6856 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6857 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 6858 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6859 | } |
| 6860 | |
| 6861 | if (args[2][0] == '*') { |
| 6862 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6863 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6864 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6865 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6866 | if (!appctx->ctx.cli.p0) |
| 6867 | return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6868 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6869 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 6870 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6871 | } |
| 6872 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 6873 | 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] | 6874 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6875 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6876 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6877 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6878 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6879 | if (!*args[3] || !*args[4]) |
| 6880 | return cli_err(appctx, "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6881 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6882 | ref = tlskeys_ref_lookup_ref(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6883 | if (!ref) |
| 6884 | return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6885 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6886 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6887 | if (ret < 0) |
| 6888 | return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n"); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 6889 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6890 | trash.data = ret; |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6891 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) |
| 6892 | return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6893 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6894 | return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6895 | } |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6896 | #endif |
William Lallemand | 419e634 | 2020-04-08 12:05:39 +0200 | [diff] [blame] | 6897 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 6898 | 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] | 6899 | { |
| 6900 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 6901 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6902 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 6903 | |
| 6904 | if (!payload) |
| 6905 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6906 | |
| 6907 | /* Expect one parameter: the new response in base64 encoding */ |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6908 | if (!*payload) |
| 6909 | return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n"); |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 6910 | |
| 6911 | /* remove \r and \n from the payload */ |
| 6912 | for (i = 0, j = 0; payload[i]; i++) { |
| 6913 | if (payload[i] == '\r' || payload[i] == '\n') |
| 6914 | continue; |
| 6915 | payload[j++] = payload[i]; |
| 6916 | } |
| 6917 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6918 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6919 | ret = base64dec(payload, j, trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6920 | if (ret < 0) |
| 6921 | return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6922 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 6923 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6924 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6925 | if (err) |
| 6926 | return cli_dynerr(appctx, memprintf(&err, "%s.\n", err)); |
| 6927 | else |
| 6928 | return cli_err(appctx, "Failed to update OCSP response.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6929 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6930 | |
| 6931 | return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6932 | #else |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 6933 | return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6934 | #endif |
| 6935 | |
Elliot Otchet | 71f8297 | 2020-01-15 08:12:14 -0500 | [diff] [blame] | 6936 | } |
| 6937 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6938 | /* register cli keywords */ |
| 6939 | static struct cli_kw_list cli_kws = {{ },{ |
| 6940 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 6941 | { { "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] | 6942 | { { "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] | 6943 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6944 | { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6945 | { { NULL }, NULL, NULL, NULL } |
| 6946 | }}; |
| 6947 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 6948 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6949 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 6950 | /* transport-layer operations for SSL sockets */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6951 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6952 | .snd_buf = ssl_sock_from_buf, |
| 6953 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 6954 | .subscribe = ssl_subscribe, |
| 6955 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 6956 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 6957 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6958 | .rcv_pipe = NULL, |
| 6959 | .snd_pipe = NULL, |
| 6960 | .shutr = NULL, |
| 6961 | .shutw = ssl_sock_shutw, |
| 6962 | .close = ssl_sock_close, |
| 6963 | .init = ssl_sock_init, |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 6964 | .start = ssl_sock_start, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 6965 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 6966 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 6967 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 6968 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6969 | .get_alpn = ssl_sock_get_alpn, |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6970 | .takeover = ssl_takeover, |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6971 | .set_idle = ssl_set_idle, |
| 6972 | .set_used = ssl_set_used, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 6973 | .name = "SSL", |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6974 | .show_fd = ssl_sock_show_fd, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6975 | }; |
| 6976 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6977 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 6978 | struct session *sess, struct stream *s, int flags) |
| 6979 | { |
| 6980 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 6981 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6982 | |
| 6983 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 6984 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6985 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 6986 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6987 | 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] | 6988 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 6989 | s->req.flags |= CF_READ_NULL; |
| 6990 | return ACT_RET_YIELD; |
| 6991 | } |
| 6992 | } |
| 6993 | return (ACT_RET_CONT); |
| 6994 | } |
| 6995 | |
| 6996 | 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) |
| 6997 | { |
| 6998 | rule->action_ptr = ssl_action_wait_for_hs; |
| 6999 | |
| 7000 | return ACT_RET_PRS_OK; |
| 7001 | } |
| 7002 | |
| 7003 | static struct action_kw_list http_req_actions = {ILH, { |
| 7004 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 7005 | { /* END */ } |
| 7006 | }}; |
| 7007 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7008 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 7009 | |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7010 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7011 | |
| 7012 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7013 | { |
| 7014 | if (ptr) { |
| 7015 | chunk_destroy(ptr); |
| 7016 | free(ptr); |
| 7017 | } |
| 7018 | } |
| 7019 | |
| 7020 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7021 | |
| 7022 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7023 | static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7024 | { |
| 7025 | struct ocsp_cbk_arg *ocsp_arg; |
| 7026 | |
| 7027 | if (ptr) { |
| 7028 | ocsp_arg = ptr; |
| 7029 | |
| 7030 | if (ocsp_arg->is_single) { |
| 7031 | ssl_sock_free_ocsp(ocsp_arg->s_ocsp); |
| 7032 | ocsp_arg->s_ocsp = NULL; |
| 7033 | } else { |
| 7034 | int i; |
| 7035 | |
| 7036 | for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) { |
| 7037 | ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]); |
| 7038 | ocsp_arg->m_ocsp[i] = NULL; |
| 7039 | } |
| 7040 | } |
| 7041 | free(ocsp_arg); |
| 7042 | } |
| 7043 | } |
| 7044 | #endif |
| 7045 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7046 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7047 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7048 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7049 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7050 | |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 7051 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7052 | static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7053 | { |
| 7054 | struct ssl_keylog *keylog; |
| 7055 | |
| 7056 | if (!ptr) |
| 7057 | return; |
| 7058 | |
| 7059 | keylog = ptr; |
| 7060 | |
| 7061 | pool_free(pool_head_ssl_keylog_str, keylog->client_random); |
| 7062 | pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret); |
| 7063 | pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret); |
| 7064 | pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret); |
| 7065 | pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0); |
| 7066 | pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0); |
| 7067 | pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret); |
| 7068 | pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret); |
| 7069 | |
| 7070 | pool_free(pool_head_ssl_keylog, ptr); |
| 7071 | } |
| 7072 | #endif |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7073 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7074 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7075 | static void __ssl_sock_init(void) |
| 7076 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7077 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7078 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7079 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7080 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7081 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7082 | if (global_ssl.listen_default_ciphers) |
| 7083 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 7084 | if (global_ssl.connect_default_ciphers) |
| 7085 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 7086 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7087 | if (global_ssl.listen_default_ciphersuites) |
| 7088 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 7089 | if (global_ssl.connect_default_ciphersuites) |
| 7090 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 7091 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 7092 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 7093 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7094 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7095 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7096 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7097 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7098 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7099 | n = sk_SSL_COMP_num(cm); |
| 7100 | while (n--) { |
| 7101 | (void) sk_SSL_COMP_pop(cm); |
| 7102 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7103 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7104 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7105 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7106 | ssl_locking_init(); |
| 7107 | #endif |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7108 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7109 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 7110 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7111 | |
| 7112 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7113 | ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func); |
| 7114 | #endif |
| 7115 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 7116 | 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] | 7117 | ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func); |
Ilya Shipitsin | 04a5a44 | 2020-11-03 14:15:38 +0500 | [diff] [blame] | 7118 | #ifdef HAVE_OPENSSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7119 | ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func); |
| 7120 | #endif |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7121 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7122 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7123 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7124 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 7125 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7126 | hap_register_post_check(tlskeys_finalize_config); |
| 7127 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7128 | |
| 7129 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 7130 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 7131 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7132 | hap_register_post_deinit(ssl_free_global_issuers); |
| 7133 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7134 | #ifndef OPENSSL_NO_DH |
| 7135 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7136 | hap_register_post_deinit(ssl_free_dh); |
| 7137 | #endif |
| 7138 | #ifndef OPENSSL_NO_ENGINE |
| 7139 | hap_register_post_deinit(ssl_free_engines); |
| 7140 | #endif |
| 7141 | /* Load SSL string for the verbose & debug mode. */ |
| 7142 | ERR_load_SSL_strings(); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7143 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
| 7144 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 7145 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 7146 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 7147 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 7148 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 7149 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 7150 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 7151 | |
| 7152 | HA_SPIN_INIT(&ckch_lock); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7153 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 7154 | /* Try to register dedicated SSL/TLS protocol message callbacks for |
| 7155 | * heartbleed attack (CVE-2014-0160) and clienthello. |
| 7156 | */ |
| 7157 | hap_register_post_check(ssl_sock_register_msg_callbacks); |
| 7158 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7159 | /* Try to free all callbacks that were registered by using |
| 7160 | * ssl_sock_register_msg_callback(). |
| 7161 | */ |
| 7162 | hap_register_post_deinit(ssl_sock_unregister_msg_callbacks); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7163 | } |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 7164 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7165 | /* Compute and register the version string */ |
| 7166 | static void ssl_register_build_options() |
| 7167 | { |
| 7168 | char *ptr = NULL; |
| 7169 | int i; |
| 7170 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7171 | memprintf(&ptr, "Built with OpenSSL version : " |
| 7172 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7173 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7174 | #else /* OPENSSL_IS_BORINGSSL */ |
| 7175 | OPENSSL_VERSION_TEXT |
| 7176 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7177 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 7178 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7179 | #endif |
| 7180 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7181 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7182 | "no (library version too old)" |
| 7183 | #elif defined(OPENSSL_NO_TLSEXT) |
| 7184 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 7185 | #else |
| 7186 | "yes" |
| 7187 | #endif |
| 7188 | "", ptr); |
| 7189 | |
| 7190 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 7191 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7192 | "yes" |
| 7193 | #else |
| 7194 | #ifdef OPENSSL_NO_TLSEXT |
| 7195 | "no (because of OPENSSL_NO_TLSEXT)" |
| 7196 | #else |
| 7197 | "no (version might be too old, 0.9.8f min needed)" |
| 7198 | #endif |
| 7199 | #endif |
| 7200 | "", ptr); |
| 7201 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 7202 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 7203 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7204 | if (methodVersions[i].option) |
| 7205 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7206 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7207 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7208 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7209 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7210 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 7211 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7212 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7213 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7214 | void ssl_free_engines(void) { |
| 7215 | struct ssl_engine_list *wl, *wlb; |
| 7216 | /* free up engine list */ |
| 7217 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 7218 | ENGINE_finish(wl->e); |
| 7219 | ENGINE_free(wl->e); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 7220 | LIST_DELETE(&wl->list); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7221 | free(wl); |
| 7222 | } |
| 7223 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7224 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7225 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7226 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7227 | void ssl_free_dh(void) { |
| 7228 | if (local_dh_1024) { |
| 7229 | DH_free(local_dh_1024); |
| 7230 | local_dh_1024 = NULL; |
| 7231 | } |
| 7232 | if (local_dh_2048) { |
| 7233 | DH_free(local_dh_2048); |
| 7234 | local_dh_2048 = NULL; |
| 7235 | } |
| 7236 | if (local_dh_4096) { |
| 7237 | DH_free(local_dh_4096); |
| 7238 | local_dh_4096 = NULL; |
| 7239 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7240 | if (global_dh) { |
| 7241 | DH_free(global_dh); |
| 7242 | global_dh = NULL; |
| 7243 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7244 | } |
| 7245 | #endif |
| 7246 | |
| 7247 | __attribute__((destructor)) |
| 7248 | static void __ssl_sock_deinit(void) |
| 7249 | { |
| 7250 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7251 | if (ssl_ctx_lru_tree) { |
| 7252 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 7253 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7254 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7255 | #endif |
| 7256 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7257 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7258 | ERR_remove_state(0); |
| 7259 | ERR_free_strings(); |
| 7260 | |
| 7261 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7262 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7263 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7264 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7265 | CRYPTO_cleanup_all_ex_data(); |
| 7266 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7267 | BIO_meth_free(ha_meth); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7268 | } |
| 7269 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7270 | /* Activate ssl on server <s>. |
| 7271 | * do nothing if there is no change to apply |
| 7272 | * |
| 7273 | * Must be called with the server lock held. |
| 7274 | */ |
| 7275 | void ssl_sock_set_srv(struct server *s, signed char use_ssl) |
| 7276 | { |
| 7277 | if (s->use_ssl == use_ssl) |
| 7278 | return; |
| 7279 | |
| 7280 | s->use_ssl = use_ssl; |
| 7281 | if (s->use_ssl == 1) |
| 7282 | s->xprt = &ssl_sock; |
| 7283 | else |
| 7284 | s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW); |
| 7285 | } |
| 7286 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7287 | /* |
| 7288 | * Local variables: |
| 7289 | * c-indent-level: 8 |
| 7290 | * c-basic-offset: 8 |
| 7291 | * End: |
| 7292 | */ |