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> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 31 | #include <stdio.h> |
| 32 | #include <stdlib.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 33 | #include <string.h> |
| 34 | #include <unistd.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 35 | |
| 36 | #include <sys/socket.h> |
| 37 | #include <sys/stat.h> |
| 38 | #include <sys/types.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 39 | #include <netdb.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 40 | #include <netinet/tcp.h> |
| 41 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 42 | #include <import/ebpttree.h> |
| 43 | #include <import/ebsttree.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 44 | #include <import/lru.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 45 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 46 | #include <haproxy/api.h> |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 47 | #include <haproxy/applet.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 48 | #include <haproxy/arg.h> |
| 49 | #include <haproxy/base64.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 50 | #include <haproxy/channel.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 51 | #include <haproxy/chunk.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 52 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 53 | #include <haproxy/connection.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 54 | #include <haproxy/dynbuf.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 55 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 56 | #include <haproxy/fd.h> |
| 57 | #include <haproxy/freq_ctr.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 58 | #include <haproxy/frontend.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 59 | #include <haproxy/global.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 60 | #include <haproxy/http_rules.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 61 | #include <haproxy/log.h> |
Willy Tarreau | 6019fab | 2020-05-27 16:26:00 +0200 | [diff] [blame] | 62 | #include <haproxy/openssl-compat.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 63 | #include <haproxy/pattern-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 64 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 65 | #include <haproxy/proxy.h> |
Amaury Denoyelle | 92fa63f | 2022-09-30 18:11:13 +0200 | [diff] [blame] | 66 | #include <haproxy/quic_conn.h> |
Frédéric Lécaille | 5e28c3a | 2023-12-21 16:11:35 +0100 | [diff] [blame] | 67 | #include <haproxy/quic_openssl_compat.h> |
Frédéric Lécaille | 748ece6 | 2022-05-21 23:58:40 +0200 | [diff] [blame] | 68 | #include <haproxy/quic_tp.h> |
Frédéric Lécaille | 5e28c3a | 2023-12-21 16:11:35 +0100 | [diff] [blame] | 69 | #include <haproxy/sample.h> |
| 70 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 71 | #include <haproxy/server.h> |
Willy Tarreau | 334099c | 2020-06-03 18:38:48 +0200 | [diff] [blame] | 72 | #include <haproxy/shctx.h> |
Willy Tarreau | 47d7f90 | 2020-06-04 14:25:47 +0200 | [diff] [blame] | 73 | #include <haproxy/ssl_ckch.h> |
Willy Tarreau | 52d8872 | 2020-06-04 14:29:23 +0200 | [diff] [blame] | 74 | #include <haproxy/ssl_crtlist.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 75 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | b2bd865 | 2020-06-04 14:21:22 +0200 | [diff] [blame] | 76 | #include <haproxy/ssl_utils.h> |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 77 | #include <haproxy/stats.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 78 | #include <haproxy/stconn.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 79 | #include <haproxy/stream-t.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 80 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 81 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 82 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 83 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 84 | #include <haproxy/vars.h> |
Tim Duesterhus | d5fc8fc | 2021-09-11 17:51:13 +0200 | [diff] [blame] | 85 | #include <haproxy/xxhash.h> |
Remi Tricot-Le Breton | 2e7d1eb | 2022-01-11 10:11:10 +0100 | [diff] [blame] | 86 | #include <haproxy/istbuf.h> |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 87 | #include <haproxy/ssl_ocsp.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 88 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 89 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 90 | /* ***** READ THIS before adding code here! ***** |
| 91 | * |
| 92 | * Due to API incompatibilities between multiple OpenSSL versions and their |
| 93 | * derivatives, it's often tempting to add macros to (re-)define certain |
| 94 | * symbols. Please do not do this here, and do it in common/openssl-compat.h |
| 95 | * exclusively so that the whole code consistently uses the same macros. |
| 96 | * |
| 97 | * Whenever possible if a macro is missing in certain versions, it's better |
| 98 | * to conditionally define it in openssl-compat.h than using lots of ifdefs. |
| 99 | */ |
| 100 | |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 101 | int nb_engines = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 102 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 103 | static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */ |
| 104 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 105 | struct global_ssl global_ssl = { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 106 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 107 | .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS, |
| 108 | #endif |
| 109 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 110 | .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS, |
| 111 | #endif |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 112 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 113 | .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES, |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 114 | .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES, |
| 115 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 116 | .listen_default_ssloptions = BC_SSL_O_NONE, |
| 117 | .connect_default_ssloptions = SRV_SSL_O_NONE, |
| 118 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 119 | .listen_default_sslmethods.flags = MC_SSL_O_ALL, |
| 120 | .listen_default_sslmethods.min = CONF_TLSV_NONE, |
| 121 | .listen_default_sslmethods.max = CONF_TLSV_NONE, |
| 122 | .connect_default_sslmethods.flags = MC_SSL_O_ALL, |
| 123 | .connect_default_sslmethods.min = CONF_TLSV_NONE, |
| 124 | .connect_default_sslmethods.max = CONF_TLSV_NONE, |
| 125 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 126 | #ifdef DEFAULT_SSL_MAX_RECORD |
| 127 | .max_record = DEFAULT_SSL_MAX_RECORD, |
| 128 | #endif |
Thomas Prückl | 1024393 | 2022-04-27 13:04:54 +0200 | [diff] [blame] | 129 | .hard_max_record = 0, |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 130 | .default_dh_param = SSL_DEFAULT_DH_PARAM, |
| 131 | .ctx_cache = DEFAULT_SSL_CTX_CACHE, |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 132 | .capture_buffer_size = 0, |
William Lallemand | 3af48e7 | 2020-02-03 17:15:52 +0100 | [diff] [blame] | 133 | .extra_files = SSL_GF_ALL, |
William Lallemand | 8e8581e | 2020-10-20 17:36:46 +0200 | [diff] [blame] | 134 | .extra_files_noext = 0, |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 135 | #ifdef HAVE_SSL_KEYLOG |
Remi Tricot-Le Breton | 5843237 | 2023-02-28 17:46:29 +0100 | [diff] [blame] | 136 | .keylog = 0, |
| 137 | #endif |
| 138 | #ifndef OPENSSL_NO_OCSP |
| 139 | .ocsp_update.delay_max = SSL_OCSP_UPDATE_DELAY_MAX, |
| 140 | .ocsp_update.delay_min = SSL_OCSP_UPDATE_DELAY_MIN, |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 141 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 142 | }; |
| 143 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 144 | static BIO_METHOD *ha_meth; |
| 145 | |
Willy Tarreau | b8dec4a | 2022-06-23 11:02:08 +0200 | [diff] [blame] | 146 | DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx", sizeof(struct ssl_sock_ctx)); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 147 | |
Willy Tarreau | b8dec4a | 2022-06-23 11:02:08 +0200 | [diff] [blame] | 148 | DECLARE_STATIC_POOL(ssl_sock_client_sni_pool, "ssl_sock_client_sni", TLSEXT_MAXLEN_host_name + 1); |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 149 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 150 | /* ssl stats module */ |
| 151 | enum { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 152 | SSL_ST_SESS, |
| 153 | SSL_ST_REUSED_SESS, |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 154 | SSL_ST_FAILED_HANDSHAKE, |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 155 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 156 | SSL_ST_STATS_COUNT /* must be the last member of the enum */ |
| 157 | }; |
| 158 | |
| 159 | static struct name_desc ssl_stats[] = { |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 160 | [SSL_ST_SESS] = { .name = "ssl_sess", |
| 161 | .desc = "Total number of ssl sessions established" }, |
| 162 | [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess", |
| 163 | .desc = "Total number of ssl sessions reused" }, |
| 164 | [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake", |
| 165 | .desc = "Total number of failed handshake" }, |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 166 | }; |
| 167 | |
| 168 | static struct ssl_counters { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 169 | long long sess; |
| 170 | long long reused_sess; |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 171 | long long failed_handshake; |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 172 | } ssl_counters; |
| 173 | |
| 174 | static void ssl_fill_stats(void *data, struct field *stats) |
| 175 | { |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 176 | struct ssl_counters *counters = data; |
| 177 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 178 | stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess); |
| 179 | stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess); |
| 180 | stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake); |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | static struct stats_module ssl_stats_module = { |
| 184 | .name = "ssl", |
| 185 | .fill_stats = ssl_fill_stats, |
| 186 | .stats = ssl_stats, |
| 187 | .stats_count = SSL_ST_STATS_COUNT, |
| 188 | .counters = &ssl_counters, |
| 189 | .counters_size = sizeof(ssl_counters), |
| 190 | .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV), |
| 191 | .clearable = 1, |
| 192 | }; |
| 193 | |
| 194 | INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module); |
| 195 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 196 | /* CLI context for "show tls-keys" */ |
| 197 | struct show_keys_ctx { |
| 198 | struct tls_keys_ref *next_ref; /* next reference to be dumped */ |
| 199 | int names_only; /* non-zero = only show file names */ |
| 200 | int next_index; /* next index to be dumped */ |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 201 | int dump_entries; /* dump entries also */ |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 202 | enum { |
| 203 | SHOW_KEYS_INIT = 0, |
| 204 | SHOW_KEYS_LIST, |
| 205 | SHOW_KEYS_DONE, |
| 206 | } state; /* phase of the current dump */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 207 | }; |
| 208 | |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 209 | /* 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] | 210 | struct task *ssl_sock_io_cb(struct task *, void *, unsigned int); |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 211 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 212 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 213 | /* Methods to implement OpenSSL BIO */ |
| 214 | static int ha_ssl_write(BIO *h, const char *buf, int num) |
| 215 | { |
| 216 | struct buffer tmpbuf; |
| 217 | struct ssl_sock_ctx *ctx; |
Willy Tarreau | ac78c4f | 2023-03-17 16:13:05 +0100 | [diff] [blame] | 218 | uint flags; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 219 | int ret; |
| 220 | |
| 221 | ctx = BIO_get_data(h); |
| 222 | tmpbuf.size = num; |
| 223 | tmpbuf.area = (void *)(uintptr_t)buf; |
| 224 | tmpbuf.data = num; |
| 225 | tmpbuf.head = 0; |
Willy Tarreau | ac78c4f | 2023-03-17 16:13:05 +0100 | [diff] [blame] | 226 | flags = (ctx->xprt_st & SSL_SOCK_SEND_MORE) ? CO_SFL_MSG_MORE : 0; |
| 227 | ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, flags); |
Olivier Houchard | a0b31bd | 2024-01-27 22:58:29 +0100 | [diff] [blame] | 228 | BIO_clear_retry_flags(h); |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 229 | 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] | 230 | BIO_set_retry_write(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 231 | ret = -1; |
Olivier Houchard | a0b31bd | 2024-01-27 22:58:29 +0100 | [diff] [blame] | 232 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 233 | return ret; |
| 234 | } |
| 235 | |
| 236 | static int ha_ssl_gets(BIO *h, char *buf, int size) |
| 237 | { |
| 238 | |
| 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | static int ha_ssl_puts(BIO *h, const char *str) |
| 243 | { |
| 244 | |
| 245 | return ha_ssl_write(h, str, strlen(str)); |
| 246 | } |
| 247 | |
| 248 | static int ha_ssl_read(BIO *h, char *buf, int size) |
| 249 | { |
| 250 | struct buffer tmpbuf; |
| 251 | struct ssl_sock_ctx *ctx; |
| 252 | int ret; |
| 253 | |
| 254 | ctx = BIO_get_data(h); |
| 255 | tmpbuf.size = size; |
| 256 | tmpbuf.area = buf; |
| 257 | tmpbuf.data = 0; |
| 258 | tmpbuf.head = 0; |
| 259 | ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0); |
Olivier Houchard | a0b31bd | 2024-01-27 22:58:29 +0100 | [diff] [blame] | 260 | BIO_clear_retry_flags(h); |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 261 | 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] | 262 | BIO_set_retry_read(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 263 | ret = -1; |
Olivier Houchard | a0b31bd | 2024-01-27 22:58:29 +0100 | [diff] [blame] | 264 | } |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 265 | |
| 266 | return ret; |
| 267 | } |
| 268 | |
| 269 | static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2) |
| 270 | { |
| 271 | int ret = 0; |
| 272 | switch (cmd) { |
| 273 | case BIO_CTRL_DUP: |
| 274 | case BIO_CTRL_FLUSH: |
| 275 | ret = 1; |
| 276 | break; |
| 277 | } |
| 278 | return ret; |
| 279 | } |
| 280 | |
| 281 | static int ha_ssl_new(BIO *h) |
| 282 | { |
| 283 | BIO_set_init(h, 1); |
| 284 | BIO_set_data(h, NULL); |
| 285 | BIO_clear_flags(h, ~0); |
| 286 | return 1; |
| 287 | } |
| 288 | |
| 289 | static int ha_ssl_free(BIO *data) |
| 290 | { |
| 291 | |
| 292 | return 1; |
| 293 | } |
| 294 | |
| 295 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 296 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 297 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 298 | static HA_RWLOCK_T *ssl_rwlocks; |
| 299 | |
| 300 | |
| 301 | unsigned long ssl_id_function(void) |
| 302 | { |
| 303 | return (unsigned long)tid; |
| 304 | } |
| 305 | |
| 306 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 307 | { |
| 308 | if (mode & CRYPTO_LOCK) { |
| 309 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 310 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 311 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 312 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 313 | } |
| 314 | else { |
| 315 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 316 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 317 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 318 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 319 | } |
| 320 | } |
| 321 | |
| 322 | static int ssl_locking_init(void) |
| 323 | { |
| 324 | int i; |
| 325 | |
| 326 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 327 | if (!ssl_rwlocks) |
| 328 | return -1; |
| 329 | |
| 330 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 331 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 332 | |
| 333 | CRYPTO_set_id_callback(ssl_id_function); |
| 334 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 335 | |
| 336 | return 0; |
| 337 | } |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 338 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 339 | #endif |
| 340 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 341 | __decl_thread(HA_SPINLOCK_T ckch_lock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 342 | |
William Lallemand | bc6ca7c | 2019-10-29 23:48:19 +0100 | [diff] [blame] | 343 | |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 344 | |
| 345 | /* mimic what X509_STORE_load_locations do with store_ctx */ |
| 346 | static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path) |
| 347 | { |
Remi Tricot-Le Breton | d75b99e | 2021-05-17 11:45:55 +0200 | [diff] [blame] | 348 | X509_STORE *store = NULL; |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 349 | struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0); |
| 350 | if (ca_e) |
| 351 | store = ca_e->ca_store; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 352 | if (store_ctx && store) { |
| 353 | int i; |
| 354 | X509_OBJECT *obj; |
| 355 | STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store); |
| 356 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 357 | obj = sk_X509_OBJECT_value(objs, i); |
| 358 | switch (X509_OBJECT_get_type(obj)) { |
| 359 | case X509_LU_X509: |
| 360 | X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj)); |
| 361 | break; |
| 362 | case X509_LU_CRL: |
| 363 | X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj)); |
| 364 | break; |
| 365 | default: |
| 366 | break; |
| 367 | } |
| 368 | } |
| 369 | return 1; |
| 370 | } |
| 371 | return 0; |
| 372 | } |
| 373 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 374 | /* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */ |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 375 | static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path) |
| 376 | { |
| 377 | X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx); |
| 378 | return ssl_set_cert_crl_file(store_ctx, path); |
| 379 | } |
| 380 | |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 381 | /* |
| 382 | Extract CA_list from CA_file already in tree. |
| 383 | Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility. |
| 384 | Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX. |
| 385 | */ |
| 386 | static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path) |
| 387 | { |
| 388 | struct ebmb_node *eb; |
| 389 | struct cafile_entry *ca_e; |
| 390 | |
| 391 | eb = ebst_lookup(&cafile_tree, path); |
| 392 | if (!eb) |
| 393 | return NULL; |
| 394 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 395 | |
| 396 | if (ca_e->ca_list == NULL) { |
| 397 | int i; |
| 398 | unsigned long key; |
| 399 | struct eb_root ca_name_tree = EB_ROOT; |
| 400 | struct eb64_node *node, *back; |
| 401 | struct { |
| 402 | struct eb64_node node; |
| 403 | X509_NAME *xname; |
| 404 | } *ca_name; |
| 405 | STACK_OF(X509_OBJECT) *objs; |
| 406 | STACK_OF(X509_NAME) *skn; |
| 407 | X509 *x; |
| 408 | X509_NAME *xn; |
| 409 | |
| 410 | skn = sk_X509_NAME_new_null(); |
| 411 | /* take x509 from cafile_tree */ |
| 412 | objs = X509_STORE_get0_objects(ca_e->ca_store); |
| 413 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 414 | x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i)); |
| 415 | if (!x) |
| 416 | continue; |
| 417 | xn = X509_get_subject_name(x); |
| 418 | if (!xn) |
| 419 | continue; |
| 420 | /* Check for duplicates. */ |
| 421 | key = X509_NAME_hash(xn); |
| 422 | for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL; |
| 423 | node && ca_name == NULL; |
| 424 | node = eb64_next(node)) { |
| 425 | ca_name = container_of(node, typeof(*ca_name), node); |
| 426 | if (X509_NAME_cmp(xn, ca_name->xname) != 0) |
| 427 | ca_name = NULL; |
| 428 | } |
| 429 | /* find a duplicate */ |
| 430 | if (ca_name) |
| 431 | continue; |
| 432 | ca_name = calloc(1, sizeof *ca_name); |
| 433 | xn = X509_NAME_dup(xn); |
| 434 | if (!ca_name || |
| 435 | !xn || |
| 436 | !sk_X509_NAME_push(skn, xn)) { |
| 437 | free(ca_name); |
| 438 | X509_NAME_free(xn); |
| 439 | sk_X509_NAME_pop_free(skn, X509_NAME_free); |
| 440 | sk_X509_NAME_free(skn); |
| 441 | skn = NULL; |
| 442 | break; |
| 443 | } |
| 444 | ca_name->node.key = key; |
| 445 | ca_name->xname = xn; |
| 446 | eb64_insert(&ca_name_tree, &ca_name->node); |
| 447 | } |
| 448 | ca_e->ca_list = skn; |
| 449 | /* remove temporary ca_name tree */ |
| 450 | node = eb64_first(&ca_name_tree); |
| 451 | while (node) { |
| 452 | ca_name = container_of(node, typeof(*ca_name), node); |
| 453 | back = eb64_next(node); |
| 454 | eb64_delete(node); |
| 455 | free(ca_name); |
| 456 | node = back; |
| 457 | } |
| 458 | } |
| 459 | return ca_e->ca_list; |
| 460 | } |
| 461 | |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 462 | struct pool_head *pool_head_ssl_capture __read_mostly = NULL; |
William Lallemand | 15e1694 | 2020-05-15 00:25:08 +0200 | [diff] [blame] | 463 | int ssl_capture_ptr_index = -1; |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 464 | int ssl_app_data_index = -1; |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 465 | #ifdef USE_QUIC |
| 466 | int ssl_qc_app_data_index = -1; |
| 467 | #endif /* USE_QUIC */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 468 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 469 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 470 | int ssl_keylog_index = -1; |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 471 | struct pool_head *pool_head_ssl_keylog __read_mostly = NULL; |
| 472 | struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL; |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 473 | #endif |
| 474 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 475 | int ssl_client_crt_ref_index = -1; |
| 476 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 477 | /* Used to store the client's SNI in case of ClientHello callback error */ |
| 478 | int ssl_client_sni_index = -1; |
| 479 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 480 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 481 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 482 | #endif |
| 483 | |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 484 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 485 | unsigned int openssl_engines_initialized; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 486 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 487 | struct ssl_engine_list { |
| 488 | struct list list; |
| 489 | ENGINE *e; |
| 490 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 491 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 492 | |
Remi Tricot-Le Breton | 1746a38 | 2022-05-16 16:24:33 +0200 | [diff] [blame] | 493 | #ifdef HAVE_SSL_PROVIDERS |
| 494 | struct list openssl_providers = LIST_HEAD_INIT(openssl_providers); |
| 495 | struct ssl_provider_list { |
| 496 | struct list list; |
| 497 | OSSL_PROVIDER *provider; |
| 498 | }; |
| 499 | #endif |
| 500 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 501 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 502 | static int ssl_dh_ptr_index = -1; |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 503 | static HASSL_DH *global_dh = NULL; |
| 504 | static HASSL_DH *local_dh_1024 = NULL; |
| 505 | static HASSL_DH *local_dh_2048 = NULL; |
| 506 | static HASSL_DH *local_dh_4096 = NULL; |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 507 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 508 | static DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen); |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 509 | #else |
| 510 | static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey); |
| 511 | #endif |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 512 | #endif /* OPENSSL_NO_DH */ |
| 513 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 514 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 515 | /* X509V3 Extensions that will be added on generated certificates */ |
| 516 | #define X509V3_EXT_SIZE 5 |
| 517 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 518 | "basicConstraints", |
| 519 | "nsComment", |
| 520 | "subjectKeyIdentifier", |
| 521 | "authorityKeyIdentifier", |
| 522 | "keyUsage", |
| 523 | }; |
| 524 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 525 | "CA:FALSE", |
| 526 | "\"OpenSSL Generated Certificate\"", |
| 527 | "hash", |
| 528 | "keyid,issuer:always", |
| 529 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 530 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 531 | /* LRU cache to store generated certificate */ |
| 532 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 533 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 534 | static unsigned int ssl_ctx_serial; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 535 | __decl_rwlock(ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 536 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 537 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 538 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 539 | /* The order here matters for picking a default context, |
| 540 | * keep the most common keytype at the bottom of the list |
| 541 | */ |
| 542 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 543 | "dsa", |
| 544 | "ecdsa", |
| 545 | "rsa" |
| 546 | }; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 547 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 548 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 549 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 550 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 551 | /* Dedicated callback functions for heartbeat and clienthello. |
| 552 | */ |
| 553 | #ifdef TLS1_RT_HEARTBEAT |
| 554 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 555 | int content_type, const void *buf, size_t len, |
| 556 | SSL *ssl); |
| 557 | #endif |
| 558 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 559 | int content_type, const void *buf, size_t len, |
| 560 | SSL *ssl); |
| 561 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 562 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 563 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 564 | int content_type, const void *buf, size_t len, |
| 565 | SSL *ssl); |
| 566 | #endif |
| 567 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 568 | /* List head of all registered SSL/TLS protocol message callbacks. */ |
| 569 | struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks); |
| 570 | |
| 571 | /* Registers the function <func> in order to be called on SSL/TLS protocol |
| 572 | * message processing. It will return 0 if the function <func> is not set |
| 573 | * or if it fails to allocate memory. |
| 574 | */ |
| 575 | int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func) |
| 576 | { |
| 577 | struct ssl_sock_msg_callback *cbk; |
| 578 | |
| 579 | if (!func) |
| 580 | return 0; |
| 581 | |
| 582 | cbk = calloc(1, sizeof(*cbk)); |
| 583 | if (!cbk) { |
| 584 | ha_alert("out of memory in ssl_sock_register_msg_callback().\n"); |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | cbk->func = func; |
| 589 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 590 | LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 591 | |
| 592 | return 1; |
| 593 | } |
| 594 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 595 | /* Used to register dedicated SSL/TLS protocol message callbacks. |
| 596 | */ |
| 597 | static int ssl_sock_register_msg_callbacks(void) |
| 598 | { |
| 599 | #ifdef TLS1_RT_HEARTBEAT |
| 600 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat)) |
| 601 | return ERR_ABORT; |
| 602 | #endif |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 603 | if (global_ssl.capture_buffer_size > 0) { |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 604 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello)) |
| 605 | return ERR_ABORT; |
| 606 | } |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 607 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 608 | if (global_ssl.keylog > 0) { |
| 609 | if (!ssl_sock_register_msg_callback(ssl_init_keylog)) |
| 610 | return ERR_ABORT; |
| 611 | } |
| 612 | #endif |
Frédéric Lécaille | 5e28c3a | 2023-12-21 16:11:35 +0100 | [diff] [blame] | 613 | #ifdef USE_QUIC_OPENSSL_COMPAT |
| 614 | if (!ssl_sock_register_msg_callback(quic_tls_compat_msg_callback)) |
| 615 | return ERR_ABORT; |
| 616 | #endif |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 617 | |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 618 | return ERR_NONE; |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 619 | } |
| 620 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 621 | /* Used to free all SSL/TLS protocol message callbacks that were |
| 622 | * registered by using ssl_sock_register_msg_callback(). |
| 623 | */ |
| 624 | static void ssl_sock_unregister_msg_callbacks(void) |
| 625 | { |
| 626 | struct ssl_sock_msg_callback *cbk, *cbkback; |
| 627 | |
| 628 | list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 629 | LIST_DELETE(&cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 630 | free(cbk); |
| 631 | } |
| 632 | } |
| 633 | |
Willy Tarreau | de82795 | 2022-04-11 10:43:28 +0200 | [diff] [blame] | 634 | static struct ssl_sock_ctx *ssl_sock_get_ctx(struct connection *conn) |
| 635 | { |
| 636 | if (!conn || conn->xprt != xprt_get(XPRT_SSL) || !conn->xprt_ctx) |
| 637 | return NULL; |
| 638 | |
| 639 | return (struct ssl_sock_ctx *)conn->xprt_ctx; |
| 640 | } |
| 641 | |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 642 | SSL *ssl_sock_get_ssl_object(struct connection *conn) |
| 643 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 644 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 645 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 646 | return ctx ? ctx->ssl : NULL; |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 647 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 648 | /* |
| 649 | * This function gives the detail of the SSL error. It is used only |
| 650 | * if the debug mode and the verbose mode are activated. It dump all |
| 651 | * the SSL error until the stack was empty. |
| 652 | */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 653 | static forceinline void ssl_sock_dump_errors(struct connection *conn, |
| 654 | struct quic_conn *qc) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 655 | { |
| 656 | unsigned long ret; |
| 657 | |
| 658 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 659 | while(1) { |
Remi Tricot-Le Breton | 1effd9a | 2022-02-11 12:04:44 +0100 | [diff] [blame] | 660 | const char *func = NULL; |
| 661 | ERR_peek_error_func(&func); |
| 662 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 663 | ret = ERR_get_error(); |
| 664 | if (ret == 0) |
| 665 | return; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 666 | if (conn) { |
| 667 | fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n", |
| 668 | conn_fd(conn), ret, |
| 669 | func, ERR_reason_error_string(ret)); |
| 670 | } |
| 671 | #ifdef USE_QUIC |
| 672 | else { |
| 673 | /* TODO: we are not sure <conn> is always initialized for QUIC connections */ |
| 674 | fprintf(stderr, "qc @%p OpenSSL error[0x%lx] %s: %s\n", qc, ret, |
| 675 | func, ERR_reason_error_string(ret)); |
| 676 | } |
| 677 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 678 | } |
| 679 | } |
| 680 | } |
| 681 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 682 | |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 683 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 684 | 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] | 685 | { |
| 686 | int err_code = ERR_ABORT; |
| 687 | ENGINE *engine; |
| 688 | struct ssl_engine_list *el; |
| 689 | |
| 690 | /* grab the structural reference to the engine */ |
| 691 | engine = ENGINE_by_id(engine_id); |
| 692 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 693 | 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] | 694 | goto fail_get; |
| 695 | } |
| 696 | |
| 697 | if (!ENGINE_init(engine)) { |
| 698 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 699 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 700 | goto fail_init; |
| 701 | } |
| 702 | |
| 703 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 704 | 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] | 705 | goto fail_set_method; |
| 706 | } |
| 707 | |
| 708 | el = calloc(1, sizeof(*el)); |
Remi Tricot-Le Breton | 612b2c3 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 709 | if (!el) |
| 710 | goto fail_alloc; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 711 | el->e = engine; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 712 | LIST_INSERT(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 713 | nb_engines++; |
| 714 | if (global_ssl.async) |
| 715 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 716 | return 0; |
| 717 | |
Remi Tricot-Le Breton | 612b2c3 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 718 | fail_alloc: |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 719 | fail_set_method: |
| 720 | /* release the functional reference from ENGINE_init() */ |
| 721 | ENGINE_finish(engine); |
| 722 | |
| 723 | fail_init: |
| 724 | /* release the structural reference from ENGINE_by_id() */ |
| 725 | ENGINE_free(engine); |
| 726 | |
| 727 | fail_get: |
| 728 | return err_code; |
| 729 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 730 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 731 | |
Remi Tricot-Le Breton | 1746a38 | 2022-05-16 16:24:33 +0200 | [diff] [blame] | 732 | #ifdef HAVE_SSL_PROVIDERS |
| 733 | int ssl_init_provider(const char *provider_name) |
| 734 | { |
| 735 | int err_code = ERR_ABORT; |
| 736 | struct ssl_provider_list *prov = NULL; |
| 737 | |
| 738 | prov = calloc(1, sizeof(*prov)); |
| 739 | if (!prov) { |
| 740 | ha_alert("ssl-provider %s: memory allocation failure\n", provider_name); |
| 741 | goto error; |
| 742 | } |
| 743 | |
| 744 | if ((prov->provider = OSSL_PROVIDER_load(NULL, provider_name)) == NULL) { |
| 745 | ha_alert("ssl-provider %s: unknown provider\n", provider_name); |
| 746 | goto error; |
| 747 | } |
| 748 | |
| 749 | LIST_INSERT(&openssl_providers, &prov->list); |
| 750 | |
| 751 | return 0; |
| 752 | |
| 753 | error: |
| 754 | ha_free(&prov); |
| 755 | return err_code; |
| 756 | } |
| 757 | #endif /* HAVE_SSL_PROVIDERS */ |
| 758 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 759 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 760 | /* |
| 761 | * openssl async fd handler |
| 762 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 763 | void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 764 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 765 | struct ssl_sock_ctx *ctx = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 766 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 767 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 768 | * to poll this fd until it is requested |
| 769 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 770 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 771 | fd_cant_recv(fd); |
| 772 | |
| 773 | /* crypto engine is available, let's notify the associated |
| 774 | * connection that it can pursue its processing. |
| 775 | */ |
Olivier Houchard | a459826 | 2020-09-15 22:16:02 +0200 | [diff] [blame] | 776 | tasklet_wakeup(ctx->wait_event.tasklet); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 777 | } |
| 778 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 779 | /* |
| 780 | * openssl async delayed SSL_free handler |
| 781 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 782 | void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 783 | { |
| 784 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 785 | OSSL_ASYNC_FD all_fd[32]; |
| 786 | size_t num_all_fds = 0; |
| 787 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 788 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 789 | /* We suppose that the async job for a same SSL * |
| 790 | * are serialized. So if we are awake it is |
| 791 | * because the running job has just finished |
| 792 | * and we can remove all async fds safely |
| 793 | */ |
| 794 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 795 | if (num_all_fds > 32) { |
| 796 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 797 | return; |
| 798 | } |
| 799 | |
| 800 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
Emeric Brun | 7d392a5 | 2022-07-01 17:36:50 +0200 | [diff] [blame] | 801 | for (i=0 ; i < num_all_fds ; i++) { |
| 802 | /* We want to remove the fd from the fdtab |
| 803 | * but we flag it to disown because the |
| 804 | * close is performed by the engine itself |
| 805 | */ |
| 806 | fdtab[all_fd[i]].state |= FD_DISOWN; |
| 807 | fd_delete(all_fd[i]); |
| 808 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 809 | |
| 810 | /* 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] | 811 | SSL_free(ssl); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 812 | _HA_ATOMIC_DEC(&global.sslconns); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 813 | _HA_ATOMIC_DEC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 814 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 815 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 816 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 817 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 818 | */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 819 | static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 820 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 821 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 822 | OSSL_ASYNC_FD del_fd[32]; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 823 | SSL *ssl = ctx->ssl; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 824 | size_t num_add_fds = 0; |
| 825 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 826 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 827 | |
| 828 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 829 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 830 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 831 | 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] | 832 | return; |
| 833 | } |
| 834 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 835 | 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] | 836 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 837 | /* We remove unused fds from the fdtab */ |
Emeric Brun | 7d392a5 | 2022-07-01 17:36:50 +0200 | [diff] [blame] | 838 | for (i=0 ; i < num_del_fds ; i++) { |
| 839 | /* We want to remove the fd from the fdtab |
| 840 | * but we flag it to disown because the |
| 841 | * close is performed by the engine itself |
| 842 | */ |
| 843 | fdtab[del_fd[i]].state |= FD_DISOWN; |
| 844 | fd_delete(del_fd[i]); |
| 845 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 846 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 847 | /* We add new fds to the fdtab */ |
| 848 | for (i=0 ; i < num_add_fds ; i++) { |
Willy Tarreau | 27a3245 | 2022-07-07 08:29:00 +0200 | [diff] [blame] | 849 | fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tgid, ti->ltid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 850 | } |
| 851 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 852 | num_add_fds = 0; |
| 853 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 854 | if (num_add_fds > 32) { |
| 855 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 856 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 857 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 858 | |
| 859 | /* We activate the polling for all known async fds */ |
| 860 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 861 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 862 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 863 | /* To ensure that the fd cache won't be used |
| 864 | * We'll prefer to catch a real RD event |
| 865 | * because handling an EAGAIN on this fd will |
| 866 | * result in a context switch and also |
| 867 | * some engines uses a fd in blocking mode. |
| 868 | */ |
| 869 | fd_cant_recv(add_fd[i]); |
| 870 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 871 | |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 872 | } |
| 873 | #endif |
| 874 | |
Remi Tricot-Le Breton | c9414e2 | 2022-02-08 17:45:59 +0100 | [diff] [blame] | 875 | |
| 876 | /* |
| 877 | * Initialize an HMAC context <hctx> using the <key> and <md> parameters. |
| 878 | * Returns -1 in case of error, 1 otherwise. |
| 879 | */ |
| 880 | static int ssl_hmac_init(MAC_CTX *hctx, unsigned char *key, int key_len, const EVP_MD *md) |
| 881 | { |
| 882 | #ifdef HAVE_OSSL_PARAM |
| 883 | OSSL_PARAM params[3]; |
| 884 | |
| 885 | params[0] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, key, key_len); |
| 886 | params[1] = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, (char*)EVP_MD_name(md), 0); |
| 887 | params[2] = OSSL_PARAM_construct_end(); |
| 888 | if (EVP_MAC_CTX_set_params(hctx, params) == 0) |
| 889 | return -1; /* error in mac initialisation */ |
| 890 | |
| 891 | #else |
| 892 | HMAC_Init_ex(hctx, key, key_len, md, NULL); |
| 893 | #endif |
| 894 | return 1; |
| 895 | } |
| 896 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 897 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Remi Tricot-Le Breton | 8ea1f5f | 2022-02-08 17:45:58 +0100 | [diff] [blame] | 898 | |
| 899 | static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ectx, MAC_CTX *hctx, int enc) |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 900 | { |
Frédéric Lécaille | 6aec1f3 | 2022-09-06 17:04:55 +0200 | [diff] [blame] | 901 | struct tls_keys_ref *ref = NULL; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 902 | union tls_sess_key *keys; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 903 | int head; |
| 904 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 905 | int ret = -1; /* error by default */ |
Frédéric Lécaille | 6aec1f3 | 2022-09-06 17:04:55 +0200 | [diff] [blame] | 906 | struct connection *conn = SSL_get_ex_data(s, ssl_app_data_index); |
| 907 | #ifdef USE_QUIC |
| 908 | struct quic_conn *qc = SSL_get_ex_data(s, ssl_qc_app_data_index); |
| 909 | #endif |
| 910 | |
| 911 | if (conn) |
| 912 | ref = __objt_listener(conn->target)->bind_conf->keys_ref; |
| 913 | #ifdef USE_QUIC |
| 914 | else if (qc) |
| 915 | ref = qc->li->bind_conf->keys_ref; |
| 916 | #endif |
| 917 | |
| 918 | if (!ref) { |
| 919 | /* must never happen */ |
| 920 | ABORT_NOW(); |
| 921 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 922 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 923 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 924 | |
| 925 | keys = ref->tlskeys; |
| 926 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 927 | |
| 928 | if (enc) { |
| 929 | memcpy(key_name, keys[head].name, 16); |
| 930 | |
| 931 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 932 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 933 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 934 | if (ref->key_size_bits == 128) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 935 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 936 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv)) |
| 937 | goto end; |
| 938 | |
Remi Tricot-Le Breton | c9414e2 | 2022-02-08 17:45:59 +0100 | [diff] [blame] | 939 | if (ssl_hmac_init(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0) |
| 940 | goto end; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 941 | ret = 1; |
| 942 | } |
| 943 | else if (ref->key_size_bits == 256 ) { |
| 944 | |
| 945 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv)) |
| 946 | goto end; |
| 947 | |
Remi Tricot-Le Breton | c9414e2 | 2022-02-08 17:45:59 +0100 | [diff] [blame] | 948 | if (ssl_hmac_init(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0) |
| 949 | goto end; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 950 | ret = 1; |
| 951 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 952 | } else { |
| 953 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 954 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 955 | goto found; |
| 956 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 957 | ret = 0; |
| 958 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 959 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 960 | found: |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 961 | if (ref->key_size_bits == 128) { |
Remi Tricot-Le Breton | c9414e2 | 2022-02-08 17:45:59 +0100 | [diff] [blame] | 962 | if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0) |
| 963 | goto end; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 964 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv)) |
| 965 | goto end; |
| 966 | /* 2 for key renewal, 1 if current key is still valid */ |
| 967 | ret = i ? 2 : 1; |
| 968 | } |
| 969 | else if (ref->key_size_bits == 256) { |
Remi Tricot-Le Breton | c9414e2 | 2022-02-08 17:45:59 +0100 | [diff] [blame] | 970 | if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0) |
| 971 | goto end; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 972 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv)) |
| 973 | goto end; |
| 974 | /* 2 for key renewal, 1 if current key is still valid */ |
| 975 | ret = i ? 2 : 1; |
| 976 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 977 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 978 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 979 | end: |
| 980 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 981 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 982 | } |
| 983 | |
| 984 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 985 | { |
| 986 | struct tls_keys_ref *ref; |
| 987 | |
| 988 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 989 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 990 | return ref; |
| 991 | return NULL; |
| 992 | } |
| 993 | |
| 994 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 995 | { |
| 996 | struct tls_keys_ref *ref; |
| 997 | |
| 998 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 999 | if (ref->unique_id == unique_id) |
| 1000 | return ref; |
| 1001 | return NULL; |
| 1002 | } |
| 1003 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1004 | /* Update the key into ref: if keysize doesn't |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1005 | * match existing ones, this function returns -1 |
| 1006 | * else it returns 0 on success. |
| 1007 | */ |
| 1008 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1009 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1010 | { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1011 | if (ref->key_size_bits == 128) { |
| 1012 | if (tlskey->data != sizeof(struct tls_sess_key_128)) |
| 1013 | return -1; |
| 1014 | } |
| 1015 | else if (ref->key_size_bits == 256) { |
| 1016 | if (tlskey->data != sizeof(struct tls_sess_key_256)) |
| 1017 | return -1; |
| 1018 | } |
| 1019 | else |
| 1020 | return -1; |
| 1021 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1022 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1023 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 1024 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1025 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 1026 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1027 | |
| 1028 | return 0; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1029 | } |
| 1030 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1031 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1032 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1033 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 1034 | |
| 1035 | if(!ref) { |
| 1036 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 1037 | return 1; |
| 1038 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1039 | if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) { |
| 1040 | memprintf(err, "Invalid key size"); |
| 1041 | return 1; |
| 1042 | } |
| 1043 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1044 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1045 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1046 | |
| 1047 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1048 | * automatic ids. It's called just after the basic checks. It returns |
| 1049 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1050 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1051 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1052 | { |
| 1053 | int i = 0; |
| 1054 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 1055 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 1056 | |
| 1057 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 1058 | if (ref->unique_id == -1) { |
| 1059 | /* Look for the first free id. */ |
| 1060 | while (1) { |
| 1061 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 1062 | if (ref2->unique_id == i) { |
| 1063 | i++; |
| 1064 | break; |
| 1065 | } |
| 1066 | } |
| 1067 | if (&ref2->list == &tlskeys_reference) |
| 1068 | break; |
| 1069 | } |
| 1070 | |
| 1071 | /* Uses the unique id and increment it for the next entry. */ |
| 1072 | ref->unique_id = i; |
| 1073 | i++; |
| 1074 | } |
| 1075 | } |
| 1076 | |
| 1077 | /* This sort the reference list by id. */ |
| 1078 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1079 | LIST_DELETE(&ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1080 | list_for_each_entry(ref3, &tkr, list) { |
| 1081 | if (ref->unique_id < ref3->unique_id) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1082 | LIST_APPEND(&ref3->list, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1083 | break; |
| 1084 | } |
| 1085 | } |
| 1086 | if (&ref3->list == &tkr) |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1087 | LIST_APPEND(&tkr, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | /* swap root */ |
William Lallemand | 930afdf | 2023-05-09 14:15:57 +0200 | [diff] [blame] | 1091 | LIST_SPLICE(&tlskeys_reference, &tkr); |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1092 | return ERR_NONE; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1093 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1094 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 1095 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1096 | |
Ilya Shipitsin | b3201a3 | 2020-10-18 09:11:50 +0500 | [diff] [blame] | 1097 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1098 | /* |
| 1099 | * 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] | 1100 | * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP |
| 1101 | * status extension, the issuer's certificate is mandatory. It should be |
| 1102 | * present in ckch->ocsp_issuer. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1103 | * |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1104 | * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an |
| 1105 | * OCSP response. If file is empty or content is not a valid OCSP response, |
| 1106 | * OCSP status extension is enabled but OCSP response is ignored (a warning is |
| 1107 | * displayed). |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1108 | * |
| 1109 | * 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] | 1110 | * successfully enabled, or -1 in other error case. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1111 | */ |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 1112 | static int ssl_sock_load_ocsp(const char *path, SSL_CTX *ctx, struct ckch_data *data, STACK_OF(X509) *chain) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1113 | { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1114 | X509 *x, *issuer; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1115 | int i, ret = -1; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1116 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1117 | char *warn = NULL; |
| 1118 | unsigned char *p; |
Uriah Pollock | 3cbf09e | 2022-11-23 16:41:25 +0100 | [diff] [blame] | 1119 | #ifndef USE_OPENSSL_WOLFSSL |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1120 | void (*callback) (void); |
Uriah Pollock | 3cbf09e | 2022-11-23 16:41:25 +0100 | [diff] [blame] | 1121 | #else |
| 1122 | tlsextStatusCb callback; |
| 1123 | #endif |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1124 | struct buffer *ocsp_uri = get_trash_chunk(); |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1125 | char *err = NULL; |
Willy Tarreau | 6d4c0c2 | 2023-04-07 17:49:37 +0200 | [diff] [blame] | 1126 | size_t path_len; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1127 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 1128 | x = data->cert; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1129 | if (!x) |
| 1130 | goto out; |
| 1131 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1132 | ssl_ocsp_get_uri_from_cert(x, ocsp_uri, &err); |
| 1133 | /* We should have an "OCSP URI" field in order for auto update to work. */ |
| 1134 | if (data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON && b_data(ocsp_uri) == 0) |
| 1135 | goto out; |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1136 | |
| 1137 | /* In case of ocsp update mode set to 'on', this function might be |
| 1138 | * called with no known ocsp response. If no ocsp uri can be found in |
| 1139 | * the certificate, nothing needs to be done here. */ |
Remi Tricot-Le Breton | 5feb35d | 2023-07-21 17:21:15 +0200 | [diff] [blame] | 1140 | if (!data->ocsp_response && !data->ocsp_cid) { |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1141 | if (data->ocsp_update_mode != SSL_SOCK_OCSP_UPDATE_ON || b_data(ocsp_uri) == 0) { |
| 1142 | ret = 0; |
| 1143 | goto out; |
| 1144 | } |
| 1145 | } |
| 1146 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 1147 | issuer = data->ocsp_issuer; |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1148 | /* take issuer from chain over ocsp_issuer, is what is done historicaly */ |
| 1149 | if (chain) { |
| 1150 | /* check if one of the certificate of the chain is the issuer */ |
| 1151 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1152 | X509 *ti = sk_X509_value(chain, i); |
| 1153 | if (X509_check_issued(ti, x) == X509_V_OK) { |
| 1154 | issuer = ti; |
| 1155 | break; |
| 1156 | } |
| 1157 | } |
| 1158 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1159 | if (!issuer) |
| 1160 | goto out; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1161 | |
William Lallemand | 60289bf | 2024-02-26 17:53:02 +0100 | [diff] [blame] | 1162 | if (!data->ocsp_cid) |
Remi Tricot-Le Breton | 2d1daa8 | 2023-01-09 12:02:47 +0100 | [diff] [blame] | 1163 | data->ocsp_cid = OCSP_cert_to_id(0, x, issuer); |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1164 | if (!data->ocsp_cid) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1165 | goto out; |
| 1166 | |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1167 | i = i2d_OCSP_CERTID(data->ocsp_cid, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1168 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1169 | goto out; |
| 1170 | |
Willy Tarreau | 6d4c0c2 | 2023-04-07 17:49:37 +0200 | [diff] [blame] | 1171 | path_len = strlen(path); |
| 1172 | ocsp = calloc(1, sizeof(*ocsp) + path_len + 1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1173 | if (!ocsp) |
| 1174 | goto out; |
| 1175 | |
| 1176 | p = ocsp->key_data; |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1177 | ocsp->key_length = i2d_OCSP_CERTID(data->ocsp_cid, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1178 | |
Remi Tricot-Le Breton | 2b96364 | 2022-12-20 11:11:02 +0100 | [diff] [blame] | 1179 | HA_SPIN_LOCK(OCSP_LOCK, &ocsp_tree_lock); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1180 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1181 | if (iocsp == ocsp) |
| 1182 | ocsp = NULL; |
| 1183 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1184 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1185 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1186 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1187 | #endif |
| 1188 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1189 | |
| 1190 | if (!callback) { |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1191 | struct ocsp_cbk_arg *cb_arg; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1192 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1193 | |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1194 | cb_arg = calloc(1, sizeof(*cb_arg)); |
| 1195 | if (!cb_arg) |
| 1196 | goto out; |
| 1197 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1198 | cb_arg->is_single = 1; |
| 1199 | cb_arg->s_ocsp = iocsp; |
William Lallemand | 60289bf | 2024-02-26 17:53:02 +0100 | [diff] [blame] | 1200 | iocsp->refcount++; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1201 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1202 | pkey = X509_get_pubkey(x); |
| 1203 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1204 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1205 | |
| 1206 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1207 | 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 */ |
| 1208 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1209 | } else { |
| 1210 | /* |
| 1211 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1212 | * Update that cb_arg with the new cert's staple |
| 1213 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1214 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1215 | struct certificate_ocsp *tmp_ocsp; |
| 1216 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1217 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1218 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1219 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1220 | cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1221 | |
| 1222 | /* |
| 1223 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1224 | * the order of operations below matter, take care when changing it |
| 1225 | */ |
| 1226 | tmp_ocsp = cb_arg->s_ocsp; |
| 1227 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1228 | cb_arg->s_ocsp = NULL; |
| 1229 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1230 | cb_arg->is_single = 0; |
| 1231 | cb_arg->single_kt = 0; |
| 1232 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1233 | pkey = X509_get_pubkey(x); |
| 1234 | key_type = EVP_PKEY_base_id(pkey); |
| 1235 | EVP_PKEY_free(pkey); |
| 1236 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1237 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1238 | if (index >= 0 && !cb_arg->m_ocsp[index]) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1239 | cb_arg->m_ocsp[index] = iocsp; |
William Lallemand | 60289bf | 2024-02-26 17:53:02 +0100 | [diff] [blame] | 1240 | iocsp->refcount++; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1241 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1242 | } |
Remi Tricot-Le Breton | 2b96364 | 2022-12-20 11:11:02 +0100 | [diff] [blame] | 1243 | HA_SPIN_UNLOCK(OCSP_LOCK, &ocsp_tree_lock); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1244 | |
| 1245 | ret = 0; |
| 1246 | |
| 1247 | warn = NULL; |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1248 | if (data->ocsp_response && ssl_sock_load_ocsp_response(data->ocsp_response, iocsp, data->ocsp_cid, &warn)) { |
William Lallemand | 3b5f360 | 2019-10-16 18:05:05 +0200 | [diff] [blame] | 1249 | memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1250 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1251 | } |
| 1252 | |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1253 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1254 | /* Do not insert the same certificate_ocsp structure in the |
| 1255 | * update tree more than once. */ |
| 1256 | if (!ocsp) { |
| 1257 | /* Issuer certificate is not included in the certificate |
| 1258 | * chain, it will have to be treated separately during |
| 1259 | * ocsp response validation. */ |
| 1260 | if (issuer == data->ocsp_issuer) { |
| 1261 | iocsp->issuer = issuer; |
| 1262 | X509_up_ref(issuer); |
| 1263 | } |
| 1264 | if (data->chain) |
| 1265 | iocsp->chain = X509_chain_up_ref(data->chain); |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1266 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1267 | iocsp->uri = calloc(1, sizeof(*iocsp->uri)); |
| 1268 | if (!chunk_dup(iocsp->uri, ocsp_uri)) { |
| 1269 | ha_free(&iocsp->uri); |
| 1270 | goto out; |
| 1271 | } |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1272 | |
Willy Tarreau | 6d4c0c2 | 2023-04-07 17:49:37 +0200 | [diff] [blame] | 1273 | /* Note: if we arrive here, ocsp==NULL because iocsp==ocsp |
| 1274 | * after the ebmb_insert(), which indicates that we've |
| 1275 | * just inserted this new node and that it's the one for |
| 1276 | * which we previously allocated enough room for path_len+1 |
| 1277 | * chars. |
| 1278 | */ |
| 1279 | memcpy(iocsp->path, path, path_len + 1); |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 1280 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1281 | if (data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON) { |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1282 | ssl_ocsp_update_insert(iocsp); |
Remi Tricot-Le Breton | 86d1e0b | 2023-03-02 15:49:53 +0100 | [diff] [blame] | 1283 | /* If we are during init the update task is not |
| 1284 | * scheduled yet so a wakeup won't do anything. |
| 1285 | * Otherwise, if the OCSP was added through the CLI, we |
| 1286 | * wake the task up to manage the case of a new entry |
| 1287 | * that needs to be updated before the previous first |
| 1288 | * entry. |
| 1289 | */ |
| 1290 | if (ocsp_update_task) |
| 1291 | task_wakeup(ocsp_update_task, TASK_WOKEN_MSG); |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1292 | } |
Remi Tricot-Le Breton | ad488ae | 2024-02-07 16:38:45 +0100 | [diff] [blame] | 1293 | } else if (iocsp->uri && data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON) { |
| 1294 | /* This unlikely case can happen if a series of "del ssl |
| 1295 | * crt-list" / "add ssl crt-list" commands are made on the CLI. |
| 1296 | * In such a case, the OCSP response tree entry will be created |
| 1297 | * prior to the activation of the ocsp auto update and in such a |
| 1298 | * case we must "force" insertion in the auto update tree. |
| 1299 | */ |
| 1300 | if (iocsp->next_update.node.leaf_p == NULL) { |
| 1301 | ssl_ocsp_update_insert(iocsp); |
| 1302 | /* If we are during init the update task is not |
| 1303 | * scheduled yet so a wakeup won't do anything. |
| 1304 | * Otherwise, if the OCSP was added through the CLI, we |
| 1305 | * wake the task up to manage the case of a new entry |
| 1306 | * that needs to be updated before the previous first |
| 1307 | * entry. |
| 1308 | */ |
| 1309 | if (ocsp_update_task) |
| 1310 | task_wakeup(ocsp_update_task, TASK_WOKEN_MSG); |
| 1311 | } |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1312 | } |
| 1313 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1314 | out: |
Frédéric Lécaille | 57359b9 | 2023-12-05 14:50:40 +0100 | [diff] [blame] | 1315 | if (ret && data->ocsp_cid) { |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1316 | OCSP_CERTID_free(data->ocsp_cid); |
Frédéric Lécaille | 57359b9 | 2023-12-05 14:50:40 +0100 | [diff] [blame] | 1317 | data->ocsp_cid = NULL; |
| 1318 | } |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1319 | |
| 1320 | if (!ret && data->ocsp_response) { |
| 1321 | ha_free(&data->ocsp_response->area); |
| 1322 | ha_free(&data->ocsp_response); |
| 1323 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1324 | |
| 1325 | if (ocsp) |
Remi Tricot-Le Breton | aa529f7 | 2022-11-03 15:16:49 +0100 | [diff] [blame] | 1326 | ssl_sock_free_ocsp(ocsp); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1327 | |
| 1328 | if (warn) |
| 1329 | free(warn); |
| 1330 | |
Tim Duesterhus | b39c24b | 2023-03-19 16:07:47 +0100 | [diff] [blame] | 1331 | free(err); |
| 1332 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1333 | return ret; |
| 1334 | } |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 1335 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 1336 | #endif |
| 1337 | |
| 1338 | #ifdef OPENSSL_IS_BORINGSSL |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 1339 | static int ssl_sock_load_ocsp(const char *path, SSL_CTX *ctx, struct ckch_data *data, STACK_OF(X509) *chain) |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1340 | { |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1341 | 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] | 1342 | } |
| 1343 | #endif |
| 1344 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1345 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 1346 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1347 | |
| 1348 | #define CT_EXTENSION_TYPE 18 |
| 1349 | |
William Lallemand | 03c331c | 2020-05-13 10:10:01 +0200 | [diff] [blame] | 1350 | int sctl_ex_index = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1351 | |
| 1352 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1353 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1354 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1355 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1356 | *out = (unsigned char *) sctl->area; |
| 1357 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1358 | |
| 1359 | return 1; |
| 1360 | } |
| 1361 | |
| 1362 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1363 | { |
| 1364 | return 1; |
| 1365 | } |
| 1366 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1367 | static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1368 | { |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1369 | int ret = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1370 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1371 | 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] | 1372 | goto out; |
| 1373 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1374 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1375 | |
| 1376 | ret = 0; |
| 1377 | |
| 1378 | out: |
| 1379 | return ret; |
| 1380 | } |
| 1381 | |
| 1382 | #endif |
| 1383 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1384 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1385 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1386 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1387 | #ifdef USE_QUIC |
| 1388 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 1389 | #endif /* USE_QUIC */ |
| 1390 | struct ssl_sock_ctx *ctx = NULL; |
| 1391 | |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1392 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1393 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1394 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1395 | if (conn) |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 1396 | ctx = conn_get_ssl_sock_ctx(conn); |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1397 | #ifdef USE_QUIC |
| 1398 | else if (qc) |
| 1399 | ctx = qc->xprt_ctx; |
| 1400 | #endif /* USE_QUIC */ |
Amaury Denoyelle | 7c564bf | 2022-01-24 11:04:05 +0100 | [diff] [blame] | 1401 | |
| 1402 | if (!ctx) { |
| 1403 | /* must never happen */ |
| 1404 | ABORT_NOW(); |
| 1405 | return; |
| 1406 | } |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1407 | |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1408 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1409 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1410 | * change this to #if and do not assign a default value to this macro! |
| 1411 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1412 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1413 | /* Disable renegotiation (CVE-2009-3555) */ |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1414 | if (conn && (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] | 1415 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1416 | conn->err_code = CO_ER_SSL_RENEG; |
| 1417 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1418 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1419 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1420 | |
| 1421 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1422 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1423 | /* Long certificate chains optimz |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1424 | If write and read bios are different, we |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1425 | consider that the buffering was activated, |
| 1426 | so we rise the output buffer size from 4k |
| 1427 | to 16k */ |
| 1428 | write_bio = SSL_get_wbio(ssl); |
| 1429 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1430 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1431 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1432 | } |
| 1433 | } |
| 1434 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1435 | } |
| 1436 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1437 | /* Callback is called for each certificate of the chain during a verify |
| 1438 | ok is set to 1 if preverify detect no error on current certificate. |
| 1439 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1440 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1441 | { |
| 1442 | SSL *ssl; |
| 1443 | struct connection *conn; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1444 | struct ssl_sock_ctx *ctx = NULL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1445 | int err, depth; |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1446 | X509 *client_crt; |
| 1447 | STACK_OF(X509) *certs; |
Frédéric Lécaille | 48e46f9 | 2022-10-14 09:34:00 +0200 | [diff] [blame] | 1448 | struct bind_conf *bind_conf = NULL; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1449 | struct quic_conn *qc = NULL; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1450 | |
| 1451 | 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] | 1452 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1453 | client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1454 | |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1455 | if (conn) { |
| 1456 | bind_conf = __objt_listener(conn->target)->bind_conf; |
| 1457 | ctx = __conn_get_ssl_sock_ctx(conn); |
| 1458 | } |
| 1459 | #ifdef USE_QUIC |
| 1460 | else { |
| 1461 | qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
Amaury Denoyelle | ba303de | 2022-10-17 18:46:49 +0200 | [diff] [blame] | 1462 | BUG_ON(!qc); /* Must never happen */ |
| 1463 | bind_conf = qc->li->bind_conf; |
| 1464 | ctx = qc->xprt_ctx; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1465 | } |
| 1466 | #endif |
| 1467 | |
Frédéric Lécaille | 48e46f9 | 2022-10-14 09:34:00 +0200 | [diff] [blame] | 1468 | BUG_ON(!ctx || !bind_conf); |
Christopher Faulet | 881cce9 | 2022-11-23 09:27:13 +0100 | [diff] [blame] | 1469 | ALREADY_CHECKED(ctx); |
| 1470 | ALREADY_CHECKED(bind_conf); |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1471 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1472 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1473 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1474 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1475 | err = X509_STORE_CTX_get_error(x_store); |
| 1476 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1477 | if (ok) /* no errors */ |
| 1478 | return ok; |
| 1479 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1480 | /* Keep a reference to the client's certificate in order to be able to |
| 1481 | * dump some fetches values in a log even when the verification process |
| 1482 | * fails. */ |
| 1483 | if (depth == 0) { |
| 1484 | X509_free(client_crt); |
| 1485 | client_crt = X509_STORE_CTX_get0_cert(x_store); |
| 1486 | if (client_crt) { |
| 1487 | X509_up_ref(client_crt); |
| 1488 | SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt); |
| 1489 | } |
| 1490 | } |
| 1491 | else { |
| 1492 | /* An error occurred on a CA certificate of the certificate |
| 1493 | * chain, we might never call this verify callback on the client |
| 1494 | * certificate's depth (which is 0) so we try to store the |
| 1495 | * reference right now. */ |
Remi Tricot-Le Breton | f95c295 | 2021-08-20 09:51:23 +0200 | [diff] [blame] | 1496 | certs = X509_STORE_CTX_get1_chain(x_store); |
| 1497 | if (certs) { |
| 1498 | client_crt = sk_X509_value(certs, 0); |
| 1499 | if (client_crt) { |
| 1500 | X509_up_ref(client_crt); |
| 1501 | SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt); |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1502 | } |
| 1503 | sk_X509_pop_free(certs, X509_free); |
| 1504 | } |
| 1505 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1506 | |
| 1507 | /* check if CA error needs to be ignored */ |
| 1508 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1509 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1510 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1511 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1512 | } |
| 1513 | |
Remi Tricot-Le Breton | 9b25982 | 2022-11-10 10:48:58 +0100 | [diff] [blame] | 1514 | if (err <= SSL_MAX_VFY_ERROR_CODE && |
William Lallemand | 4639689 | 2022-11-10 16:45:24 +0100 | [diff] [blame] | 1515 | cert_ignerr_bitfield_get(bind_conf->ca_ignerr_bitfield, err)) |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1516 | goto err_ignored; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1517 | |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1518 | /* TODO: for QUIC connection, this error code is lost */ |
| 1519 | if (conn) |
| 1520 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1521 | return 0; |
| 1522 | } |
| 1523 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1524 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1525 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1526 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1527 | /* check if certificate error needs to be ignored */ |
Remi Tricot-Le Breton | 9b25982 | 2022-11-10 10:48:58 +0100 | [diff] [blame] | 1528 | if (err <= SSL_MAX_VFY_ERROR_CODE && |
William Lallemand | 4639689 | 2022-11-10 16:45:24 +0100 | [diff] [blame] | 1529 | cert_ignerr_bitfield_get(bind_conf->crt_ignerr_bitfield, err)) |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1530 | goto err_ignored; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1531 | |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1532 | /* TODO: for QUIC connection, this error code is lost */ |
| 1533 | if (conn) |
| 1534 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1535 | return 0; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1536 | |
| 1537 | err_ignored: |
| 1538 | ssl_sock_dump_errors(conn, qc); |
| 1539 | ERR_clear_error(); |
| 1540 | return 1; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1541 | } |
| 1542 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1543 | #ifdef TLS1_RT_HEARTBEAT |
| 1544 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 1545 | int content_type, const void *buf, size_t len, |
| 1546 | SSL *ssl) |
| 1547 | { |
| 1548 | /* test heartbeat received (write_p is set to 0 |
| 1549 | for a received record) */ |
| 1550 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
Willy Tarreau | 3a0a0d6 | 2022-04-12 07:31:06 +0200 | [diff] [blame] | 1551 | struct ssl_sock_ctx *ctx = __conn_get_ssl_sock_ctx(conn); |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1552 | const unsigned char *p = buf; |
| 1553 | unsigned int payload; |
| 1554 | |
| 1555 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
| 1556 | |
| 1557 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1558 | if (*p != TLS1_HB_REQUEST) |
| 1559 | return; |
| 1560 | |
| 1561 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
| 1562 | goto kill_it; |
| 1563 | |
| 1564 | payload = (p[1] * 256) + p[2]; |
| 1565 | if (3 + payload + 16 <= len) |
| 1566 | return; /* OK no problem */ |
| 1567 | kill_it: |
| 1568 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1569 | * advertised payload is larger than the advertised packet |
| 1570 | * length, so we have garbage in the buffer between the |
| 1571 | * payload and the end of the buffer (p+len). We can't know |
| 1572 | * if the SSL stack is patched, and we don't know if we can |
| 1573 | * safely wipe out the area between p+3+len and payload. |
| 1574 | * So instead, we prevent the response from being sent by |
| 1575 | * setting the max_send_fragment to 0 and we report an SSL |
| 1576 | * error, which will kill this connection. It will be reported |
| 1577 | * above as SSL_ERROR_SSL while an other handshake failure with |
| 1578 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1579 | */ |
| 1580 | ssl->max_send_fragment = 0; |
| 1581 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1582 | } |
| 1583 | } |
| 1584 | #endif |
| 1585 | |
| 1586 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 1587 | int content_type, const void *buf, size_t len, |
| 1588 | SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1589 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1590 | struct ssl_capture *capture; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1591 | uchar *msg; |
| 1592 | uchar *end; |
| 1593 | uchar *extensions_end; |
| 1594 | uchar *ec_start = NULL; |
| 1595 | uchar *ec_formats_start = NULL; |
| 1596 | uchar *list_end; |
| 1597 | ushort protocol_version; |
| 1598 | ushort extension_id; |
| 1599 | ushort ec_len = 0; |
| 1600 | uchar ec_formats_len = 0; |
| 1601 | int offset = 0; |
| 1602 | int rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1603 | |
| 1604 | /* This function is called for "from client" and "to server" |
| 1605 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1606 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1607 | */ |
| 1608 | |
| 1609 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1610 | * otherwise it is set to 1. |
| 1611 | */ |
| 1612 | if (write_p != 0) |
| 1613 | return; |
| 1614 | |
| 1615 | /* content_type contains the type of message received or sent |
| 1616 | * according with the SSL/TLS protocol spec. This message is |
| 1617 | * encoded with one byte. The value 256 (two bytes) is used |
| 1618 | * for designing the SSL/TLS record layer. According with the |
| 1619 | * rfc6101, the expected message (other than 256) are: |
| 1620 | * - change_cipher_spec(20) |
| 1621 | * - alert(21) |
| 1622 | * - handshake(22) |
| 1623 | * - application_data(23) |
| 1624 | * - (255) |
| 1625 | * We are interessed by the handshake and specially the client |
| 1626 | * hello. |
| 1627 | */ |
| 1628 | if (content_type != 22) |
| 1629 | return; |
| 1630 | |
| 1631 | /* The message length is at least 4 bytes, containing the |
| 1632 | * message type and the message length. |
| 1633 | */ |
| 1634 | if (len < 4) |
| 1635 | return; |
| 1636 | |
| 1637 | /* First byte of the handshake message id the type of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1638 | * message. The known types are: |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1639 | * - hello_request(0) |
| 1640 | * - client_hello(1) |
| 1641 | * - server_hello(2) |
| 1642 | * - certificate(11) |
| 1643 | * - server_key_exchange (12) |
| 1644 | * - certificate_request(13) |
| 1645 | * - server_hello_done(14) |
| 1646 | * We are interested by the client hello. |
| 1647 | */ |
| 1648 | msg = (unsigned char *)buf; |
| 1649 | if (msg[0] != 1) |
| 1650 | return; |
| 1651 | |
| 1652 | /* Next three bytes are the length of the message. The total length |
| 1653 | * must be this decoded length + 4. If the length given as argument |
| 1654 | * is not the same, we abort the protocol dissector. |
| 1655 | */ |
| 1656 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1657 | if (len < rec_len + 4) |
| 1658 | return; |
| 1659 | msg += 4; |
| 1660 | end = msg + rec_len; |
| 1661 | if (end < msg) |
| 1662 | return; |
| 1663 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1664 | /* Expect 2 bytes for protocol version |
| 1665 | * (1 byte for major and 1 byte for minor) |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1666 | */ |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1667 | if (msg + 2 > end) |
| 1668 | return; |
| 1669 | protocol_version = (msg[0] << 8) + msg[1]; |
| 1670 | msg += 2; |
| 1671 | |
| 1672 | /* Expect the random, composed by 4 bytes for the unix time and |
| 1673 | * 28 bytes for unix payload. So we jump 4 + 28. |
| 1674 | */ |
| 1675 | msg += 4 + 28; |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1676 | if (msg > end) |
| 1677 | return; |
| 1678 | |
| 1679 | /* Next, is session id: |
| 1680 | * if present, we have to jump by length + 1 for the size information |
| 1681 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1682 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1683 | if (msg[0] > 0) |
| 1684 | msg += msg[0]; |
| 1685 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1686 | if (msg > end) |
| 1687 | return; |
| 1688 | |
| 1689 | /* Next two bytes are the ciphersuite length. */ |
| 1690 | if (msg + 2 > end) |
| 1691 | return; |
| 1692 | rec_len = (msg[0] << 8) + msg[1]; |
| 1693 | msg += 2; |
| 1694 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1695 | return; |
| 1696 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1697 | capture = pool_zalloc(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1698 | if (!capture) |
| 1699 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1700 | /* Compute the xxh64 of the ciphersuite. */ |
| 1701 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1702 | |
| 1703 | /* Capture the ciphersuite. */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1704 | capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len); |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1705 | capture->ciphersuite_offset = 0; |
| 1706 | memcpy(capture->data, msg, capture->ciphersuite_len); |
| 1707 | msg += rec_len; |
| 1708 | offset += capture->ciphersuite_len; |
| 1709 | |
| 1710 | /* Initialize other data */ |
| 1711 | capture->protocol_version = protocol_version; |
| 1712 | |
| 1713 | /* Next, compression methods: |
| 1714 | * if present, we have to jump by length + 1 for the size information |
| 1715 | * if not present, we have to jump by 1 only |
| 1716 | */ |
| 1717 | if (msg[0] > 0) |
| 1718 | msg += msg[0]; |
| 1719 | msg += 1; |
| 1720 | if (msg > end) |
| 1721 | goto store_capture; |
| 1722 | |
| 1723 | /* We reached extensions */ |
| 1724 | if (msg + 2 > end) |
| 1725 | goto store_capture; |
| 1726 | rec_len = (msg[0] << 8) + msg[1]; |
| 1727 | msg += 2; |
| 1728 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1729 | goto store_capture; |
| 1730 | extensions_end = msg + rec_len; |
| 1731 | capture->extensions_offset = offset; |
| 1732 | |
| 1733 | /* Parse each extension */ |
| 1734 | while (msg + 4 < extensions_end) { |
| 1735 | /* Add 2 bytes of extension_id */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1736 | if (global_ssl.capture_buffer_size >= offset + 2) { |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1737 | capture->data[offset++] = msg[0]; |
| 1738 | capture->data[offset++] = msg[1]; |
| 1739 | capture->extensions_len += 2; |
| 1740 | } |
| 1741 | else |
| 1742 | break; |
| 1743 | extension_id = (msg[0] << 8) + msg[1]; |
| 1744 | /* Length of the extension */ |
| 1745 | rec_len = (msg[2] << 8) + msg[3]; |
| 1746 | |
| 1747 | /* Expect 2 bytes extension id + 2 bytes extension size */ |
| 1748 | msg += 2 + 2; |
| 1749 | if (msg + rec_len > extensions_end || msg + rec_len < msg) |
| 1750 | goto store_capture; |
| 1751 | /* TLS Extensions |
| 1752 | * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */ |
| 1753 | if (extension_id == 0x000a) { |
| 1754 | /* Elliptic Curves: |
| 1755 | * https://www.rfc-editor.org/rfc/rfc8422.html |
| 1756 | * https://www.rfc-editor.org/rfc/rfc7919.html */ |
| 1757 | list_end = msg + rec_len; |
| 1758 | if (msg + 2 > list_end) |
| 1759 | goto store_capture; |
| 1760 | rec_len = (msg[0] << 8) + msg[1]; |
| 1761 | msg += 2; |
| 1762 | |
| 1763 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1764 | goto store_capture; |
| 1765 | /* Store location/size of the list */ |
| 1766 | ec_start = msg; |
| 1767 | ec_len = rec_len; |
| 1768 | } |
| 1769 | else if (extension_id == 0x000b) { |
| 1770 | /* Elliptic Curves Point Formats: |
| 1771 | * https://www.rfc-editor.org/rfc/rfc8422.html */ |
| 1772 | list_end = msg + rec_len; |
| 1773 | if (msg + 1 > list_end) |
| 1774 | goto store_capture; |
| 1775 | rec_len = msg[0]; |
| 1776 | msg += 1; |
| 1777 | |
| 1778 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1779 | goto store_capture; |
| 1780 | /* Store location/size of the list */ |
| 1781 | ec_formats_start = msg; |
| 1782 | ec_formats_len = rec_len; |
| 1783 | } |
| 1784 | msg += rec_len; |
| 1785 | } |
| 1786 | |
| 1787 | if (ec_start) { |
| 1788 | rec_len = ec_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1789 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1790 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1791 | memcpy(capture->data + offset, ec_start, rec_len); |
| 1792 | capture->ec_offset = offset; |
| 1793 | capture->ec_len = rec_len; |
| 1794 | offset += rec_len; |
| 1795 | } |
| 1796 | if (ec_formats_start) { |
| 1797 | rec_len = ec_formats_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1798 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1799 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1800 | memcpy(capture->data + offset, ec_formats_start, rec_len); |
| 1801 | capture->ec_formats_offset = offset; |
| 1802 | capture->ec_formats_len = rec_len; |
| 1803 | offset += rec_len; |
| 1804 | } |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1805 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1806 | store_capture: |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1807 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1808 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1809 | |
| 1810 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 1811 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1812 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 1813 | int content_type, const void *buf, size_t len, |
| 1814 | SSL *ssl) |
| 1815 | { |
| 1816 | struct ssl_keylog *keylog; |
| 1817 | |
| 1818 | if (SSL_get_ex_data(ssl, ssl_keylog_index)) |
| 1819 | return; |
| 1820 | |
Willy Tarreau | f208ac0 | 2021-03-22 21:10:12 +0100 | [diff] [blame] | 1821 | keylog = pool_zalloc(pool_head_ssl_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1822 | if (!keylog) |
| 1823 | return; |
| 1824 | |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1825 | if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) { |
| 1826 | pool_free(pool_head_ssl_keylog, keylog); |
| 1827 | return; |
| 1828 | } |
| 1829 | } |
| 1830 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1831 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1832 | /* Callback is called for ssl protocol analyse */ |
| 1833 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1834 | { |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1835 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 1836 | struct ssl_sock_msg_callback *cbk; |
| 1837 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1838 | /* Try to call all callback functions that were registered by using |
| 1839 | * ssl_sock_register_msg_callback(). |
| 1840 | */ |
| 1841 | list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) { |
| 1842 | cbk->func(conn, write_p, version, content_type, buf, len, ssl); |
| 1843 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1844 | } |
| 1845 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1846 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1847 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1848 | const unsigned char *in, unsigned int inlen, |
| 1849 | void *arg) |
| 1850 | { |
| 1851 | struct server *srv = arg; |
| 1852 | |
| 1853 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1854 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1855 | return SSL_TLSEXT_ERR_OK; |
| 1856 | return SSL_TLSEXT_ERR_NOACK; |
| 1857 | } |
| 1858 | #endif |
| 1859 | |
| 1860 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1861 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1862 | * negotiable protocols for NPN. |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1863 | */ |
| 1864 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1865 | unsigned int *len, void *arg) |
| 1866 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1867 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1868 | |
| 1869 | *data = (const unsigned char *)conf->npn_str; |
| 1870 | *len = conf->npn_len; |
| 1871 | return SSL_TLSEXT_ERR_OK; |
| 1872 | } |
| 1873 | #endif |
| 1874 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1875 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1876 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1877 | * negotiable protocols for ALPN. |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1878 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1879 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1880 | unsigned char *outlen, |
| 1881 | const unsigned char *server, |
| 1882 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1883 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1884 | struct ssl_bind_conf *conf = arg; |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1885 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1886 | struct quic_conn *qc = SSL_get_ex_data(s, ssl_qc_app_data_index); |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1887 | #endif |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1888 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1889 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1890 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1891 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1892 | if (qc) |
| 1893 | quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL); |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1894 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1895 | return SSL_TLSEXT_ERR_NOACK; |
| 1896 | } |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1897 | |
| 1898 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1899 | if (qc && !quic_set_app_ops(qc, *out, *outlen)) { |
| 1900 | quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL); |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1901 | return SSL_TLSEXT_ERR_NOACK; |
| 1902 | } |
| 1903 | #endif |
| 1904 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1905 | return SSL_TLSEXT_ERR_OK; |
| 1906 | } |
| 1907 | #endif |
| 1908 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1909 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1910 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1911 | |
cui fliter | a94bedc | 2022-08-29 14:42:57 +0800 | [diff] [blame] | 1912 | /* Configure a DNS SAN extension on a certificate. */ |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 1913 | int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) { |
| 1914 | int failure = 0; |
| 1915 | X509_EXTENSION *san_ext = NULL; |
| 1916 | CONF *conf = NULL; |
| 1917 | struct buffer *san_name = get_trash_chunk(); |
| 1918 | |
| 1919 | conf = NCONF_new(NULL); |
| 1920 | if (!conf) { |
| 1921 | failure = 1; |
| 1922 | goto cleanup; |
| 1923 | } |
| 1924 | |
| 1925 | /* Build an extension based on the DNS entry above */ |
| 1926 | chunk_appendf(san_name, "DNS:%s", servername); |
| 1927 | san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area); |
| 1928 | if (!san_ext) { |
| 1929 | failure = 1; |
| 1930 | goto cleanup; |
| 1931 | } |
| 1932 | |
| 1933 | /* Add the extension */ |
| 1934 | if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) { |
| 1935 | failure = 1; |
| 1936 | goto cleanup; |
| 1937 | } |
| 1938 | |
| 1939 | /* Success */ |
| 1940 | failure = 0; |
| 1941 | |
| 1942 | cleanup: |
| 1943 | if (NULL != san_ext) X509_EXTENSION_free(san_ext); |
| 1944 | if (NULL != conf) NCONF_free(conf); |
| 1945 | |
| 1946 | return failure; |
| 1947 | } |
| 1948 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1949 | /* Create a X509 certificate with the specified servername and serial. This |
| 1950 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1951 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1952 | 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] | 1953 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 1954 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
| 1955 | EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1956 | SSL_CTX *ssl_ctx = NULL; |
| 1957 | X509 *newcrt = NULL; |
| 1958 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1959 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1960 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1961 | X509_NAME *name; |
| 1962 | const EVP_MD *digest; |
| 1963 | X509V3_CTX ctx; |
| 1964 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1965 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1966 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 1967 | /* Get the private key of the default certificate and use it */ |
Ilya Shipitsin | af20488 | 2020-12-19 03:12:12 +0500 | [diff] [blame] | 1968 | #ifdef HAVE_SSL_CTX_get0_privatekey |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1969 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 1970 | #else |
| 1971 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 1972 | if (tmp_ssl) |
| 1973 | pkey = SSL_get_privatekey(tmp_ssl); |
| 1974 | #endif |
| 1975 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1976 | goto mkcert_error; |
| 1977 | |
| 1978 | /* Create the certificate */ |
| 1979 | if (!(newcrt = X509_new())) |
| 1980 | goto mkcert_error; |
| 1981 | |
| 1982 | /* Set version number for the certificate (X509v3) and the serial |
| 1983 | * number */ |
| 1984 | if (X509_set_version(newcrt, 2L) != 1) |
| 1985 | goto mkcert_error; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 1986 | 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] | 1987 | |
| 1988 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 1989 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 1990 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1991 | goto mkcert_error; |
| 1992 | |
| 1993 | /* set public key in the certificate */ |
| 1994 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1995 | goto mkcert_error; |
| 1996 | |
| 1997 | /* Set issuer name from the CA */ |
| 1998 | if (!(name = X509_get_subject_name(cacert))) |
| 1999 | goto mkcert_error; |
| 2000 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 2001 | goto mkcert_error; |
| 2002 | |
| 2003 | /* Set the subject name using the same, but the CN */ |
| 2004 | name = X509_NAME_dup(name); |
| 2005 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 2006 | (const unsigned char *)servername, |
| 2007 | -1, -1, 0) != 1) { |
| 2008 | X509_NAME_free(name); |
| 2009 | goto mkcert_error; |
| 2010 | } |
| 2011 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 2012 | X509_NAME_free(name); |
| 2013 | goto mkcert_error; |
| 2014 | } |
| 2015 | X509_NAME_free(name); |
| 2016 | |
| 2017 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2018 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2019 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 2020 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 2021 | X509_EXTENSION *ext; |
| 2022 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2023 | 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] | 2024 | goto mkcert_error; |
| 2025 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 2026 | X509_EXTENSION_free(ext); |
| 2027 | goto mkcert_error; |
| 2028 | } |
| 2029 | X509_EXTENSION_free(ext); |
| 2030 | } |
| 2031 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 2032 | /* Add SAN extension */ |
| 2033 | if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) { |
| 2034 | goto mkcert_error; |
| 2035 | } |
| 2036 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2037 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2038 | |
| 2039 | key_type = EVP_PKEY_base_id(capkey); |
| 2040 | |
| 2041 | if (key_type == EVP_PKEY_DSA) |
| 2042 | digest = EVP_sha1(); |
| 2043 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2044 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2045 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2046 | digest = EVP_sha256(); |
| 2047 | else { |
Ilya Shipitsin | ec36c91 | 2021-01-07 11:57:42 +0500 | [diff] [blame] | 2048 | #ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2049 | int nid; |
| 2050 | |
| 2051 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 2052 | goto mkcert_error; |
| 2053 | if (!(digest = EVP_get_digestbynid(nid))) |
| 2054 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 2055 | #else |
| 2056 | goto mkcert_error; |
| 2057 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2058 | } |
| 2059 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2060 | if (!(X509_sign(newcrt, capkey, digest))) |
| 2061 | goto mkcert_error; |
| 2062 | |
| 2063 | /* Create and set the new SSL_CTX */ |
| 2064 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 2065 | goto mkcert_error; |
| 2066 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 2067 | goto mkcert_error; |
| 2068 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 2069 | goto mkcert_error; |
| 2070 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 2071 | goto mkcert_error; |
| 2072 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2073 | /* Build chaining the CA cert and the rest of the chain, keep these order */ |
| 2074 | #if defined(SSL_CTX_add1_chain_cert) |
| 2075 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) { |
| 2076 | goto mkcert_error; |
| 2077 | } |
| 2078 | |
| 2079 | if (bind_conf->ca_sign_ckch->chain) { |
| 2080 | for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) { |
| 2081 | X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i); |
| 2082 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) { |
| 2083 | goto mkcert_error; |
| 2084 | } |
| 2085 | } |
| 2086 | } |
| 2087 | #endif |
| 2088 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2089 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2090 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2091 | #ifndef OPENSSL_NO_DH |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 2092 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 2093 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh_cbk); |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 2094 | #else |
| 2095 | ssl_sock_set_tmp_dh_from_pkey(ssl_ctx, pkey); |
| 2096 | #endif |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2097 | #endif |
Remi Tricot-Le Breton | c11e7e1 | 2022-02-08 17:45:56 +0100 | [diff] [blame] | 2098 | |
| 2099 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 2100 | #if defined(SSL_CTX_set1_curves_list) |
| 2101 | { |
| 2102 | const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE); |
| 2103 | if (!SSL_CTX_set1_curves_list(ssl_ctx, ecdhe)) |
| 2104 | goto end; |
| 2105 | } |
| 2106 | #endif |
| 2107 | #else |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2108 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 2109 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2110 | 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] | 2111 | EC_KEY *ecc; |
| 2112 | int nid; |
| 2113 | |
| 2114 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 2115 | goto end; |
| 2116 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 2117 | goto end; |
| 2118 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 2119 | EC_KEY_free(ecc); |
| 2120 | } |
Remi Tricot-Le Breton | c11e7e1 | 2022-02-08 17:45:56 +0100 | [diff] [blame] | 2121 | #endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */ |
| 2122 | #endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */ |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2123 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2124 | return ssl_ctx; |
| 2125 | |
| 2126 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2127 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2128 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2129 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 2130 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2131 | return NULL; |
| 2132 | } |
| 2133 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2134 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2135 | /* 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] | 2136 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2137 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2138 | 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] | 2139 | { |
| 2140 | struct lru64 *lru = NULL; |
| 2141 | |
| 2142 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2143 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2144 | 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] | 2145 | if (lru && lru->domain) { |
| 2146 | if (ssl) |
| 2147 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2148 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2149 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2150 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2151 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2152 | } |
| 2153 | return NULL; |
| 2154 | } |
| 2155 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2156 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2157 | * function is not thread-safe, it should only be used to check if a certificate |
| 2158 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2159 | * thread). It is kept for backward compatibility. */ |
| 2160 | SSL_CTX * |
| 2161 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2162 | { |
| 2163 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2164 | } |
| 2165 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2166 | /* Set a certificate int the LRU cache used to store generated |
| 2167 | * certificate. Return 0 on success, otherwise -1 */ |
| 2168 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2169 | 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] | 2170 | { |
| 2171 | struct lru64 *lru = NULL; |
| 2172 | |
| 2173 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2174 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2175 | 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] | 2176 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2177 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2178 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2179 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2180 | if (lru->domain && lru->data) |
| 2181 | lru->free((SSL_CTX *)lru->data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2182 | 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] | 2183 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2184 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2185 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2186 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2187 | } |
| 2188 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2189 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2190 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2191 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2192 | { |
| 2193 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2194 | } |
| 2195 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2196 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2197 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2198 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2199 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2200 | 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] | 2201 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2202 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2203 | SSL_CTX *ssl_ctx = NULL; |
| 2204 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2205 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2206 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2207 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2208 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2209 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2210 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2211 | if (lru && lru->domain) |
| 2212 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2213 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2214 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2215 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2216 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2217 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2218 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2219 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2220 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2221 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2222 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2223 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2224 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2225 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2226 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2227 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2228 | return 0; |
| 2229 | } |
| 2230 | static int |
| 2231 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2232 | { |
| 2233 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2234 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2235 | |
Willy Tarreau | f5bdb64 | 2019-07-17 11:29:32 +0200 | [diff] [blame] | 2236 | if (conn_get_dst(conn)) { |
Willy Tarreau | 085a151 | 2019-07-17 14:47:35 +0200 | [diff] [blame] | 2237 | 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] | 2238 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2239 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2240 | } |
| 2241 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2242 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2243 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2244 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2245 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2246 | |
| 2247 | 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] | 2248 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2249 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2250 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2251 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2252 | #endif |
| 2253 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2254 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2255 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2256 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2257 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2258 | 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] | 2259 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2260 | 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] | 2261 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2262 | #endif |
| 2263 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2264 | 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] | 2265 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2266 | 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] | 2267 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2268 | #endif |
| 2269 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2270 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2271 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2272 | /* Unusable in this context. */ |
| 2273 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2274 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2275 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2276 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2277 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2278 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2279 | |
| 2280 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2281 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2282 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2283 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2284 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2285 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2286 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2287 | } |
| 2288 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2289 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2290 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2291 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2292 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2293 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2294 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2295 | } |
| 2296 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2297 | 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] | 2298 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2299 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2300 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2301 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2302 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2303 | } |
| 2304 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2305 | 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] | 2306 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2307 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2308 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2309 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2310 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2311 | } |
| 2312 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) { |
William Lallemand | f22b032 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2313 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2314 | 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] | 2315 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2316 | #endif |
| 2317 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2318 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
William Lallemand | f22b032 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2319 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2320 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2321 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2322 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2323 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2324 | #endif |
| 2325 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2326 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2327 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 2328 | struct methodVersions methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2329 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2330 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2331 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2332 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2333 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2334 | {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] | 2335 | }; |
| 2336 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2337 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2338 | { |
| 2339 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2340 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2341 | SSL_set_SSL_CTX(ssl, ctx); |
| 2342 | } |
| 2343 | |
Ilya Shipitsin | 1fc44d4 | 2021-01-23 00:09:14 +0500 | [diff] [blame] | 2344 | #ifdef HAVE_SSL_CLIENT_HELLO_CB |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2345 | |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2346 | int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2347 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2348 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2349 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2350 | |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2351 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || (s->options & BC_O_GENERATE_CERTS)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2352 | return SSL_TLSEXT_ERR_OK; |
| 2353 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2354 | } |
| 2355 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2356 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2357 | int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2358 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2359 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2360 | #else |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2361 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2362 | { |
| 2363 | #endif |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2364 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 2365 | #ifdef USE_QUIC |
| 2366 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 2367 | #endif /* USE_QUIC */ |
| 2368 | struct bind_conf *s = NULL; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2369 | const uint8_t *extension_data; |
| 2370 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2371 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2372 | |
| 2373 | char *wildp = NULL; |
| 2374 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2375 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2376 | 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] | 2377 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2378 | int i; |
| 2379 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2380 | if (conn) |
| 2381 | s = __objt_listener(conn->target)->bind_conf; |
| 2382 | #ifdef USE_QUIC |
| 2383 | else if (qc) |
| 2384 | s = qc->li->bind_conf; |
| 2385 | #endif /* USE_QUIC */ |
Amaury Denoyelle | 7c564bf | 2022-01-24 11:04:05 +0100 | [diff] [blame] | 2386 | |
| 2387 | if (!s) { |
| 2388 | /* must never happen */ |
| 2389 | ABORT_NOW(); |
| 2390 | return 0; |
| 2391 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2392 | |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2393 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2394 | if (qc) { |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2395 | /* Look for the QUIC transport parameters. */ |
| 2396 | #ifdef OPENSSL_IS_BORINGSSL |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2397 | if (!SSL_early_callback_ctx_extension_get(ctx, qc->tps_tls_ext, |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2398 | &extension_data, &extension_len)) |
| 2399 | #else |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2400 | if (!SSL_client_hello_get0_ext(ssl, qc->tps_tls_ext, |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2401 | &extension_data, &extension_len)) |
| 2402 | #endif |
Frédéric Lécaille | b5b5247 | 2021-11-22 15:55:16 +0100 | [diff] [blame] | 2403 | { |
| 2404 | /* This is not redundant. It we only return 0 without setting |
| 2405 | * <*al>, this has as side effect to generate another TLS alert |
| 2406 | * which would be set after calling quic_set_tls_alert(). |
| 2407 | */ |
| 2408 | *al = SSL_AD_MISSING_EXTENSION; |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2409 | quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION); |
Frédéric Lécaille | b5b5247 | 2021-11-22 15:55:16 +0100 | [diff] [blame] | 2410 | return 0; |
| 2411 | } |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2412 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2413 | if (!quic_transport_params_store(qc, 0, extension_data, |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2414 | extension_data + extension_len)) |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2415 | goto abort; |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2416 | |
| 2417 | qc->flags |= QUIC_FL_CONN_TX_TP_RECEIVED; |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2418 | } |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2419 | #endif /* USE_QUIC */ |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2420 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2421 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2422 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2423 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2424 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2425 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2426 | #else |
| 2427 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2428 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2429 | /* |
| 2430 | * The server_name extension was given too much extensibility when it |
| 2431 | * was written, so parsing the normal case is a bit complex. |
| 2432 | */ |
| 2433 | size_t len; |
| 2434 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2435 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2436 | /* Extract the length of the supplied list of names. */ |
| 2437 | len = (*extension_data++) << 8; |
| 2438 | len |= *extension_data++; |
| 2439 | if (len + 2 != extension_len) |
| 2440 | goto abort; |
| 2441 | /* |
| 2442 | * The list in practice only has a single element, so we only consider |
| 2443 | * the first one. |
| 2444 | */ |
| 2445 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2446 | goto abort; |
| 2447 | extension_len = len - 1; |
| 2448 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2449 | if (extension_len <= 2) |
| 2450 | goto abort; |
| 2451 | len = (*extension_data++) << 8; |
| 2452 | len |= *extension_data++; |
| 2453 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2454 | || memchr(extension_data, 0, len) != NULL) |
| 2455 | goto abort; |
| 2456 | servername = extension_data; |
| 2457 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2458 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2459 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2460 | if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2461 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2462 | } |
| 2463 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2464 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2465 | if (!s->strict_sni) { |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2466 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2467 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2468 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2469 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2470 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2471 | goto abort; |
| 2472 | } |
| 2473 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2474 | /* extract/check clientHello information */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2475 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2476 | 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] | 2477 | #else |
| 2478 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2479 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2480 | uint8_t sign; |
| 2481 | size_t len; |
| 2482 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2483 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2484 | len = (*extension_data++) << 8; |
| 2485 | len |= *extension_data++; |
| 2486 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2487 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2488 | if (len % 2 != 0) |
| 2489 | goto abort; |
| 2490 | for (; len > 0; len -= 2) { |
| 2491 | extension_data++; /* hash */ |
| 2492 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2493 | switch (sign) { |
| 2494 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2495 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2496 | break; |
| 2497 | case TLSEXT_signature_ecdsa: |
| 2498 | has_ecdsa_sig = 1; |
| 2499 | break; |
| 2500 | default: |
| 2501 | continue; |
| 2502 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2503 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2504 | break; |
| 2505 | } |
| 2506 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2507 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2508 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2509 | } |
| 2510 | 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] | 2511 | const SSL_CIPHER *cipher; |
William Lallemand | 3f1e6f0 | 2023-10-24 23:58:02 +0200 | [diff] [blame] | 2512 | uint32_t cipher_id; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2513 | size_t len; |
| 2514 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2515 | has_ecdsa_sig = 0; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2516 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2517 | len = ctx->cipher_suites_len; |
| 2518 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2519 | #else |
| 2520 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2521 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2522 | if (len % 2 != 0) |
| 2523 | goto abort; |
| 2524 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2525 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2526 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2527 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2528 | #else |
| 2529 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2530 | #endif |
William Lallemand | 40ff02b | 2023-10-30 18:08:16 +0100 | [diff] [blame] | 2531 | if (!cipher) |
| 2532 | continue; |
| 2533 | |
William Lallemand | 3f1e6f0 | 2023-10-24 23:58:02 +0200 | [diff] [blame] | 2534 | cipher_id = SSL_CIPHER_get_id(cipher); |
| 2535 | /* skip the SCSV "fake" signaling ciphersuites because they are NID_auth_any (RFC 7507) */ |
| 2536 | if (cipher_id == SSL3_CK_SCSV || cipher_id == SSL3_CK_FALLBACK_SCSV) |
| 2537 | continue; |
| 2538 | |
William Lallemand | 40ff02b | 2023-10-30 18:08:16 +0100 | [diff] [blame] | 2539 | if (SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa |
| 2540 | || SSL_CIPHER_get_auth_nid(cipher) == NID_auth_any) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2541 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2542 | break; |
| 2543 | } |
| 2544 | } |
| 2545 | } |
| 2546 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2547 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2548 | trash.area[i] = tolower(servername[i]); |
| 2549 | if (!wildp && (trash.area[i] == '.')) |
| 2550 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2551 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2552 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2553 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2554 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2555 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2556 | /* Look for an ECDSA, RSA and DSA certificate, first in the single |
| 2557 | * name and if not found in the wildcard */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2558 | for (i = 0; i < 2; i++) { |
| 2559 | if (i == 0) /* lookup in full qualified names */ |
| 2560 | node = ebst_lookup(&s->sni_ctx, trash.area); |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2561 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2562 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2563 | else |
| 2564 | break; |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2565 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2566 | for (n = node; n; n = ebmb_next_dup(n)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2567 | |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2568 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2569 | if (!container_of(n, struct sni_ctx, name)->neg) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2570 | struct sni_ctx *sni, *sni_tmp; |
| 2571 | int skip = 0; |
| 2572 | |
| 2573 | if (i == 1 && wildp) { /* wildcard */ |
| 2574 | /* If this is a wildcard, look for an exclusion on the same crt-list line */ |
| 2575 | sni = container_of(n, struct sni_ctx, name); |
| 2576 | 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] | 2577 | 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] | 2578 | skip = 1; |
| 2579 | break; |
| 2580 | } |
| 2581 | } |
| 2582 | if (skip) |
| 2583 | continue; |
| 2584 | } |
| 2585 | |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2586 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2587 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2588 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2589 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2590 | break; |
| 2591 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2592 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2593 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2594 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2595 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2596 | if (!node_anonymous) |
| 2597 | node_anonymous = n; |
| 2598 | break; |
| 2599 | } |
| 2600 | } |
| 2601 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2602 | } |
| 2603 | /* Once the certificates are found, select them depending on what is |
| 2604 | * supported in the client and by key_signature priority order: EDSA > |
| 2605 | * RSA > DSA */ |
William Lallemand | 5b1d1f6 | 2020-08-14 15:30:13 +0200 | [diff] [blame] | 2606 | if (has_ecdsa_sig && node_ecdsa) |
| 2607 | node = node_ecdsa; |
| 2608 | else if (has_rsa_sig && node_rsa) |
| 2609 | node = node_rsa; |
| 2610 | else if (node_anonymous) |
| 2611 | node = node_anonymous; |
| 2612 | else if (node_ecdsa) |
| 2613 | node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */ |
| 2614 | else |
| 2615 | node = node_rsa; /* no rsa signature case (far far away) */ |
| 2616 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2617 | if (node) { |
| 2618 | /* switch ctx */ |
| 2619 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2620 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 2621 | if (conf) { |
| 2622 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2623 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2624 | if (conf->early_data) |
| 2625 | allow_early = 1; |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2626 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2627 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
| 2628 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2629 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2630 | |
William Lallemand | 0201047 | 2019-10-18 11:02:19 +0200 | [diff] [blame] | 2631 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2632 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2633 | if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2634 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2635 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2636 | } |
| 2637 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2638 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2639 | /* no certificate match, is the default_ctx */ |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2640 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2641 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2642 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2643 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2644 | } |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2645 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 2646 | /* We are about to raise an handshake error so the servername extension |
| 2647 | * callback will never be called and the SNI will never be stored in the |
| 2648 | * SSL context. In order for the ssl_fc_sni sample fetch to still work |
| 2649 | * in such a case, we store the SNI ourselves as an ex_data information |
| 2650 | * in the SSL context. |
| 2651 | */ |
| 2652 | { |
| 2653 | char *client_sni = pool_alloc(ssl_sock_client_sni_pool); |
| 2654 | if (client_sni) { |
| 2655 | strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name); |
| 2656 | client_sni[TLSEXT_MAXLEN_host_name] = '\0'; |
| 2657 | SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni); |
| 2658 | } |
| 2659 | } |
| 2660 | |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2661 | /* other cases fallback on abort, if strict-sni is set but no node was found */ |
| 2662 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2663 | abort: |
| 2664 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2665 | if (conn) |
| 2666 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2667 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2668 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2669 | #else |
| 2670 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2671 | return 0; |
| 2672 | #endif |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2673 | |
| 2674 | allow_early: |
| 2675 | #ifdef OPENSSL_IS_BORINGSSL |
| 2676 | if (allow_early) |
| 2677 | SSL_set_early_data_enabled(ssl, 1); |
| 2678 | #else |
| 2679 | if (!allow_early) |
| 2680 | SSL_set_max_early_data(ssl, 0); |
| 2681 | #endif |
| 2682 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2683 | } |
| 2684 | |
William Lallemand | 002e206 | 2021-11-18 15:25:16 +0100 | [diff] [blame] | 2685 | #else /* ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2686 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2687 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2688 | * warning when no match is found, which implies the default (first) cert |
| 2689 | * will keep being used. |
| 2690 | */ |
William Lallemand | 844009d | 2022-09-02 15:27:32 +0200 | [diff] [blame] | 2691 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2692 | { |
| 2693 | const char *servername; |
| 2694 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2695 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2696 | struct bind_conf *s = priv; |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2697 | #ifdef USE_QUIC |
| 2698 | const uint8_t *extension_data; |
| 2699 | size_t extension_len; |
| 2700 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 2701 | #endif /* USE_QUIC */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2702 | int i; |
| 2703 | (void)al; /* shut gcc stupid warning */ |
| 2704 | |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2705 | #ifdef USE_QUIC |
| 2706 | if (qc) { |
| 2707 | |
| 2708 | /* Look for the QUIC transport parameters. */ |
| 2709 | SSL_get_peer_quic_transport_params(ssl, &extension_data, &extension_len); |
| 2710 | if (extension_len == 0) { |
| 2711 | /* This is not redundant. It we only return 0 without setting |
| 2712 | * <*al>, this has as side effect to generate another TLS alert |
| 2713 | * which would be set after calling quic_set_tls_alert(). |
| 2714 | */ |
| 2715 | *al = SSL_AD_MISSING_EXTENSION; |
| 2716 | quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION); |
| 2717 | return SSL_TLSEXT_ERR_NOACK; |
| 2718 | } |
| 2719 | |
| 2720 | if (!quic_transport_params_store(qc, 0, extension_data, |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2721 | extension_data + extension_len)) |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2722 | return SSL_TLSEXT_ERR_NOACK; |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2723 | |
| 2724 | qc->flags |= QUIC_FL_CONN_TX_TP_RECEIVED; |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2725 | } |
| 2726 | #endif /* USE_QUIC */ |
| 2727 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2728 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2729 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2730 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2731 | if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate_from_conn(s, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2732 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2733 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2734 | if (s->strict_sni) |
| 2735 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2736 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2737 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2738 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2739 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2740 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2741 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2742 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2743 | if (!servername[i]) |
| 2744 | break; |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2745 | trash.area[i] = tolower((unsigned char)servername[i]); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2746 | if (!wildp && (trash.area[i] == '.')) |
| 2747 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2748 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2749 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2750 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2751 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2752 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2753 | /* lookup in full qualified names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2754 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2755 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2756 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2757 | node = n; |
| 2758 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2759 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2760 | } |
| 2761 | if (!node && wildp) { |
| 2762 | /* lookup in wildcards names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2763 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2764 | /* lookup a not neg filter */ |
| 2765 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2766 | node = n; |
| 2767 | break; |
| 2768 | } |
| 2769 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2770 | } |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2771 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2772 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2773 | if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate(servername, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2774 | /* switch ctx done in ssl_sock_generate_certificate */ |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2775 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2776 | return SSL_TLSEXT_ERR_OK; |
| 2777 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2778 | #endif |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2779 | if (s->strict_sni) { |
| 2780 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2781 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2782 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2783 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2784 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2785 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2786 | } |
| 2787 | |
| 2788 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2789 | 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] | 2790 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2791 | return SSL_TLSEXT_ERR_OK; |
| 2792 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2793 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2794 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2795 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2796 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2797 | |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2798 | static inline HASSL_DH *ssl_new_dh_fromdata(BIGNUM *p, BIGNUM *g) |
| 2799 | { |
| 2800 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 2801 | OSSL_PARAM_BLD *tmpl = NULL; |
| 2802 | OSSL_PARAM *params = NULL; |
| 2803 | EVP_PKEY_CTX *ctx = NULL; |
| 2804 | EVP_PKEY *pkey = NULL; |
| 2805 | |
| 2806 | if ((tmpl = OSSL_PARAM_BLD_new()) == NULL |
| 2807 | || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_P, p) |
| 2808 | || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_G, g) |
| 2809 | || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) { |
| 2810 | goto end; |
| 2811 | } |
| 2812 | ctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL); |
| 2813 | if (ctx == NULL |
| 2814 | || !EVP_PKEY_fromdata_init(ctx) |
| 2815 | || !EVP_PKEY_fromdata(ctx, &pkey, EVP_PKEY_KEY_PARAMETERS, params)) { |
| 2816 | goto end; |
| 2817 | } |
| 2818 | |
| 2819 | end: |
| 2820 | EVP_PKEY_CTX_free(ctx); |
| 2821 | OSSL_PARAM_free(params); |
| 2822 | OSSL_PARAM_BLD_free(tmpl); |
Remi Tricot-Le Breton | a2c21db | 2022-11-03 15:16:47 +0100 | [diff] [blame] | 2823 | BN_free(p); |
| 2824 | BN_free(g); |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2825 | return pkey; |
| 2826 | #else |
| 2827 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2828 | HASSL_DH *dh = DH_new(); |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2829 | |
| 2830 | if (!dh) |
| 2831 | return NULL; |
| 2832 | |
| 2833 | DH_set0_pqg(dh, p, NULL, g); |
| 2834 | |
| 2835 | return dh; |
| 2836 | #endif |
| 2837 | } |
| 2838 | |
Remi Tricot-Le Breton | c69be7c | 2022-04-20 18:30:17 +0200 | [diff] [blame] | 2839 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2840 | static inline HASSL_DH *ssl_get_dh_by_nid(int nid) |
| 2841 | { |
| 2842 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 2843 | OSSL_PARAM params[2]; |
| 2844 | EVP_PKEY *pkey = NULL; |
| 2845 | EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL); |
| 2846 | const char *named_group = NULL; |
| 2847 | |
| 2848 | if (!pctx) |
| 2849 | goto end; |
| 2850 | |
| 2851 | named_group = OBJ_nid2ln(nid); |
| 2852 | |
| 2853 | if (!named_group) |
| 2854 | goto end; |
| 2855 | |
| 2856 | params[0] = OSSL_PARAM_construct_utf8_string("group", (char*)named_group, 0); |
| 2857 | params[1] = OSSL_PARAM_construct_end(); |
| 2858 | |
| 2859 | if (EVP_PKEY_keygen_init(pctx) && EVP_PKEY_CTX_set_params(pctx, params)) |
| 2860 | EVP_PKEY_generate(pctx, &pkey); |
| 2861 | |
| 2862 | end: |
| 2863 | EVP_PKEY_CTX_free(pctx); |
| 2864 | return pkey; |
| 2865 | #else |
| 2866 | |
| 2867 | HASSL_DH *dh = NULL; |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2868 | dh = DH_new_by_nid(nid); |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2869 | return dh; |
| 2870 | #endif |
| 2871 | } |
Remi Tricot-Le Breton | c69be7c | 2022-04-20 18:30:17 +0200 | [diff] [blame] | 2872 | #endif |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2873 | |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2874 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2875 | static HASSL_DH * ssl_get_dh_1024(void) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2876 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2877 | static unsigned char dh1024_p[]={ |
| 2878 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2879 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2880 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2881 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2882 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2883 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2884 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2885 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2886 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2887 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2888 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2889 | }; |
| 2890 | static unsigned char dh1024_g[]={ |
| 2891 | 0x02, |
| 2892 | }; |
| 2893 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2894 | BIGNUM *p; |
| 2895 | BIGNUM *g; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2896 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2897 | HASSL_DH *dh = NULL; |
| 2898 | |
| 2899 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2900 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
| 2901 | |
| 2902 | if (p && g) |
| 2903 | dh = ssl_new_dh_fromdata(p, g); |
| 2904 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2905 | return dh; |
| 2906 | } |
| 2907 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2908 | static HASSL_DH *ssl_get_dh_2048(void) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2909 | { |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2910 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2911 | static unsigned char dh2048_p[]={ |
| 2912 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2913 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2914 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2915 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2916 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2917 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2918 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2919 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2920 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2921 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2922 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2923 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2924 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2925 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2926 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2927 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2928 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2929 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2930 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2931 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2932 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2933 | 0xB7,0x1F,0x77,0xF3, |
| 2934 | }; |
| 2935 | static unsigned char dh2048_g[]={ |
| 2936 | 0x02, |
| 2937 | }; |
| 2938 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2939 | BIGNUM *p; |
| 2940 | BIGNUM *g; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2941 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2942 | HASSL_DH *dh = NULL; |
| 2943 | |
| 2944 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2945 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
| 2946 | |
| 2947 | if (p && g) |
| 2948 | dh = ssl_new_dh_fromdata(p, g); |
| 2949 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2950 | return dh; |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2951 | #else |
| 2952 | return ssl_get_dh_by_nid(NID_ffdhe2048); |
| 2953 | #endif |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2954 | } |
| 2955 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2956 | static HASSL_DH *ssl_get_dh_4096(void) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2957 | { |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2958 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2959 | static unsigned char dh4096_p[]={ |
| 2960 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2961 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2962 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2963 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2964 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2965 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2966 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2967 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2968 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2969 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2970 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2971 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2972 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2973 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2974 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2975 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2976 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2977 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2978 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2979 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2980 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2981 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2982 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2983 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2984 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2985 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2986 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2987 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2988 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2989 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2990 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2991 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2992 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2993 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2994 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2995 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2996 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2997 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2998 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2999 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 3000 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 3001 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 3002 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3003 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3004 | static unsigned char dh4096_g[]={ |
| 3005 | 0x02, |
| 3006 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3007 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3008 | BIGNUM *p; |
| 3009 | BIGNUM *g; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3010 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3011 | HASSL_DH *dh = NULL; |
| 3012 | |
| 3013 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 3014 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
| 3015 | |
| 3016 | if (p && g) |
| 3017 | dh = ssl_new_dh_fromdata(p, g); |
| 3018 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3019 | return dh; |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 3020 | #else |
| 3021 | return ssl_get_dh_by_nid(NID_ffdhe4096); |
| 3022 | #endif |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3023 | } |
| 3024 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3025 | static HASSL_DH *ssl_get_tmp_dh(EVP_PKEY *pkey) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3026 | { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3027 | HASSL_DH *dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3028 | int type; |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3029 | int keylen = 0; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3030 | |
| 3031 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3032 | |
Ilya Shipitsin | 52f2ff5 | 2022-07-23 23:55:19 +0500 | [diff] [blame] | 3033 | if (type == EVP_PKEY_EC) { |
| 3034 | keylen = global_ssl.default_dh_param; |
| 3035 | } |
| 3036 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3037 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 3038 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 3039 | */ |
| 3040 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 3041 | keylen = EVP_PKEY_bits(pkey); |
| 3042 | } |
| 3043 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 3044 | if (keylen > global_ssl.default_dh_param) { |
| 3045 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3046 | } |
| 3047 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3048 | if (keylen >= 4096) { |
Remi Tricot-Le Breton | bed7263 | 2022-02-11 12:04:53 +0100 | [diff] [blame] | 3049 | if (!local_dh_4096) |
| 3050 | local_dh_4096 = ssl_get_dh_4096(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3051 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3052 | } |
| 3053 | else if (keylen >= 2048) { |
Remi Tricot-Le Breton | bed7263 | 2022-02-11 12:04:53 +0100 | [diff] [blame] | 3054 | if (!local_dh_2048) |
| 3055 | local_dh_2048 = ssl_get_dh_2048(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3056 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3057 | } |
| 3058 | else { |
Remi Tricot-Le Breton | bed7263 | 2022-02-11 12:04:53 +0100 | [diff] [blame] | 3059 | if (!local_dh_1024) |
| 3060 | local_dh_1024 = ssl_get_dh_1024(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3061 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3062 | } |
| 3063 | |
| 3064 | return dh; |
| 3065 | } |
| 3066 | |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3067 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3068 | /* Returns Diffie-Hellman parameters matching the private key length |
| 3069 | but not exceeding global_ssl.default_dh_param */ |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3070 | static HASSL_DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen) |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3071 | { |
| 3072 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
| 3073 | |
| 3074 | return ssl_get_tmp_dh(pkey); |
| 3075 | } |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3076 | #endif |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3077 | |
Remi Tricot-Le Breton | 846eda9 | 2022-02-11 12:04:50 +0100 | [diff] [blame] | 3078 | static int ssl_sock_set_tmp_dh(SSL_CTX *ctx, HASSL_DH *dh) |
| 3079 | { |
| 3080 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
| 3081 | return SSL_CTX_set_tmp_dh(ctx, dh); |
| 3082 | #else |
| 3083 | int retval = 0; |
| 3084 | HASSL_DH_up_ref(dh); |
| 3085 | |
| 3086 | retval = SSL_CTX_set0_tmp_dh_pkey(ctx, dh); |
| 3087 | |
| 3088 | if (!retval) |
| 3089 | HASSL_DH_free(dh); |
| 3090 | |
| 3091 | return retval; |
| 3092 | #endif |
| 3093 | } |
| 3094 | |
Remi Tricot-Le Breton | 5f17930 | 2022-02-11 12:04:51 +0100 | [diff] [blame] | 3095 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 3096 | static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey) |
| 3097 | { |
| 3098 | HASSL_DH *dh = NULL; |
| 3099 | if (pkey && (dh = ssl_get_tmp_dh(pkey))) { |
| 3100 | HASSL_DH_up_ref(dh); |
| 3101 | if (!SSL_CTX_set0_tmp_dh_pkey(ctx, dh)) |
| 3102 | HASSL_DH_free(dh); |
| 3103 | } |
Remi Tricot-Le Breton | 5f17930 | 2022-02-11 12:04:51 +0100 | [diff] [blame] | 3104 | } |
| 3105 | #endif |
| 3106 | |
Remi Tricot-Le Breton | 09ebb33 | 2022-02-11 12:04:48 +0100 | [diff] [blame] | 3107 | HASSL_DH *ssl_sock_get_dh_from_bio(BIO *bio) |
| 3108 | { |
| 3109 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 3110 | HASSL_DH *dh = NULL; |
| 3111 | OSSL_DECODER_CTX *dctx = NULL; |
| 3112 | const char *format = "PEM"; |
| 3113 | const char *keytype = "DH"; |
| 3114 | |
| 3115 | dctx = OSSL_DECODER_CTX_new_for_pkey(&dh, format, NULL, keytype, |
| 3116 | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS, |
| 3117 | NULL, NULL); |
| 3118 | |
| 3119 | if (dctx == NULL || OSSL_DECODER_CTX_get_num_decoders(dctx) == 0) |
| 3120 | goto end; |
| 3121 | |
| 3122 | /* The DH parameters might not be the first section found in the PEM |
| 3123 | * file so we need to iterate over all of them until we find the right |
| 3124 | * one. |
| 3125 | */ |
| 3126 | while (!BIO_eof(bio) && !dh) |
| 3127 | OSSL_DECODER_from_bio(dctx, bio); |
| 3128 | |
| 3129 | end: |
| 3130 | OSSL_DECODER_CTX_free(dctx); |
| 3131 | return dh; |
| 3132 | #else |
| 3133 | HASSL_DH *dh = NULL; |
| 3134 | |
| 3135 | dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL); |
| 3136 | |
| 3137 | return dh; |
| 3138 | #endif |
| 3139 | } |
| 3140 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3141 | static HASSL_DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3142 | { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3143 | HASSL_DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3144 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3145 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3146 | if (in == NULL) |
| 3147 | goto end; |
| 3148 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3149 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3150 | goto end; |
| 3151 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3152 | dh = ssl_sock_get_dh_from_bio(in); |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3153 | |
| 3154 | end: |
| 3155 | if (in) |
| 3156 | BIO_free(in); |
| 3157 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 3158 | ERR_clear_error(); |
| 3159 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3160 | return dh; |
| 3161 | } |
| 3162 | |
| 3163 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 3164 | { |
| 3165 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 3166 | |
| 3167 | if (global_dh) { |
| 3168 | return 0; |
| 3169 | } |
| 3170 | |
| 3171 | return -1; |
| 3172 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3173 | #endif |
| 3174 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3175 | /* 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] | 3176 | 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] | 3177 | struct bind_conf *s, struct ssl_bind_conf *conf, |
| 3178 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3179 | { |
| 3180 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3181 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3182 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3183 | if (*name == '!') { |
| 3184 | neg = 1; |
| 3185 | name++; |
| 3186 | } |
| 3187 | if (*name == '*') { |
| 3188 | wild = 1; |
| 3189 | name++; |
| 3190 | } |
| 3191 | /* !* filter is a nop */ |
| 3192 | if (neg && wild) |
| 3193 | return order; |
| 3194 | if (*name) { |
| 3195 | int j, len; |
| 3196 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3197 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 3198 | trash.area[j] = tolower((unsigned char)name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3199 | if (j >= trash.size) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3200 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3201 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3202 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3203 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 3204 | if (!sc) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3205 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3206 | memcpy(sc->name.key, trash.area, len + 1); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3207 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3208 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3209 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3210 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3211 | sc->order = order++; |
| 3212 | sc->neg = neg; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3213 | sc->wild = wild; |
| 3214 | sc->name.node.leaf_p = NULL; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3215 | sc->ckch_inst = ckch_inst; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3216 | LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3217 | } |
| 3218 | return order; |
| 3219 | } |
| 3220 | |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3221 | /* |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3222 | * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree |
| 3223 | * This function can't return an error. |
| 3224 | * |
| 3225 | * *CAUTION*: The caller must lock the sni tree if called in multithreading mode |
| 3226 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3227 | 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] | 3228 | { |
| 3229 | |
| 3230 | struct sni_ctx *sc0, *sc0b, *sc1; |
| 3231 | struct ebmb_node *node; |
| 3232 | |
| 3233 | list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) { |
| 3234 | |
| 3235 | /* ignore if sc0 was already inserted in a tree */ |
| 3236 | if (sc0->name.node.leaf_p) |
| 3237 | continue; |
| 3238 | |
| 3239 | /* Check for duplicates. */ |
| 3240 | if (sc0->wild) |
| 3241 | node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key); |
| 3242 | else |
| 3243 | node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key); |
| 3244 | |
| 3245 | for (; node; node = ebmb_next_dup(node)) { |
| 3246 | sc1 = ebmb_entry(node, struct sni_ctx, name); |
| 3247 | if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf |
| 3248 | && sc1->neg == sc0->neg && sc1->wild == sc0->wild) { |
| 3249 | /* it's a duplicate, we should remove and free it */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3250 | LIST_DELETE(&sc0->by_ckch_inst); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3251 | SSL_CTX_free(sc0->ctx); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3252 | ha_free(&sc0); |
William Lallemand | e15029b | 2019-10-14 10:46:58 +0200 | [diff] [blame] | 3253 | break; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3254 | } |
| 3255 | } |
| 3256 | |
| 3257 | /* if duplicate, ignore the insertion */ |
| 3258 | if (!sc0) |
| 3259 | continue; |
| 3260 | |
| 3261 | if (sc0->wild) |
| 3262 | ebst_insert(&bind_conf->sni_w_ctx, &sc0->name); |
| 3263 | else |
| 3264 | ebst_insert(&bind_conf->sni_ctx, &sc0->name); |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3265 | } |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3266 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3267 | /* replace the default_ctx if required with the instance's ctx. */ |
| 3268 | if (ckch_inst->is_default) { |
| 3269 | SSL_CTX_free(bind_conf->default_ctx); |
| 3270 | SSL_CTX_up_ref(ckch_inst->ctx); |
| 3271 | bind_conf->default_ctx = ckch_inst->ctx; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3272 | bind_conf->default_inst = ckch_inst; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3273 | } |
| 3274 | } |
| 3275 | |
| 3276 | /* |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3277 | * tree used to store the ckchs ordered by filename/bundle name |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3278 | */ |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3279 | struct eb_root ckchs_tree = EB_ROOT_UNIQUE; |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3280 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3281 | /* tree of crtlist (crt-list/directory) */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3282 | struct eb_root crtlists_tree = EB_ROOT_UNIQUE; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3283 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3284 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 3285 | * If there is no DH parameter available in the ckchs, the global |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3286 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 3287 | * DH parameter available in ckchs nor in global, the default |
| 3288 | * DH parameters are applied on the SSL_CTX. |
| 3289 | * Returns a bitfield containing the flags: |
| 3290 | * ERR_FATAL in any fatal error case |
| 3291 | * ERR_ALERT if a reason of the error is availabine in err |
| 3292 | * ERR_WARN if a warning is available into err |
| 3293 | * The value 0 means there is no error nor warning and |
| 3294 | * the operation succeed. |
| 3295 | */ |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3296 | #ifndef OPENSSL_NO_DH |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3297 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct ckch_data *data, |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3298 | const char *path, char **err) |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3299 | { |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3300 | int ret = 0; |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3301 | HASSL_DH *dh = NULL; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3302 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3303 | if (data && data->dh) { |
| 3304 | dh = data->dh; |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3305 | if (!ssl_sock_set_tmp_dh(ctx, dh)) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3306 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 3307 | err && *err ? *err : "", path); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3308 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3309 | err && *err ? *err : ""); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3310 | ret |= ERR_WARN; |
| 3311 | goto end; |
| 3312 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3313 | |
| 3314 | if (ssl_dh_ptr_index >= 0) { |
| 3315 | /* store a pointer to the DH params to avoid complaining about |
| 3316 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 3317 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 3318 | } |
| 3319 | } |
| 3320 | else if (global_dh) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3321 | if (!ssl_sock_set_tmp_dh(ctx, global_dh)) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3322 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 3323 | err && *err ? *err : "", path); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3324 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3325 | err && *err ? *err : ""); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3326 | ret |= ERR_WARN; |
| 3327 | goto end; |
| 3328 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3329 | } |
| 3330 | else { |
| 3331 | /* Clear openssl global errors stack */ |
| 3332 | ERR_clear_error(); |
| 3333 | |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3334 | /* We do not want DHE ciphers to be added to the cipher list |
| 3335 | * unless there is an explicit global dh option in the conf. |
| 3336 | */ |
| 3337 | if (global_ssl.default_dh_param) { |
| 3338 | if (global_ssl.default_dh_param <= 1024) { |
| 3339 | /* we are limited to DH parameter of 1024 bits anyway */ |
| 3340 | if (local_dh_1024 == NULL) |
| 3341 | local_dh_1024 = ssl_get_dh_1024(); |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3342 | |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3343 | if (local_dh_1024 == NULL) { |
| 3344 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3345 | err && *err ? *err : "", path); |
| 3346 | ret |= ERR_ALERT | ERR_FATAL; |
| 3347 | goto end; |
| 3348 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3349 | |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3350 | if (!ssl_sock_set_tmp_dh(ctx, local_dh_1024)) { |
| 3351 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3352 | err && *err ? *err : "", path); |
| 3353 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3354 | err && *err ? *err : ""); |
| 3355 | ret |= ERR_WARN; |
| 3356 | goto end; |
| 3357 | } |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3358 | } |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3359 | else { |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3360 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3361 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh_cbk); |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3362 | #else |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3363 | ssl_sock_set_tmp_dh_from_pkey(ctx, data ? data->key : NULL); |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3364 | #endif |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3365 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3366 | } |
William Lallemand | 8d0f893 | 2019-10-17 18:03:58 +0200 | [diff] [blame] | 3367 | } |
| 3368 | |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3369 | end: |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3370 | ERR_clear_error(); |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3371 | return ret; |
| 3372 | } |
Emmanuel Hocdet | 54227d8 | 2019-07-30 17:04:01 +0200 | [diff] [blame] | 3373 | #endif |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3374 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3375 | |
| 3376 | /* Load a certificate chain into an SSL context. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3377 | * Returns a bitfield containing the flags: |
| 3378 | * ERR_FATAL in any fatal error case |
| 3379 | * ERR_ALERT if the reason of the error is available in err |
| 3380 | * ERR_WARN if a warning is available into err |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3381 | * The caller is responsible of freeing the newly built or newly refcounted |
| 3382 | * find_chain element. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3383 | * The value 0 means there is no error nor warning and |
| 3384 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3385 | */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3386 | static int ssl_sock_load_cert_chain(const char *path, const struct ckch_data *data, |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3387 | SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3388 | { |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3389 | int errcode = 0; |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3390 | int ret; |
| 3391 | |
| 3392 | ERR_clear_error(); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3393 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3394 | if (find_chain == NULL) { |
| 3395 | errcode |= ERR_FATAL; |
| 3396 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3397 | } |
| 3398 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3399 | if (!SSL_CTX_use_certificate(ctx, data->cert)) { |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3400 | ret = ERR_get_error(); |
| 3401 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s': %s.\n", |
| 3402 | err && *err ? *err : "", path, ERR_reason_error_string(ret)); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3403 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3404 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3405 | } |
| 3406 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3407 | if (data->chain) { |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3408 | *find_chain = X509_chain_up_ref(data->chain); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3409 | } else { |
| 3410 | /* Find Certificate Chain in global */ |
| 3411 | struct issuer_chain *issuer; |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3412 | issuer = ssl_get0_issuer_chain(data->cert); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3413 | if (issuer) |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3414 | *find_chain = X509_chain_up_ref(issuer->chain); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3415 | } |
William Lallemand | 8588857 | 2020-02-27 14:48:35 +0100 | [diff] [blame] | 3416 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3417 | if (!*find_chain) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3418 | /* always put a null chain stack in the SSL_CTX so it does not |
| 3419 | * try to build the chain from the verify store */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3420 | *find_chain = sk_X509_new_null(); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3421 | } |
| 3422 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3423 | /* Load all certs in the data into the ctx_chain for the ssl_ctx */ |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3424 | #ifdef SSL_CTX_set1_chain |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3425 | if (!SSL_CTX_set1_chain(ctx, *find_chain)) { |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3426 | ret = ERR_get_error(); |
William Lallemand | a21ca74 | 2023-04-17 14:32:25 +0200 | [diff] [blame] | 3427 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s': %s.\n", |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3428 | err && *err ? *err : "", path, ERR_reason_error_string(ret)); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3429 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3430 | goto end; |
| 3431 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3432 | #else |
| 3433 | { /* legacy compat (< openssl 1.0.2) */ |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3434 | X509 *ca; |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3435 | while ((ca = sk_X509_shift(*find_chain))) |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3436 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3437 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3438 | err && *err ? *err : "", path); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3439 | X509_free(ca); |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3440 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3441 | goto end; |
| 3442 | } |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3443 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3444 | #endif |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3445 | |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3446 | #ifdef SSL_CTX_build_cert_chain |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3447 | /* remove the Root CA from the SSL_CTX if the option is activated */ |
| 3448 | if (global_ssl.skip_self_issued_ca) { |
| 3449 | if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) { |
| 3450 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3451 | err && *err ? *err : "", path); |
| 3452 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3453 | goto end; |
| 3454 | } |
| 3455 | } |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3456 | #endif |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3457 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3458 | end: |
| 3459 | return errcode; |
| 3460 | } |
| 3461 | |
| 3462 | |
| 3463 | /* Loads the info in ckch into ctx |
| 3464 | * Returns a bitfield containing the flags: |
| 3465 | * ERR_FATAL in any fatal error case |
| 3466 | * ERR_ALERT if the reason of the error is available in err |
| 3467 | * ERR_WARN if a warning is available into err |
| 3468 | * The value 0 means there is no error nor warning and |
| 3469 | * the operation succeed. |
| 3470 | */ |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 3471 | static int ssl_sock_put_ckch_into_ctx(const char *path, struct ckch_data *data, SSL_CTX *ctx, char **err) |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3472 | { |
| 3473 | int errcode = 0; |
| 3474 | STACK_OF(X509) *find_chain = NULL; |
| 3475 | |
William Lallemand | 5de4951 | 2022-10-27 14:41:07 +0200 | [diff] [blame] | 3476 | ERR_clear_error(); |
| 3477 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3478 | if (SSL_CTX_use_PrivateKey(ctx, data->key) <= 0) { |
William Lallemand | 5de4951 | 2022-10-27 14:41:07 +0200 | [diff] [blame] | 3479 | int ret; |
| 3480 | |
| 3481 | ret = ERR_get_error(); |
| 3482 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s': %s.\n", |
| 3483 | err && *err ? *err : "", path, ERR_reason_error_string(ret)); |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3484 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3485 | return errcode; |
| 3486 | } |
| 3487 | |
| 3488 | /* Load certificate chain */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3489 | errcode |= ssl_sock_load_cert_chain(path, data, ctx, &find_chain, err); |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3490 | if (errcode & ERR_CODE) |
| 3491 | goto end; |
| 3492 | |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3493 | #ifndef OPENSSL_NO_DH |
| 3494 | /* store a NULL pointer to indicate we have not yet loaded |
| 3495 | a custom DH param file */ |
| 3496 | if (ssl_dh_ptr_index >= 0) { |
| 3497 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3498 | } |
| 3499 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3500 | errcode |= ssl_sock_load_dh_params(ctx, data, path, err); |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3501 | if (errcode & ERR_CODE) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3502 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3503 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3504 | goto end; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3505 | } |
| 3506 | #endif |
| 3507 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 3508 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3509 | if (sctl_ex_index >= 0 && data->sctl) { |
| 3510 | if (ssl_sock_load_sctl(ctx, data->sctl) < 0) { |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3511 | 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] | 3512 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3513 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3514 | goto end; |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3515 | } |
| 3516 | } |
| 3517 | #endif |
| 3518 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 3519 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL) |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 3520 | /* Load OCSP Info into context |
| 3521 | * If OCSP update mode is set to 'on', an entry will be created in the |
| 3522 | * ocsp tree even if no ocsp_response was known during init, unless the |
Ilya Shipitsin | 07be66d | 2023-04-01 12:26:42 +0200 | [diff] [blame] | 3523 | * frontend's conf disables ocsp update explicitly. |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 3524 | */ |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 3525 | if (ssl_sock_load_ocsp(path, ctx, data, find_chain) < 0) { |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 3526 | if (data->ocsp_response) |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3527 | 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", |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 3528 | err && *err ? *err : "", path); |
| 3529 | else |
Remi Tricot-Le Breton | 5e7e42d | 2024-02-01 11:58:14 +0100 | [diff] [blame] | 3530 | memprintf(err, "%s '%s' has an OCSP auto-update set to 'on' but an error occurred (maybe the OCSP URI or the issuer could not be found)'.\n", |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 3531 | err && *err ? *err : "", path); |
| 3532 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3533 | goto end; |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3534 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3535 | #endif |
| 3536 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3537 | end: |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3538 | sk_X509_pop_free(find_chain, X509_free); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3539 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3540 | } |
| 3541 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3542 | |
| 3543 | /* Loads the info of a ckch built out of a backend certificate into an SSL ctx |
| 3544 | * Returns a bitfield containing the flags: |
| 3545 | * ERR_FATAL in any fatal error case |
| 3546 | * ERR_ALERT if the reason of the error is available in err |
| 3547 | * ERR_WARN if a warning is available into err |
| 3548 | * The value 0 means there is no error nor warning and |
| 3549 | * the operation succeed. |
| 3550 | */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3551 | static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct ckch_data *data, |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3552 | SSL_CTX *ctx, char **err) |
| 3553 | { |
| 3554 | int errcode = 0; |
| 3555 | STACK_OF(X509) *find_chain = NULL; |
| 3556 | |
| 3557 | /* Load the private key */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3558 | if (SSL_CTX_use_PrivateKey(ctx, data->key) <= 0) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3559 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3560 | err && *err ? *err : "", path); |
| 3561 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3562 | } |
| 3563 | |
| 3564 | /* Load certificate chain */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3565 | errcode |= ssl_sock_load_cert_chain(path, data, ctx, &find_chain, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3566 | if (errcode & ERR_CODE) |
| 3567 | goto end; |
| 3568 | |
| 3569 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3570 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3571 | err && *err ? *err : "", path); |
| 3572 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3573 | } |
| 3574 | |
| 3575 | end: |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3576 | sk_X509_pop_free(find_chain, X509_free); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3577 | return errcode; |
| 3578 | } |
| 3579 | |
| 3580 | |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3581 | /* |
| 3582 | * This function allocate a ckch_inst and create its snis |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3583 | * |
| 3584 | * Returns a bitfield containing the flags: |
| 3585 | * ERR_FATAL in any fatal error case |
| 3586 | * ERR_ALERT if the reason of the error is available in err |
| 3587 | * ERR_WARN if a warning is available into err |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3588 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3589 | 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] | 3590 | 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] | 3591 | { |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3592 | SSL_CTX *ctx; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3593 | int i; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3594 | int order = 0; |
| 3595 | X509_NAME *xname; |
| 3596 | char *str; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3597 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3598 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3599 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3600 | STACK_OF(GENERAL_NAME) *names; |
| 3601 | #endif |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3602 | struct ckch_data *data; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3603 | struct ckch_inst *ckch_inst = NULL; |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3604 | int errcode = 0; |
| 3605 | |
| 3606 | *ckchi = NULL; |
William Lallemand | a59191b | 2019-05-15 16:08:56 +0200 | [diff] [blame] | 3607 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3608 | if (!ckchs || !ckchs->data) |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3609 | return ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3610 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3611 | data = ckchs->data; |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3612 | |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3613 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 3614 | if (!ctx) { |
| 3615 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3616 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3617 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3618 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3619 | } |
| 3620 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3621 | errcode |= ssl_sock_put_ckch_into_ctx(path, data, ctx, err); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3622 | if (errcode & ERR_CODE) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3623 | goto error; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3624 | |
| 3625 | ckch_inst = ckch_inst_new(); |
| 3626 | if (!ckch_inst) { |
| 3627 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3628 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3629 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3630 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3631 | } |
| 3632 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3633 | pkey = X509_get_pubkey(data->cert); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3634 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3635 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3636 | switch(EVP_PKEY_base_id(pkey)) { |
| 3637 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3638 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3639 | break; |
| 3640 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3641 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3642 | break; |
| 3643 | case EVP_PKEY_DSA: |
| 3644 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3645 | break; |
| 3646 | } |
| 3647 | EVP_PKEY_free(pkey); |
| 3648 | } |
| 3649 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3650 | if (fcount) { |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3651 | while (fcount--) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3652 | 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] | 3653 | if (order < 0) { |
| 3654 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3655 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3656 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3657 | } |
| 3658 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3659 | } |
| 3660 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3661 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3662 | names = X509_get_ext_d2i(data->cert, NID_subject_alt_name, NULL, NULL); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3663 | if (names) { |
| 3664 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3665 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3666 | if (name->type == GEN_DNS) { |
| 3667 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3668 | 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] | 3669 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3670 | if (order < 0) { |
| 3671 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3672 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3673 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3674 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3675 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3676 | } |
| 3677 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3678 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3679 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3680 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3681 | xname = X509_get_subject_name(data->cert); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3682 | i = -1; |
| 3683 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3684 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3685 | ASN1_STRING *value; |
| 3686 | |
| 3687 | value = X509_NAME_ENTRY_get_data(entry); |
| 3688 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3689 | 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] | 3690 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3691 | if (order < 0) { |
| 3692 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3693 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3694 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3695 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3696 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3697 | } |
| 3698 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3699 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3700 | * the tree, so it will be discovered and cleaned in time. |
| 3701 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3702 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3703 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3704 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3705 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3706 | err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3707 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3708 | goto error; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3709 | } |
| 3710 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3711 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3712 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3713 | bind_conf->default_ssl_conf = ssl_conf; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3714 | ckch_inst->is_default = 1; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3715 | SSL_CTX_up_ref(ctx); |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3716 | bind_conf->default_inst = ckch_inst; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3717 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3718 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3719 | /* Always keep a reference to the newly constructed SSL_CTX in the |
| 3720 | * instance. This way if the instance has no SNIs, the SSL_CTX will |
| 3721 | * still be linked. */ |
| 3722 | SSL_CTX_up_ref(ctx); |
| 3723 | ckch_inst->ctx = ctx; |
| 3724 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3725 | /* everything succeed, the ckch instance can be used */ |
| 3726 | ckch_inst->bind_conf = bind_conf; |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 3727 | ckch_inst->ssl_conf = ssl_conf; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3728 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3729 | |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3730 | SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */ |
| 3731 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3732 | *ckchi = ckch_inst; |
| 3733 | return errcode; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3734 | |
| 3735 | error: |
| 3736 | /* free the allocated sni_ctxs */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3737 | if (ckch_inst) { |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3738 | if (ckch_inst->is_default) |
| 3739 | SSL_CTX_free(ctx); |
| 3740 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3741 | ckch_inst_free(ckch_inst); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3742 | ckch_inst = NULL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3743 | } |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3744 | SSL_CTX_free(ctx); |
| 3745 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3746 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3747 | } |
| 3748 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3749 | |
| 3750 | /* |
| 3751 | * This function allocate a ckch_inst that will be used on the backend side |
| 3752 | * (server line) |
| 3753 | * |
| 3754 | * Returns a bitfield containing the flags: |
| 3755 | * ERR_FATAL in any fatal error case |
| 3756 | * ERR_ALERT if the reason of the error is available in err |
| 3757 | * ERR_WARN if a warning is available into err |
| 3758 | */ |
| 3759 | 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] | 3760 | struct ckch_inst **ckchi, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3761 | { |
| 3762 | SSL_CTX *ctx; |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3763 | struct ckch_data *data; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3764 | struct ckch_inst *ckch_inst = NULL; |
| 3765 | int errcode = 0; |
| 3766 | |
| 3767 | *ckchi = NULL; |
| 3768 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3769 | if (!ckchs || !ckchs->data) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3770 | return ERR_FATAL; |
| 3771 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3772 | data = ckchs->data; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3773 | |
| 3774 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3775 | if (!ctx) { |
| 3776 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3777 | err && *err ? *err : "", path); |
| 3778 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3779 | goto error; |
| 3780 | } |
| 3781 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3782 | errcode |= ssl_sock_put_srv_ckch_into_ctx(path, data, ctx, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3783 | if (errcode & ERR_CODE) |
| 3784 | goto error; |
| 3785 | |
| 3786 | ckch_inst = ckch_inst_new(); |
| 3787 | if (!ckch_inst) { |
| 3788 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3789 | err && *err ? *err : "", path); |
| 3790 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3791 | goto error; |
| 3792 | } |
| 3793 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3794 | /* everything succeed, the ckch instance can be used */ |
| 3795 | ckch_inst->bind_conf = NULL; |
| 3796 | ckch_inst->ssl_conf = NULL; |
| 3797 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3798 | ckch_inst->ctx = ctx; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3799 | ckch_inst->is_server_instance = 1; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3800 | |
| 3801 | *ckchi = ckch_inst; |
| 3802 | return errcode; |
| 3803 | |
| 3804 | error: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3805 | SSL_CTX_free(ctx); |
| 3806 | |
| 3807 | return errcode; |
| 3808 | } |
| 3809 | |
Willy Tarreau | 8c5414a | 2019-10-16 17:06:25 +0200 | [diff] [blame] | 3810 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3811 | static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs, |
| 3812 | struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3813 | char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3814 | { |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3815 | int errcode = 0; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3816 | |
| 3817 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | e7eb1fe | 2020-09-16 16:17:51 +0200 | [diff] [blame] | 3818 | 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] | 3819 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3820 | if (errcode & ERR_CODE) |
| 3821 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3822 | |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3823 | ssl_sock_load_cert_sni(*ckch_inst, bind_conf); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3824 | |
| 3825 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3826 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3827 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3828 | } |
| 3829 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3830 | /* This function generates a <struct ckch_inst *> for a <struct server *>, and |
| 3831 | * fill the SSL_CTX of the server. |
| 3832 | * |
| 3833 | * 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] | 3834 | 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] | 3835 | struct server *server, struct ckch_inst **ckch_inst, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3836 | { |
| 3837 | int errcode = 0; |
| 3838 | |
| 3839 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3840 | 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] | 3841 | |
| 3842 | if (errcode & ERR_CODE) |
| 3843 | return errcode; |
| 3844 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3845 | (*ckch_inst)->server = server; |
| 3846 | /* Keep the reference to the SSL_CTX in the server. */ |
| 3847 | SSL_CTX_up_ref((*ckch_inst)->ctx); |
| 3848 | server->ssl_ctx.ctx = (*ckch_inst)->ctx; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3849 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3850 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3851 | return errcode; |
| 3852 | } |
| 3853 | |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3854 | |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3855 | |
| 3856 | |
| 3857 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3858 | * done once. Zero is returned if the operation fails. No error is returned |
| 3859 | * if the random is said as not implemented, because we expect that openssl |
| 3860 | * will use another method once needed. |
| 3861 | */ |
Amaury Denoyelle | c593bcd | 2021-05-19 15:35:29 +0200 | [diff] [blame] | 3862 | int ssl_initialize_random(void) |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3863 | { |
| 3864 | unsigned char random; |
| 3865 | static int random_initialized = 0; |
| 3866 | |
| 3867 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3868 | random_initialized = 1; |
| 3869 | |
| 3870 | return random_initialized; |
| 3871 | } |
| 3872 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3873 | /* Load a crt-list file, this is done in 2 parts: |
| 3874 | * - store the content of the file in a crtlist structure with crtlist_entry structures |
| 3875 | * - generate the instances by iterating on entries in the crtlist struct |
| 3876 | * |
| 3877 | * Nothing is locked there, this function is used in the configuration parser. |
| 3878 | * |
| 3879 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3880 | */ |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3881 | 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] | 3882 | { |
| 3883 | struct crtlist *crtlist = NULL; |
| 3884 | struct ebmb_node *eb; |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3885 | struct crtlist_entry *entry = NULL; |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3886 | struct bind_conf_list *bind_conf_node = NULL; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3887 | int cfgerr = 0; |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3888 | char *end; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3889 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3890 | bind_conf_node = malloc(sizeof(*bind_conf_node)); |
| 3891 | if (!bind_conf_node) { |
| 3892 | memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : ""); |
| 3893 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3894 | goto error; |
| 3895 | } |
| 3896 | bind_conf_node->next = NULL; |
| 3897 | bind_conf_node->bind_conf = bind_conf; |
| 3898 | |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3899 | /* strip trailing slashes, including first one */ |
| 3900 | for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--) |
| 3901 | *end = 0; |
| 3902 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3903 | /* look for an existing crtlist or create one */ |
| 3904 | eb = ebst_lookup(&crtlists_tree, file); |
| 3905 | if (eb) { |
| 3906 | crtlist = ebmb_entry(eb, struct crtlist, node); |
| 3907 | } else { |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3908 | /* load a crt-list OR a directory */ |
| 3909 | if (dir) |
| 3910 | cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err); |
| 3911 | else |
| 3912 | cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err); |
| 3913 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3914 | if (!(cfgerr & ERR_CODE)) |
| 3915 | ebst_insert(&crtlists_tree, &crtlist->node); |
| 3916 | } |
| 3917 | |
| 3918 | if (cfgerr & ERR_CODE) { |
| 3919 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3920 | goto error; |
| 3921 | } |
| 3922 | |
| 3923 | /* generates ckch instance from the crtlist_entry */ |
| 3924 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3925 | struct ckch_store *store; |
| 3926 | struct ckch_inst *ckch_inst = NULL; |
| 3927 | |
| 3928 | store = entry->node.key; |
| 3929 | cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err); |
| 3930 | if (cfgerr & ERR_CODE) { |
| 3931 | memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err); |
| 3932 | goto error; |
| 3933 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3934 | LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry); |
William Lallemand | caa1619 | 2020-04-08 16:29:15 +0200 | [diff] [blame] | 3935 | ckch_inst->crtlist_entry = entry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3936 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3937 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3938 | /* add the bind_conf to the list */ |
| 3939 | bind_conf_node->next = crtlist->bind_conf; |
| 3940 | crtlist->bind_conf = bind_conf_node; |
| 3941 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3942 | return cfgerr; |
| 3943 | error: |
| 3944 | { |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3945 | struct crtlist_entry *lastentry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3946 | struct ckch_inst *inst, *s_inst; |
| 3947 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3948 | lastentry = entry; /* which entry we tried to generate last */ |
| 3949 | if (lastentry) { |
| 3950 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3951 | if (entry == lastentry) /* last entry we tried to generate, no need to go further */ |
| 3952 | break; |
| 3953 | |
| 3954 | 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] | 3955 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3956 | /* this was not generated for this bind_conf, skip */ |
| 3957 | if (inst->bind_conf != bind_conf) |
| 3958 | continue; |
| 3959 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3960 | /* free the sni_ctx and instance */ |
| 3961 | ckch_inst_free(inst); |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3962 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3963 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3964 | } |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3965 | free(bind_conf_node); |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3966 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3967 | return cfgerr; |
| 3968 | } |
| 3969 | |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3970 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
| 3971 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
| 3972 | { |
| 3973 | struct stat buf; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3974 | int cfgerr = 0; |
| 3975 | struct ckch_store *ckchs; |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3976 | struct ckch_inst *ckch_inst = NULL; |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3977 | int found = 0; /* did we found a file to load ? */ |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3978 | |
| 3979 | if ((ckchs = ckchs_lookup(path))) { |
| 3980 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3981 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
Remi Tricot-Le Breton | 8b8d18f | 2024-03-25 16:50:24 +0100 | [diff] [blame] | 3982 | |
| 3983 | /* This certificate has an 'ocsp-update' already set in a |
| 3984 | * previous crt-list so we must raise an error. */ |
| 3985 | if (ckchs->data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON) { |
| 3986 | memprintf(err, "%sIncompatibilities found in OCSP update mode for certificate %s\n", err && *err ? *err: "", path); |
| 3987 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3988 | } |
| 3989 | |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3990 | found++; |
| 3991 | } else if (stat(path, &buf) == 0) { |
| 3992 | found++; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3993 | if (S_ISDIR(buf.st_mode) == 0) { |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3994 | ckchs = ckchs_load_cert_file(path, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3995 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3996 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3997 | 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] | 3998 | } else { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3999 | 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] | 4000 | } |
| 4001 | } else { |
| 4002 | /* stat failed, could be a bundle */ |
| 4003 | if (global_ssl.extra_files & SSL_GF_BUNDLE) { |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4004 | char fp[MAXPATHLEN+1] = {0}; |
| 4005 | int n = 0; |
| 4006 | |
| 4007 | /* Load all possible certs and keys in separate ckch_store */ |
| 4008 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 4009 | struct stat buf; |
| 4010 | int ret; |
| 4011 | |
| 4012 | ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 4013 | if (ret > sizeof(fp)) |
| 4014 | continue; |
| 4015 | |
| 4016 | if ((ckchs = ckchs_lookup(fp))) { |
| 4017 | 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] | 4018 | found++; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4019 | } else { |
| 4020 | if (stat(fp, &buf) == 0) { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4021 | found++; |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 4022 | ckchs = ckchs_load_cert_file(fp, err); |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4023 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4024 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4025 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 4026 | } |
| 4027 | } |
| 4028 | } |
William Lallemand | b7fdfdf | 2020-12-04 15:45:02 +0100 | [diff] [blame] | 4029 | #if HA_OPENSSL_VERSION_NUMBER < 0x10101000L |
| 4030 | if (found) { |
| 4031 | memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n", |
| 4032 | err && *err ? *err : "", path); |
| 4033 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4034 | } |
| 4035 | #endif |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 4036 | } |
| 4037 | } |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4038 | if (!found) { |
| 4039 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 4040 | err && *err ? *err : "", path, strerror(errno)); |
| 4041 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4042 | } |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 4043 | |
| 4044 | return cfgerr; |
| 4045 | } |
| 4046 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4047 | |
| 4048 | /* Create a full ssl context and ckch instance that will be used for a specific |
| 4049 | * backend server (server configuration line). |
| 4050 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 4051 | */ |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 4052 | int ssl_sock_load_srv_cert(char *path, struct server *server, int create_if_none, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4053 | { |
| 4054 | struct stat buf; |
| 4055 | int cfgerr = 0; |
| 4056 | struct ckch_store *ckchs; |
| 4057 | int found = 0; /* did we found a file to load ? */ |
| 4058 | |
| 4059 | if ((ckchs = ckchs_lookup(path))) { |
| 4060 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 4061 | 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] | 4062 | found++; |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 4063 | } else { |
| 4064 | if (!create_if_none) { |
| 4065 | memprintf(err, "%sunable to stat SSL certificate '%s'.\n", |
| 4066 | err && *err ? *err : "", path); |
| 4067 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4068 | goto out; |
| 4069 | } |
| 4070 | |
| 4071 | if (stat(path, &buf) == 0) { |
| 4072 | /* We do not manage directories on backend side. */ |
| 4073 | if (S_ISDIR(buf.st_mode) == 0) { |
| 4074 | ++found; |
| 4075 | ckchs = ckchs_load_cert_file(path, err); |
| 4076 | if (!ckchs) |
| 4077 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4078 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
| 4079 | } |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4080 | } |
| 4081 | } |
| 4082 | if (!found) { |
| 4083 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 4084 | err && *err ? *err : "", path, strerror(errno)); |
| 4085 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4086 | } |
| 4087 | |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 4088 | out: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4089 | return cfgerr; |
| 4090 | } |
| 4091 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4092 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4093 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4094 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4095 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4096 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4097 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4098 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4099 | SSL_OP_NO_SSLv2 | |
| 4100 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 4101 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4102 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 4103 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 4104 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 4105 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4106 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4107 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4108 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 4109 | SSL_MODE_RELEASE_BUFFERS | |
| 4110 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 4111 | 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] | 4112 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4113 | int flags = MC_SSL_O_ALL; |
| 4114 | int cfgerr = 0; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 4115 | const int default_min_ver = CONF_TLSV12; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4116 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4117 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4118 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4119 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4120 | 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] | 4121 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 4122 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4123 | 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] | 4124 | else |
| 4125 | flags = conf_ssl_methods->flags; |
| 4126 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 4127 | min = conf_ssl_methods->min; |
| 4128 | max = conf_ssl_methods->max; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 4129 | |
| 4130 | /* default minimum is TLSV12, */ |
| 4131 | if (!min) { |
| 4132 | if (!max || (max >= default_min_ver)) { |
| 4133 | min = default_min_ver; |
| 4134 | } else { |
| 4135 | 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). " |
| 4136 | "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n", |
| 4137 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name); |
| 4138 | min = max; |
| 4139 | } |
| 4140 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4141 | /* 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] | 4142 | if (min) |
| 4143 | flags |= (methodVersions[min].flag - 1); |
| 4144 | if (max) |
| 4145 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4146 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4147 | min = max = CONF_TLSV_NONE; |
| 4148 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4149 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4150 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4151 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4152 | if (min) { |
| 4153 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4154 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 4155 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4156 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 4157 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4158 | hole = 0; |
| 4159 | } |
| 4160 | max = i; |
| 4161 | } |
| 4162 | else { |
| 4163 | min = max = i; |
| 4164 | } |
| 4165 | } |
| 4166 | else { |
| 4167 | if (min) |
| 4168 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4169 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4170 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4171 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4172 | 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] | 4173 | cfgerr += 1; |
| 4174 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4175 | /* save real min/max in bind_conf */ |
| 4176 | conf_ssl_methods->min = min; |
| 4177 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4178 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4179 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4180 | /* 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] | 4181 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4182 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4183 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4184 | else |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4185 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) { |
| 4186 | /* clear every version flags in case SSL_CTX_new() |
| 4187 | * returns an SSL_CTX with disabled versions */ |
| 4188 | SSL_CTX_clear_options(ctx, methodVersions[i].option); |
| 4189 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4190 | if (flags & methodVersions[i].flag) |
| 4191 | options |= methodVersions[i].option; |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4192 | |
| 4193 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4194 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4195 | /* 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] | 4196 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4197 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 4198 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4199 | |
| 4200 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 4201 | options |= SSL_OP_NO_TICKET; |
| 4202 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 4203 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 4204 | |
| 4205 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 4206 | options |= SSL_OP_NO_RENEGOTIATION; |
| 4207 | #endif |
| 4208 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4209 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4210 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4211 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4212 | if (global_ssl.async) |
| 4213 | mode |= SSL_MODE_ASYNC; |
| 4214 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4215 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4216 | if (global_ssl.life_time) |
| 4217 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4218 | |
| 4219 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4220 | # ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4221 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 4222 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4223 | # elif defined(HAVE_SSL_CLIENT_HELLO_CB) |
| 4224 | # if defined(SSL_OP_NO_ANTI_REPLAY) |
Olivier Houchard | 545989f | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 4225 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 4226 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4227 | # endif /* ! SSL_OP_NO_ANTI_REPLAY */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 4228 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 4229 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4230 | # else /* ! OPENSSL_IS_BORINGSSL && ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4231 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4232 | # endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 4233 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4234 | #endif /* ! SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4235 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4236 | } |
| 4237 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4238 | |
| 4239 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 4240 | { |
| 4241 | if (first == block) { |
| 4242 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4243 | if (first->len > 0) |
| 4244 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 4245 | } |
| 4246 | } |
| 4247 | |
| 4248 | /* return first block from sh_ssl_sess */ |
| 4249 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 4250 | { |
Ilya Shipitsin | 2ca0158 | 2023-04-15 23:39:43 +0200 | [diff] [blame] | 4251 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - offsetof(struct shared_block, data)); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4252 | |
| 4253 | } |
| 4254 | |
| 4255 | /* store a session into the cache |
| 4256 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 4257 | * data: asn1 encoded session |
| 4258 | * data_len: asn1 encoded session length |
| 4259 | * Returns 1 id session was stored (else 0) |
| 4260 | */ |
| 4261 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 4262 | { |
| 4263 | struct shared_block *first; |
| 4264 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 4265 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4266 | 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] | 4267 | if (!first) { |
| 4268 | /* Could not retrieve enough free blocks to store that session */ |
| 4269 | return 0; |
| 4270 | } |
| 4271 | |
| 4272 | /* STORE the key in the first elem */ |
| 4273 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4274 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 4275 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4276 | |
| 4277 | /* it returns the already existing node |
| 4278 | or current node if none, never returns null */ |
| 4279 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 4280 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 4281 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 4282 | /* release the reserved row */ |
William Lallemand | 222e5a2 | 2023-01-31 14:12:28 +0100 | [diff] [blame] | 4283 | first->len = 0; /* the len must be liberated in order not to call the release callback on it */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4284 | shctx_row_dec_hot(ssl_shctx, first); |
| 4285 | /* replace the previous session already in the tree */ |
| 4286 | sh_ssl_sess = oldsh_ssl_sess; |
| 4287 | /* ignore the previous session data, only use the header */ |
| 4288 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 4289 | shctx_row_inc_hot(ssl_shctx, first); |
| 4290 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4291 | } |
| 4292 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4293 | 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] | 4294 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4295 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4296 | } |
| 4297 | |
| 4298 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4299 | |
| 4300 | return 1; |
| 4301 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4302 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4303 | /* SSL callback used when a new session is created while connecting to a server */ |
| 4304 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4305 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4306 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4307 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4308 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4309 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4310 | |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4311 | /* RWLOCK: only read lock the SSL cache even when writing in it because there is |
| 4312 | * one cache per thread, it only prevents to flush it from the CLI in |
| 4313 | * another thread */ |
| 4314 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4315 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4316 | int len; |
| 4317 | unsigned char *ptr; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4318 | const char *sni; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4319 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4320 | len = i2d_SSL_SESSION(sess, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4321 | sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4322 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4323 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4324 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4325 | } else { |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4326 | ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len); |
Willy Tarreau | 94d7f8a | 2023-08-21 08:45:35 +0200 | [diff] [blame] | 4327 | if (!ptr) |
| 4328 | free(s->ssl_ctx.reused_sess[tid].ptr); |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4329 | s->ssl_ctx.reused_sess[tid].ptr = ptr; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4330 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4331 | } |
| 4332 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4333 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4334 | &ptr); |
| 4335 | } |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4336 | |
| 4337 | if (s->ssl_ctx.reused_sess[tid].sni) { |
| 4338 | /* if the new sni is empty or isn' t the same as the old one */ |
| 4339 | if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) { |
| 4340 | ha_free(&s->ssl_ctx.reused_sess[tid].sni); |
| 4341 | if (sni) |
| 4342 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4343 | } |
| 4344 | } else if (sni) { |
| 4345 | /* if there wasn't an old sni but there is a new one */ |
| 4346 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4347 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4348 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4349 | } else { |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4350 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4351 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4352 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4353 | } |
| 4354 | |
| 4355 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4356 | } |
| 4357 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4358 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4359 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4360 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4361 | { |
| 4362 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4363 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4364 | unsigned char *p; |
| 4365 | int data_len; |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4366 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4367 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4368 | |
| 4369 | /* 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] | 4370 | * so we don't store it to keep size. |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4371 | * note: SSL_SESSION_set1_id is using |
| 4372 | * a memcpy so we need to use a different pointer |
| 4373 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4374 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4375 | */ |
| 4376 | |
| 4377 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4378 | |
| 4379 | /* copy value in an other buffer */ |
| 4380 | memcpy(encid, sid_data, sid_length); |
| 4381 | |
| 4382 | /* pad with 0 */ |
| 4383 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4384 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4385 | |
| 4386 | /* force length to zero to avoid ASN1 encoding */ |
| 4387 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4388 | |
| 4389 | /* force length to zero to avoid ASN1 encoding */ |
| 4390 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4391 | |
| 4392 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4393 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4394 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4395 | goto err; |
| 4396 | |
| 4397 | p = encsess; |
| 4398 | |
| 4399 | /* process ASN1 session encoding before the lock */ |
| 4400 | i2d_SSL_SESSION(sess, &p); |
| 4401 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4402 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4403 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4404 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4405 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4406 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4407 | err: |
| 4408 | /* reset original length values */ |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4409 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4410 | 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] | 4411 | |
| 4412 | return 0; /* do not increment session reference count */ |
| 4413 | } |
| 4414 | |
| 4415 | /* 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] | 4416 | 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] | 4417 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4418 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4419 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4420 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4421 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4422 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4423 | |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4424 | _HA_ATOMIC_INC(&global.shctx_lookups); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4425 | |
| 4426 | /* allow the session to be freed automatically by openssl */ |
| 4427 | *do_copy = 0; |
| 4428 | |
| 4429 | /* tree key is zeros padded sessionid */ |
| 4430 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4431 | memcpy(tmpkey, key, key_len); |
| 4432 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4433 | key = tmpkey; |
| 4434 | } |
| 4435 | |
| 4436 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4437 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4438 | |
| 4439 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4440 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4441 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4442 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4443 | shctx_unlock(ssl_shctx); |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4444 | _HA_ATOMIC_INC(&global.shctx_misses); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4445 | return NULL; |
| 4446 | } |
| 4447 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4448 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4449 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4450 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4451 | 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] | 4452 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4453 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4454 | |
| 4455 | /* decode ASN1 session */ |
| 4456 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4457 | 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] | 4458 | /* Reset session id and session id contenxt */ |
| 4459 | if (sess) { |
| 4460 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4461 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4462 | } |
| 4463 | |
| 4464 | return sess; |
| 4465 | } |
| 4466 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4467 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4468 | /* 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] | 4469 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4470 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4471 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4472 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4473 | unsigned int sid_length; |
| 4474 | const unsigned char *sid_data; |
| 4475 | (void)ctx; |
| 4476 | |
| 4477 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4478 | /* tree key is zeros padded sessionid */ |
| 4479 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4480 | memcpy(tmpkey, sid_data, sid_length); |
| 4481 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4482 | sid_data = tmpkey; |
| 4483 | } |
| 4484 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4485 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4486 | |
| 4487 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4488 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4489 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4490 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4491 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4492 | } |
| 4493 | |
| 4494 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4495 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4496 | } |
| 4497 | |
| 4498 | /* Set session cache mode to server and disable openssl internal cache. |
| 4499 | * Set shared cache callbacks on an ssl context. |
| 4500 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4501 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4502 | { |
| 4503 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4504 | |
| 4505 | if (!ssl_shctx) { |
| 4506 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4507 | return; |
| 4508 | } |
| 4509 | |
| 4510 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4511 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4512 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4513 | |
| 4514 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4515 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4516 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4517 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4518 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4519 | |
| 4520 | /* |
| 4521 | * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
| 4522 | * |
| 4523 | * The format is: |
| 4524 | * * <Label> <space> <ClientRandom> <space> <Secret> |
| 4525 | * We only need to copy the secret as there is a sample fetch for the ClientRandom |
| 4526 | */ |
| 4527 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4528 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4529 | void SSL_CTX_keylog(const SSL *ssl, const char *line) |
| 4530 | { |
| 4531 | struct ssl_keylog *keylog; |
| 4532 | char *lastarg = NULL; |
| 4533 | char *dst = NULL; |
| 4534 | |
Frédéric Lécaille | 36e1e8c | 2023-06-07 11:25:35 +0200 | [diff] [blame] | 4535 | #ifdef USE_QUIC_OPENSSL_COMPAT |
| 4536 | quic_tls_compat_keylog_callback(ssl, line); |
| 4537 | #endif |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4538 | keylog = SSL_get_ex_data(ssl, ssl_keylog_index); |
| 4539 | if (!keylog) |
| 4540 | return; |
| 4541 | |
| 4542 | lastarg = strrchr(line, ' '); |
| 4543 | if (lastarg == NULL || ++lastarg == NULL) |
| 4544 | return; |
| 4545 | |
| 4546 | dst = pool_alloc(pool_head_ssl_keylog_str); |
| 4547 | if (!dst) |
| 4548 | return; |
| 4549 | |
| 4550 | strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1); |
| 4551 | dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0'; |
| 4552 | |
| 4553 | if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) { |
| 4554 | if (keylog->client_random) |
| 4555 | goto error; |
| 4556 | keylog->client_random = dst; |
| 4557 | |
| 4558 | } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) { |
| 4559 | if (keylog->client_early_traffic_secret) |
| 4560 | goto error; |
| 4561 | keylog->client_early_traffic_secret = dst; |
| 4562 | |
| 4563 | } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4564 | if(keylog->client_handshake_traffic_secret) |
| 4565 | goto error; |
| 4566 | keylog->client_handshake_traffic_secret = dst; |
| 4567 | |
| 4568 | } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4569 | if (keylog->server_handshake_traffic_secret) |
| 4570 | goto error; |
| 4571 | keylog->server_handshake_traffic_secret = dst; |
| 4572 | |
| 4573 | } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) { |
| 4574 | if (keylog->client_traffic_secret_0) |
| 4575 | goto error; |
| 4576 | keylog->client_traffic_secret_0 = dst; |
| 4577 | |
| 4578 | } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) { |
| 4579 | if (keylog->server_traffic_secret_0) |
| 4580 | goto error; |
| 4581 | keylog->server_traffic_secret_0 = dst; |
| 4582 | |
| 4583 | } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) { |
| 4584 | if (keylog->early_exporter_secret) |
| 4585 | goto error; |
| 4586 | keylog->early_exporter_secret = dst; |
| 4587 | |
| 4588 | } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) { |
| 4589 | if (keylog->exporter_secret) |
| 4590 | goto error; |
| 4591 | keylog->exporter_secret = dst; |
| 4592 | } else { |
| 4593 | goto error; |
| 4594 | } |
| 4595 | |
| 4596 | return; |
| 4597 | |
| 4598 | error: |
| 4599 | pool_free(pool_head_ssl_keylog_str, dst); |
| 4600 | |
| 4601 | return; |
| 4602 | } |
| 4603 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4604 | |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4605 | /* |
| 4606 | * This function applies the SSL configuration on a SSL_CTX |
| 4607 | * It returns an error code and fills the <err> buffer |
| 4608 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4609 | static 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] | 4610 | { |
| 4611 | struct proxy *curproxy = bind_conf->frontend; |
| 4612 | int cfgerr = 0; |
| 4613 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4614 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4615 | const char *conf_ciphers; |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4616 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4617 | const char *conf_ciphersuites; |
| 4618 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4619 | const char *conf_curves = NULL; |
William Lallemand | 64a77e3 | 2023-05-02 18:26:46 +0200 | [diff] [blame] | 4620 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
William Lallemand | 1d3c822 | 2023-05-04 15:33:55 +0200 | [diff] [blame] | 4621 | #if defined(SSL_CTX_set1_sigalgs_list) |
| 4622 | const char *conf_sigalgs = NULL; |
| 4623 | #endif |
William Lallemand | b6ae2aa | 2023-05-05 00:05:46 +0200 | [diff] [blame] | 4624 | #if defined(SSL_CTX_set1_client_sigalgs_list) |
| 4625 | const char *conf_client_sigalgs = NULL; |
| 4626 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4627 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4628 | if (ssl_conf) { |
| 4629 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4630 | int i, min, max; |
| 4631 | int flags = MC_SSL_O_ALL; |
| 4632 | |
| 4633 | /* 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] | 4634 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4635 | 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] | 4636 | if (min) |
| 4637 | flags |= (methodVersions[min].flag - 1); |
| 4638 | if (max) |
| 4639 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4640 | min = max = CONF_TLSV_NONE; |
| 4641 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4642 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4643 | if (min) |
| 4644 | max = i; |
| 4645 | else |
| 4646 | min = max = i; |
| 4647 | } |
| 4648 | /* save real min/max */ |
| 4649 | conf_ssl_methods->min = min; |
| 4650 | conf_ssl_methods->max = max; |
| 4651 | if (!min) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4652 | memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4653 | 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] | 4654 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4655 | } |
| 4656 | } |
| 4657 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4658 | 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] | 4659 | case SSL_SOCK_VERIFY_NONE: |
| 4660 | verify = SSL_VERIFY_NONE; |
| 4661 | break; |
| 4662 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4663 | verify = SSL_VERIFY_PEER; |
| 4664 | break; |
| 4665 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4666 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4667 | break; |
| 4668 | } |
| 4669 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4670 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4671 | 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] | 4672 | 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] | 4673 | 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] | 4674 | if (ca_file || ca_verify_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4675 | /* set CAfile to verify */ |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4676 | if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4677 | 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] | 4678 | 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] | 4679 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4680 | } |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4681 | if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) { |
| 4682 | memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n", |
| 4683 | err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4684 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4685 | } |
| 4686 | 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] | 4687 | /* set CA names for client cert request, function returns void */ |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 4688 | 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] | 4689 | } |
William Lallemand | 64a77e3 | 2023-05-02 18:26:46 +0200 | [diff] [blame] | 4690 | #ifdef USE_OPENSSL_WOLFSSL |
| 4691 | /* WolfSSL activates CRL checks by default so we need to disable it */ |
| 4692 | X509_STORE_set_flags(store, 0) ; |
| 4693 | #endif |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4694 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4695 | else { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4696 | memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4697 | 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] | 4698 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4699 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4700 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4701 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4702 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4703 | if (!ssl_set_cert_crl_file(store, crl_file)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4704 | memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4705 | 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] | 4706 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4707 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4708 | else { |
| 4709 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4710 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4711 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4712 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4713 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4714 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4715 | #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] | 4716 | if(bind_conf->keys_ref) { |
Remi Tricot-Le Breton | 8ea1f5f | 2022-02-08 17:45:58 +0100 | [diff] [blame] | 4717 | if (!SSL_CTX_set_tlsext_ticket_key_evp_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4718 | memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4719 | 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] | 4720 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4721 | } |
| 4722 | } |
| 4723 | #endif |
| 4724 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4725 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4726 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4727 | if (conf_ciphers && |
| 4728 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4729 | memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4730 | 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] | 4731 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4732 | } |
| 4733 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4734 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4735 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4736 | if (conf_ciphersuites && |
| 4737 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4738 | memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4739 | 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] | 4740 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4741 | } |
| 4742 | #endif |
| 4743 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4744 | #ifndef OPENSSL_NO_DH |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 4745 | if (!local_dh_1024) |
| 4746 | local_dh_1024 = ssl_get_dh_1024(); |
| 4747 | if (!local_dh_2048) |
| 4748 | local_dh_2048 = ssl_get_dh_2048(); |
| 4749 | if (!local_dh_4096) |
| 4750 | local_dh_4096 = ssl_get_dh_4096(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4751 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4752 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4753 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Ilya Shipitsin | 7ff7747 | 2021-02-08 16:55:06 +0500 | [diff] [blame] | 4754 | #ifdef SSL_CTRL_SET_MSG_CALLBACK |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4755 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4756 | #endif |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4757 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | b60a77b | 2022-11-18 15:00:15 +0100 | [diff] [blame] | 4758 | /* only activate the keylog callback if it was required to prevent performance loss */ |
| 4759 | if (global_ssl.keylog > 0) |
| 4760 | SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4761 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4762 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4763 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4764 | ssl_conf_cur = NULL; |
| 4765 | if (ssl_conf && ssl_conf->npn_str) |
| 4766 | ssl_conf_cur = ssl_conf; |
| 4767 | else if (bind_conf->ssl_conf.npn_str) |
| 4768 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4769 | if (ssl_conf_cur) |
| 4770 | 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] | 4771 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4772 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4773 | ssl_conf_cur = NULL; |
| 4774 | if (ssl_conf && ssl_conf->alpn_str) |
| 4775 | ssl_conf_cur = ssl_conf; |
| 4776 | else if (bind_conf->ssl_conf.alpn_str) |
| 4777 | ssl_conf_cur = &bind_conf->ssl_conf; |
Willy Tarreau | a2a0955 | 2023-04-19 09:05:49 +0200 | [diff] [blame] | 4778 | if (ssl_conf_cur && ssl_conf_cur->alpn_len) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4779 | 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] | 4780 | #endif |
Ilya Shipitsin | 0aa8c29 | 2020-11-04 00:39:07 +0500 | [diff] [blame] | 4781 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4782 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4783 | if (conf_curves) { |
| 4784 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4785 | memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4786 | 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] | 4787 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4788 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4789 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4790 | } |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4791 | #endif /* defined(SSL_CTX_set1_curves_list) */ |
| 4792 | |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4793 | if (!conf_curves) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4794 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4795 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4796 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4797 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4798 | NULL); |
| 4799 | |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4800 | if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) { |
| 4801 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4802 | err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4803 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4804 | } |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4805 | #endif /* defined(SSL_CTX_set1_curves_list) */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4806 | #else |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4807 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 4808 | int i; |
| 4809 | EC_KEY *ecdh; |
| 4810 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4811 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4812 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4813 | ECDHE_DEFAULT_CURVE); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4814 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4815 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4816 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4817 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4818 | 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] | 4819 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4820 | } |
| 4821 | else { |
| 4822 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4823 | EC_KEY_free(ecdh); |
| 4824 | } |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4825 | #endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */ |
| 4826 | #endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */ |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4827 | } |
William Lallemand | 1d3c822 | 2023-05-04 15:33:55 +0200 | [diff] [blame] | 4828 | |
| 4829 | #if defined(SSL_CTX_set1_sigalgs_list) |
| 4830 | conf_sigalgs = (ssl_conf && ssl_conf->sigalgs) ? ssl_conf->sigalgs : bind_conf->ssl_conf.sigalgs; |
| 4831 | if (conf_sigalgs) { |
| 4832 | if (!SSL_CTX_set1_sigalgs_list(ctx, conf_sigalgs)) { |
| 4833 | memprintf(err, "%sProxy '%s': unable to set SSL Signature Algorithm list to '%s' for bind '%s' at [%s:%d].\n", |
| 4834 | err && *err ? *err : "", curproxy->id, conf_sigalgs, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4835 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4836 | } |
| 4837 | } |
| 4838 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4839 | |
William Lallemand | b6ae2aa | 2023-05-05 00:05:46 +0200 | [diff] [blame] | 4840 | #if defined(SSL_CTX_set1_client_sigalgs_list) |
| 4841 | conf_client_sigalgs = (ssl_conf && ssl_conf->client_sigalgs) ? ssl_conf->client_sigalgs : bind_conf->ssl_conf.client_sigalgs; |
| 4842 | if (conf_client_sigalgs) { |
| 4843 | if (!SSL_CTX_set1_client_sigalgs_list(ctx, conf_client_sigalgs)) { |
| 4844 | memprintf(err, "%sProxy '%s': unable to set SSL Signature Algorithm list to '%s' for bind '%s' at [%s:%d].\n", |
| 4845 | err && *err ? *err : "", curproxy->id, conf_client_sigalgs, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4846 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4847 | } |
| 4848 | } |
| 4849 | #endif |
| 4850 | |
Frédéric Lécaille | 23937b7 | 2023-06-07 11:19:51 +0200 | [diff] [blame] | 4851 | #ifdef USE_QUIC_OPENSSL_COMPAT |
| 4852 | if (!quic_tls_compat_init(bind_conf, ctx)) |
| 4853 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4854 | #endif |
| 4855 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4856 | return cfgerr; |
| 4857 | } |
| 4858 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4859 | |
| 4860 | /* |
| 4861 | * Prepare the SSL_CTX based on the bind line configuration. |
| 4862 | * Since the CA file loading is made depending on the verify option of the bind |
| 4863 | * line, the link between the SSL_CTX and the CA file tree entry is made here. |
| 4864 | * If we want to create a link between the CA file entry and the corresponding |
| 4865 | * ckch instance (for CA file hot update), it needs to be done after |
| 4866 | * ssl_sock_prepare_ctx. |
| 4867 | * Returns 0 in case of success. |
| 4868 | */ |
| 4869 | int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 4870 | SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err) |
| 4871 | { |
| 4872 | int errcode = 0; |
| 4873 | |
| 4874 | errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err); |
| 4875 | if (!errcode && ckch_inst) |
| 4876 | ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL); |
| 4877 | |
| 4878 | return errcode; |
| 4879 | } |
| 4880 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4881 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4882 | { |
| 4883 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4884 | size_t prefixlen, suffixlen; |
| 4885 | |
| 4886 | /* Trivial case */ |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4887 | if (strcasecmp(pattern, hostname) == 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4888 | return 1; |
| 4889 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4890 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4891 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4892 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4893 | pattern_wildcard = NULL; |
| 4894 | pattern_left_label_end = pattern; |
| 4895 | while (*pattern_left_label_end != '.') { |
| 4896 | switch (*pattern_left_label_end) { |
| 4897 | case 0: |
| 4898 | /* End of label not found */ |
| 4899 | return 0; |
| 4900 | case '*': |
| 4901 | /* If there is more than one wildcards */ |
| 4902 | if (pattern_wildcard) |
| 4903 | return 0; |
| 4904 | pattern_wildcard = pattern_left_label_end; |
| 4905 | break; |
| 4906 | } |
| 4907 | pattern_left_label_end++; |
| 4908 | } |
| 4909 | |
| 4910 | /* If it's not trivial and there is no wildcard, it can't |
| 4911 | * match */ |
| 4912 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4913 | return 0; |
| 4914 | |
| 4915 | /* Make sure all labels match except the leftmost */ |
| 4916 | hostname_left_label_end = strchr(hostname, '.'); |
| 4917 | if (!hostname_left_label_end |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4918 | || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4919 | return 0; |
| 4920 | |
| 4921 | /* Make sure the leftmost label of the hostname is long enough |
| 4922 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4923 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4924 | return 0; |
| 4925 | |
| 4926 | /* Finally compare the string on either side of the |
| 4927 | * wildcard */ |
| 4928 | prefixlen = pattern_wildcard - pattern; |
| 4929 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4930 | if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0)) |
| 4931 | || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4932 | return 0; |
| 4933 | |
| 4934 | return 1; |
| 4935 | } |
| 4936 | |
| 4937 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4938 | { |
| 4939 | SSL *ssl; |
| 4940 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4941 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4942 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4943 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4944 | |
| 4945 | int depth; |
| 4946 | X509 *cert; |
| 4947 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4948 | int i; |
| 4949 | X509_NAME *cert_subject; |
| 4950 | char *str; |
| 4951 | |
| 4952 | if (ok == 0) |
| 4953 | return ok; |
| 4954 | |
| 4955 | 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] | 4956 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | 3a0a0d6 | 2022-04-12 07:31:06 +0200 | [diff] [blame] | 4957 | ssl_ctx = __conn_get_ssl_sock_ctx(conn); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4958 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4959 | /* We're checking if the provided hostnames match the desired one. The |
| 4960 | * desired hostname comes from the SNI we presented if any, or if not |
| 4961 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4962 | * directive. If neither is set, we don't care about the name so the |
| 4963 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4964 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4965 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4966 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4967 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4968 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4969 | if (!servername) |
| 4970 | return ok; |
| 4971 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4972 | |
| 4973 | /* We only need to verify the CN on the actual server cert, |
| 4974 | * not the indirect CAs */ |
| 4975 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4976 | if (depth != 0) |
| 4977 | return ok; |
| 4978 | |
| 4979 | /* At this point, the cert is *not* OK unless we can find a |
| 4980 | * hostname match */ |
| 4981 | ok = 0; |
| 4982 | |
| 4983 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4984 | /* It seems like this might happen if verify peer isn't set */ |
| 4985 | if (!cert) |
| 4986 | return ok; |
| 4987 | |
| 4988 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4989 | if (alt_names) { |
| 4990 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4991 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4992 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4993 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4994 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4995 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4996 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4997 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4998 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4999 | OPENSSL_free(str); |
| 5000 | } |
| 5001 | } |
| 5002 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 5003 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5004 | } |
| 5005 | |
| 5006 | cert_subject = X509_get_subject_name(cert); |
| 5007 | i = -1; |
| 5008 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 5009 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5010 | ASN1_STRING *value; |
| 5011 | value = X509_NAME_ENTRY_get_data(entry); |
| 5012 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5013 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 5014 | OPENSSL_free(str); |
| 5015 | } |
| 5016 | } |
| 5017 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 5018 | /* report the mismatch and indicate if SNI was used or not */ |
| 5019 | if (!ok && !conn->err_code) |
| 5020 | 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] | 5021 | return ok; |
| 5022 | } |
| 5023 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5024 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5025 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5026 | { |
| 5027 | int cfgerr = 0; |
William Lallemand | 2c776f1 | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 5028 | SSL_CTX *ctx; |
William Lallemand | 0adafb3 | 2022-12-13 18:17:44 +0100 | [diff] [blame] | 5029 | /* Automatic memory computations need to know we use SSL there |
| 5030 | * If this is an internal proxy, don't use it for the computation */ |
William Lallemand | 04007cb | 2022-12-14 10:34:36 +0100 | [diff] [blame] | 5031 | if (!(srv->proxy->cap & PR_CAP_INT)) |
William Lallemand | 0adafb3 | 2022-12-13 18:17:44 +0100 | [diff] [blame] | 5032 | global.ssl_used_backend = 1; |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 5033 | |
| 5034 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5035 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5036 | if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5037 | ha_alert("out of memory.\n"); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5038 | cfgerr++; |
| 5039 | return cfgerr; |
| 5040 | } |
| 5041 | } |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 5042 | if (srv->use_ssl == 1) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5043 | srv->xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5044 | |
William Lallemand | 2c776f1 | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 5045 | if (srv->ssl_ctx.client_crt) { |
| 5046 | const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1; |
| 5047 | char *err = NULL; |
| 5048 | int err_code = 0; |
| 5049 | |
| 5050 | /* If there is a crt keyword there, the SSL_CTX will be created here. */ |
| 5051 | err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err); |
| 5052 | if (err_code != ERR_NONE) { |
| 5053 | if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT)) |
| 5054 | ha_warning("%s", err); |
| 5055 | else |
| 5056 | ha_alert("%s", err); |
| 5057 | |
| 5058 | if (err_code & (ERR_FATAL|ERR_ABORT)) |
| 5059 | cfgerr++; |
| 5060 | } |
| 5061 | ha_free(&err); |
| 5062 | } |
| 5063 | |
| 5064 | ctx = srv->ssl_ctx.ctx; |
| 5065 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5066 | /* The context will be uninitialized if there wasn't any "cert" option |
| 5067 | * in the server line. */ |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5068 | if (!ctx) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5069 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 5070 | if (!ctx) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5071 | ha_alert("unable to allocate ssl context.\n"); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5072 | cfgerr++; |
| 5073 | return cfgerr; |
| 5074 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5075 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5076 | srv->ssl_ctx.ctx = ctx; |
| 5077 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5078 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5079 | cfgerr += ssl_sock_prep_srv_ctx_and_inst(srv, srv->ssl_ctx.ctx, srv->ssl_ctx.inst); |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5080 | |
| 5081 | return cfgerr; |
| 5082 | } |
| 5083 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5084 | /* Initialize an SSL context that will be used on the backend side. |
| 5085 | * Returns an error count. |
| 5086 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5087 | static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5088 | { |
| 5089 | struct proxy *curproxy = srv->proxy; |
| 5090 | int cfgerr = 0; |
| 5091 | long options = |
| 5092 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 5093 | SSL_OP_NO_SSLv2 | |
| 5094 | SSL_OP_NO_COMPRESSION; |
| 5095 | long mode = |
| 5096 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 5097 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 5098 | SSL_MODE_RELEASE_BUFFERS | |
| 5099 | SSL_MODE_SMALL_BUFFERS; |
| 5100 | int verify = SSL_VERIFY_NONE; |
| 5101 | const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
| 5102 | int i, min, max, hole; |
| 5103 | int flags = MC_SSL_O_ALL; |
| 5104 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5105 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5106 | ha_warning("no-sslv3/no-tlsv1x are ignored for this server. " |
| 5107 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n"); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5108 | else |
| 5109 | flags = conf_ssl_methods->flags; |
| 5110 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5111 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 5112 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5113 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5114 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5115 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5116 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 5117 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5118 | min = max = CONF_TLSV_NONE; |
| 5119 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5120 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5121 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5122 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5123 | if (min) { |
| 5124 | if (hole) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 5125 | ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5126 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 5127 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 5128 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5129 | hole = 0; |
| 5130 | } |
| 5131 | max = i; |
| 5132 | } |
| 5133 | else { |
| 5134 | min = max = i; |
| 5135 | } |
| 5136 | } |
| 5137 | else { |
| 5138 | if (min) |
| 5139 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5140 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5141 | if (!min) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 5142 | ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5143 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5144 | cfgerr += 1; |
| 5145 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5146 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 5147 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5148 | /* 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] | 5149 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5150 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 5151 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5152 | else |
| 5153 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 5154 | if (flags & methodVersions[i].flag) |
| 5155 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5156 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5157 | /* 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] | 5158 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 5159 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5160 | #endif |
| 5161 | |
| 5162 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 5163 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5164 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5165 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5166 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5167 | if (global_ssl.async) |
| 5168 | mode |= SSL_MODE_ASYNC; |
| 5169 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5170 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5171 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5172 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 5173 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5174 | switch (srv->ssl_ctx.verify) { |
| 5175 | case SSL_SOCK_VERIFY_NONE: |
| 5176 | verify = SSL_VERIFY_NONE; |
| 5177 | break; |
| 5178 | case SSL_SOCK_VERIFY_REQUIRED: |
| 5179 | verify = SSL_VERIFY_PEER; |
| 5180 | break; |
| 5181 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5182 | SSL_CTX_set_verify(ctx, verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 5183 | (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] | 5184 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5185 | if (srv->ssl_ctx.ca_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 5186 | /* set CAfile to verify */ |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5187 | if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5188 | ha_alert("unable to set CA file '%s'.\n", |
| 5189 | srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5190 | cfgerr++; |
| 5191 | } |
| 5192 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5193 | else { |
| 5194 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5195 | ha_alert("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"); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5196 | else |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5197 | ha_alert("verify is enabled but no CA file specified.\n"); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5198 | cfgerr++; |
| 5199 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5200 | #ifdef X509_V_FLAG_CRL_CHECK |
| 5201 | if (srv->ssl_ctx.crl_file) { |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5202 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5203 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 5204 | if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5205 | ha_alert("unable to configure CRL file '%s'.\n", |
| 5206 | srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5207 | cfgerr++; |
| 5208 | } |
| 5209 | else { |
| 5210 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 5211 | } |
| 5212 | } |
| 5213 | #endif |
| 5214 | } |
| 5215 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5216 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 5217 | SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5218 | if (srv->ssl_ctx.ciphers && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5219 | !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5220 | ha_alert("unable to set SSL cipher list to '%s'.\n", |
| 5221 | srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5222 | cfgerr++; |
| 5223 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5224 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 5225 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5226 | if (srv->ssl_ctx.ciphersuites && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5227 | !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5228 | ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 5229 | srv->ssl_ctx.ciphersuites); |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5230 | cfgerr++; |
| 5231 | } |
| 5232 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5233 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 5234 | if (srv->ssl_ctx.npn_str) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5235 | 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] | 5236 | #endif |
| 5237 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | a2a0955 | 2023-04-19 09:05:49 +0200 | [diff] [blame] | 5238 | if (srv->ssl_ctx.alpn_str && srv->ssl_ctx.alpn_len) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5239 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 5240 | #endif |
| 5241 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5242 | |
| 5243 | return cfgerr; |
| 5244 | } |
| 5245 | |
| 5246 | /* |
| 5247 | * Prepare the frontend's SSL_CTX based on the server line configuration. |
| 5248 | * Since the CA file loading is made depending on the verify option of the |
| 5249 | * server line, the link between the SSL_CTX and the CA file tree entry is |
| 5250 | * made here. |
| 5251 | * If we want to create a link between the CA file entry and the corresponding |
| 5252 | * ckch instance (for CA file hot update), it needs to be done after |
| 5253 | * ssl_sock_prepare_srv_ssl_ctx. |
| 5254 | * Returns an error count. |
| 5255 | */ |
| 5256 | int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx, |
| 5257 | struct ckch_inst *ckch_inst) |
| 5258 | { |
| 5259 | int cfgerr = 0; |
| 5260 | |
| 5261 | cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx); |
| 5262 | if (!cfgerr && ckch_inst) |
| 5263 | ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5264 | |
| 5265 | return cfgerr; |
| 5266 | } |
| 5267 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5268 | |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5269 | /* |
| 5270 | * Create an initial CTX used to start the SSL connections. |
| 5271 | * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs. |
| 5272 | * Returns 0 if succeeded, or something >0 if not. |
| 5273 | */ |
| 5274 | #ifdef USE_QUIC |
| 5275 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5276 | { |
| 5277 | if (bind_conf->xprt == xprt_get(XPRT_QUIC)) |
| 5278 | return ssl_quic_initial_ctx(bind_conf); |
| 5279 | else |
| 5280 | return ssl_sock_initial_ctx(bind_conf); |
| 5281 | } |
| 5282 | #else |
| 5283 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5284 | { |
| 5285 | return ssl_sock_initial_ctx(bind_conf); |
| 5286 | } |
| 5287 | #endif |
| 5288 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5289 | /* 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] | 5290 | * be NULL, in which case nothing is done. Returns the number of errors |
| 5291 | * encountered. |
| 5292 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5293 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5294 | { |
| 5295 | struct ebmb_node *node; |
| 5296 | struct sni_ctx *sni; |
| 5297 | int err = 0; |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5298 | int errcode = 0; |
| 5299 | char *errmsg = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5300 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 5301 | /* Automatic memory computations need to know we use SSL there */ |
| 5302 | global.ssl_used_frontend = 1; |
| 5303 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5304 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 5305 | if (!bind_conf->initial_ctx) { |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5306 | err += ssl_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5307 | /* It should not be necessary to call this function, but it's |
| 5308 | necessary first to check and move all initialisation related |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5309 | to initial_ctx in ssl_initial_ctx. */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5310 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg); |
| 5311 | } |
| 5312 | if (bind_conf->default_ctx) { |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5313 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, bind_conf->default_inst, &errmsg); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5314 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5315 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5316 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5317 | while (node) { |
| 5318 | sni = ebmb_entry(node, struct sni_ctx, name); |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5319 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5320 | /* only initialize the CTX on its first occurrence and |
| 5321 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5322 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg); |
| 5323 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5324 | node = ebmb_next(node); |
| 5325 | } |
| 5326 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5327 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5328 | while (node) { |
| 5329 | sni = ebmb_entry(node, struct sni_ctx, name); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5330 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5331 | /* only initialize the CTX on its first occurrence and |
| 5332 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5333 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5334 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5335 | node = ebmb_next(node); |
| 5336 | } |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5337 | |
| 5338 | if (errcode & ERR_WARN) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5339 | ha_warning("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5340 | } else if (errcode & ERR_CODE) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5341 | ha_alert("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5342 | err++; |
| 5343 | } |
| 5344 | |
| 5345 | free(errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5346 | return err; |
| 5347 | } |
| 5348 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5349 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 5350 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 5351 | * alerts are directly emitted since the rest of the stack does it below. |
| 5352 | */ |
| 5353 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 5354 | { |
| 5355 | struct proxy *px = bind_conf->frontend; |
| 5356 | int alloc_ctx; |
| 5357 | int err; |
| 5358 | |
Willy Tarreau | 11ba404 | 2022-05-20 15:56:32 +0200 | [diff] [blame] | 5359 | if (!(bind_conf->options & BC_O_USE_SSL)) { |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5360 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5361 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 5362 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5363 | } |
| 5364 | return 0; |
| 5365 | } |
| 5366 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 5367 | if (bind_conf->strict_sni && !(bind_conf->options & BC_O_GENERATE_CERTS)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5368 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 5369 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5370 | } |
| 5371 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5372 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5373 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5374 | return -1; |
| 5375 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5376 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5377 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5378 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5379 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
Willy Tarreau | 9135859 | 2021-06-15 08:08:04 +0200 | [diff] [blame] | 5380 | sizeof(*sh_ssl_sess_tree), (global.nbthread > 1)); |
Frédéric Lécaille | 4c8aa11 | 2018-10-25 20:22:46 +0200 | [diff] [blame] | 5381 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5382 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5383 | 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"); |
| 5384 | else |
| 5385 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5386 | return -1; |
| 5387 | } |
| 5388 | /* free block callback */ |
| 5389 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5390 | /* init the root tree within the extra space */ |
| 5391 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5392 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5393 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5394 | err = 0; |
| 5395 | /* initialize all certificate contexts */ |
| 5396 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5397 | |
| 5398 | /* initialize CA variables if the certificates generation is enabled */ |
| 5399 | err += ssl_sock_load_ca(bind_conf); |
| 5400 | |
| 5401 | return -err; |
| 5402 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5403 | |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5404 | /* release ssl context allocated for servers. Most of the field free here |
| 5405 | * must also be allocated in srv_ssl_settings_cpy() */ |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5406 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5407 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5408 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5409 | ha_free(&srv->ssl_ctx.alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5410 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5411 | #ifdef OPENSSL_NPN_NEGOTIATED |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5412 | ha_free(&srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5413 | #endif |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5414 | if (srv->ssl_ctx.reused_sess) { |
| 5415 | int i; |
| 5416 | |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5417 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5418 | ha_free(&srv->ssl_ctx.reused_sess[i].ptr); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5419 | ha_free(&srv->ssl_ctx.reused_sess[i].sni); |
| 5420 | } |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5421 | ha_free(&srv->ssl_ctx.reused_sess); |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5422 | } |
| 5423 | |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5424 | if (srv->ssl_ctx.ctx) { |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5425 | SSL_CTX_free(srv->ssl_ctx.ctx); |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5426 | srv->ssl_ctx.ctx = NULL; |
| 5427 | } |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5428 | |
| 5429 | ha_free(&srv->ssl_ctx.ca_file); |
| 5430 | ha_free(&srv->ssl_ctx.crl_file); |
| 5431 | ha_free(&srv->ssl_ctx.client_crt); |
| 5432 | ha_free(&srv->ssl_ctx.verify_host); |
| 5433 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5434 | ha_free(&srv->sni_expr); |
William Lallemand | 43c2ce4 | 2022-03-16 17:48:19 +0100 | [diff] [blame] | 5435 | release_sample_expr(srv->ssl_ctx.sni); |
| 5436 | srv->ssl_ctx.sni = NULL; |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5437 | #endif |
| 5438 | ha_free(&srv->ssl_ctx.ciphers); |
| 5439 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
| 5440 | ha_free(&srv->ssl_ctx.ciphersuites); |
| 5441 | #endif |
William Lallemand | e69563f | 2021-12-30 14:45:19 +0100 | [diff] [blame] | 5442 | /* If there is a certificate we must unlink the ckch instance */ |
| 5443 | ckch_inst_free(srv->ssl_ctx.inst); |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5444 | } |
| 5445 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5446 | /* 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] | 5447 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5448 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5449 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5450 | { |
| 5451 | struct ebmb_node *node, *back; |
| 5452 | struct sni_ctx *sni; |
| 5453 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5454 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5455 | while (node) { |
| 5456 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5457 | back = ebmb_next(node); |
| 5458 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5459 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5460 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5461 | free(sni); |
| 5462 | node = back; |
| 5463 | } |
| 5464 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5465 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5466 | while (node) { |
| 5467 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5468 | back = ebmb_next(node); |
| 5469 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5470 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5471 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5472 | free(sni); |
| 5473 | node = back; |
| 5474 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5475 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5476 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5477 | bind_conf->initial_ctx = NULL; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5478 | SSL_CTX_free(bind_conf->default_ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5479 | bind_conf->default_ctx = NULL; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5480 | bind_conf->default_inst = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5481 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5482 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5483 | |
| 5484 | |
| 5485 | void ssl_sock_deinit() |
| 5486 | { |
| 5487 | crtlist_deinit(); /* must be free'd before the ckchs */ |
| 5488 | ckch_deinit(); |
| 5489 | } |
| 5490 | REGISTER_POST_DEINIT(ssl_sock_deinit); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5491 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5492 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5493 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5494 | { |
| 5495 | ssl_sock_free_ca(bind_conf); |
| 5496 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5497 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5498 | free(bind_conf->ca_sign_file); |
| 5499 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5500 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5501 | free(bind_conf->keys_ref->filename); |
| 5502 | free(bind_conf->keys_ref->tlskeys); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5503 | LIST_DELETE(&bind_conf->keys_ref->list); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5504 | free(bind_conf->keys_ref); |
| 5505 | } |
| 5506 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5507 | bind_conf->ca_sign_pass = NULL; |
| 5508 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5509 | } |
| 5510 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5511 | /* Load CA cert file and private key used to generate certificates */ |
| 5512 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5513 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5514 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5515 | struct proxy *px = bind_conf->frontend; |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5516 | struct ckch_data *data = NULL; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5517 | int ret = 0; |
| 5518 | char *err = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5519 | |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 5520 | if (!(bind_conf->options & BC_O_GENERATE_CERTS)) |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5521 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5522 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5523 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5524 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5525 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5526 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5527 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5528 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5529 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5530 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5531 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5532 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5533 | "no CA certificate File configured at [%s:%d].\n", |
| 5534 | px->id, bind_conf->file, bind_conf->line); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5535 | goto failed; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5536 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5537 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5538 | /* Allocate cert structure */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5539 | data = calloc(1, sizeof(*data)); |
| 5540 | if (!data) { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5541 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n", |
| 5542 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5543 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5544 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5545 | |
| 5546 | /* Try to parse file */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5547 | if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, data, &err)) { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5548 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n", |
| 5549 | 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] | 5550 | free(err); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5551 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5552 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5553 | |
| 5554 | /* Fail if missing cert or pkey */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5555 | if ((!data->cert) || (!data->key)) { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5556 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n", |
| 5557 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5558 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5559 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5560 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5561 | /* Final assignment to bind */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5562 | bind_conf->ca_sign_ckch = data; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5563 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5564 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5565 | failed: |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5566 | if (data) { |
| 5567 | ssl_sock_free_cert_key_and_chain_contents(data); |
| 5568 | free(data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5569 | } |
| 5570 | |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 5571 | bind_conf->options &= ~BC_O_GENERATE_CERTS; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5572 | ret++; |
| 5573 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5574 | } |
| 5575 | |
| 5576 | /* Release CA cert and private key used to generate certificated */ |
| 5577 | void |
| 5578 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5579 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5580 | if (bind_conf->ca_sign_ckch) { |
| 5581 | 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] | 5582 | ha_free(&bind_conf->ca_sign_ckch); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5583 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5584 | } |
| 5585 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5586 | /* |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5587 | * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and |
| 5588 | * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings. |
| 5589 | * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom |
| 5590 | * 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] | 5591 | * 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] | 5592 | * as parameters to this function. |
| 5593 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to |
| 5594 | * CO_ER_SSL_NO_MEM. |
| 5595 | */ |
| 5596 | int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx, |
| 5597 | SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx) |
| 5598 | { |
| 5599 | int retry = 1; |
| 5600 | |
| 5601 | retry: |
| 5602 | /* Alloc a new SSL session. */ |
| 5603 | *ssl = SSL_new(ssl_ctx); |
| 5604 | if (!*ssl) { |
| 5605 | if (!retry--) |
| 5606 | goto err; |
| 5607 | |
| 5608 | pool_gc(NULL); |
| 5609 | goto retry; |
| 5610 | } |
| 5611 | |
| 5612 | *bio = BIO_new(bio_meth); |
| 5613 | if (!*bio) { |
| 5614 | SSL_free(*ssl); |
| 5615 | *ssl = NULL; |
| 5616 | if (!retry--) |
| 5617 | goto err; |
| 5618 | |
| 5619 | pool_gc(NULL); |
| 5620 | goto retry; |
| 5621 | } |
| 5622 | |
| 5623 | BIO_set_data(*bio, ctx); |
| 5624 | SSL_set_bio(*ssl, *bio, *bio); |
| 5625 | |
| 5626 | /* set connection pointer. */ |
| 5627 | if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) { |
| 5628 | SSL_free(*ssl); |
| 5629 | *ssl = NULL; |
| 5630 | if (!retry--) |
| 5631 | goto err; |
| 5632 | |
| 5633 | pool_gc(NULL); |
| 5634 | goto retry; |
| 5635 | } |
| 5636 | |
| 5637 | return 0; |
| 5638 | |
| 5639 | err: |
| 5640 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5641 | return -1; |
| 5642 | } |
| 5643 | |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 5644 | /* This function is called when all the XPRT have been initialized. We can |
| 5645 | * now attempt to start the SSL handshake. |
| 5646 | */ |
| 5647 | static int ssl_sock_start(struct connection *conn, void *xprt_ctx) |
| 5648 | { |
| 5649 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5650 | |
| 5651 | if (ctx->xprt->start) { |
| 5652 | int ret; |
| 5653 | |
| 5654 | ret = ctx->xprt->start(conn, ctx->xprt_ctx); |
| 5655 | if (ret < 0) |
| 5656 | return ret; |
| 5657 | } |
| 5658 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 5659 | |
| 5660 | return 0; |
| 5661 | } |
| 5662 | |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5663 | /* Similar to increment_actconn() but for SSL connections. */ |
| 5664 | int increment_sslconn() |
| 5665 | { |
| 5666 | unsigned int count, next_sslconn; |
| 5667 | |
| 5668 | do { |
| 5669 | count = global.sslconns; |
| 5670 | if (global.maxsslconn && count >= global.maxsslconn) { |
| 5671 | /* maxconn reached */ |
| 5672 | next_sslconn = 0; |
| 5673 | goto end; |
| 5674 | } |
| 5675 | |
| 5676 | /* try to increment sslconns */ |
| 5677 | next_sslconn = count + 1; |
| 5678 | } while (!_HA_ATOMIC_CAS(&global.sslconns, &count, next_sslconn) && __ha_cpu_relax()); |
| 5679 | |
| 5680 | end: |
| 5681 | return next_sslconn; |
| 5682 | } |
| 5683 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5684 | /* |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5685 | * This function is called if SSL * context is not yet allocated. The function |
| 5686 | * is designed to be called before any other data-layer operation and sets the |
| 5687 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5688 | * It returns 0 on success and -1 in error case. |
| 5689 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5690 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5691 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5692 | struct ssl_sock_ctx *ctx; |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5693 | int next_sslconn = 0; |
| 5694 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5695 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5696 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5697 | return 0; |
| 5698 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5699 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5700 | if (!ctx) { |
| 5701 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5702 | return -1; |
| 5703 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5704 | ctx->wait_event.tasklet = tasklet_new(); |
| 5705 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5706 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5707 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5708 | return -1; |
| 5709 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5710 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5711 | ctx->wait_event.tasklet->context = ctx; |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5712 | 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] | 5713 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5714 | ctx->sent_early_data = 0; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5715 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5716 | ctx->conn = conn; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5717 | ctx->subs = NULL; |
Emeric Brun | 5762a0d | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5718 | ctx->xprt_st = 0; |
| 5719 | ctx->xprt_ctx = NULL; |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 5720 | ctx->error_code = 0; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5721 | |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5722 | next_sslconn = increment_sslconn(); |
| 5723 | if (!next_sslconn) { |
| 5724 | conn->err_code = CO_ER_SSL_TOO_MANY; |
| 5725 | goto err; |
| 5726 | } |
| 5727 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5728 | /* Only work with sockets for now, this should be adapted when we'll |
| 5729 | * add QUIC support. |
| 5730 | */ |
| 5731 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5732 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5733 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5734 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5735 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5736 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5737 | /* If it is in client mode initiate SSL session |
| 5738 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5739 | if (objt_server(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5740 | if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx, |
| 5741 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5742 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5743 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5744 | SSL_set_connect_state(ctx->ssl); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5745 | 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] | 5746 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5747 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5748 | 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] | 5749 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5750 | SSL_SESSION_free(sess); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5751 | ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5752 | } else if (sess) { |
| 5753 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5754 | } |
| 5755 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5756 | 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] | 5757 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5758 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5759 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5760 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5761 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5762 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5763 | return 0; |
| 5764 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5765 | else if (objt_listener(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5766 | struct bind_conf *bc = __objt_listener(conn->target)->bind_conf; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5767 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5768 | if (ssl_bio_and_sess_init(conn, bc->initial_ctx, |
| 5769 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5770 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5771 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5772 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5773 | if (bc->ssl_conf.early_data) { |
Frédéric Lécaille | 3139c1b | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5774 | b_alloc(&ctx->early_buf); |
| 5775 | SSL_set_max_early_data(ctx->ssl, |
| 5776 | /* Only allow early data if we managed to allocate |
| 5777 | * a buffer. |
| 5778 | */ |
| 5779 | (!b_is_null(&ctx->early_buf)) ? |
| 5780 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5781 | } |
| 5782 | #endif |
| 5783 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5784 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5785 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5786 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5787 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5788 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Willy Tarreau | a84986a | 2021-02-03 11:21:38 +0100 | [diff] [blame] | 5789 | if (bc->ssl_conf.early_data) |
| 5790 | conn->flags |= CO_FL_EARLY_SSL_HS; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5791 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5792 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5793 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5794 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5795 | return 0; |
| 5796 | } |
| 5797 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5798 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5799 | err: |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5800 | if (next_sslconn) |
| 5801 | _HA_ATOMIC_DEC(&global.sslconns); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5802 | if (ctx && ctx->wait_event.tasklet) |
| 5803 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5804 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5805 | return -1; |
| 5806 | } |
| 5807 | |
| 5808 | |
| 5809 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5810 | * updates the FD status if it wants some polling before being called again. |
| 5811 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5812 | * otherwise it returns non-zero and removes itself from the connection's |
| 5813 | * flags (the bit is provided in <flag> by the caller). |
| 5814 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5815 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5816 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 5817 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5818 | int ret; |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5819 | struct ssl_counters *counters = NULL; |
| 5820 | struct ssl_counters *counters_px = NULL; |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5821 | struct listener *li; |
| 5822 | struct server *srv; |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5823 | socklen_t lskerr; |
| 5824 | int skerr; |
| 5825 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5826 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5827 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5828 | return 0; |
| 5829 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5830 | /* get counters */ |
| 5831 | switch (obj_type(conn->target)) { |
| 5832 | case OBJ_TYPE_LISTENER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5833 | li = __objt_listener(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5834 | counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module); |
| 5835 | counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe, |
| 5836 | &ssl_stats_module); |
| 5837 | break; |
| 5838 | |
| 5839 | case OBJ_TYPE_SERVER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5840 | srv = __objt_server(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5841 | counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module); |
| 5842 | counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be, |
| 5843 | &ssl_stats_module); |
| 5844 | break; |
| 5845 | |
| 5846 | default: |
| 5847 | break; |
| 5848 | } |
| 5849 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 5850 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5851 | goto out_error; |
| 5852 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5853 | /* don't start calculating a handshake on a dead connection */ |
| 5854 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) |
| 5855 | goto out_error; |
| 5856 | |
| 5857 | /* FIXME/WT: for now we don't have a clear way to inspect the connection |
| 5858 | * status from the lower layers, so let's check the FD directly. Ideally |
| 5859 | * the xprt layers should provide some status indicating their knowledge |
| 5860 | * of shutdowns or error. |
| 5861 | */ |
Willy Tarreau | 07ecfc5 | 2022-04-11 18:07:03 +0200 | [diff] [blame] | 5862 | BUG_ON(conn->flags & CO_FL_FDLESS); |
| 5863 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5864 | skerr = 0; |
| 5865 | lskerr = sizeof(skerr); |
| 5866 | if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) || |
| 5867 | skerr != 0) |
| 5868 | goto out_error; |
| 5869 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5870 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5871 | /* |
| 5872 | * Check if we have early data. If we do, we have to read them |
| 5873 | * before SSL_do_handshake() is called, And there's no way to |
| 5874 | * detect early data, except to try to read them |
| 5875 | */ |
| 5876 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5877 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5878 | |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5879 | while (1) { |
| 5880 | ret = SSL_read_early_data(ctx->ssl, |
| 5881 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5882 | &read_data); |
| 5883 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5884 | goto check_error; |
| 5885 | if (read_data > 0) { |
| 5886 | conn->flags |= CO_FL_EARLY_DATA; |
| 5887 | b_add(&ctx->early_buf, read_data); |
| 5888 | } |
| 5889 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5890 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5891 | if (!b_data(&ctx->early_buf)) |
| 5892 | b_free(&ctx->early_buf); |
| 5893 | break; |
| 5894 | } |
| 5895 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5896 | } |
| 5897 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5898 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5899 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5900 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5901 | * the reneg handshake. |
| 5902 | * Here we use SSL_peek as a workaround for reneg. |
| 5903 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 5904 | 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] | 5905 | char c; |
| 5906 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5907 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5908 | if (ret <= 0) { |
| 5909 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5910 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5911 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5912 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5913 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5914 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5915 | 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] | 5916 | return 0; |
| 5917 | } |
| 5918 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5919 | /* handshake may have been completed but we have |
| 5920 | * no more data to read. |
| 5921 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5922 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5923 | ret = 1; |
| 5924 | goto reneg_ok; |
| 5925 | } |
| 5926 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5927 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5928 | 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] | 5929 | return 0; |
| 5930 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5931 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5932 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5933 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5934 | return 0; |
| 5935 | } |
| 5936 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5937 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5938 | /* if errno is null, then connection was successfully established */ |
| 5939 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5940 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5941 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5942 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5943 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5944 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5945 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5946 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5947 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5948 | /* 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] | 5949 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5950 | empty_handshake = state == TLS_ST_BEFORE; |
| 5951 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5952 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5953 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5954 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5955 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5956 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5957 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5958 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5959 | else |
| 5960 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5961 | } |
| 5962 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5963 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5964 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5965 | else |
| 5966 | conn->err_code = CO_ER_SSL_ABORT; |
| 5967 | } |
| 5968 | } |
| 5969 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5970 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5971 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5972 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5973 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5974 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5975 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5976 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5977 | goto out_error; |
| 5978 | } |
| 5979 | else { |
| 5980 | /* Fail on all other handshake errors */ |
| 5981 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5982 | * buffer, causing an RST to be emitted upon close() on |
| 5983 | * TCP sockets. We first try to drain possibly pending |
| 5984 | * data to avoid this as much as possible. |
| 5985 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5986 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5987 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5988 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5989 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5990 | goto out_error; |
| 5991 | } |
| 5992 | } |
| 5993 | /* read some data: consider handshake completed */ |
| 5994 | goto reneg_ok; |
| 5995 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5996 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5997 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5998 | if (ret != 1) { |
| 5999 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6000 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6001 | |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 6002 | if (!ctx->error_code) |
| 6003 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 7c6898e | 2021-07-29 09:45:51 +0200 | [diff] [blame] | 6004 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6005 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 6006 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 6007 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6008 | 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] | 6009 | return 0; |
| 6010 | } |
| 6011 | else if (ret == SSL_ERROR_WANT_READ) { |
| 6012 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6013 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6014 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6015 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6016 | return 0; |
| 6017 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6018 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6019 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6020 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6021 | return 0; |
| 6022 | } |
| 6023 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 6024 | else if (ret == SSL_ERROR_SYSCALL) { |
| 6025 | /* if errno is null, then connection was successfully established */ |
| 6026 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 6027 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6028 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6029 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 6030 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6031 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 6032 | #else |
| 6033 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6034 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6035 | /* 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] | 6036 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6037 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6038 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6039 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 6040 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6041 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6042 | if (empty_handshake) { |
| 6043 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6044 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6045 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 6046 | else |
| 6047 | conn->err_code = CO_ER_SSL_EMPTY; |
| 6048 | } |
| 6049 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6050 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6051 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 6052 | else |
| 6053 | conn->err_code = CO_ER_SSL_ABORT; |
| 6054 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6055 | } |
| 6056 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6057 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6058 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 6059 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6060 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6061 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6062 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6063 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 6064 | goto out_error; |
| 6065 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6066 | else { |
| 6067 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 6068 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 6069 | * buffer, causing an RST to be emitted upon close() on |
| 6070 | * TCP sockets. We first try to drain possibly pending |
| 6071 | * data to avoid this as much as possible. |
| 6072 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 6073 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 6074 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6075 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 6076 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6077 | goto out_error; |
| 6078 | } |
| 6079 | } |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6080 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6081 | else { |
| 6082 | /* |
| 6083 | * If the server refused the early data, we have to send a |
| 6084 | * 425 to the client, as we no longer have the data to sent |
| 6085 | * them again. |
| 6086 | */ |
| 6087 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6088 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6089 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 6090 | goto out_error; |
| 6091 | } |
| 6092 | } |
| 6093 | } |
| 6094 | #endif |
| 6095 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6096 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 6097 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6098 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6099 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6100 | /* ASYNC engine API doesn't support moving read/write |
| 6101 | * buffers. So we disable ASYNC mode right after |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6102 | * the handshake to avoid buffer overflow. |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6103 | */ |
| 6104 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6105 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6106 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6107 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6108 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 6109 | if (objt_server(conn->target)) { |
| 6110 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 6111 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 6112 | 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] | 6113 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 6114 | else { |
| 6115 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 6116 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 6117 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 6118 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 6119 | |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 6120 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 6121 | HA_ATOMIC_INC(&counters->sess); |
| 6122 | HA_ATOMIC_INC(&counters_px->sess); |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 6123 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 6124 | } |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 6125 | else if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 6126 | HA_ATOMIC_INC(&counters->reused_sess); |
| 6127 | HA_ATOMIC_INC(&counters_px->reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6128 | } |
| 6129 | |
| 6130 | /* The connection is now established at both layers, it's time to leave */ |
| 6131 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 6132 | return 1; |
| 6133 | |
| 6134 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6135 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6136 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6137 | ERR_clear_error(); |
| 6138 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 6139 | /* free resumed session if exists */ |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 6140 | if (objt_server(conn->target)) { |
| 6141 | struct server *s = __objt_server(conn->target); |
| 6142 | /* RWLOCK: only rdlock the SSL cache even when writing in it because there is |
| 6143 | * one cache per thread, it only prevents to flush it from the CLI in |
| 6144 | * another thread */ |
| 6145 | |
| 6146 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 6147 | if (s->ssl_ctx.reused_sess[tid].ptr) |
| 6148 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 6149 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 6150 | } |
| 6151 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 6152 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 6153 | HA_ATOMIC_INC(&counters->failed_handshake); |
| 6154 | HA_ATOMIC_INC(&counters_px->failed_handshake); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 6155 | } |
| 6156 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6157 | /* Fail on all other handshake errors */ |
| 6158 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 6159 | if (!conn->err_code) |
| 6160 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6161 | return 0; |
| 6162 | } |
| 6163 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6164 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 6165 | * event subscriber <es> is not allowed to change from a previous call as long |
| 6166 | * as at least one event is still subscribed. The <event_type> must only be a |
| 6167 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, |
| 6168 | * unless the transport layer was already released. |
| 6169 | */ |
| 6170 | 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] | 6171 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6172 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6173 | |
Olivier Houchard | 0ff2865 | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 6174 | if (!ctx) |
| 6175 | return -1; |
| 6176 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6177 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6178 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6179 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6180 | ctx->subs = es; |
| 6181 | es->events |= event_type; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6182 | |
| 6183 | /* we may have to subscribe to lower layers for new events */ |
| 6184 | event_type &= ~ctx->wait_event.events; |
| 6185 | if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS)) |
| 6186 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6187 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 6188 | } |
| 6189 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6190 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 6191 | * The <es> pointer is not allowed to differ from the one passed to the |
| 6192 | * subscribe() call. It always returns zero. |
| 6193 | */ |
| 6194 | 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] | 6195 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6196 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6197 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6198 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6199 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6200 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6201 | es->events &= ~event_type; |
| 6202 | if (!es->events) |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6203 | ctx->subs = NULL; |
| 6204 | |
| 6205 | /* If we subscribed, and we're not doing the handshake, |
| 6206 | * then we subscribed because the upper layer asked for it, |
| 6207 | * as the upper layer is no longer interested, we can |
| 6208 | * unsubscribe too. |
| 6209 | */ |
| 6210 | event_type &= ctx->wait_event.events; |
| 6211 | if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) |
| 6212 | conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6213 | |
| 6214 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 6215 | } |
| 6216 | |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6217 | /* The connection has been taken over, so destroy the old tasklet and create |
| 6218 | * a new one. The original thread ID must be passed into orig_tid |
| 6219 | * It should be called with the takeover lock for the old thread held. |
| 6220 | * Returns 0 on success, and -1 on failure |
| 6221 | */ |
| 6222 | static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid) |
| 6223 | { |
| 6224 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6225 | struct tasklet *tl = tasklet_new(); |
| 6226 | |
| 6227 | if (!tl) |
| 6228 | return -1; |
| 6229 | |
| 6230 | ctx->wait_event.tasklet->context = NULL; |
| 6231 | tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid); |
| 6232 | ctx->wait_event.tasklet = tl; |
| 6233 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 6234 | ctx->wait_event.tasklet->context = ctx; |
| 6235 | return 0; |
| 6236 | } |
| 6237 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6238 | /* notify the next xprt that the connection is about to become idle and that it |
| 6239 | * may be stolen at any time after the function returns and that any tasklet in |
| 6240 | * the chain must be careful before dereferencing its context. |
| 6241 | */ |
| 6242 | static void ssl_set_idle(struct connection *conn, void *xprt_ctx) |
| 6243 | { |
| 6244 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6245 | |
| 6246 | if (!ctx || !ctx->wait_event.tasklet) |
| 6247 | return; |
| 6248 | |
| 6249 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 6250 | if (ctx->xprt) |
| 6251 | xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx); |
| 6252 | } |
| 6253 | |
| 6254 | /* notify the next xprt that the connection is not idle anymore and that it may |
| 6255 | * not be stolen before the next xprt_set_idle(). |
| 6256 | */ |
| 6257 | static void ssl_set_used(struct connection *conn, void *xprt_ctx) |
| 6258 | { |
| 6259 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6260 | |
| 6261 | if (!ctx || !ctx->wait_event.tasklet) |
| 6262 | return; |
| 6263 | |
| 6264 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 6265 | if (ctx->xprt) |
| 6266 | xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx); |
| 6267 | } |
| 6268 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 6269 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 6270 | * Returns 0 on success, and non-zero on failure. |
| 6271 | */ |
| 6272 | 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) |
| 6273 | { |
| 6274 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6275 | |
| 6276 | if (oldxprt_ops != NULL) |
| 6277 | *oldxprt_ops = ctx->xprt; |
| 6278 | if (oldxprt_ctx != NULL) |
| 6279 | *oldxprt_ctx = ctx->xprt_ctx; |
| 6280 | ctx->xprt = toadd_ops; |
| 6281 | ctx->xprt_ctx = toadd_ctx; |
| 6282 | return 0; |
| 6283 | } |
| 6284 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 6285 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 6286 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 6287 | * XPRT. |
| 6288 | */ |
| 6289 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 6290 | { |
| 6291 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6292 | |
| 6293 | if (ctx->xprt_ctx == toremove_ctx) { |
| 6294 | ctx->xprt_ctx = newctx; |
| 6295 | ctx->xprt = newops; |
| 6296 | return 0; |
| 6297 | } |
| 6298 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 6299 | } |
| 6300 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 6301 | 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] | 6302 | { |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6303 | struct tasklet *tl = (struct tasklet *)t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6304 | struct ssl_sock_ctx *ctx = context; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6305 | struct connection *conn; |
| 6306 | int conn_in_list; |
| 6307 | int ret = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6308 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6309 | if (state & TASK_F_USR1) { |
| 6310 | /* the tasklet was idling on an idle connection, it might have |
| 6311 | * been stolen, let's be careful! |
| 6312 | */ |
| 6313 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6314 | if (tl->context == NULL) { |
| 6315 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6316 | tasklet_free(tl); |
| 6317 | return NULL; |
| 6318 | } |
| 6319 | conn = ctx->conn; |
Christopher Faulet | 3a7b539 | 2023-03-16 11:43:05 +0100 | [diff] [blame] | 6320 | conn_in_list = conn_get_idle_flag(conn); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6321 | if (conn_in_list) |
| 6322 | conn_delete_from_tree(&conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6323 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6324 | } else { |
| 6325 | conn = ctx->conn; |
| 6326 | conn_in_list = 0; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6327 | } |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6328 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6329 | /* First if we're doing an handshake, try that */ |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6330 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6331 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6332 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 6333 | /* handshake completed, leave the bulk queue */ |
Willy Tarreau | 4c48edb | 2021-03-09 17:58:02 +0100 | [diff] [blame] | 6334 | _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6335 | } |
| 6336 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6337 | /* If we had an error, or the handshake is done and I/O is available, |
| 6338 | * let the upper layer know. |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6339 | * If no mux was set up yet, then call conn_create_mux() |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6340 | * we can't be sure conn_fd_handler() will be called again. |
| 6341 | */ |
| 6342 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 6343 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6344 | int woke = 0; |
| 6345 | |
| 6346 | /* On error, wake any waiter */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6347 | if (ctx->subs) { |
| 6348 | tasklet_wakeup(ctx->subs->tasklet); |
| 6349 | ctx->subs->events = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6350 | woke = 1; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6351 | ctx->subs = NULL; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6352 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6353 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6354 | /* If we're the first xprt for the connection, let the |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6355 | * upper layers know. If we have no mux, create it, |
| 6356 | * and once we have a mux, call its wake method if we didn't |
| 6357 | * woke a tasklet already. |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6358 | */ |
| 6359 | if (ctx->conn->xprt_ctx == ctx) { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6360 | if (!ctx->conn->mux) |
| 6361 | ret = conn_create_mux(ctx->conn); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6362 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6363 | ret = ctx->conn->mux->wake(ctx->conn); |
| 6364 | goto leave; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6365 | } |
| 6366 | } |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6367 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6368 | /* If we have early data and somebody wants to receive, let them */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6369 | else if (b_data(&ctx->early_buf) && ctx->subs && |
| 6370 | ctx->subs->events & SUB_RETRY_RECV) { |
| 6371 | tasklet_wakeup(ctx->subs->tasklet); |
| 6372 | ctx->subs->events &= ~SUB_RETRY_RECV; |
| 6373 | if (!ctx->subs->events) |
| 6374 | ctx->subs = NULL; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6375 | } |
| 6376 | #endif |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6377 | leave: |
| 6378 | if (!ret && conn_in_list) { |
| 6379 | struct server *srv = objt_server(conn->target); |
| 6380 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6381 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6382 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 8522348 | 2022-09-29 20:32:43 +0200 | [diff] [blame] | 6383 | eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6384 | else |
Willy Tarreau | 8522348 | 2022-09-29 20:32:43 +0200 | [diff] [blame] | 6385 | eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6386 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6387 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 6388 | return t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6389 | } |
| 6390 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6391 | /* 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] | 6392 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6393 | * buffer wraps, in which case a second call may be performed. The connection's |
| 6394 | * flags are updated with whatever special event is detected (error, read0, |
| 6395 | * empty). The caller is responsible for taking care of those events and |
| 6396 | * avoiding the call if inappropriate. The function does not call the |
| 6397 | * connection's polling update function, so the caller is responsible for this. |
| 6398 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6399 | 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] | 6400 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6401 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 6402 | ssize_t ret; |
| 6403 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6404 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6405 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6406 | goto out_error; |
| 6407 | |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6408 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6409 | if (b_data(&ctx->early_buf)) { |
| 6410 | try = b_contig_space(buf); |
| 6411 | if (try > b_data(&ctx->early_buf)) |
| 6412 | try = b_data(&ctx->early_buf); |
| 6413 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 6414 | b_add(buf, try); |
| 6415 | b_del(&ctx->early_buf, try); |
| 6416 | if (b_data(&ctx->early_buf) == 0) |
| 6417 | b_free(&ctx->early_buf); |
| 6418 | return try; |
| 6419 | } |
| 6420 | #endif |
| 6421 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6422 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6423 | /* a handshake was requested */ |
| 6424 | return 0; |
| 6425 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6426 | /* read the largest possible block. For this, we perform only one call |
| 6427 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 6428 | * in which case we accept to do it once again. A new attempt is made on |
| 6429 | * EINTR too. |
| 6430 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 6431 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6432 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6433 | try = b_contig_space(buf); |
| 6434 | if (!try) |
| 6435 | break; |
| 6436 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 6437 | if (try > count) |
| 6438 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6439 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6440 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | f967c31 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 6441 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6442 | if (conn->flags & CO_FL_ERROR) { |
| 6443 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6444 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6445 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6446 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 6447 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6448 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6449 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6450 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6451 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6452 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6453 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6454 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6455 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6456 | 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] | 6457 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6458 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6459 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6460 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6461 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6462 | break; |
| 6463 | } |
| 6464 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6465 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6466 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6467 | SUB_RETRY_RECV, |
| 6468 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6469 | /* handshake is running, and it may need to re-enable read */ |
| 6470 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6471 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6472 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6473 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6474 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6475 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6476 | break; |
| 6477 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6478 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6479 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 6480 | goto read0; |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6481 | else if (ret == SSL_ERROR_SSL) { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6482 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
| 6483 | if (ctx && !ctx->error_code) |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6484 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6485 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6486 | } |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6487 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 6488 | * stack before shutting down the connection for |
| 6489 | * reading. */ |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 6490 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN || errno == EWOULDBLOCK)) |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6491 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6492 | /* otherwise it's a real error */ |
| 6493 | goto out_error; |
| 6494 | } |
| 6495 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6496 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6497 | return done; |
| 6498 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6499 | clear_ssl_error: |
| 6500 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6501 | ssl_sock_dump_errors(conn, NULL); |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6502 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6503 | read0: |
| 6504 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6505 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6506 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6507 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6508 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6509 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6510 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6511 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6512 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6513 | } |
| 6514 | |
| 6515 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6516 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 6517 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 6518 | * 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] | 6519 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 6520 | * a second call may be performed. The connection's flags are updated with |
| 6521 | * whatever special event is detected (error, empty). The caller is responsible |
| 6522 | * for taking care of those events and avoiding the call if inappropriate. The |
| 6523 | * 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] | 6524 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 6525 | * caller to take care of this. It's up to the caller to update the buffer's |
| 6526 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6527 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6528 | 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] | 6529 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6530 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6531 | ssize_t ret; |
| 6532 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6533 | |
| 6534 | done = 0; |
| 6535 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6536 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6537 | goto out_error; |
| 6538 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6539 | 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] | 6540 | /* a handshake was requested */ |
| 6541 | return 0; |
| 6542 | |
| 6543 | /* send the largest possible block. For this we perform only one call |
| 6544 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 6545 | * in which case we accept to do it once again. |
| 6546 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6547 | while (count) { |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6548 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6549 | size_t written_data; |
| 6550 | #endif |
| 6551 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6552 | try = b_contig_data(buf, done); |
| 6553 | if (try > count) |
| 6554 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6555 | |
Thomas Prückl | 1024393 | 2022-04-27 13:04:54 +0200 | [diff] [blame] | 6556 | if (global_ssl.hard_max_record && try > global_ssl.hard_max_record) |
| 6557 | try = global_ssl.hard_max_record; |
| 6558 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6559 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6560 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6561 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6562 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6563 | } |
| 6564 | else { |
| 6565 | /* we need to keep the information about the fact that |
| 6566 | * we're not limiting the upcoming send(), because if it |
| 6567 | * fails, we'll have to retry with at least as many data. |
| 6568 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6569 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6570 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6571 | |
Willy Tarreau | ac78c4f | 2023-03-17 16:13:05 +0100 | [diff] [blame] | 6572 | if (try < count || flags & CO_SFL_MSG_MORE) |
| 6573 | ctx->xprt_st |= SSL_SOCK_SEND_MORE; |
| 6574 | else |
| 6575 | ctx->xprt_st &= ~SSL_SOCK_SEND_MORE; |
| 6576 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6577 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6578 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6579 | unsigned int max_early; |
| 6580 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6581 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6582 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6583 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6584 | if (SSL_get0_session(ctx->ssl)) |
| 6585 | 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] | 6586 | else |
| 6587 | max_early = 0; |
| 6588 | } |
| 6589 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6590 | if (try + ctx->sent_early_data > max_early) { |
| 6591 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6592 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6593 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6594 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6595 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6596 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6597 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6598 | 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] | 6599 | if (ret == 1) { |
| 6600 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6601 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6602 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6603 | 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] | 6604 | /* Initiate the handshake, now */ |
| 6605 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6606 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6607 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6608 | } |
| 6609 | |
| 6610 | } else |
| 6611 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6612 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6613 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6614 | if (conn->flags & CO_FL_ERROR) { |
| 6615 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6616 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6617 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6618 | if (ret > 0) { |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 6619 | /* A send succeeded, so we can consider ourself connected */ |
| 6620 | conn->flags &= ~CO_FL_WAIT_L4L6; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6621 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6622 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6623 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6624 | } |
| 6625 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6626 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6627 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6628 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6629 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6630 | /* handshake is running, and it may need to re-enable write */ |
| 6631 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6632 | 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] | 6633 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6634 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6635 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6636 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6637 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6638 | break; |
| 6639 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6640 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6641 | break; |
| 6642 | } |
| 6643 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6644 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6645 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6646 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6647 | SUB_RETRY_RECV, |
| 6648 | &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6649 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6650 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6651 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6652 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6653 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6654 | break; |
| 6655 | } |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6656 | else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6657 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
| 6658 | |
Willy Tarreau | 3a0a0d6 | 2022-04-12 07:31:06 +0200 | [diff] [blame] | 6659 | if (ctx && !ctx->error_code) |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6660 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6661 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6662 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6663 | goto out_error; |
| 6664 | } |
| 6665 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6666 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6667 | return done; |
| 6668 | |
| 6669 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6670 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6671 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6672 | ERR_clear_error(); |
| 6673 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6674 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6675 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6676 | } |
| 6677 | |
Willy Tarreau | 832e242 | 2021-05-13 10:11:03 +0200 | [diff] [blame] | 6678 | void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6679 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6680 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6681 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6682 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6683 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6684 | if (ctx->wait_event.events != 0) |
| 6685 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6686 | ctx->wait_event.events, |
| 6687 | &ctx->wait_event); |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6688 | if (ctx->subs) { |
| 6689 | ctx->subs->events = 0; |
| 6690 | tasklet_wakeup(ctx->subs->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6691 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6692 | |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6693 | if (ctx->xprt->close) |
| 6694 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6695 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6696 | if (global_ssl.async) { |
| 6697 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6698 | size_t num_all_fds = 0; |
| 6699 | int i; |
| 6700 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6701 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6702 | if (num_all_fds > 32) { |
| 6703 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6704 | return; |
| 6705 | } |
| 6706 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6707 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6708 | |
| 6709 | /* If an async job is pending, we must try to |
| 6710 | to catch the end using polling before calling |
| 6711 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6712 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6713 | for (i=0 ; i < num_all_fds ; i++) { |
| 6714 | /* switch on an handler designed to |
| 6715 | * handle the SSL_free |
| 6716 | */ |
| 6717 | afd = all_fd[i]; |
| 6718 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6719 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6720 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6721 | /* To ensure that the fd cache won't be used |
| 6722 | * and we'll catch a real RD event. |
| 6723 | */ |
| 6724 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6725 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6726 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6727 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6728 | _HA_ATOMIC_INC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6729 | return; |
| 6730 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6731 | /* Else we can remove the fds from the fdtab |
| 6732 | * and call SSL_free. |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6733 | * note: we do a fd_stop_both and not a delete |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6734 | * because the fd is owned by the engine. |
| 6735 | * the engine is responsible to close |
| 6736 | */ |
Emeric Brun | 7d392a5 | 2022-07-01 17:36:50 +0200 | [diff] [blame] | 6737 | for (i=0 ; i < num_all_fds ; i++) { |
| 6738 | /* We want to remove the fd from the fdtab |
| 6739 | * but we flag it to disown because the |
| 6740 | * close is performed by the engine itself |
| 6741 | */ |
| 6742 | fdtab[all_fd[i]].state |= FD_DISOWN; |
| 6743 | fd_delete(all_fd[i]); |
| 6744 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6745 | } |
| 6746 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6747 | SSL_free(ctx->ssl); |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6748 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6749 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6750 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 6751 | _HA_ATOMIC_DEC(&global.sslconns); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6752 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6753 | } |
| 6754 | |
| 6755 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6756 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6757 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6758 | 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] | 6759 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6760 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6761 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6762 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6763 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6764 | if (!clean) |
| 6765 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6766 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6767 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6768 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6769 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6770 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6771 | ERR_clear_error(); |
| 6772 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6773 | } |
| 6774 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6775 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6776 | /* used for ppv2 pkey algo (can be used for logging) */ |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6777 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
| 6778 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6779 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6780 | X509 *crt; |
| 6781 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6782 | if (!ctx) |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6783 | return 0; |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6784 | crt = SSL_get_certificate(ctx->ssl); |
| 6785 | if (!crt) |
| 6786 | return 0; |
| 6787 | |
| 6788 | return cert_get_pkey_algo(crt, out); |
| 6789 | } |
| 6790 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6791 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6792 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6793 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6794 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6795 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6796 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6797 | X509 *crt; |
| 6798 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6799 | if (!ctx) |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6800 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6801 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6802 | if (!crt) |
| 6803 | return NULL; |
| 6804 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6805 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6806 | } |
| 6807 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6808 | /* used for ppv2 authority */ |
| 6809 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6810 | { |
| 6811 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6812 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6813 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6814 | if (!ctx) |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6815 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6816 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6817 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6818 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6819 | #endif |
| 6820 | } |
| 6821 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6822 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6823 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6824 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6825 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6826 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6827 | if (!ctx) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6828 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6829 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6830 | } |
| 6831 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6832 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6833 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6834 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6835 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6836 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6837 | if (!ctx) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6838 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6839 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6840 | } |
| 6841 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6842 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6843 | { |
| 6844 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6845 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6846 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6847 | if (!ctx) |
Olivier Houchard | e488ea8 | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6848 | return; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6849 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6850 | #endif |
| 6851 | } |
| 6852 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6853 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6854 | * to disable SNI. |
| 6855 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6856 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6857 | { |
| 6858 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6859 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6860 | struct server *s; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6861 | char *prev_name; |
| 6862 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6863 | if (!ctx) |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6864 | return; |
Willy Tarreau | 77bfa66 | 2021-12-23 11:12:13 +0100 | [diff] [blame] | 6865 | |
| 6866 | BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN)); |
| 6867 | BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS)); |
| 6868 | |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6869 | s = __objt_server(conn->target); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6870 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6871 | /* if the SNI changes, we must destroy the reusable context so that a |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6872 | * new connection will present a new SNI. compare with the SNI |
| 6873 | * previously stored in the reused_sess */ |
| 6874 | /* the RWLOCK is used to ensure that we are not trying to flush the |
| 6875 | * cache from the CLI */ |
| 6876 | |
| 6877 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
| 6878 | prev_name = s->ssl_ctx.reused_sess[tid].sni; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6879 | if ((!prev_name && hostname) || |
| 6880 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6881 | SSL_set_session(ctx->ssl, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6882 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6883 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6884 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6885 | #endif |
| 6886 | } |
| 6887 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6888 | /* Extract peer certificate's common name into the chunk dest |
| 6889 | * Returns |
| 6890 | * the len of the extracted common name |
| 6891 | * or 0 if no CN found in DN |
| 6892 | * or -1 on error case (i.e. no peer certificate) |
| 6893 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6894 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6895 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6896 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6897 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6898 | X509 *crt = NULL; |
| 6899 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6900 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6901 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6902 | .area = (char *)&find_cn, |
| 6903 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6904 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6905 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6906 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6907 | if (!ctx) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6908 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6909 | |
| 6910 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6911 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6912 | if (!crt) |
| 6913 | goto out; |
| 6914 | |
| 6915 | name = X509_get_subject_name(crt); |
| 6916 | if (!name) |
| 6917 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6918 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6919 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6920 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6921 | if (crt) |
| 6922 | X509_free(crt); |
| 6923 | |
| 6924 | return result; |
| 6925 | } |
| 6926 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6927 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6928 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6929 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6930 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6931 | X509 *crt = NULL; |
| 6932 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6933 | if (!ctx) |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6934 | return 0; |
| 6935 | |
| 6936 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6937 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6938 | if (!crt) |
| 6939 | return 0; |
| 6940 | |
| 6941 | X509_free(crt); |
| 6942 | return 1; |
| 6943 | } |
| 6944 | |
| 6945 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6946 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6947 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6948 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6949 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6950 | if (!ctx) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6951 | return 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6952 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6953 | } |
| 6954 | |
| 6955 | /* returns result from SSL verify */ |
| 6956 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6957 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6958 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6959 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6960 | if (!ctx) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6961 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6962 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6963 | } |
| 6964 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6965 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6966 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6967 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6968 | * freed by the caller. NPN is also checked if available since older versions |
| 6969 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6970 | */ |
Amaury Denoyelle | 71e588c | 2021-11-12 11:23:29 +0100 | [diff] [blame] | 6971 | 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] | 6972 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6973 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6974 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6975 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6976 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6977 | return 0; |
| 6978 | |
| 6979 | *str = NULL; |
| 6980 | |
| 6981 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6982 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6983 | if (*str) |
| 6984 | return 1; |
| 6985 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6986 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6987 | 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] | 6988 | if (*str) |
| 6989 | return 1; |
| 6990 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6991 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6992 | return 0; |
| 6993 | } |
| 6994 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6995 | /* "issuers-chain-path" load chain certificate in global */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6996 | 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] | 6997 | { |
| 6998 | X509 *ca; |
| 6999 | X509_NAME *name = NULL; |
| 7000 | ASN1_OCTET_STRING *skid = NULL; |
| 7001 | STACK_OF(X509) *chain = NULL; |
| 7002 | struct issuer_chain *issuer; |
| 7003 | struct eb64_node *node; |
| 7004 | char *path; |
| 7005 | u64 key; |
| 7006 | int ret = 0; |
| 7007 | |
| 7008 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 7009 | if (chain == NULL) { |
| 7010 | chain = sk_X509_new_null(); |
| 7011 | skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL); |
| 7012 | name = X509_get_subject_name(ca); |
| 7013 | } |
| 7014 | if (!sk_X509_push(chain, ca)) { |
| 7015 | X509_free(ca); |
| 7016 | goto end; |
| 7017 | } |
| 7018 | } |
| 7019 | if (!chain) { |
| 7020 | memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp); |
| 7021 | goto end; |
| 7022 | } |
| 7023 | if (!skid) { |
| 7024 | memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp); |
| 7025 | goto end; |
| 7026 | } |
| 7027 | if (!name) { |
| 7028 | memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp); |
| 7029 | goto end; |
| 7030 | } |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 7031 | key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0); |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 7032 | 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] | 7033 | issuer = container_of(node, typeof(*issuer), node); |
| 7034 | if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) { |
| 7035 | memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path); |
| 7036 | goto end; |
| 7037 | } |
| 7038 | } |
| 7039 | issuer = calloc(1, sizeof *issuer); |
| 7040 | path = strdup(fp); |
| 7041 | if (!issuer || !path) { |
| 7042 | free(issuer); |
| 7043 | free(path); |
| 7044 | goto end; |
| 7045 | } |
| 7046 | issuer->node.key = key; |
| 7047 | issuer->path = path; |
| 7048 | issuer->chain = chain; |
| 7049 | chain = NULL; |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 7050 | eb64_insert(&cert_issuer_tree, &issuer->node); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7051 | ret = 1; |
| 7052 | end: |
| 7053 | if (skid) |
| 7054 | ASN1_OCTET_STRING_free(skid); |
| 7055 | if (chain) |
| 7056 | sk_X509_pop_free(chain, X509_free); |
| 7057 | return ret; |
| 7058 | } |
| 7059 | |
William Lallemand | da8584c | 2020-05-14 10:14:37 +0200 | [diff] [blame] | 7060 | struct issuer_chain* ssl_get0_issuer_chain(X509 *cert) |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7061 | { |
| 7062 | AUTHORITY_KEYID *akid; |
| 7063 | struct issuer_chain *issuer = NULL; |
| 7064 | |
| 7065 | akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL); |
William Lallemand | f69cd68 | 2020-11-19 16:24:13 +0100 | [diff] [blame] | 7066 | if (akid && akid->keyid) { |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7067 | struct eb64_node *node; |
| 7068 | u64 hk; |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 7069 | 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] | 7070 | for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) { |
| 7071 | struct issuer_chain *ti = container_of(node, typeof(*issuer), node); |
| 7072 | if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) { |
| 7073 | issuer = ti; |
| 7074 | break; |
| 7075 | } |
| 7076 | } |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7077 | } |
Remi Tricot-Le Breton | 1621dc1 | 2022-11-03 15:16:48 +0100 | [diff] [blame] | 7078 | AUTHORITY_KEYID_free(akid); |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7079 | return issuer; |
| 7080 | } |
| 7081 | |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7082 | void ssl_free_global_issuers(void) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7083 | { |
| 7084 | struct eb64_node *node, *back; |
| 7085 | struct issuer_chain *issuer; |
| 7086 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 7087 | node = eb64_first(&cert_issuer_tree); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7088 | while (node) { |
| 7089 | issuer = container_of(node, typeof(*issuer), node); |
| 7090 | back = eb64_next(node); |
| 7091 | eb64_delete(node); |
| 7092 | free(issuer->path); |
| 7093 | sk_X509_pop_free(issuer->chain, X509_free); |
| 7094 | free(issuer); |
| 7095 | node = back; |
| 7096 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7097 | } |
| 7098 | |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7099 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7100 | static int ssl_check_async_engine_count(void) { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 7101 | int err_code = ERR_NONE; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7102 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 7103 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 7104 | 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] | 7105 | err_code = ERR_ABORT; |
| 7106 | } |
| 7107 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 7108 | } |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 7109 | #endif |
| 7110 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7111 | /* "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] | 7112 | * 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] | 7113 | */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 7114 | 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] | 7115 | { |
| 7116 | const struct ssl_sock_ctx *sctx = ctx; |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7117 | int ret = 0; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7118 | |
| 7119 | if (!sctx) |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7120 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7121 | |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7122 | if (sctx->conn != conn) { |
| 7123 | chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn); |
| 7124 | ret = 1; |
| 7125 | } |
Christopher Faulet | f19c639 | 2023-03-14 15:51:33 +0100 | [diff] [blame] | 7126 | chunk_appendf(&trash, " xctx.st=%d .err=%ld", sctx->xprt_st, sctx->error_code); |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7127 | |
| 7128 | if (sctx->xprt) { |
| 7129 | chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name); |
| 7130 | if (sctx->xprt_ctx) |
| 7131 | chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx); |
| 7132 | } |
| 7133 | |
| 7134 | chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7135 | |
| 7136 | /* as soon as a shutdown is reported the lower layer unregisters its |
| 7137 | * subscriber, so the situations below are transient and rare enough to |
| 7138 | * be reported as suspicious. In any case they shouldn't last. |
| 7139 | */ |
| 7140 | if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR))) |
| 7141 | ret = 1; |
| 7142 | if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR))) |
| 7143 | ret = 1; |
| 7144 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7145 | chunk_appendf(&trash, " .subs=%p", sctx->subs); |
| 7146 | if (sctx->subs) { |
| 7147 | 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] | 7148 | if (sctx->subs->tasklet->calls >= 1000000) |
| 7149 | ret = 1; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7150 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 7151 | sctx->subs->tasklet->calls, |
| 7152 | sctx->subs->tasklet->context); |
| 7153 | resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process); |
| 7154 | chunk_appendf(&trash, ")"); |
| 7155 | } |
| 7156 | chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data); |
| 7157 | chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7158 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7159 | } |
| 7160 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7161 | #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] | 7162 | /* 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] | 7163 | * each reference. The variable <ref> must point to the current node's list |
| 7164 | * 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] | 7165 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7166 | static inline |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7167 | 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] | 7168 | { |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 7169 | /* Get next list entry. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7170 | ref = ref->n; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7171 | |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 7172 | /* If the entry is the last of the list, return NULL. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7173 | if (ref == end) |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 7174 | return NULL; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7175 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7176 | return LIST_ELEM(ref, struct tls_keys_ref *, list); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7177 | } |
| 7178 | |
| 7179 | static inline |
| 7180 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 7181 | { |
| 7182 | int id; |
| 7183 | char *error; |
| 7184 | |
| 7185 | /* If the reference starts by a '#', this is numeric id. */ |
| 7186 | if (reference[0] == '#') { |
| 7187 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 7188 | id = strtol(reference + 1, &error, 10); |
| 7189 | if (*error != '\0') |
| 7190 | return NULL; |
| 7191 | |
| 7192 | /* Perform the unique id lookup. */ |
| 7193 | return tlskeys_ref_lookupid(id); |
| 7194 | } |
| 7195 | |
| 7196 | /* Perform the string lookup. */ |
| 7197 | return tlskeys_ref_lookup(reference); |
| 7198 | } |
| 7199 | #endif |
| 7200 | |
| 7201 | |
| 7202 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7203 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7204 | /* dumps all tls keys. Relies on the show_keys_ctx context from the appctx. */ |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7205 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) |
| 7206 | { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7207 | struct show_keys_ctx *ctx = appctx->svcctx; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7208 | |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7209 | switch (ctx->state) { |
| 7210 | case SHOW_KEYS_INIT: |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7211 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 7212 | * quit the function with returning 0. The function is called |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7213 | * later and restart at the state "SHOW_KEYS_INIT". |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7214 | */ |
| 7215 | chunk_reset(&trash); |
| 7216 | |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7217 | if (ctx->dump_entries) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7218 | chunk_appendf(&trash, "# id secret\n"); |
| 7219 | else |
| 7220 | chunk_appendf(&trash, "# id (file)\n"); |
| 7221 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7222 | if (applet_putchk(appctx, &trash) == -1) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7223 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7224 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7225 | /* Now, we start the browsing of the references lists. |
| 7226 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 7227 | * available field of this pointer is <list>. It is used with the function |
| 7228 | * tlskeys_list_get_next() for retruning the first available entry |
| 7229 | */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7230 | if (ctx->next_ref == NULL) |
| 7231 | ctx->next_ref = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7232 | |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7233 | ctx->state = SHOW_KEYS_LIST; |
Willy Tarreau | a551f4f | 2022-11-14 07:34:43 +0100 | [diff] [blame] | 7234 | __fallthrough; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7235 | |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7236 | case SHOW_KEYS_LIST: |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7237 | while (ctx->next_ref) { |
| 7238 | struct tls_keys_ref *ref = ctx->next_ref; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7239 | |
| 7240 | chunk_reset(&trash); |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7241 | if (ctx->dump_entries && ctx->next_index == 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7242 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7243 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7244 | if (ctx->next_index == 0) |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7245 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 7246 | |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7247 | if (ctx->dump_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7248 | int head; |
| 7249 | |
| 7250 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 7251 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7252 | while (ctx->next_index < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7253 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7254 | |
| 7255 | chunk_reset(t2); |
| 7256 | /* 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] | 7257 | if (ref->key_size_bits == 128) { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7258 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + ctx->next_index) % TLS_TICKETS_NO), |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7259 | sizeof(struct tls_sess_key_128), |
| 7260 | t2->area, t2->size); |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7261 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, ctx->next_index, |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7262 | t2->area); |
| 7263 | } |
| 7264 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7265 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + ctx->next_index) % TLS_TICKETS_NO), |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7266 | sizeof(struct tls_sess_key_256), |
| 7267 | t2->area, t2->size); |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7268 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, ctx->next_index, |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7269 | t2->area); |
| 7270 | } |
| 7271 | else { |
| 7272 | /* This case should never happen */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7273 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, ctx->next_index); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7274 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7275 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7276 | if (applet_putchk(appctx, &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7277 | /* let's try again later from this stream. We add ourselves into |
| 7278 | * this stream's users so that it can remove us upon termination. |
| 7279 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7280 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7281 | return 0; |
| 7282 | } |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7283 | ctx->next_index++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7284 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7285 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7286 | ctx->next_index = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7287 | } |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7288 | if (applet_putchk(appctx, &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7289 | /* let's try again later from this stream. We add ourselves into |
| 7290 | * this stream's users so that it can remove us upon termination. |
| 7291 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7292 | return 0; |
| 7293 | } |
| 7294 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7295 | if (ctx->names_only == 0) /* don't display everything if not necessary */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7296 | break; |
| 7297 | |
| 7298 | /* get next list entry and check the end of the list */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7299 | ctx->next_ref = tlskeys_list_get_next(&ref->list, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7300 | } |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7301 | ctx->state = SHOW_KEYS_DONE; |
Willy Tarreau | a551f4f | 2022-11-14 07:34:43 +0100 | [diff] [blame] | 7302 | __fallthrough; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7303 | |
| 7304 | default: |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7305 | return 1; |
| 7306 | } |
| 7307 | return 0; |
| 7308 | } |
| 7309 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7310 | /* Prepares a "show_keys_ctx" and sets the appropriate io_handler if needed */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7311 | 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] | 7312 | { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7313 | struct show_keys_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 7314 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7315 | /* no parameter, shows only file list */ |
| 7316 | if (!*args[2]) { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7317 | ctx->names_only = 1; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 7318 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7319 | } |
| 7320 | |
| 7321 | if (args[2][0] == '*') { |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7322 | /* list every TLS ticket keys */ |
| 7323 | ctx->names_only = 1; |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7324 | } else { |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7325 | ctx->next_ref = tlskeys_ref_lookup_ref(args[2]); |
| 7326 | if (!ctx->next_ref) |
| 7327 | return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n"); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7328 | } |
| 7329 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7330 | ctx->dump_entries = 1; |
| 7331 | return 0; |
| 7332 | } |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7333 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7334 | static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
| 7335 | { |
| 7336 | struct tls_keys_ref *ref; |
| 7337 | int ret; |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7338 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7339 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
| 7340 | if (!*args[3] || !*args[4]) |
| 7341 | return cli_err(appctx, "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n"); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7342 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7343 | ref = tlskeys_ref_lookup_ref(args[3]); |
| 7344 | if (!ref) |
| 7345 | return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n"); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7346 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7347 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
| 7348 | if (ret < 0) |
| 7349 | return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n"); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7350 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7351 | trash.data = ret; |
| 7352 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) |
| 7353 | return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n"); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7354 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7355 | return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n"); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7356 | } |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7357 | #endif |
| 7358 | |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7359 | |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7360 | #ifdef HAVE_SSL_PROVIDERS |
| 7361 | struct provider_name { |
| 7362 | const char *name; |
| 7363 | struct list list; |
| 7364 | }; |
| 7365 | |
| 7366 | |
| 7367 | static int ssl_provider_get_name_cb(OSSL_PROVIDER *provider, void *cbdata) |
| 7368 | { |
| 7369 | struct list *provider_names = cbdata; |
| 7370 | struct provider_name *item = NULL; |
| 7371 | const char *name = OSSL_PROVIDER_get0_name(provider); |
| 7372 | |
| 7373 | if (!provider_names) |
| 7374 | return 0; |
| 7375 | |
| 7376 | item = calloc(1, sizeof(*item)); |
| 7377 | |
| 7378 | if (!item) |
| 7379 | return 0; |
| 7380 | |
| 7381 | item->name = name; |
| 7382 | LIST_APPEND(provider_names, &item->list); |
| 7383 | |
| 7384 | return 1; |
| 7385 | } |
| 7386 | |
| 7387 | static void ssl_provider_get_name_list(struct list *provider_names) |
| 7388 | { |
| 7389 | if (!provider_names) |
| 7390 | return; |
| 7391 | |
| 7392 | OSSL_PROVIDER_do_all(NULL, ssl_provider_get_name_cb, provider_names); |
| 7393 | } |
| 7394 | |
| 7395 | static void ssl_provider_clear_name_list(struct list *provider_names) |
| 7396 | { |
| 7397 | struct provider_name *item = NULL, *item_s = NULL; |
| 7398 | |
| 7399 | if (provider_names) { |
| 7400 | list_for_each_entry_safe(item, item_s, provider_names, list) { |
| 7401 | LIST_DELETE(&item->list); |
| 7402 | free(item); |
| 7403 | } |
| 7404 | } |
| 7405 | } |
| 7406 | |
| 7407 | static int cli_io_handler_show_providers(struct appctx *appctx) |
| 7408 | { |
| 7409 | struct buffer *trash = get_trash_chunk(); |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7410 | struct list provider_names; |
| 7411 | struct provider_name *name; |
| 7412 | |
| 7413 | LIST_INIT(&provider_names); |
| 7414 | |
| 7415 | chunk_appendf(trash, "Loaded providers : \n"); |
| 7416 | |
| 7417 | ssl_provider_get_name_list(&provider_names); |
| 7418 | |
| 7419 | list_for_each_entry(name, &provider_names, list) { |
| 7420 | chunk_appendf(trash, "\t- %s\n", name->name); |
| 7421 | } |
| 7422 | |
| 7423 | ssl_provider_clear_name_list(&provider_names); |
| 7424 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7425 | if (applet_putchk(appctx, trash) == -1) |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7426 | goto yield; |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7427 | |
| 7428 | return 1; |
| 7429 | |
| 7430 | yield: |
| 7431 | return 0; |
| 7432 | } |
| 7433 | #endif |
Remi Tricot-Le Breton | eeaa29b | 2022-12-20 11:11:07 +0100 | [diff] [blame] | 7434 | |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7435 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7436 | /* register cli keywords */ |
| 7437 | static struct cli_kw_list cli_kws = {{ },{ |
| 7438 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Remi Tricot-Le Breton | eeaa29b | 2022-12-20 11:11:07 +0100 | [diff] [blame] | 7439 | { { "show", "tls-keys", NULL }, "show tls-keys [id|*] : show tls keys references or dump tls ticket keys when id specified", cli_parse_show_tlskeys, cli_io_handler_tlskeys_files }, |
| 7440 | { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|file] <key> : set the next TLS key for the <id> or <file> listener to <key>", cli_parse_set_tlskeys, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7441 | #endif |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7442 | #ifdef HAVE_SSL_PROVIDERS |
| 7443 | { { "show", "ssl", "providers", NULL }, "show ssl providers : show loaded SSL providers", NULL, cli_io_handler_show_providers }, |
| 7444 | #endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7445 | { { NULL }, NULL, NULL, NULL } |
| 7446 | }}; |
| 7447 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7448 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7449 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 7450 | /* transport-layer operations for SSL sockets */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7451 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7452 | .snd_buf = ssl_sock_from_buf, |
| 7453 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 7454 | .subscribe = ssl_subscribe, |
| 7455 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 7456 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 7457 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7458 | .rcv_pipe = NULL, |
| 7459 | .snd_pipe = NULL, |
| 7460 | .shutr = NULL, |
| 7461 | .shutw = ssl_sock_shutw, |
| 7462 | .close = ssl_sock_close, |
| 7463 | .init = ssl_sock_init, |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 7464 | .start = ssl_sock_start, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 7465 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 7466 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 7467 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 7468 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 7469 | .get_alpn = ssl_sock_get_alpn, |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 7470 | .takeover = ssl_takeover, |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 7471 | .set_idle = ssl_set_idle, |
| 7472 | .set_used = ssl_set_used, |
Willy Tarreau | de82795 | 2022-04-11 10:43:28 +0200 | [diff] [blame] | 7473 | .get_ssl_sock_ctx = ssl_sock_get_ctx, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 7474 | .name = "SSL", |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7475 | .show_fd = ssl_sock_show_fd, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7476 | }; |
| 7477 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7478 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 7479 | struct session *sess, struct stream *s, int flags) |
| 7480 | { |
| 7481 | struct connection *conn; |
| 7482 | |
| 7483 | conn = objt_conn(sess->origin); |
| 7484 | |
Willy Tarreau | b52d4d2 | 2022-05-27 10:44:39 +0200 | [diff] [blame] | 7485 | if (conn) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7486 | if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) { |
Willy Tarreau | b52d4d2 | 2022-05-27 10:44:39 +0200 | [diff] [blame] | 7487 | sc_ep_set(s->scf, SE_FL_WAIT_FOR_HS); |
Christopher Faulet | 6e1bbc4 | 2022-12-12 08:08:15 +0100 | [diff] [blame] | 7488 | s->req.flags |= CF_READ_EVENT; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7489 | return ACT_RET_YIELD; |
| 7490 | } |
| 7491 | } |
| 7492 | return (ACT_RET_CONT); |
| 7493 | } |
| 7494 | |
| 7495 | 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) |
| 7496 | { |
| 7497 | rule->action_ptr = ssl_action_wait_for_hs; |
| 7498 | |
| 7499 | return ACT_RET_PRS_OK; |
| 7500 | } |
| 7501 | |
| 7502 | static struct action_kw_list http_req_actions = {ILH, { |
| 7503 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 7504 | { /* END */ } |
| 7505 | }}; |
| 7506 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7507 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 7508 | |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7509 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7510 | |
| 7511 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7512 | { |
| 7513 | if (ptr) { |
| 7514 | chunk_destroy(ptr); |
| 7515 | free(ptr); |
| 7516 | } |
| 7517 | } |
| 7518 | |
| 7519 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7520 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7521 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7522 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7523 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7524 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7525 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7526 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7527 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7528 | static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7529 | { |
| 7530 | struct ssl_keylog *keylog; |
| 7531 | |
| 7532 | if (!ptr) |
| 7533 | return; |
| 7534 | |
| 7535 | keylog = ptr; |
| 7536 | |
| 7537 | pool_free(pool_head_ssl_keylog_str, keylog->client_random); |
| 7538 | pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret); |
| 7539 | pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret); |
| 7540 | pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret); |
| 7541 | pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0); |
| 7542 | pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0); |
| 7543 | pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret); |
| 7544 | pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret); |
| 7545 | |
| 7546 | pool_free(pool_head_ssl_keylog, ptr); |
| 7547 | } |
| 7548 | #endif |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7549 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7550 | static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7551 | { |
| 7552 | if (!ptr) |
| 7553 | return; |
| 7554 | |
| 7555 | X509_free((X509*)ptr); |
| 7556 | } |
| 7557 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 7558 | static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7559 | { |
| 7560 | pool_free(ssl_sock_client_sni_pool, ptr); |
| 7561 | } |
| 7562 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7563 | static void __ssl_sock_init(void) |
| 7564 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7565 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7566 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7567 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7568 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7569 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7570 | if (global_ssl.listen_default_ciphers) |
| 7571 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 7572 | if (global_ssl.connect_default_ciphers) |
| 7573 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 7574 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7575 | if (global_ssl.listen_default_ciphersuites) |
| 7576 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 7577 | if (global_ssl.connect_default_ciphersuites) |
| 7578 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 7579 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 7580 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 7581 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7582 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7583 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7584 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7585 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7586 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7587 | n = sk_SSL_COMP_num(cm); |
| 7588 | while (n--) { |
| 7589 | (void) sk_SSL_COMP_pop(cm); |
| 7590 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7591 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7592 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7593 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7594 | ssl_locking_init(); |
| 7595 | #endif |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7596 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7597 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 7598 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7599 | |
| 7600 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7601 | ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func); |
| 7602 | #endif |
| 7603 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 7604 | 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] | 7605 | ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func); |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 7606 | #ifdef USE_QUIC |
| 7607 | ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7608 | #endif /* USE_QUIC */ |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7609 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7610 | ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func); |
| 7611 | #endif |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7612 | ssl_client_crt_ref_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_crt_free_func); |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 7613 | ssl_client_sni_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_sni_free_func); |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7614 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7615 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7616 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7617 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 7618 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7619 | hap_register_post_check(tlskeys_finalize_config); |
| 7620 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7621 | |
| 7622 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 7623 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 7624 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7625 | hap_register_post_deinit(ssl_free_global_issuers); |
| 7626 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7627 | #ifndef OPENSSL_NO_DH |
| 7628 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7629 | hap_register_post_deinit(ssl_free_dh); |
| 7630 | #endif |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7631 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7632 | hap_register_post_deinit(ssl_free_engines); |
| 7633 | #endif |
Remi Tricot-Le Breton | 1746a38 | 2022-05-16 16:24:33 +0200 | [diff] [blame] | 7634 | #ifdef HAVE_SSL_PROVIDERS |
| 7635 | hap_register_post_deinit(ssl_unload_providers); |
| 7636 | #endif |
Remi Tricot-Le Breton | 78a36e3 | 2022-02-11 12:04:45 +0100 | [diff] [blame] | 7637 | #if HA_OPENSSL_VERSION_NUMBER < 0x3000000fL |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7638 | /* Load SSL string for the verbose & debug mode. */ |
| 7639 | ERR_load_SSL_strings(); |
Remi Tricot-Le Breton | 78a36e3 | 2022-02-11 12:04:45 +0100 | [diff] [blame] | 7640 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7641 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
eaglegai | 15c3d20 | 2023-05-26 16:42:47 +0800 | [diff] [blame] | 7642 | if (ha_meth != NULL) { |
| 7643 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 7644 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 7645 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 7646 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 7647 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 7648 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 7649 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
| 7650 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 7651 | |
| 7652 | HA_SPIN_INIT(&ckch_lock); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7653 | |
Remi Tricot-Le Breton | 2b96364 | 2022-12-20 11:11:02 +0100 | [diff] [blame] | 7654 | HA_SPIN_INIT(&ocsp_tree_lock); |
| 7655 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 7656 | /* Try to register dedicated SSL/TLS protocol message callbacks for |
| 7657 | * heartbleed attack (CVE-2014-0160) and clienthello. |
| 7658 | */ |
| 7659 | hap_register_post_check(ssl_sock_register_msg_callbacks); |
| 7660 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7661 | /* Try to free all callbacks that were registered by using |
| 7662 | * ssl_sock_register_msg_callback(). |
| 7663 | */ |
| 7664 | hap_register_post_deinit(ssl_sock_unregister_msg_callbacks); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7665 | } |
Willy Tarreau | 79367f9 | 2022-04-25 19:18:24 +0200 | [diff] [blame] | 7666 | INITCALL0(STG_REGISTER, __ssl_sock_init); |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 7667 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7668 | /* Compute and register the version string */ |
| 7669 | static void ssl_register_build_options() |
| 7670 | { |
| 7671 | char *ptr = NULL; |
| 7672 | int i; |
| 7673 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7674 | memprintf(&ptr, "Built with OpenSSL version : " |
| 7675 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7676 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7677 | #else /* OPENSSL_IS_BORINGSSL */ |
| 7678 | OPENSSL_VERSION_TEXT |
| 7679 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7680 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 7681 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7682 | #endif |
| 7683 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7684 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7685 | "no (library version too old)" |
| 7686 | #elif defined(OPENSSL_NO_TLSEXT) |
| 7687 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 7688 | #else |
| 7689 | "yes" |
| 7690 | #endif |
| 7691 | "", ptr); |
| 7692 | |
| 7693 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 7694 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7695 | "yes" |
| 7696 | #else |
| 7697 | #ifdef OPENSSL_NO_TLSEXT |
| 7698 | "no (because of OPENSSL_NO_TLSEXT)" |
| 7699 | #else |
| 7700 | "no (version might be too old, 0.9.8f min needed)" |
| 7701 | #endif |
| 7702 | #endif |
| 7703 | "", ptr); |
| 7704 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 7705 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 7706 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7707 | if (methodVersions[i].option) |
| 7708 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7709 | |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7710 | #ifdef HAVE_SSL_PROVIDERS |
| 7711 | { |
| 7712 | struct list provider_names; |
| 7713 | struct provider_name *name; |
| 7714 | LIST_INIT(&provider_names); |
| 7715 | ssl_provider_get_name_list(&provider_names); |
| 7716 | |
| 7717 | memprintf(&ptr, "%s\nOpenSSL providers loaded :", ptr); |
| 7718 | |
| 7719 | list_for_each_entry(name, &provider_names, list) { |
| 7720 | memprintf(&ptr, "%s %s", ptr, name->name); |
| 7721 | } |
| 7722 | |
| 7723 | ssl_provider_clear_name_list(&provider_names); |
| 7724 | } |
| 7725 | #endif |
| 7726 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7727 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7728 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7729 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7730 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 7731 | |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7732 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7733 | void ssl_free_engines(void) { |
| 7734 | struct ssl_engine_list *wl, *wlb; |
| 7735 | /* free up engine list */ |
| 7736 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 7737 | ENGINE_finish(wl->e); |
| 7738 | ENGINE_free(wl->e); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 7739 | LIST_DELETE(&wl->list); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7740 | free(wl); |
| 7741 | } |
| 7742 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7743 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7744 | |
Remi Tricot-Le Breton | 1746a38 | 2022-05-16 16:24:33 +0200 | [diff] [blame] | 7745 | #ifdef HAVE_SSL_PROVIDERS |
| 7746 | void ssl_unload_providers(void) { |
| 7747 | struct ssl_provider_list *prov, *provb; |
| 7748 | list_for_each_entry_safe(prov, provb, &openssl_providers, list) { |
| 7749 | OSSL_PROVIDER_unload(prov->provider); |
| 7750 | LIST_DELETE(&prov->list); |
| 7751 | free(prov); |
| 7752 | } |
| 7753 | } |
| 7754 | #endif |
| 7755 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7756 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7757 | void ssl_free_dh(void) { |
| 7758 | if (local_dh_1024) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7759 | HASSL_DH_free(local_dh_1024); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7760 | local_dh_1024 = NULL; |
| 7761 | } |
| 7762 | if (local_dh_2048) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7763 | HASSL_DH_free(local_dh_2048); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7764 | local_dh_2048 = NULL; |
| 7765 | } |
| 7766 | if (local_dh_4096) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7767 | HASSL_DH_free(local_dh_4096); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7768 | local_dh_4096 = NULL; |
| 7769 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7770 | if (global_dh) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7771 | HASSL_DH_free(global_dh); |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7772 | global_dh = NULL; |
| 7773 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7774 | } |
| 7775 | #endif |
| 7776 | |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7777 | static void __ssl_sock_deinit(void) |
| 7778 | { |
| 7779 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7780 | if (ssl_ctx_lru_tree) { |
| 7781 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 7782 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7783 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7784 | #endif |
| 7785 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7786 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7787 | ERR_remove_state(0); |
| 7788 | ERR_free_strings(); |
| 7789 | |
| 7790 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7791 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7792 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7793 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7794 | CRYPTO_cleanup_all_ex_data(); |
| 7795 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7796 | BIO_meth_free(ha_meth); |
Remi Tricot-Le Breton | 6477bbd | 2022-12-20 11:11:13 +0100 | [diff] [blame] | 7797 | |
| 7798 | #if !defined OPENSSL_NO_OCSP |
| 7799 | ssl_destroy_ocsp_update_task(); |
| 7800 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7801 | } |
Willy Tarreau | 79367f9 | 2022-04-25 19:18:24 +0200 | [diff] [blame] | 7802 | REGISTER_POST_DEINIT(__ssl_sock_deinit); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7803 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7804 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7805 | /* |
| 7806 | * Local variables: |
| 7807 | * c-indent-level: 8 |
| 7808 | * c-basic-offset: 8 |
| 7809 | * End: |
| 7810 | */ |