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; |
Valentine Krasnobaeva | fa15af6 | 2024-05-28 11:01:11 +0200 | [diff] [blame] | 1119 | #ifdef USE_OPENSSL_WOLFSSL |
Valentine Krasnobaeva | 8bd45d9 | 2024-05-28 10:49:51 +0200 | [diff] [blame] | 1120 | /* typedef int(*tlsextStatusCb)(WOLFSSL* ssl, void*); */ |
| 1121 | tlsextStatusCb callback = NULL; |
Valentine Krasnobaeva | fa15af6 | 2024-05-28 11:01:11 +0200 | [diff] [blame] | 1122 | #else |
Valentine Krasnobaeva | 8bd45d9 | 2024-05-28 10:49:51 +0200 | [diff] [blame] | 1123 | void (*callback) (void) = NULL; |
Uriah Pollock | 3cbf09e | 2022-11-23 16:41:25 +0100 | [diff] [blame] | 1124 | #endif |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1125 | struct buffer *ocsp_uri = get_trash_chunk(); |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1126 | char *err = NULL; |
Willy Tarreau | 6d4c0c2 | 2023-04-07 17:49:37 +0200 | [diff] [blame] | 1127 | size_t path_len; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1128 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 1129 | x = data->cert; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1130 | if (!x) |
| 1131 | goto out; |
| 1132 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1133 | ssl_ocsp_get_uri_from_cert(x, ocsp_uri, &err); |
| 1134 | /* We should have an "OCSP URI" field in order for auto update to work. */ |
| 1135 | if (data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON && b_data(ocsp_uri) == 0) |
| 1136 | goto out; |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1137 | |
| 1138 | /* In case of ocsp update mode set to 'on', this function might be |
| 1139 | * called with no known ocsp response. If no ocsp uri can be found in |
| 1140 | * the certificate, nothing needs to be done here. */ |
Remi Tricot-Le Breton | 5feb35d | 2023-07-21 17:21:15 +0200 | [diff] [blame] | 1141 | if (!data->ocsp_response && !data->ocsp_cid) { |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1142 | if (data->ocsp_update_mode != SSL_SOCK_OCSP_UPDATE_ON || b_data(ocsp_uri) == 0) { |
| 1143 | ret = 0; |
| 1144 | goto out; |
| 1145 | } |
| 1146 | } |
| 1147 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 1148 | issuer = data->ocsp_issuer; |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1149 | /* take issuer from chain over ocsp_issuer, is what is done historicaly */ |
| 1150 | if (chain) { |
| 1151 | /* check if one of the certificate of the chain is the issuer */ |
| 1152 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1153 | X509 *ti = sk_X509_value(chain, i); |
| 1154 | if (X509_check_issued(ti, x) == X509_V_OK) { |
| 1155 | issuer = ti; |
| 1156 | break; |
| 1157 | } |
| 1158 | } |
| 1159 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1160 | if (!issuer) |
| 1161 | goto out; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1162 | |
William Lallemand | 60289bf | 2024-02-26 17:53:02 +0100 | [diff] [blame] | 1163 | if (!data->ocsp_cid) |
Remi Tricot-Le Breton | 2d1daa8 | 2023-01-09 12:02:47 +0100 | [diff] [blame] | 1164 | data->ocsp_cid = OCSP_cert_to_id(0, x, issuer); |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1165 | if (!data->ocsp_cid) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1166 | goto out; |
| 1167 | |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1168 | i = i2d_OCSP_CERTID(data->ocsp_cid, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1169 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1170 | goto out; |
| 1171 | |
Willy Tarreau | 6d4c0c2 | 2023-04-07 17:49:37 +0200 | [diff] [blame] | 1172 | path_len = strlen(path); |
| 1173 | ocsp = calloc(1, sizeof(*ocsp) + path_len + 1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1174 | if (!ocsp) |
| 1175 | goto out; |
| 1176 | |
| 1177 | p = ocsp->key_data; |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1178 | ocsp->key_length = i2d_OCSP_CERTID(data->ocsp_cid, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1179 | |
Remi Tricot-Le Breton | 2b96364 | 2022-12-20 11:11:02 +0100 | [diff] [blame] | 1180 | HA_SPIN_LOCK(OCSP_LOCK, &ocsp_tree_lock); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1181 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1182 | if (iocsp == ocsp) |
| 1183 | ocsp = NULL; |
| 1184 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1185 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1186 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1187 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1188 | #endif |
| 1189 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1190 | |
| 1191 | if (!callback) { |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1192 | struct ocsp_cbk_arg *cb_arg; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1193 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1194 | |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1195 | cb_arg = calloc(1, sizeof(*cb_arg)); |
Valentine Krasnobaeva | f45355e | 2024-07-15 14:57:05 +0200 | [diff] [blame] | 1196 | if (!cb_arg) { |
| 1197 | HA_SPIN_UNLOCK(OCSP_LOCK, &ocsp_tree_lock); |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1198 | goto out; |
Valentine Krasnobaeva | f45355e | 2024-07-15 14:57:05 +0200 | [diff] [blame] | 1199 | } |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1200 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1201 | cb_arg->is_single = 1; |
| 1202 | cb_arg->s_ocsp = iocsp; |
William Lallemand | 60289bf | 2024-02-26 17:53:02 +0100 | [diff] [blame] | 1203 | iocsp->refcount++; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1204 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1205 | pkey = X509_get_pubkey(x); |
| 1206 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1207 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1208 | |
| 1209 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1210 | 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 */ |
| 1211 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1212 | } else { |
| 1213 | /* |
| 1214 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1215 | * Update that cb_arg with the new cert's staple |
| 1216 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1217 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1218 | struct certificate_ocsp *tmp_ocsp; |
| 1219 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1220 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1221 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1222 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1223 | cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1224 | |
| 1225 | /* |
| 1226 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1227 | * the order of operations below matter, take care when changing it |
| 1228 | */ |
| 1229 | tmp_ocsp = cb_arg->s_ocsp; |
| 1230 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1231 | cb_arg->s_ocsp = NULL; |
| 1232 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1233 | cb_arg->is_single = 0; |
| 1234 | cb_arg->single_kt = 0; |
| 1235 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1236 | pkey = X509_get_pubkey(x); |
| 1237 | key_type = EVP_PKEY_base_id(pkey); |
| 1238 | EVP_PKEY_free(pkey); |
| 1239 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1240 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1241 | if (index >= 0 && !cb_arg->m_ocsp[index]) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1242 | cb_arg->m_ocsp[index] = iocsp; |
William Lallemand | 60289bf | 2024-02-26 17:53:02 +0100 | [diff] [blame] | 1243 | iocsp->refcount++; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1244 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1245 | } |
Remi Tricot-Le Breton | 2b96364 | 2022-12-20 11:11:02 +0100 | [diff] [blame] | 1246 | HA_SPIN_UNLOCK(OCSP_LOCK, &ocsp_tree_lock); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1247 | |
| 1248 | ret = 0; |
| 1249 | |
| 1250 | warn = NULL; |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1251 | 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] | 1252 | memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1253 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1254 | } |
| 1255 | |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1256 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1257 | /* Do not insert the same certificate_ocsp structure in the |
| 1258 | * update tree more than once. */ |
| 1259 | if (!ocsp) { |
| 1260 | /* Issuer certificate is not included in the certificate |
| 1261 | * chain, it will have to be treated separately during |
| 1262 | * ocsp response validation. */ |
| 1263 | if (issuer == data->ocsp_issuer) { |
| 1264 | iocsp->issuer = issuer; |
| 1265 | X509_up_ref(issuer); |
| 1266 | } |
| 1267 | if (data->chain) |
| 1268 | iocsp->chain = X509_chain_up_ref(data->chain); |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1269 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1270 | iocsp->uri = calloc(1, sizeof(*iocsp->uri)); |
| 1271 | if (!chunk_dup(iocsp->uri, ocsp_uri)) { |
| 1272 | ha_free(&iocsp->uri); |
| 1273 | goto out; |
| 1274 | } |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1275 | |
Willy Tarreau | 6d4c0c2 | 2023-04-07 17:49:37 +0200 | [diff] [blame] | 1276 | /* Note: if we arrive here, ocsp==NULL because iocsp==ocsp |
| 1277 | * after the ebmb_insert(), which indicates that we've |
| 1278 | * just inserted this new node and that it's the one for |
| 1279 | * which we previously allocated enough room for path_len+1 |
| 1280 | * chars. |
| 1281 | */ |
| 1282 | memcpy(iocsp->path, path, path_len + 1); |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 1283 | |
Remi Tricot-Le Breton | a6c0a59 | 2023-03-13 15:56:32 +0100 | [diff] [blame] | 1284 | if (data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON) { |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1285 | ssl_ocsp_update_insert(iocsp); |
Remi Tricot-Le Breton | 86d1e0b | 2023-03-02 15:49:53 +0100 | [diff] [blame] | 1286 | /* If we are during init the update task is not |
| 1287 | * scheduled yet so a wakeup won't do anything. |
| 1288 | * Otherwise, if the OCSP was added through the CLI, we |
| 1289 | * wake the task up to manage the case of a new entry |
| 1290 | * that needs to be updated before the previous first |
| 1291 | * entry. |
| 1292 | */ |
| 1293 | if (ocsp_update_task) |
| 1294 | task_wakeup(ocsp_update_task, TASK_WOKEN_MSG); |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1295 | } |
Remi Tricot-Le Breton | ad488ae | 2024-02-07 16:38:45 +0100 | [diff] [blame] | 1296 | } else if (iocsp->uri && data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON) { |
| 1297 | /* This unlikely case can happen if a series of "del ssl |
| 1298 | * crt-list" / "add ssl crt-list" commands are made on the CLI. |
| 1299 | * In such a case, the OCSP response tree entry will be created |
| 1300 | * prior to the activation of the ocsp auto update and in such a |
| 1301 | * case we must "force" insertion in the auto update tree. |
| 1302 | */ |
| 1303 | if (iocsp->next_update.node.leaf_p == NULL) { |
| 1304 | ssl_ocsp_update_insert(iocsp); |
| 1305 | /* If we are during init the update task is not |
| 1306 | * scheduled yet so a wakeup won't do anything. |
| 1307 | * Otherwise, if the OCSP was added through the CLI, we |
| 1308 | * wake the task up to manage the case of a new entry |
| 1309 | * that needs to be updated before the previous first |
| 1310 | * entry. |
| 1311 | */ |
| 1312 | if (ocsp_update_task) |
| 1313 | task_wakeup(ocsp_update_task, TASK_WOKEN_MSG); |
| 1314 | } |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 1315 | } |
| 1316 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1317 | out: |
Frédéric Lécaille | 57359b9 | 2023-12-05 14:50:40 +0100 | [diff] [blame] | 1318 | if (ret && data->ocsp_cid) { |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1319 | OCSP_CERTID_free(data->ocsp_cid); |
Frédéric Lécaille | 57359b9 | 2023-12-05 14:50:40 +0100 | [diff] [blame] | 1320 | data->ocsp_cid = NULL; |
| 1321 | } |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 1322 | |
| 1323 | if (!ret && data->ocsp_response) { |
| 1324 | ha_free(&data->ocsp_response->area); |
| 1325 | ha_free(&data->ocsp_response); |
| 1326 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1327 | |
| 1328 | if (ocsp) |
Remi Tricot-Le Breton | aa529f7 | 2022-11-03 15:16:49 +0100 | [diff] [blame] | 1329 | ssl_sock_free_ocsp(ocsp); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1330 | |
| 1331 | if (warn) |
| 1332 | free(warn); |
| 1333 | |
Tim Duesterhus | b39c24b | 2023-03-19 16:07:47 +0100 | [diff] [blame] | 1334 | free(err); |
| 1335 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1336 | return ret; |
| 1337 | } |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 1338 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 1339 | #endif |
| 1340 | |
| 1341 | #ifdef OPENSSL_IS_BORINGSSL |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 1342 | 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] | 1343 | { |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1344 | 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] | 1345 | } |
| 1346 | #endif |
| 1347 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1348 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 1349 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1350 | |
| 1351 | #define CT_EXTENSION_TYPE 18 |
| 1352 | |
William Lallemand | 03c331c | 2020-05-13 10:10:01 +0200 | [diff] [blame] | 1353 | int sctl_ex_index = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1354 | |
| 1355 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1356 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1357 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1358 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1359 | *out = (unsigned char *) sctl->area; |
| 1360 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1361 | |
| 1362 | return 1; |
| 1363 | } |
| 1364 | |
| 1365 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1366 | { |
| 1367 | return 1; |
| 1368 | } |
| 1369 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1370 | static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1371 | { |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1372 | int ret = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1373 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1374 | 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] | 1375 | goto out; |
| 1376 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1377 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1378 | |
| 1379 | ret = 0; |
| 1380 | |
| 1381 | out: |
| 1382 | return ret; |
| 1383 | } |
| 1384 | |
| 1385 | #endif |
| 1386 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1387 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1388 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1389 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1390 | #ifdef USE_QUIC |
| 1391 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 1392 | #endif /* USE_QUIC */ |
| 1393 | struct ssl_sock_ctx *ctx = NULL; |
| 1394 | |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1395 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1396 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1397 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1398 | if (conn) |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 1399 | ctx = conn_get_ssl_sock_ctx(conn); |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1400 | #ifdef USE_QUIC |
| 1401 | else if (qc) |
| 1402 | ctx = qc->xprt_ctx; |
| 1403 | #endif /* USE_QUIC */ |
Amaury Denoyelle | 7c564bf | 2022-01-24 11:04:05 +0100 | [diff] [blame] | 1404 | |
| 1405 | if (!ctx) { |
| 1406 | /* must never happen */ |
| 1407 | ABORT_NOW(); |
| 1408 | return; |
| 1409 | } |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1410 | |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1411 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1412 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1413 | * change this to #if and do not assign a default value to this macro! |
| 1414 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1415 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1416 | /* Disable renegotiation (CVE-2009-3555) */ |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1417 | 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] | 1418 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1419 | conn->err_code = CO_ER_SSL_RENEG; |
| 1420 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1421 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1422 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1423 | |
| 1424 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1425 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1426 | /* Long certificate chains optimz |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1427 | If write and read bios are different, we |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1428 | consider that the buffering was activated, |
| 1429 | so we rise the output buffer size from 4k |
| 1430 | to 16k */ |
| 1431 | write_bio = SSL_get_wbio(ssl); |
| 1432 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1433 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1434 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1435 | } |
| 1436 | } |
| 1437 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1438 | } |
| 1439 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1440 | /* Callback is called for each certificate of the chain during a verify |
| 1441 | ok is set to 1 if preverify detect no error on current certificate. |
| 1442 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1443 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1444 | { |
| 1445 | SSL *ssl; |
| 1446 | struct connection *conn; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1447 | struct ssl_sock_ctx *ctx = NULL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1448 | int err, depth; |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1449 | X509 *client_crt; |
| 1450 | STACK_OF(X509) *certs; |
Frédéric Lécaille | 48e46f9 | 2022-10-14 09:34:00 +0200 | [diff] [blame] | 1451 | struct bind_conf *bind_conf = NULL; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1452 | struct quic_conn *qc = NULL; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1453 | |
| 1454 | 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] | 1455 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1456 | client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1457 | |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1458 | if (conn) { |
| 1459 | bind_conf = __objt_listener(conn->target)->bind_conf; |
| 1460 | ctx = __conn_get_ssl_sock_ctx(conn); |
| 1461 | } |
| 1462 | #ifdef USE_QUIC |
| 1463 | else { |
| 1464 | qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
Amaury Denoyelle | ba303de | 2022-10-17 18:46:49 +0200 | [diff] [blame] | 1465 | BUG_ON(!qc); /* Must never happen */ |
| 1466 | bind_conf = qc->li->bind_conf; |
| 1467 | ctx = qc->xprt_ctx; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1468 | } |
| 1469 | #endif |
| 1470 | |
Frédéric Lécaille | 48e46f9 | 2022-10-14 09:34:00 +0200 | [diff] [blame] | 1471 | BUG_ON(!ctx || !bind_conf); |
Christopher Faulet | 881cce9 | 2022-11-23 09:27:13 +0100 | [diff] [blame] | 1472 | ALREADY_CHECKED(ctx); |
| 1473 | ALREADY_CHECKED(bind_conf); |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1474 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1475 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1476 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1477 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1478 | err = X509_STORE_CTX_get_error(x_store); |
| 1479 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1480 | if (ok) /* no errors */ |
| 1481 | return ok; |
| 1482 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1483 | /* Keep a reference to the client's certificate in order to be able to |
| 1484 | * dump some fetches values in a log even when the verification process |
| 1485 | * fails. */ |
| 1486 | if (depth == 0) { |
| 1487 | X509_free(client_crt); |
| 1488 | client_crt = X509_STORE_CTX_get0_cert(x_store); |
| 1489 | if (client_crt) { |
| 1490 | X509_up_ref(client_crt); |
| 1491 | SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt); |
| 1492 | } |
| 1493 | } |
| 1494 | else { |
| 1495 | /* An error occurred on a CA certificate of the certificate |
| 1496 | * chain, we might never call this verify callback on the client |
| 1497 | * certificate's depth (which is 0) so we try to store the |
| 1498 | * reference right now. */ |
Remi Tricot-Le Breton | f95c295 | 2021-08-20 09:51:23 +0200 | [diff] [blame] | 1499 | certs = X509_STORE_CTX_get1_chain(x_store); |
| 1500 | if (certs) { |
| 1501 | client_crt = sk_X509_value(certs, 0); |
| 1502 | if (client_crt) { |
| 1503 | X509_up_ref(client_crt); |
| 1504 | 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] | 1505 | } |
| 1506 | sk_X509_pop_free(certs, X509_free); |
| 1507 | } |
| 1508 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1509 | |
| 1510 | /* check if CA error needs to be ignored */ |
| 1511 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1512 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1513 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1514 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1515 | } |
| 1516 | |
Remi Tricot-Le Breton | 9b25982 | 2022-11-10 10:48:58 +0100 | [diff] [blame] | 1517 | if (err <= SSL_MAX_VFY_ERROR_CODE && |
William Lallemand | 4639689 | 2022-11-10 16:45:24 +0100 | [diff] [blame] | 1518 | 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] | 1519 | goto err_ignored; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1520 | |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1521 | /* TODO: for QUIC connection, this error code is lost */ |
| 1522 | if (conn) |
| 1523 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1524 | return 0; |
| 1525 | } |
| 1526 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1527 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1528 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1529 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1530 | /* check if certificate error needs to be ignored */ |
Remi Tricot-Le Breton | 9b25982 | 2022-11-10 10:48:58 +0100 | [diff] [blame] | 1531 | if (err <= SSL_MAX_VFY_ERROR_CODE && |
William Lallemand | 4639689 | 2022-11-10 16:45:24 +0100 | [diff] [blame] | 1532 | 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] | 1533 | goto err_ignored; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1534 | |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1535 | /* TODO: for QUIC connection, this error code is lost */ |
| 1536 | if (conn) |
| 1537 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1538 | return 0; |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 1539 | |
| 1540 | err_ignored: |
| 1541 | ssl_sock_dump_errors(conn, qc); |
| 1542 | ERR_clear_error(); |
| 1543 | return 1; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1544 | } |
| 1545 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1546 | #ifdef TLS1_RT_HEARTBEAT |
| 1547 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 1548 | int content_type, const void *buf, size_t len, |
| 1549 | SSL *ssl) |
| 1550 | { |
| 1551 | /* test heartbeat received (write_p is set to 0 |
| 1552 | for a received record) */ |
| 1553 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
Willy Tarreau | 3a0a0d6 | 2022-04-12 07:31:06 +0200 | [diff] [blame] | 1554 | struct ssl_sock_ctx *ctx = __conn_get_ssl_sock_ctx(conn); |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1555 | const unsigned char *p = buf; |
| 1556 | unsigned int payload; |
| 1557 | |
| 1558 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
| 1559 | |
| 1560 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1561 | if (*p != TLS1_HB_REQUEST) |
| 1562 | return; |
| 1563 | |
| 1564 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
| 1565 | goto kill_it; |
| 1566 | |
| 1567 | payload = (p[1] * 256) + p[2]; |
| 1568 | if (3 + payload + 16 <= len) |
| 1569 | return; /* OK no problem */ |
| 1570 | kill_it: |
| 1571 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1572 | * advertised payload is larger than the advertised packet |
| 1573 | * length, so we have garbage in the buffer between the |
| 1574 | * payload and the end of the buffer (p+len). We can't know |
| 1575 | * if the SSL stack is patched, and we don't know if we can |
| 1576 | * safely wipe out the area between p+3+len and payload. |
| 1577 | * So instead, we prevent the response from being sent by |
| 1578 | * setting the max_send_fragment to 0 and we report an SSL |
| 1579 | * error, which will kill this connection. It will be reported |
| 1580 | * above as SSL_ERROR_SSL while an other handshake failure with |
| 1581 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1582 | */ |
| 1583 | ssl->max_send_fragment = 0; |
| 1584 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1585 | } |
| 1586 | } |
| 1587 | #endif |
| 1588 | |
| 1589 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 1590 | int content_type, const void *buf, size_t len, |
| 1591 | SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1592 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1593 | struct ssl_capture *capture; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1594 | uchar *msg; |
| 1595 | uchar *end; |
| 1596 | uchar *extensions_end; |
| 1597 | uchar *ec_start = NULL; |
| 1598 | uchar *ec_formats_start = NULL; |
| 1599 | uchar *list_end; |
| 1600 | ushort protocol_version; |
| 1601 | ushort extension_id; |
| 1602 | ushort ec_len = 0; |
| 1603 | uchar ec_formats_len = 0; |
| 1604 | int offset = 0; |
| 1605 | int rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1606 | |
| 1607 | /* This function is called for "from client" and "to server" |
| 1608 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1609 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1610 | */ |
| 1611 | |
| 1612 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1613 | * otherwise it is set to 1. |
| 1614 | */ |
| 1615 | if (write_p != 0) |
| 1616 | return; |
| 1617 | |
| 1618 | /* content_type contains the type of message received or sent |
| 1619 | * according with the SSL/TLS protocol spec. This message is |
| 1620 | * encoded with one byte. The value 256 (two bytes) is used |
| 1621 | * for designing the SSL/TLS record layer. According with the |
| 1622 | * rfc6101, the expected message (other than 256) are: |
| 1623 | * - change_cipher_spec(20) |
| 1624 | * - alert(21) |
| 1625 | * - handshake(22) |
| 1626 | * - application_data(23) |
| 1627 | * - (255) |
| 1628 | * We are interessed by the handshake and specially the client |
| 1629 | * hello. |
| 1630 | */ |
| 1631 | if (content_type != 22) |
| 1632 | return; |
| 1633 | |
| 1634 | /* The message length is at least 4 bytes, containing the |
| 1635 | * message type and the message length. |
| 1636 | */ |
| 1637 | if (len < 4) |
| 1638 | return; |
| 1639 | |
| 1640 | /* First byte of the handshake message id the type of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1641 | * message. The known types are: |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1642 | * - hello_request(0) |
| 1643 | * - client_hello(1) |
| 1644 | * - server_hello(2) |
| 1645 | * - certificate(11) |
| 1646 | * - server_key_exchange (12) |
| 1647 | * - certificate_request(13) |
| 1648 | * - server_hello_done(14) |
| 1649 | * We are interested by the client hello. |
| 1650 | */ |
| 1651 | msg = (unsigned char *)buf; |
| 1652 | if (msg[0] != 1) |
| 1653 | return; |
| 1654 | |
| 1655 | /* Next three bytes are the length of the message. The total length |
| 1656 | * must be this decoded length + 4. If the length given as argument |
| 1657 | * is not the same, we abort the protocol dissector. |
| 1658 | */ |
| 1659 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1660 | if (len < rec_len + 4) |
| 1661 | return; |
| 1662 | msg += 4; |
| 1663 | end = msg + rec_len; |
| 1664 | if (end < msg) |
| 1665 | return; |
| 1666 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1667 | /* Expect 2 bytes for protocol version |
| 1668 | * (1 byte for major and 1 byte for minor) |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1669 | */ |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1670 | if (msg + 2 > end) |
| 1671 | return; |
| 1672 | protocol_version = (msg[0] << 8) + msg[1]; |
| 1673 | msg += 2; |
| 1674 | |
| 1675 | /* Expect the random, composed by 4 bytes for the unix time and |
| 1676 | * 28 bytes for unix payload. So we jump 4 + 28. |
| 1677 | */ |
| 1678 | msg += 4 + 28; |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1679 | if (msg > end) |
| 1680 | return; |
| 1681 | |
| 1682 | /* Next, is session id: |
| 1683 | * if present, we have to jump by length + 1 for the size information |
| 1684 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1685 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1686 | if (msg[0] > 0) |
| 1687 | msg += msg[0]; |
| 1688 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1689 | if (msg > end) |
| 1690 | return; |
| 1691 | |
| 1692 | /* Next two bytes are the ciphersuite length. */ |
| 1693 | if (msg + 2 > end) |
| 1694 | return; |
| 1695 | rec_len = (msg[0] << 8) + msg[1]; |
| 1696 | msg += 2; |
| 1697 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1698 | return; |
| 1699 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1700 | capture = pool_zalloc(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1701 | if (!capture) |
| 1702 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1703 | /* Compute the xxh64 of the ciphersuite. */ |
| 1704 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1705 | |
| 1706 | /* Capture the ciphersuite. */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1707 | capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len); |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1708 | capture->ciphersuite_offset = 0; |
| 1709 | memcpy(capture->data, msg, capture->ciphersuite_len); |
| 1710 | msg += rec_len; |
| 1711 | offset += capture->ciphersuite_len; |
| 1712 | |
| 1713 | /* Initialize other data */ |
| 1714 | capture->protocol_version = protocol_version; |
| 1715 | |
| 1716 | /* Next, compression methods: |
| 1717 | * if present, we have to jump by length + 1 for the size information |
| 1718 | * if not present, we have to jump by 1 only |
| 1719 | */ |
| 1720 | if (msg[0] > 0) |
| 1721 | msg += msg[0]; |
| 1722 | msg += 1; |
| 1723 | if (msg > end) |
| 1724 | goto store_capture; |
| 1725 | |
| 1726 | /* We reached extensions */ |
| 1727 | if (msg + 2 > end) |
| 1728 | goto store_capture; |
| 1729 | rec_len = (msg[0] << 8) + msg[1]; |
| 1730 | msg += 2; |
| 1731 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1732 | goto store_capture; |
| 1733 | extensions_end = msg + rec_len; |
| 1734 | capture->extensions_offset = offset; |
| 1735 | |
| 1736 | /* Parse each extension */ |
| 1737 | while (msg + 4 < extensions_end) { |
| 1738 | /* Add 2 bytes of extension_id */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1739 | if (global_ssl.capture_buffer_size >= offset + 2) { |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1740 | capture->data[offset++] = msg[0]; |
| 1741 | capture->data[offset++] = msg[1]; |
| 1742 | capture->extensions_len += 2; |
| 1743 | } |
| 1744 | else |
| 1745 | break; |
| 1746 | extension_id = (msg[0] << 8) + msg[1]; |
| 1747 | /* Length of the extension */ |
| 1748 | rec_len = (msg[2] << 8) + msg[3]; |
| 1749 | |
| 1750 | /* Expect 2 bytes extension id + 2 bytes extension size */ |
| 1751 | msg += 2 + 2; |
| 1752 | if (msg + rec_len > extensions_end || msg + rec_len < msg) |
| 1753 | goto store_capture; |
| 1754 | /* TLS Extensions |
| 1755 | * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */ |
| 1756 | if (extension_id == 0x000a) { |
| 1757 | /* Elliptic Curves: |
| 1758 | * https://www.rfc-editor.org/rfc/rfc8422.html |
| 1759 | * https://www.rfc-editor.org/rfc/rfc7919.html */ |
| 1760 | list_end = msg + rec_len; |
| 1761 | if (msg + 2 > list_end) |
| 1762 | goto store_capture; |
| 1763 | rec_len = (msg[0] << 8) + msg[1]; |
| 1764 | msg += 2; |
| 1765 | |
| 1766 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1767 | goto store_capture; |
| 1768 | /* Store location/size of the list */ |
| 1769 | ec_start = msg; |
| 1770 | ec_len = rec_len; |
| 1771 | } |
| 1772 | else if (extension_id == 0x000b) { |
| 1773 | /* Elliptic Curves Point Formats: |
| 1774 | * https://www.rfc-editor.org/rfc/rfc8422.html */ |
| 1775 | list_end = msg + rec_len; |
| 1776 | if (msg + 1 > list_end) |
| 1777 | goto store_capture; |
| 1778 | rec_len = msg[0]; |
| 1779 | msg += 1; |
| 1780 | |
| 1781 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1782 | goto store_capture; |
| 1783 | /* Store location/size of the list */ |
| 1784 | ec_formats_start = msg; |
| 1785 | ec_formats_len = rec_len; |
| 1786 | } |
| 1787 | msg += rec_len; |
| 1788 | } |
| 1789 | |
| 1790 | if (ec_start) { |
| 1791 | rec_len = ec_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1792 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1793 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1794 | memcpy(capture->data + offset, ec_start, rec_len); |
| 1795 | capture->ec_offset = offset; |
| 1796 | capture->ec_len = rec_len; |
| 1797 | offset += rec_len; |
| 1798 | } |
| 1799 | if (ec_formats_start) { |
| 1800 | rec_len = ec_formats_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1801 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1802 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1803 | memcpy(capture->data + offset, ec_formats_start, rec_len); |
| 1804 | capture->ec_formats_offset = offset; |
| 1805 | capture->ec_formats_len = rec_len; |
| 1806 | offset += rec_len; |
| 1807 | } |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1808 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1809 | store_capture: |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1810 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1811 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1812 | |
| 1813 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 1814 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1815 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 1816 | int content_type, const void *buf, size_t len, |
| 1817 | SSL *ssl) |
| 1818 | { |
| 1819 | struct ssl_keylog *keylog; |
| 1820 | |
| 1821 | if (SSL_get_ex_data(ssl, ssl_keylog_index)) |
| 1822 | return; |
| 1823 | |
Willy Tarreau | f208ac0 | 2021-03-22 21:10:12 +0100 | [diff] [blame] | 1824 | keylog = pool_zalloc(pool_head_ssl_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1825 | if (!keylog) |
| 1826 | return; |
| 1827 | |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1828 | if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) { |
| 1829 | pool_free(pool_head_ssl_keylog, keylog); |
| 1830 | return; |
| 1831 | } |
| 1832 | } |
| 1833 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1834 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1835 | /* Callback is called for ssl protocol analyse */ |
| 1836 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1837 | { |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1838 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 1839 | struct ssl_sock_msg_callback *cbk; |
| 1840 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1841 | /* Try to call all callback functions that were registered by using |
| 1842 | * ssl_sock_register_msg_callback(). |
| 1843 | */ |
| 1844 | list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) { |
| 1845 | cbk->func(conn, write_p, version, content_type, buf, len, ssl); |
| 1846 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1847 | } |
| 1848 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1849 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1850 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1851 | const unsigned char *in, unsigned int inlen, |
| 1852 | void *arg) |
| 1853 | { |
| 1854 | struct server *srv = arg; |
| 1855 | |
| 1856 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1857 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1858 | return SSL_TLSEXT_ERR_OK; |
| 1859 | return SSL_TLSEXT_ERR_NOACK; |
| 1860 | } |
| 1861 | #endif |
| 1862 | |
| 1863 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1864 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1865 | * negotiable protocols for NPN. |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1866 | */ |
| 1867 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1868 | unsigned int *len, void *arg) |
| 1869 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1870 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1871 | |
| 1872 | *data = (const unsigned char *)conf->npn_str; |
| 1873 | *len = conf->npn_len; |
| 1874 | return SSL_TLSEXT_ERR_OK; |
| 1875 | } |
| 1876 | #endif |
| 1877 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1878 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1879 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1880 | * negotiable protocols for ALPN. |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1881 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1882 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1883 | unsigned char *outlen, |
| 1884 | const unsigned char *server, |
| 1885 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1886 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1887 | struct ssl_bind_conf *conf = arg; |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1888 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1889 | 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] | 1890 | #endif |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1891 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1892 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1893 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1894 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1895 | if (qc) |
| 1896 | 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] | 1897 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1898 | return SSL_TLSEXT_ERR_NOACK; |
| 1899 | } |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1900 | |
| 1901 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 1902 | if (qc && !quic_set_app_ops(qc, *out, *outlen)) { |
| 1903 | 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] | 1904 | return SSL_TLSEXT_ERR_NOACK; |
| 1905 | } |
| 1906 | #endif |
| 1907 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1908 | return SSL_TLSEXT_ERR_OK; |
| 1909 | } |
| 1910 | #endif |
| 1911 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1912 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1913 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1914 | |
cui fliter | a94bedc | 2022-08-29 14:42:57 +0800 | [diff] [blame] | 1915 | /* Configure a DNS SAN extension on a certificate. */ |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 1916 | int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) { |
| 1917 | int failure = 0; |
| 1918 | X509_EXTENSION *san_ext = NULL; |
| 1919 | CONF *conf = NULL; |
| 1920 | struct buffer *san_name = get_trash_chunk(); |
| 1921 | |
| 1922 | conf = NCONF_new(NULL); |
| 1923 | if (!conf) { |
| 1924 | failure = 1; |
| 1925 | goto cleanup; |
| 1926 | } |
| 1927 | |
| 1928 | /* Build an extension based on the DNS entry above */ |
| 1929 | chunk_appendf(san_name, "DNS:%s", servername); |
| 1930 | san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area); |
| 1931 | if (!san_ext) { |
| 1932 | failure = 1; |
| 1933 | goto cleanup; |
| 1934 | } |
| 1935 | |
| 1936 | /* Add the extension */ |
| 1937 | if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) { |
| 1938 | failure = 1; |
| 1939 | goto cleanup; |
| 1940 | } |
| 1941 | |
| 1942 | /* Success */ |
| 1943 | failure = 0; |
| 1944 | |
| 1945 | cleanup: |
| 1946 | if (NULL != san_ext) X509_EXTENSION_free(san_ext); |
| 1947 | if (NULL != conf) NCONF_free(conf); |
| 1948 | |
| 1949 | return failure; |
| 1950 | } |
| 1951 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 1952 | /* Create a X509 certificate with the specified servername and serial. This |
| 1953 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 1954 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 1955 | 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] | 1956 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 1957 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
| 1958 | EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1959 | SSL_CTX *ssl_ctx = NULL; |
| 1960 | X509 *newcrt = NULL; |
| 1961 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1962 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 1963 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1964 | X509_NAME *name; |
| 1965 | const EVP_MD *digest; |
| 1966 | X509V3_CTX ctx; |
| 1967 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1968 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1969 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 1970 | /* Get the private key of the default certificate and use it */ |
Ilya Shipitsin | af20488 | 2020-12-19 03:12:12 +0500 | [diff] [blame] | 1971 | #ifdef HAVE_SSL_CTX_get0_privatekey |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 1972 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 1973 | #else |
| 1974 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 1975 | if (tmp_ssl) |
| 1976 | pkey = SSL_get_privatekey(tmp_ssl); |
| 1977 | #endif |
| 1978 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1979 | goto mkcert_error; |
| 1980 | |
| 1981 | /* Create the certificate */ |
| 1982 | if (!(newcrt = X509_new())) |
| 1983 | goto mkcert_error; |
| 1984 | |
| 1985 | /* Set version number for the certificate (X509v3) and the serial |
| 1986 | * number */ |
| 1987 | if (X509_set_version(newcrt, 2L) != 1) |
| 1988 | goto mkcert_error; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 1989 | 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] | 1990 | |
| 1991 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 1992 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 1993 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 1994 | goto mkcert_error; |
| 1995 | |
| 1996 | /* set public key in the certificate */ |
| 1997 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 1998 | goto mkcert_error; |
| 1999 | |
| 2000 | /* Set issuer name from the CA */ |
| 2001 | if (!(name = X509_get_subject_name(cacert))) |
| 2002 | goto mkcert_error; |
| 2003 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 2004 | goto mkcert_error; |
| 2005 | |
| 2006 | /* Set the subject name using the same, but the CN */ |
| 2007 | name = X509_NAME_dup(name); |
| 2008 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 2009 | (const unsigned char *)servername, |
| 2010 | -1, -1, 0) != 1) { |
| 2011 | X509_NAME_free(name); |
| 2012 | goto mkcert_error; |
| 2013 | } |
| 2014 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 2015 | X509_NAME_free(name); |
| 2016 | goto mkcert_error; |
| 2017 | } |
| 2018 | X509_NAME_free(name); |
| 2019 | |
| 2020 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2021 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2022 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 2023 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 2024 | X509_EXTENSION *ext; |
| 2025 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2026 | 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] | 2027 | goto mkcert_error; |
| 2028 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 2029 | X509_EXTENSION_free(ext); |
| 2030 | goto mkcert_error; |
| 2031 | } |
| 2032 | X509_EXTENSION_free(ext); |
| 2033 | } |
| 2034 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 2035 | /* Add SAN extension */ |
| 2036 | if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) { |
| 2037 | goto mkcert_error; |
| 2038 | } |
| 2039 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2040 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2041 | |
| 2042 | key_type = EVP_PKEY_base_id(capkey); |
| 2043 | |
| 2044 | if (key_type == EVP_PKEY_DSA) |
| 2045 | digest = EVP_sha1(); |
| 2046 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2047 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2048 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2049 | digest = EVP_sha256(); |
| 2050 | else { |
Ilya Shipitsin | ec36c91 | 2021-01-07 11:57:42 +0500 | [diff] [blame] | 2051 | #ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2052 | int nid; |
| 2053 | |
| 2054 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 2055 | goto mkcert_error; |
| 2056 | if (!(digest = EVP_get_digestbynid(nid))) |
| 2057 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 2058 | #else |
| 2059 | goto mkcert_error; |
| 2060 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2061 | } |
| 2062 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2063 | if (!(X509_sign(newcrt, capkey, digest))) |
| 2064 | goto mkcert_error; |
| 2065 | |
| 2066 | /* Create and set the new SSL_CTX */ |
| 2067 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 2068 | goto mkcert_error; |
| 2069 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 2070 | goto mkcert_error; |
| 2071 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 2072 | goto mkcert_error; |
| 2073 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 2074 | goto mkcert_error; |
| 2075 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2076 | /* Build chaining the CA cert and the rest of the chain, keep these order */ |
| 2077 | #if defined(SSL_CTX_add1_chain_cert) |
| 2078 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) { |
| 2079 | goto mkcert_error; |
| 2080 | } |
| 2081 | |
| 2082 | if (bind_conf->ca_sign_ckch->chain) { |
| 2083 | for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) { |
| 2084 | X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i); |
| 2085 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) { |
| 2086 | goto mkcert_error; |
| 2087 | } |
| 2088 | } |
| 2089 | } |
| 2090 | #endif |
| 2091 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2092 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2093 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2094 | #ifndef OPENSSL_NO_DH |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 2095 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 2096 | 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] | 2097 | #else |
| 2098 | ssl_sock_set_tmp_dh_from_pkey(ssl_ctx, pkey); |
| 2099 | #endif |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2100 | #endif |
Remi Tricot-Le Breton | c11e7e1 | 2022-02-08 17:45:56 +0100 | [diff] [blame] | 2101 | |
| 2102 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
| 2103 | #if defined(SSL_CTX_set1_curves_list) |
| 2104 | { |
| 2105 | const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE); |
| 2106 | if (!SSL_CTX_set1_curves_list(ssl_ctx, ecdhe)) |
| 2107 | goto end; |
| 2108 | } |
| 2109 | #endif |
| 2110 | #else |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2111 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 2112 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2113 | 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] | 2114 | EC_KEY *ecc; |
| 2115 | int nid; |
| 2116 | |
| 2117 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 2118 | goto end; |
| 2119 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 2120 | goto end; |
| 2121 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 2122 | EC_KEY_free(ecc); |
| 2123 | } |
Remi Tricot-Le Breton | c11e7e1 | 2022-02-08 17:45:56 +0100 | [diff] [blame] | 2124 | #endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */ |
| 2125 | #endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */ |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2126 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2127 | return ssl_ctx; |
| 2128 | |
| 2129 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2130 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2131 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2132 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 2133 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2134 | return NULL; |
| 2135 | } |
| 2136 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2137 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2138 | /* 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] | 2139 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2140 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2141 | 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] | 2142 | { |
| 2143 | struct lru64 *lru = NULL; |
| 2144 | |
| 2145 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2146 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2147 | 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] | 2148 | if (lru && lru->domain) { |
| 2149 | if (ssl) |
| 2150 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
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 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2153 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2154 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2155 | } |
| 2156 | return NULL; |
| 2157 | } |
| 2158 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2159 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2160 | * function is not thread-safe, it should only be used to check if a certificate |
| 2161 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2162 | * thread). It is kept for backward compatibility. */ |
| 2163 | SSL_CTX * |
| 2164 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2165 | { |
| 2166 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2167 | } |
| 2168 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2169 | /* Set a certificate int the LRU cache used to store generated |
| 2170 | * certificate. Return 0 on success, otherwise -1 */ |
| 2171 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2172 | 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] | 2173 | { |
| 2174 | struct lru64 *lru = NULL; |
| 2175 | |
| 2176 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2177 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2178 | 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] | 2179 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2180 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2181 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2182 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2183 | if (lru->domain && lru->data) |
| 2184 | lru->free((SSL_CTX *)lru->data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2185 | 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] | 2186 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2187 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2188 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2189 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2190 | } |
| 2191 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2192 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2193 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2194 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2195 | { |
| 2196 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2197 | } |
| 2198 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2199 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2200 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2201 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2202 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2203 | 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] | 2204 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2205 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2206 | SSL_CTX *ssl_ctx = NULL; |
| 2207 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2208 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2209 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2210 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2211 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2212 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2213 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2214 | if (lru && lru->domain) |
| 2215 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2216 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2217 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2218 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2219 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2220 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2221 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2222 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2223 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2224 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2225 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2226 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2227 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2228 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2229 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2230 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2231 | return 0; |
| 2232 | } |
| 2233 | static int |
| 2234 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2235 | { |
| 2236 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2237 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2238 | |
Willy Tarreau | f5bdb64 | 2019-07-17 11:29:32 +0200 | [diff] [blame] | 2239 | if (conn_get_dst(conn)) { |
Willy Tarreau | 085a151 | 2019-07-17 14:47:35 +0200 | [diff] [blame] | 2240 | 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] | 2241 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2242 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2243 | } |
| 2244 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2245 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2246 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2247 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2248 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2249 | |
| 2250 | 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] | 2251 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2252 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2253 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2254 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2255 | #endif |
| 2256 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2257 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2258 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2259 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2260 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2261 | 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] | 2262 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2263 | 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] | 2264 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2265 | #endif |
| 2266 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2267 | 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] | 2268 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2269 | 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] | 2270 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2271 | #endif |
| 2272 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2273 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2274 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2275 | /* Unusable in this context. */ |
| 2276 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2277 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2278 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2279 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2280 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2281 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2282 | |
| 2283 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2284 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2285 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2286 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2287 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2288 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2289 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2290 | } |
| 2291 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2292 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2293 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2294 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2295 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2296 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2297 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2298 | } |
| 2299 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2300 | 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] | 2301 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2302 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2303 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2304 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2305 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2306 | } |
| 2307 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2308 | 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] | 2309 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2310 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2311 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2312 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2313 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2314 | } |
| 2315 | 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] | 2316 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2317 | 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] | 2318 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2319 | #endif |
| 2320 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2321 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
William Lallemand | f22b032 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2322 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2323 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2324 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2325 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2326 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2327 | #endif |
| 2328 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2329 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2330 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 2331 | struct methodVersions methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2332 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2333 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2334 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2335 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2336 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2337 | {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] | 2338 | }; |
| 2339 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2340 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2341 | { |
| 2342 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2343 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2344 | SSL_set_SSL_CTX(ssl, ctx); |
| 2345 | } |
| 2346 | |
Ilya Shipitsin | 1fc44d4 | 2021-01-23 00:09:14 +0500 | [diff] [blame] | 2347 | #ifdef HAVE_SSL_CLIENT_HELLO_CB |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2348 | |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2349 | int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2350 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2351 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2352 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2353 | |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2354 | 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] | 2355 | return SSL_TLSEXT_ERR_OK; |
| 2356 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2357 | } |
| 2358 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2359 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2360 | int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2361 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2362 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2363 | #else |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2364 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2365 | { |
| 2366 | #endif |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2367 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 2368 | #ifdef USE_QUIC |
| 2369 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 2370 | #endif /* USE_QUIC */ |
| 2371 | struct bind_conf *s = NULL; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2372 | const uint8_t *extension_data; |
| 2373 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2374 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2375 | |
| 2376 | char *wildp = NULL; |
| 2377 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2378 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2379 | 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] | 2380 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2381 | int i; |
| 2382 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2383 | if (conn) |
| 2384 | s = __objt_listener(conn->target)->bind_conf; |
| 2385 | #ifdef USE_QUIC |
| 2386 | else if (qc) |
| 2387 | s = qc->li->bind_conf; |
| 2388 | #endif /* USE_QUIC */ |
Amaury Denoyelle | 7c564bf | 2022-01-24 11:04:05 +0100 | [diff] [blame] | 2389 | |
| 2390 | if (!s) { |
| 2391 | /* must never happen */ |
| 2392 | ABORT_NOW(); |
| 2393 | return 0; |
| 2394 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2395 | |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2396 | #ifdef USE_QUIC |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2397 | if (qc) { |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2398 | /* Look for the QUIC transport parameters. */ |
| 2399 | #ifdef OPENSSL_IS_BORINGSSL |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2400 | 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] | 2401 | &extension_data, &extension_len)) |
| 2402 | #else |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2403 | 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] | 2404 | &extension_data, &extension_len)) |
| 2405 | #endif |
Frédéric Lécaille | b5b5247 | 2021-11-22 15:55:16 +0100 | [diff] [blame] | 2406 | { |
| 2407 | /* This is not redundant. It we only return 0 without setting |
| 2408 | * <*al>, this has as side effect to generate another TLS alert |
| 2409 | * which would be set after calling quic_set_tls_alert(). |
| 2410 | */ |
| 2411 | *al = SSL_AD_MISSING_EXTENSION; |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2412 | quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION); |
Frédéric Lécaille | b5b5247 | 2021-11-22 15:55:16 +0100 | [diff] [blame] | 2413 | return 0; |
| 2414 | } |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2415 | |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2416 | if (!quic_transport_params_store(qc, 0, extension_data, |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2417 | extension_data + extension_len)) |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2418 | goto abort; |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2419 | |
| 2420 | qc->flags |= QUIC_FL_CONN_TX_TP_RECEIVED; |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2421 | } |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2422 | #endif /* USE_QUIC */ |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2423 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2424 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2425 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2426 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2427 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2428 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2429 | #else |
| 2430 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2431 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2432 | /* |
| 2433 | * The server_name extension was given too much extensibility when it |
| 2434 | * was written, so parsing the normal case is a bit complex. |
| 2435 | */ |
| 2436 | size_t len; |
| 2437 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2438 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2439 | /* Extract the length of the supplied list of names. */ |
| 2440 | len = (*extension_data++) << 8; |
| 2441 | len |= *extension_data++; |
| 2442 | if (len + 2 != extension_len) |
| 2443 | goto abort; |
| 2444 | /* |
| 2445 | * The list in practice only has a single element, so we only consider |
| 2446 | * the first one. |
| 2447 | */ |
| 2448 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2449 | goto abort; |
| 2450 | extension_len = len - 1; |
| 2451 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2452 | if (extension_len <= 2) |
| 2453 | goto abort; |
| 2454 | len = (*extension_data++) << 8; |
| 2455 | len |= *extension_data++; |
| 2456 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2457 | || memchr(extension_data, 0, len) != NULL) |
| 2458 | goto abort; |
| 2459 | servername = extension_data; |
| 2460 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2461 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2462 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2463 | 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] | 2464 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2465 | } |
| 2466 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2467 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2468 | if (!s->strict_sni) { |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2469 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2470 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2471 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2472 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2473 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2474 | goto abort; |
| 2475 | } |
| 2476 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2477 | /* extract/check clientHello information */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2478 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2479 | 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] | 2480 | #else |
| 2481 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2482 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2483 | uint8_t sign; |
| 2484 | size_t len; |
| 2485 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2486 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2487 | len = (*extension_data++) << 8; |
| 2488 | len |= *extension_data++; |
| 2489 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2490 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2491 | if (len % 2 != 0) |
| 2492 | goto abort; |
| 2493 | for (; len > 0; len -= 2) { |
| 2494 | extension_data++; /* hash */ |
| 2495 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2496 | switch (sign) { |
| 2497 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2498 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2499 | break; |
| 2500 | case TLSEXT_signature_ecdsa: |
| 2501 | has_ecdsa_sig = 1; |
| 2502 | break; |
| 2503 | default: |
| 2504 | continue; |
| 2505 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2506 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2507 | break; |
| 2508 | } |
| 2509 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2510 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2511 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2512 | } |
| 2513 | 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] | 2514 | const SSL_CIPHER *cipher; |
William Lallemand | 5c7595a | 2024-06-05 11:37:14 +0200 | [diff] [blame] | 2515 | STACK_OF(SSL_CIPHER) *ha_ciphers; /* haproxy side ciphers */ |
William Lallemand | 3f1e6f0 | 2023-10-24 23:58:02 +0200 | [diff] [blame] | 2516 | uint32_t cipher_id; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2517 | size_t len; |
| 2518 | const uint8_t *cipher_suites; |
William Lallemand | 5c7595a | 2024-06-05 11:37:14 +0200 | [diff] [blame] | 2519 | |
| 2520 | ha_ciphers = SSL_get_ciphers(ssl); |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2521 | has_ecdsa_sig = 0; |
William Lallemand | 5c7595a | 2024-06-05 11:37:14 +0200 | [diff] [blame] | 2522 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2523 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2524 | len = ctx->cipher_suites_len; |
| 2525 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2526 | #else |
| 2527 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2528 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2529 | if (len % 2 != 0) |
| 2530 | goto abort; |
| 2531 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2532 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2533 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2534 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2535 | #else |
| 2536 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2537 | #endif |
William Lallemand | 40ff02b | 2023-10-30 18:08:16 +0100 | [diff] [blame] | 2538 | if (!cipher) |
| 2539 | continue; |
| 2540 | |
William Lallemand | 5c7595a | 2024-06-05 11:37:14 +0200 | [diff] [blame] | 2541 | /* check if this cipher is available in haproxy configuration */ |
| 2542 | if (sk_SSL_CIPHER_find(ha_ciphers, cipher) == -1) |
| 2543 | continue; |
| 2544 | |
William Lallemand | 3f1e6f0 | 2023-10-24 23:58:02 +0200 | [diff] [blame] | 2545 | cipher_id = SSL_CIPHER_get_id(cipher); |
| 2546 | /* skip the SCSV "fake" signaling ciphersuites because they are NID_auth_any (RFC 7507) */ |
| 2547 | if (cipher_id == SSL3_CK_SCSV || cipher_id == SSL3_CK_FALLBACK_SCSV) |
| 2548 | continue; |
| 2549 | |
William Lallemand | 40ff02b | 2023-10-30 18:08:16 +0100 | [diff] [blame] | 2550 | if (SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa |
| 2551 | || SSL_CIPHER_get_auth_nid(cipher) == NID_auth_any) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2552 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2553 | break; |
| 2554 | } |
| 2555 | } |
| 2556 | } |
| 2557 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2558 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2559 | trash.area[i] = tolower(servername[i]); |
| 2560 | if (!wildp && (trash.area[i] == '.')) |
| 2561 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2562 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2563 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2564 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2565 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2566 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2567 | /* Look for an ECDSA, RSA and DSA certificate, first in the single |
| 2568 | * name and if not found in the wildcard */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2569 | for (i = 0; i < 2; i++) { |
| 2570 | if (i == 0) /* lookup in full qualified names */ |
| 2571 | node = ebst_lookup(&s->sni_ctx, trash.area); |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2572 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2573 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2574 | else |
| 2575 | break; |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2576 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2577 | for (n = node; n; n = ebmb_next_dup(n)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2578 | |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2579 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2580 | if (!container_of(n, struct sni_ctx, name)->neg) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2581 | struct sni_ctx *sni, *sni_tmp; |
| 2582 | int skip = 0; |
| 2583 | |
| 2584 | if (i == 1 && wildp) { /* wildcard */ |
| 2585 | /* If this is a wildcard, look for an exclusion on the same crt-list line */ |
| 2586 | sni = container_of(n, struct sni_ctx, name); |
| 2587 | 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] | 2588 | 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] | 2589 | skip = 1; |
| 2590 | break; |
| 2591 | } |
| 2592 | } |
| 2593 | if (skip) |
| 2594 | continue; |
| 2595 | } |
| 2596 | |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2597 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2598 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2599 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2600 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2601 | break; |
| 2602 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2603 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2604 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2605 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2606 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2607 | if (!node_anonymous) |
| 2608 | node_anonymous = n; |
| 2609 | break; |
| 2610 | } |
| 2611 | } |
| 2612 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2613 | } |
| 2614 | /* Once the certificates are found, select them depending on what is |
| 2615 | * supported in the client and by key_signature priority order: EDSA > |
| 2616 | * RSA > DSA */ |
William Lallemand | 5b1d1f6 | 2020-08-14 15:30:13 +0200 | [diff] [blame] | 2617 | if (has_ecdsa_sig && node_ecdsa) |
| 2618 | node = node_ecdsa; |
| 2619 | else if (has_rsa_sig && node_rsa) |
| 2620 | node = node_rsa; |
| 2621 | else if (node_anonymous) |
| 2622 | node = node_anonymous; |
| 2623 | else if (node_ecdsa) |
| 2624 | node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */ |
| 2625 | else |
| 2626 | node = node_rsa; /* no rsa signature case (far far away) */ |
| 2627 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2628 | if (node) { |
| 2629 | /* switch ctx */ |
| 2630 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2631 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 2632 | if (conf) { |
| 2633 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2634 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2635 | if (conf->early_data) |
| 2636 | allow_early = 1; |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2637 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2638 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
| 2639 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2640 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2641 | |
William Lallemand | 0201047 | 2019-10-18 11:02:19 +0200 | [diff] [blame] | 2642 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2643 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2644 | 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] | 2645 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2646 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2647 | } |
| 2648 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2649 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2650 | /* no certificate match, is the default_ctx */ |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2651 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2652 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2653 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2654 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2655 | } |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2656 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 2657 | /* We are about to raise an handshake error so the servername extension |
| 2658 | * callback will never be called and the SNI will never be stored in the |
| 2659 | * SSL context. In order for the ssl_fc_sni sample fetch to still work |
| 2660 | * in such a case, we store the SNI ourselves as an ex_data information |
| 2661 | * in the SSL context. |
| 2662 | */ |
| 2663 | { |
| 2664 | char *client_sni = pool_alloc(ssl_sock_client_sni_pool); |
| 2665 | if (client_sni) { |
| 2666 | strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name); |
| 2667 | client_sni[TLSEXT_MAXLEN_host_name] = '\0'; |
| 2668 | SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni); |
| 2669 | } |
| 2670 | } |
| 2671 | |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2672 | /* other cases fallback on abort, if strict-sni is set but no node was found */ |
| 2673 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2674 | abort: |
| 2675 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
Amaury Denoyelle | 9320dd5 | 2022-01-19 10:03:30 +0100 | [diff] [blame] | 2676 | if (conn) |
| 2677 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2678 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2679 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2680 | #else |
| 2681 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2682 | return 0; |
| 2683 | #endif |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2684 | |
| 2685 | allow_early: |
| 2686 | #ifdef OPENSSL_IS_BORINGSSL |
| 2687 | if (allow_early) |
| 2688 | SSL_set_early_data_enabled(ssl, 1); |
| 2689 | #else |
| 2690 | if (!allow_early) |
| 2691 | SSL_set_max_early_data(ssl, 0); |
| 2692 | #endif |
| 2693 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2694 | } |
| 2695 | |
William Lallemand | 002e206 | 2021-11-18 15:25:16 +0100 | [diff] [blame] | 2696 | #else /* ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2697 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2698 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2699 | * warning when no match is found, which implies the default (first) cert |
| 2700 | * will keep being used. |
| 2701 | */ |
William Lallemand | 844009d | 2022-09-02 15:27:32 +0200 | [diff] [blame] | 2702 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2703 | { |
| 2704 | const char *servername; |
| 2705 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2706 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2707 | struct bind_conf *s = priv; |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2708 | #ifdef USE_QUIC |
| 2709 | const uint8_t *extension_data; |
| 2710 | size_t extension_len; |
| 2711 | struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index); |
| 2712 | #endif /* USE_QUIC */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2713 | int i; |
| 2714 | (void)al; /* shut gcc stupid warning */ |
| 2715 | |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2716 | #ifdef USE_QUIC |
| 2717 | if (qc) { |
| 2718 | |
| 2719 | /* Look for the QUIC transport parameters. */ |
| 2720 | SSL_get_peer_quic_transport_params(ssl, &extension_data, &extension_len); |
| 2721 | if (extension_len == 0) { |
| 2722 | /* This is not redundant. It we only return 0 without setting |
| 2723 | * <*al>, this has as side effect to generate another TLS alert |
| 2724 | * which would be set after calling quic_set_tls_alert(). |
| 2725 | */ |
| 2726 | *al = SSL_AD_MISSING_EXTENSION; |
| 2727 | quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION); |
| 2728 | return SSL_TLSEXT_ERR_NOACK; |
| 2729 | } |
| 2730 | |
| 2731 | if (!quic_transport_params_store(qc, 0, extension_data, |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2732 | extension_data + extension_len)) |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2733 | return SSL_TLSEXT_ERR_NOACK; |
Frédéric Lécaille | af25a69 | 2023-02-01 17:56:57 +0100 | [diff] [blame] | 2734 | |
| 2735 | qc->flags |= QUIC_FL_CONN_TX_TP_RECEIVED; |
William Lallemand | 70a6e63 | 2022-09-07 11:21:34 +0200 | [diff] [blame] | 2736 | } |
| 2737 | #endif /* USE_QUIC */ |
| 2738 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2739 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2740 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2741 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2742 | 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] | 2743 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2744 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2745 | if (s->strict_sni) |
| 2746 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2747 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2748 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2749 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2750 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2751 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2752 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2753 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2754 | if (!servername[i]) |
| 2755 | break; |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2756 | trash.area[i] = tolower((unsigned char)servername[i]); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2757 | if (!wildp && (trash.area[i] == '.')) |
| 2758 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2759 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2760 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2761 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2762 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2763 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2764 | /* lookup in full qualified names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2765 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2766 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2767 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2768 | node = n; |
| 2769 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2770 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2771 | } |
| 2772 | if (!node && wildp) { |
| 2773 | /* lookup in wildcards names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2774 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2775 | /* lookup a not neg filter */ |
| 2776 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2777 | node = n; |
| 2778 | break; |
| 2779 | } |
| 2780 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2781 | } |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2782 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2783 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 2784 | 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] | 2785 | /* switch ctx done in ssl_sock_generate_certificate */ |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2786 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2787 | return SSL_TLSEXT_ERR_OK; |
| 2788 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2789 | #endif |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2790 | if (s->strict_sni) { |
| 2791 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2792 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2793 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2794 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2795 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2796 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2797 | } |
| 2798 | |
| 2799 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2800 | 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] | 2801 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2802 | return SSL_TLSEXT_ERR_OK; |
| 2803 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2804 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2805 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2806 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2807 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2808 | |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2809 | static inline HASSL_DH *ssl_new_dh_fromdata(BIGNUM *p, BIGNUM *g) |
| 2810 | { |
| 2811 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 2812 | OSSL_PARAM_BLD *tmpl = NULL; |
| 2813 | OSSL_PARAM *params = NULL; |
| 2814 | EVP_PKEY_CTX *ctx = NULL; |
| 2815 | EVP_PKEY *pkey = NULL; |
| 2816 | |
| 2817 | if ((tmpl = OSSL_PARAM_BLD_new()) == NULL |
| 2818 | || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_P, p) |
| 2819 | || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_G, g) |
| 2820 | || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) { |
| 2821 | goto end; |
| 2822 | } |
| 2823 | ctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL); |
| 2824 | if (ctx == NULL |
| 2825 | || !EVP_PKEY_fromdata_init(ctx) |
| 2826 | || !EVP_PKEY_fromdata(ctx, &pkey, EVP_PKEY_KEY_PARAMETERS, params)) { |
| 2827 | goto end; |
| 2828 | } |
| 2829 | |
| 2830 | end: |
| 2831 | EVP_PKEY_CTX_free(ctx); |
| 2832 | OSSL_PARAM_free(params); |
| 2833 | OSSL_PARAM_BLD_free(tmpl); |
Remi Tricot-Le Breton | a2c21db | 2022-11-03 15:16:47 +0100 | [diff] [blame] | 2834 | BN_free(p); |
| 2835 | BN_free(g); |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2836 | return pkey; |
| 2837 | #else |
| 2838 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2839 | HASSL_DH *dh = DH_new(); |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2840 | |
| 2841 | if (!dh) |
| 2842 | return NULL; |
| 2843 | |
| 2844 | DH_set0_pqg(dh, p, NULL, g); |
| 2845 | |
| 2846 | return dh; |
| 2847 | #endif |
| 2848 | } |
| 2849 | |
Remi Tricot-Le Breton | c69be7c | 2022-04-20 18:30:17 +0200 | [diff] [blame] | 2850 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2851 | static inline HASSL_DH *ssl_get_dh_by_nid(int nid) |
| 2852 | { |
| 2853 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 2854 | OSSL_PARAM params[2]; |
| 2855 | EVP_PKEY *pkey = NULL; |
| 2856 | EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL); |
| 2857 | const char *named_group = NULL; |
| 2858 | |
| 2859 | if (!pctx) |
| 2860 | goto end; |
| 2861 | |
| 2862 | named_group = OBJ_nid2ln(nid); |
| 2863 | |
| 2864 | if (!named_group) |
| 2865 | goto end; |
| 2866 | |
| 2867 | params[0] = OSSL_PARAM_construct_utf8_string("group", (char*)named_group, 0); |
| 2868 | params[1] = OSSL_PARAM_construct_end(); |
| 2869 | |
| 2870 | if (EVP_PKEY_keygen_init(pctx) && EVP_PKEY_CTX_set_params(pctx, params)) |
| 2871 | EVP_PKEY_generate(pctx, &pkey); |
| 2872 | |
| 2873 | end: |
| 2874 | EVP_PKEY_CTX_free(pctx); |
| 2875 | return pkey; |
| 2876 | #else |
| 2877 | |
| 2878 | HASSL_DH *dh = NULL; |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2879 | dh = DH_new_by_nid(nid); |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2880 | return dh; |
| 2881 | #endif |
| 2882 | } |
Remi Tricot-Le Breton | c69be7c | 2022-04-20 18:30:17 +0200 | [diff] [blame] | 2883 | #endif |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2884 | |
Remi Tricot-Le Breton | 7f6425a | 2022-02-11 12:04:52 +0100 | [diff] [blame] | 2885 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2886 | static HASSL_DH * ssl_get_dh_1024(void) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2887 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2888 | static unsigned char dh1024_p[]={ |
| 2889 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2890 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2891 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2892 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2893 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2894 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2895 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2896 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2897 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2898 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2899 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2900 | }; |
| 2901 | static unsigned char dh1024_g[]={ |
| 2902 | 0x02, |
| 2903 | }; |
| 2904 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2905 | BIGNUM *p; |
| 2906 | BIGNUM *g; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2907 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2908 | HASSL_DH *dh = NULL; |
| 2909 | |
| 2910 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2911 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
| 2912 | |
| 2913 | if (p && g) |
| 2914 | dh = ssl_new_dh_fromdata(p, g); |
| 2915 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2916 | return dh; |
| 2917 | } |
| 2918 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2919 | static HASSL_DH *ssl_get_dh_2048(void) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2920 | { |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2921 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2922 | static unsigned char dh2048_p[]={ |
| 2923 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2924 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2925 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2926 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2927 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2928 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2929 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2930 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2931 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2932 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2933 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2934 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2935 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2936 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2937 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2938 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2939 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2940 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2941 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2942 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2943 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2944 | 0xB7,0x1F,0x77,0xF3, |
| 2945 | }; |
| 2946 | static unsigned char dh2048_g[]={ |
| 2947 | 0x02, |
| 2948 | }; |
| 2949 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2950 | BIGNUM *p; |
| 2951 | BIGNUM *g; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2952 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2953 | HASSL_DH *dh = NULL; |
| 2954 | |
| 2955 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2956 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
| 2957 | |
| 2958 | if (p && g) |
| 2959 | dh = ssl_new_dh_fromdata(p, g); |
| 2960 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2961 | return dh; |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2962 | #else |
| 2963 | return ssl_get_dh_by_nid(NID_ffdhe2048); |
| 2964 | #endif |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2965 | } |
| 2966 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 2967 | static HASSL_DH *ssl_get_dh_4096(void) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2968 | { |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 2969 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2970 | static unsigned char dh4096_p[]={ |
| 2971 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2972 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2973 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2974 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2975 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2976 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2977 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2978 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2979 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2980 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2981 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2982 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2983 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2984 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2985 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2986 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2987 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2988 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2989 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2990 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2991 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2992 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2993 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2994 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2995 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2996 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2997 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2998 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2999 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 3000 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 3001 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 3002 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 3003 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 3004 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 3005 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 3006 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 3007 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 3008 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 3009 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 3010 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 3011 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 3012 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 3013 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3014 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3015 | static unsigned char dh4096_g[]={ |
| 3016 | 0x02, |
| 3017 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3018 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3019 | BIGNUM *p; |
| 3020 | BIGNUM *g; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3021 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3022 | HASSL_DH *dh = NULL; |
| 3023 | |
| 3024 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 3025 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
| 3026 | |
| 3027 | if (p && g) |
| 3028 | dh = ssl_new_dh_fromdata(p, g); |
| 3029 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3030 | return dh; |
Remi Tricot-Le Breton | 528b3fd | 2022-04-12 11:31:54 +0200 | [diff] [blame] | 3031 | #else |
| 3032 | return ssl_get_dh_by_nid(NID_ffdhe4096); |
| 3033 | #endif |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3034 | } |
| 3035 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3036 | static HASSL_DH *ssl_get_tmp_dh(EVP_PKEY *pkey) |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3037 | { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3038 | HASSL_DH *dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3039 | int type; |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3040 | int keylen = 0; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3041 | |
| 3042 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3043 | |
Ilya Shipitsin | 52f2ff5 | 2022-07-23 23:55:19 +0500 | [diff] [blame] | 3044 | if (type == EVP_PKEY_EC) { |
| 3045 | keylen = global_ssl.default_dh_param; |
| 3046 | } |
| 3047 | |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3048 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 3049 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 3050 | */ |
| 3051 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 3052 | keylen = EVP_PKEY_bits(pkey); |
| 3053 | } |
| 3054 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 3055 | if (keylen > global_ssl.default_dh_param) { |
| 3056 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3057 | } |
| 3058 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3059 | if (keylen >= 4096) { |
Remi Tricot-Le Breton | bed7263 | 2022-02-11 12:04:53 +0100 | [diff] [blame] | 3060 | if (!local_dh_4096) |
| 3061 | local_dh_4096 = ssl_get_dh_4096(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3062 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3063 | } |
| 3064 | else if (keylen >= 2048) { |
Remi Tricot-Le Breton | bed7263 | 2022-02-11 12:04:53 +0100 | [diff] [blame] | 3065 | if (!local_dh_2048) |
| 3066 | local_dh_2048 = ssl_get_dh_2048(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3067 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3068 | } |
| 3069 | else { |
Remi Tricot-Le Breton | bed7263 | 2022-02-11 12:04:53 +0100 | [diff] [blame] | 3070 | if (!local_dh_1024) |
| 3071 | local_dh_1024 = ssl_get_dh_1024(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3072 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3073 | } |
| 3074 | |
| 3075 | return dh; |
| 3076 | } |
| 3077 | |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3078 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3079 | /* Returns Diffie-Hellman parameters matching the private key length |
| 3080 | but not exceeding global_ssl.default_dh_param */ |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3081 | 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] | 3082 | { |
| 3083 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
| 3084 | |
| 3085 | return ssl_get_tmp_dh(pkey); |
| 3086 | } |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3087 | #endif |
Remi Tricot-Le Breton | 292a88c | 2022-02-11 12:04:49 +0100 | [diff] [blame] | 3088 | |
Remi Tricot-Le Breton | 846eda9 | 2022-02-11 12:04:50 +0100 | [diff] [blame] | 3089 | static int ssl_sock_set_tmp_dh(SSL_CTX *ctx, HASSL_DH *dh) |
| 3090 | { |
| 3091 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
| 3092 | return SSL_CTX_set_tmp_dh(ctx, dh); |
| 3093 | #else |
| 3094 | int retval = 0; |
| 3095 | HASSL_DH_up_ref(dh); |
| 3096 | |
| 3097 | retval = SSL_CTX_set0_tmp_dh_pkey(ctx, dh); |
| 3098 | |
| 3099 | if (!retval) |
| 3100 | HASSL_DH_free(dh); |
| 3101 | |
| 3102 | return retval; |
| 3103 | #endif |
| 3104 | } |
| 3105 | |
Remi Tricot-Le Breton | 5f17930 | 2022-02-11 12:04:51 +0100 | [diff] [blame] | 3106 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 3107 | static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey) |
| 3108 | { |
| 3109 | HASSL_DH *dh = NULL; |
| 3110 | if (pkey && (dh = ssl_get_tmp_dh(pkey))) { |
| 3111 | HASSL_DH_up_ref(dh); |
| 3112 | if (!SSL_CTX_set0_tmp_dh_pkey(ctx, dh)) |
| 3113 | HASSL_DH_free(dh); |
| 3114 | } |
Remi Tricot-Le Breton | 5f17930 | 2022-02-11 12:04:51 +0100 | [diff] [blame] | 3115 | } |
| 3116 | #endif |
| 3117 | |
Remi Tricot-Le Breton | 09ebb33 | 2022-02-11 12:04:48 +0100 | [diff] [blame] | 3118 | HASSL_DH *ssl_sock_get_dh_from_bio(BIO *bio) |
| 3119 | { |
| 3120 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL) |
| 3121 | HASSL_DH *dh = NULL; |
| 3122 | OSSL_DECODER_CTX *dctx = NULL; |
| 3123 | const char *format = "PEM"; |
| 3124 | const char *keytype = "DH"; |
| 3125 | |
| 3126 | dctx = OSSL_DECODER_CTX_new_for_pkey(&dh, format, NULL, keytype, |
| 3127 | OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS, |
| 3128 | NULL, NULL); |
| 3129 | |
| 3130 | if (dctx == NULL || OSSL_DECODER_CTX_get_num_decoders(dctx) == 0) |
| 3131 | goto end; |
| 3132 | |
| 3133 | /* The DH parameters might not be the first section found in the PEM |
| 3134 | * file so we need to iterate over all of them until we find the right |
| 3135 | * one. |
| 3136 | */ |
| 3137 | while (!BIO_eof(bio) && !dh) |
| 3138 | OSSL_DECODER_from_bio(dctx, bio); |
| 3139 | |
| 3140 | end: |
| 3141 | OSSL_DECODER_CTX_free(dctx); |
| 3142 | return dh; |
| 3143 | #else |
| 3144 | HASSL_DH *dh = NULL; |
| 3145 | |
| 3146 | dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL); |
| 3147 | |
| 3148 | return dh; |
| 3149 | #endif |
| 3150 | } |
| 3151 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3152 | static HASSL_DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3153 | { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3154 | HASSL_DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3155 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3156 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3157 | if (in == NULL) |
| 3158 | goto end; |
| 3159 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3160 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3161 | goto end; |
| 3162 | |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3163 | dh = ssl_sock_get_dh_from_bio(in); |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3164 | |
| 3165 | end: |
| 3166 | if (in) |
| 3167 | BIO_free(in); |
| 3168 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 3169 | ERR_clear_error(); |
| 3170 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3171 | return dh; |
| 3172 | } |
| 3173 | |
| 3174 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 3175 | { |
| 3176 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 3177 | |
| 3178 | if (global_dh) { |
| 3179 | return 0; |
| 3180 | } |
| 3181 | |
| 3182 | return -1; |
| 3183 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3184 | #endif |
| 3185 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3186 | /* 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] | 3187 | 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] | 3188 | struct bind_conf *s, struct ssl_bind_conf *conf, |
| 3189 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3190 | { |
| 3191 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3192 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3193 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3194 | if (*name == '!') { |
| 3195 | neg = 1; |
| 3196 | name++; |
| 3197 | } |
| 3198 | if (*name == '*') { |
| 3199 | wild = 1; |
| 3200 | name++; |
| 3201 | } |
| 3202 | /* !* filter is a nop */ |
| 3203 | if (neg && wild) |
| 3204 | return order; |
| 3205 | if (*name) { |
| 3206 | int j, len; |
| 3207 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3208 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 3209 | trash.area[j] = tolower((unsigned char)name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3210 | if (j >= trash.size) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3211 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3212 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3213 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3214 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 3215 | if (!sc) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3216 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3217 | memcpy(sc->name.key, trash.area, len + 1); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3218 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3219 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3220 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3221 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3222 | sc->order = order++; |
| 3223 | sc->neg = neg; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3224 | sc->wild = wild; |
| 3225 | sc->name.node.leaf_p = NULL; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3226 | sc->ckch_inst = ckch_inst; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3227 | LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3228 | } |
| 3229 | return order; |
| 3230 | } |
| 3231 | |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3232 | /* |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3233 | * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree |
| 3234 | * This function can't return an error. |
| 3235 | * |
| 3236 | * *CAUTION*: The caller must lock the sni tree if called in multithreading mode |
| 3237 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3238 | 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] | 3239 | { |
| 3240 | |
| 3241 | struct sni_ctx *sc0, *sc0b, *sc1; |
| 3242 | struct ebmb_node *node; |
| 3243 | |
| 3244 | list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) { |
| 3245 | |
| 3246 | /* ignore if sc0 was already inserted in a tree */ |
| 3247 | if (sc0->name.node.leaf_p) |
| 3248 | continue; |
| 3249 | |
| 3250 | /* Check for duplicates. */ |
| 3251 | if (sc0->wild) |
| 3252 | node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key); |
| 3253 | else |
| 3254 | node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key); |
| 3255 | |
| 3256 | for (; node; node = ebmb_next_dup(node)) { |
| 3257 | sc1 = ebmb_entry(node, struct sni_ctx, name); |
| 3258 | if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf |
| 3259 | && sc1->neg == sc0->neg && sc1->wild == sc0->wild) { |
| 3260 | /* it's a duplicate, we should remove and free it */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3261 | LIST_DELETE(&sc0->by_ckch_inst); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3262 | SSL_CTX_free(sc0->ctx); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3263 | ha_free(&sc0); |
William Lallemand | e15029b | 2019-10-14 10:46:58 +0200 | [diff] [blame] | 3264 | break; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3265 | } |
| 3266 | } |
| 3267 | |
| 3268 | /* if duplicate, ignore the insertion */ |
| 3269 | if (!sc0) |
| 3270 | continue; |
| 3271 | |
| 3272 | if (sc0->wild) |
| 3273 | ebst_insert(&bind_conf->sni_w_ctx, &sc0->name); |
| 3274 | else |
| 3275 | ebst_insert(&bind_conf->sni_ctx, &sc0->name); |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3276 | } |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3277 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3278 | /* replace the default_ctx if required with the instance's ctx. */ |
| 3279 | if (ckch_inst->is_default) { |
| 3280 | SSL_CTX_free(bind_conf->default_ctx); |
| 3281 | SSL_CTX_up_ref(ckch_inst->ctx); |
| 3282 | bind_conf->default_ctx = ckch_inst->ctx; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3283 | bind_conf->default_inst = ckch_inst; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3284 | } |
| 3285 | } |
| 3286 | |
| 3287 | /* |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3288 | * tree used to store the ckchs ordered by filename/bundle name |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3289 | */ |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3290 | struct eb_root ckchs_tree = EB_ROOT_UNIQUE; |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3291 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3292 | /* tree of crtlist (crt-list/directory) */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3293 | struct eb_root crtlists_tree = EB_ROOT_UNIQUE; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3294 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3295 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 3296 | * If there is no DH parameter available in the ckchs, the global |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3297 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 3298 | * DH parameter available in ckchs nor in global, the default |
| 3299 | * DH parameters are applied on the SSL_CTX. |
| 3300 | * Returns a bitfield containing the flags: |
| 3301 | * ERR_FATAL in any fatal error case |
| 3302 | * ERR_ALERT if a reason of the error is availabine in err |
| 3303 | * ERR_WARN if a warning is available into err |
| 3304 | * The value 0 means there is no error nor warning and |
| 3305 | * the operation succeed. |
| 3306 | */ |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3307 | #ifndef OPENSSL_NO_DH |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3308 | 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] | 3309 | const char *path, char **err) |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3310 | { |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3311 | int ret = 0; |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3312 | HASSL_DH *dh = NULL; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3313 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3314 | if (data && data->dh) { |
| 3315 | dh = data->dh; |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3316 | if (!ssl_sock_set_tmp_dh(ctx, dh)) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3317 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 3318 | err && *err ? *err : "", path); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3319 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3320 | err && *err ? *err : ""); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3321 | ret |= ERR_WARN; |
| 3322 | goto end; |
| 3323 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3324 | |
| 3325 | if (ssl_dh_ptr_index >= 0) { |
| 3326 | /* store a pointer to the DH params to avoid complaining about |
| 3327 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 3328 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 3329 | } |
| 3330 | } |
| 3331 | else if (global_dh) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 3332 | if (!ssl_sock_set_tmp_dh(ctx, global_dh)) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3333 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 3334 | err && *err ? *err : "", path); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3335 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3336 | err && *err ? *err : ""); |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3337 | ret |= ERR_WARN; |
| 3338 | goto end; |
| 3339 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3340 | } |
| 3341 | else { |
| 3342 | /* Clear openssl global errors stack */ |
| 3343 | ERR_clear_error(); |
| 3344 | |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3345 | /* We do not want DHE ciphers to be added to the cipher list |
| 3346 | * unless there is an explicit global dh option in the conf. |
| 3347 | */ |
| 3348 | if (global_ssl.default_dh_param) { |
| 3349 | if (global_ssl.default_dh_param <= 1024) { |
| 3350 | /* we are limited to DH parameter of 1024 bits anyway */ |
| 3351 | if (local_dh_1024 == NULL) |
| 3352 | local_dh_1024 = ssl_get_dh_1024(); |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3353 | |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3354 | if (local_dh_1024 == NULL) { |
| 3355 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3356 | err && *err ? *err : "", path); |
| 3357 | ret |= ERR_ALERT | ERR_FATAL; |
| 3358 | goto end; |
| 3359 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3360 | |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3361 | if (!ssl_sock_set_tmp_dh(ctx, local_dh_1024)) { |
| 3362 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3363 | err && *err ? *err : "", path); |
| 3364 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3365 | err && *err ? *err : ""); |
| 3366 | ret |= ERR_WARN; |
| 3367 | goto end; |
| 3368 | } |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3369 | } |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3370 | else { |
Remi Tricot-Le Breton | 88c5695 | 2022-02-11 12:04:56 +0100 | [diff] [blame] | 3371 | #if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL) |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3372 | 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] | 3373 | #else |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3374 | 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] | 3375 | #endif |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 3376 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3377 | } |
William Lallemand | 8d0f893 | 2019-10-17 18:03:58 +0200 | [diff] [blame] | 3378 | } |
| 3379 | |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3380 | end: |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3381 | ERR_clear_error(); |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3382 | return ret; |
| 3383 | } |
Emmanuel Hocdet | 54227d8 | 2019-07-30 17:04:01 +0200 | [diff] [blame] | 3384 | #endif |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3385 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3386 | |
| 3387 | /* Load a certificate chain into an SSL context. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3388 | * Returns a bitfield containing the flags: |
| 3389 | * ERR_FATAL in any fatal error case |
| 3390 | * ERR_ALERT if the reason of the error is available in err |
| 3391 | * ERR_WARN if a warning is available into err |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3392 | * The caller is responsible of freeing the newly built or newly refcounted |
| 3393 | * find_chain element. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3394 | * The value 0 means there is no error nor warning and |
| 3395 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3396 | */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3397 | 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] | 3398 | SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3399 | { |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3400 | int errcode = 0; |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3401 | int ret; |
| 3402 | |
| 3403 | ERR_clear_error(); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3404 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3405 | if (find_chain == NULL) { |
| 3406 | errcode |= ERR_FATAL; |
| 3407 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3408 | } |
| 3409 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3410 | if (!SSL_CTX_use_certificate(ctx, data->cert)) { |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3411 | ret = ERR_get_error(); |
| 3412 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s': %s.\n", |
| 3413 | err && *err ? *err : "", path, ERR_reason_error_string(ret)); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3414 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3415 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3416 | } |
| 3417 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3418 | if (data->chain) { |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3419 | *find_chain = X509_chain_up_ref(data->chain); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3420 | } else { |
| 3421 | /* Find Certificate Chain in global */ |
| 3422 | struct issuer_chain *issuer; |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3423 | issuer = ssl_get0_issuer_chain(data->cert); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3424 | if (issuer) |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3425 | *find_chain = X509_chain_up_ref(issuer->chain); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3426 | } |
William Lallemand | 8588857 | 2020-02-27 14:48:35 +0100 | [diff] [blame] | 3427 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3428 | if (!*find_chain) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3429 | /* always put a null chain stack in the SSL_CTX so it does not |
| 3430 | * try to build the chain from the verify store */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3431 | *find_chain = sk_X509_new_null(); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3432 | } |
| 3433 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3434 | /* 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] | 3435 | #ifdef SSL_CTX_set1_chain |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3436 | if (!SSL_CTX_set1_chain(ctx, *find_chain)) { |
William Lallemand | 45fed2c | 2022-11-15 16:56:03 +0100 | [diff] [blame] | 3437 | ret = ERR_get_error(); |
William Lallemand | a21ca74 | 2023-04-17 14:32:25 +0200 | [diff] [blame] | 3438 | 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] | 3439 | err && *err ? *err : "", path, ERR_reason_error_string(ret)); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3440 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3441 | goto end; |
| 3442 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3443 | #else |
| 3444 | { /* legacy compat (< openssl 1.0.2) */ |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3445 | X509 *ca; |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3446 | while ((ca = sk_X509_shift(*find_chain))) |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3447 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3448 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3449 | err && *err ? *err : "", path); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3450 | X509_free(ca); |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3451 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3452 | goto end; |
| 3453 | } |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3454 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3455 | #endif |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3456 | |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3457 | #ifdef SSL_CTX_build_cert_chain |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3458 | /* remove the Root CA from the SSL_CTX if the option is activated */ |
| 3459 | if (global_ssl.skip_self_issued_ca) { |
| 3460 | if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) { |
| 3461 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3462 | err && *err ? *err : "", path); |
| 3463 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3464 | goto end; |
| 3465 | } |
| 3466 | } |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3467 | #endif |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3468 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3469 | end: |
| 3470 | return errcode; |
| 3471 | } |
| 3472 | |
| 3473 | |
| 3474 | /* Loads the info in ckch into ctx |
| 3475 | * Returns a bitfield containing the flags: |
| 3476 | * ERR_FATAL in any fatal error case |
| 3477 | * ERR_ALERT if the reason of the error is available in err |
| 3478 | * ERR_WARN if a warning is available into err |
| 3479 | * The value 0 means there is no error nor warning and |
| 3480 | * the operation succeed. |
| 3481 | */ |
Remi Tricot-Le Breton | cc34667 | 2022-12-20 11:11:08 +0100 | [diff] [blame] | 3482 | 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] | 3483 | { |
| 3484 | int errcode = 0; |
| 3485 | STACK_OF(X509) *find_chain = NULL; |
| 3486 | |
William Lallemand | 5de4951 | 2022-10-27 14:41:07 +0200 | [diff] [blame] | 3487 | ERR_clear_error(); |
| 3488 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3489 | if (SSL_CTX_use_PrivateKey(ctx, data->key) <= 0) { |
William Lallemand | 5de4951 | 2022-10-27 14:41:07 +0200 | [diff] [blame] | 3490 | int ret; |
| 3491 | |
| 3492 | ret = ERR_get_error(); |
| 3493 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s': %s.\n", |
| 3494 | err && *err ? *err : "", path, ERR_reason_error_string(ret)); |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3495 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3496 | return errcode; |
| 3497 | } |
| 3498 | |
| 3499 | /* Load certificate chain */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3500 | 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] | 3501 | if (errcode & ERR_CODE) |
| 3502 | goto end; |
| 3503 | |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3504 | #ifndef OPENSSL_NO_DH |
| 3505 | /* store a NULL pointer to indicate we have not yet loaded |
| 3506 | a custom DH param file */ |
| 3507 | if (ssl_dh_ptr_index >= 0) { |
| 3508 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3509 | } |
| 3510 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3511 | errcode |= ssl_sock_load_dh_params(ctx, data, path, err); |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3512 | if (errcode & ERR_CODE) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3513 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3514 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3515 | goto end; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3516 | } |
| 3517 | #endif |
| 3518 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 3519 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3520 | if (sctl_ex_index >= 0 && data->sctl) { |
| 3521 | if (ssl_sock_load_sctl(ctx, data->sctl) < 0) { |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3522 | 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] | 3523 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3524 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3525 | goto end; |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3526 | } |
| 3527 | } |
| 3528 | #endif |
| 3529 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 3530 | #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] | 3531 | /* Load OCSP Info into context |
| 3532 | * If OCSP update mode is set to 'on', an entry will be created in the |
| 3533 | * 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] | 3534 | * frontend's conf disables ocsp update explicitly. |
Remi Tricot-Le Breton | b55be8c | 2022-12-20 11:11:12 +0100 | [diff] [blame] | 3535 | */ |
Remi Tricot-Le Breton | 0c96ee4 | 2023-03-01 16:11:50 +0100 | [diff] [blame] | 3536 | 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] | 3537 | if (data->ocsp_response) |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3538 | 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] | 3539 | err && *err ? *err : "", path); |
| 3540 | else |
Remi Tricot-Le Breton | 5e7e42d | 2024-02-01 11:58:14 +0100 | [diff] [blame] | 3541 | 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] | 3542 | err && *err ? *err : "", path); |
| 3543 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3544 | goto end; |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3545 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3546 | #endif |
| 3547 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3548 | end: |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3549 | sk_X509_pop_free(find_chain, X509_free); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3550 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3551 | } |
| 3552 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3553 | |
| 3554 | /* Loads the info of a ckch built out of a backend certificate into an SSL ctx |
| 3555 | * Returns a bitfield containing the flags: |
| 3556 | * ERR_FATAL in any fatal error case |
| 3557 | * ERR_ALERT if the reason of the error is available in err |
| 3558 | * ERR_WARN if a warning is available into err |
| 3559 | * The value 0 means there is no error nor warning and |
| 3560 | * the operation succeed. |
| 3561 | */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3562 | 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] | 3563 | SSL_CTX *ctx, char **err) |
| 3564 | { |
| 3565 | int errcode = 0; |
| 3566 | STACK_OF(X509) *find_chain = NULL; |
| 3567 | |
| 3568 | /* Load the private key */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3569 | if (SSL_CTX_use_PrivateKey(ctx, data->key) <= 0) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3570 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3571 | err && *err ? *err : "", path); |
| 3572 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3573 | } |
| 3574 | |
| 3575 | /* Load certificate chain */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3576 | 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] | 3577 | if (errcode & ERR_CODE) |
| 3578 | goto end; |
| 3579 | |
| 3580 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3581 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3582 | err && *err ? *err : "", path); |
| 3583 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3584 | } |
| 3585 | |
| 3586 | end: |
Remi Tricot-Le Breton | 4cf0d3f | 2022-12-15 15:44:37 +0100 | [diff] [blame] | 3587 | sk_X509_pop_free(find_chain, X509_free); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3588 | return errcode; |
| 3589 | } |
| 3590 | |
| 3591 | |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3592 | /* |
| 3593 | * This function allocate a ckch_inst and create its snis |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3594 | * |
| 3595 | * Returns a bitfield containing the flags: |
| 3596 | * ERR_FATAL in any fatal error case |
| 3597 | * ERR_ALERT if the reason of the error is available in err |
| 3598 | * ERR_WARN if a warning is available into err |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3599 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3600 | 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] | 3601 | 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] | 3602 | { |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3603 | SSL_CTX *ctx; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3604 | int i; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3605 | int order = 0; |
| 3606 | X509_NAME *xname; |
| 3607 | char *str; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3608 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3609 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3610 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3611 | STACK_OF(GENERAL_NAME) *names; |
| 3612 | #endif |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3613 | struct ckch_data *data; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3614 | struct ckch_inst *ckch_inst = NULL; |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3615 | int errcode = 0; |
| 3616 | |
| 3617 | *ckchi = NULL; |
William Lallemand | a59191b | 2019-05-15 16:08:56 +0200 | [diff] [blame] | 3618 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3619 | if (!ckchs || !ckchs->data) |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3620 | return ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3621 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3622 | data = ckchs->data; |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3623 | |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3624 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 3625 | if (!ctx) { |
| 3626 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3627 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3628 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3629 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3630 | } |
| 3631 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3632 | errcode |= ssl_sock_put_ckch_into_ctx(path, data, ctx, err); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3633 | if (errcode & ERR_CODE) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3634 | goto error; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3635 | |
| 3636 | ckch_inst = ckch_inst_new(); |
| 3637 | if (!ckch_inst) { |
| 3638 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3639 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3640 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3641 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3642 | } |
| 3643 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3644 | pkey = X509_get_pubkey(data->cert); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3645 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3646 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3647 | switch(EVP_PKEY_base_id(pkey)) { |
| 3648 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3649 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3650 | break; |
| 3651 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3652 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3653 | break; |
| 3654 | case EVP_PKEY_DSA: |
| 3655 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3656 | break; |
| 3657 | } |
| 3658 | EVP_PKEY_free(pkey); |
| 3659 | } |
| 3660 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3661 | if (fcount) { |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3662 | while (fcount--) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3663 | 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] | 3664 | if (order < 0) { |
| 3665 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3666 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3667 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3668 | } |
| 3669 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3670 | } |
| 3671 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3672 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3673 | 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] | 3674 | if (names) { |
| 3675 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3676 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3677 | if (name->type == GEN_DNS) { |
| 3678 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3679 | 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] | 3680 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3681 | if (order < 0) { |
| 3682 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3683 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3684 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3685 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3686 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3687 | } |
| 3688 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3689 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3690 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3691 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3692 | xname = X509_get_subject_name(data->cert); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3693 | i = -1; |
| 3694 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3695 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3696 | ASN1_STRING *value; |
| 3697 | |
| 3698 | value = X509_NAME_ENTRY_get_data(entry); |
| 3699 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3700 | 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] | 3701 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3702 | if (order < 0) { |
| 3703 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3704 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3705 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3706 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3707 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3708 | } |
| 3709 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3710 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3711 | * the tree, so it will be discovered and cleaned in time. |
| 3712 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3713 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3714 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3715 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3716 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3717 | err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3718 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3719 | goto error; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3720 | } |
| 3721 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3722 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3723 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3724 | bind_conf->default_ssl_conf = ssl_conf; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3725 | ckch_inst->is_default = 1; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3726 | SSL_CTX_up_ref(ctx); |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3727 | bind_conf->default_inst = ckch_inst; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3728 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3729 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3730 | /* Always keep a reference to the newly constructed SSL_CTX in the |
| 3731 | * instance. This way if the instance has no SNIs, the SSL_CTX will |
| 3732 | * still be linked. */ |
| 3733 | SSL_CTX_up_ref(ctx); |
| 3734 | ckch_inst->ctx = ctx; |
| 3735 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3736 | /* everything succeed, the ckch instance can be used */ |
| 3737 | ckch_inst->bind_conf = bind_conf; |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 3738 | ckch_inst->ssl_conf = ssl_conf; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3739 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3740 | |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3741 | SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */ |
| 3742 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3743 | *ckchi = ckch_inst; |
| 3744 | return errcode; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3745 | |
| 3746 | error: |
| 3747 | /* free the allocated sni_ctxs */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3748 | if (ckch_inst) { |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3749 | if (ckch_inst->is_default) |
| 3750 | SSL_CTX_free(ctx); |
| 3751 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3752 | ckch_inst_free(ckch_inst); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3753 | ckch_inst = NULL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3754 | } |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3755 | SSL_CTX_free(ctx); |
| 3756 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3757 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3758 | } |
| 3759 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3760 | |
| 3761 | /* |
| 3762 | * This function allocate a ckch_inst that will be used on the backend side |
| 3763 | * (server line) |
| 3764 | * |
| 3765 | * Returns a bitfield containing the flags: |
| 3766 | * ERR_FATAL in any fatal error case |
| 3767 | * ERR_ALERT if the reason of the error is available in err |
| 3768 | * ERR_WARN if a warning is available into err |
| 3769 | */ |
| 3770 | 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] | 3771 | struct ckch_inst **ckchi, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3772 | { |
| 3773 | SSL_CTX *ctx; |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3774 | struct ckch_data *data; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3775 | struct ckch_inst *ckch_inst = NULL; |
| 3776 | int errcode = 0; |
| 3777 | |
| 3778 | *ckchi = NULL; |
| 3779 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3780 | if (!ckchs || !ckchs->data) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3781 | return ERR_FATAL; |
| 3782 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3783 | data = ckchs->data; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3784 | |
| 3785 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3786 | if (!ctx) { |
| 3787 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3788 | err && *err ? *err : "", path); |
| 3789 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3790 | goto error; |
| 3791 | } |
| 3792 | |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 3793 | 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] | 3794 | if (errcode & ERR_CODE) |
| 3795 | goto error; |
| 3796 | |
| 3797 | ckch_inst = ckch_inst_new(); |
| 3798 | if (!ckch_inst) { |
| 3799 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3800 | err && *err ? *err : "", path); |
| 3801 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3802 | goto error; |
| 3803 | } |
| 3804 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3805 | /* everything succeed, the ckch instance can be used */ |
| 3806 | ckch_inst->bind_conf = NULL; |
| 3807 | ckch_inst->ssl_conf = NULL; |
| 3808 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3809 | ckch_inst->ctx = ctx; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3810 | ckch_inst->is_server_instance = 1; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3811 | |
| 3812 | *ckchi = ckch_inst; |
| 3813 | return errcode; |
| 3814 | |
| 3815 | error: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3816 | SSL_CTX_free(ctx); |
| 3817 | |
| 3818 | return errcode; |
| 3819 | } |
| 3820 | |
Willy Tarreau | 8c5414a | 2019-10-16 17:06:25 +0200 | [diff] [blame] | 3821 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3822 | static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs, |
| 3823 | struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3824 | char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3825 | { |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3826 | int errcode = 0; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3827 | |
| 3828 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | e7eb1fe | 2020-09-16 16:17:51 +0200 | [diff] [blame] | 3829 | 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] | 3830 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3831 | if (errcode & ERR_CODE) |
| 3832 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3833 | |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3834 | ssl_sock_load_cert_sni(*ckch_inst, bind_conf); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3835 | |
| 3836 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3837 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3838 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3839 | } |
| 3840 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3841 | /* This function generates a <struct ckch_inst *> for a <struct server *>, and |
| 3842 | * fill the SSL_CTX of the server. |
| 3843 | * |
| 3844 | * 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] | 3845 | 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] | 3846 | struct server *server, struct ckch_inst **ckch_inst, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3847 | { |
| 3848 | int errcode = 0; |
| 3849 | |
| 3850 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3851 | 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] | 3852 | |
| 3853 | if (errcode & ERR_CODE) |
| 3854 | return errcode; |
| 3855 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3856 | (*ckch_inst)->server = server; |
| 3857 | /* Keep the reference to the SSL_CTX in the server. */ |
| 3858 | SSL_CTX_up_ref((*ckch_inst)->ctx); |
| 3859 | server->ssl_ctx.ctx = (*ckch_inst)->ctx; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3860 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3861 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3862 | return errcode; |
| 3863 | } |
| 3864 | |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3865 | |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3866 | |
| 3867 | |
| 3868 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3869 | * done once. Zero is returned if the operation fails. No error is returned |
| 3870 | * if the random is said as not implemented, because we expect that openssl |
| 3871 | * will use another method once needed. |
| 3872 | */ |
Amaury Denoyelle | c593bcd | 2021-05-19 15:35:29 +0200 | [diff] [blame] | 3873 | int ssl_initialize_random(void) |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3874 | { |
| 3875 | unsigned char random; |
| 3876 | static int random_initialized = 0; |
| 3877 | |
| 3878 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3879 | random_initialized = 1; |
| 3880 | |
| 3881 | return random_initialized; |
| 3882 | } |
| 3883 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3884 | /* Load a crt-list file, this is done in 2 parts: |
| 3885 | * - store the content of the file in a crtlist structure with crtlist_entry structures |
| 3886 | * - generate the instances by iterating on entries in the crtlist struct |
| 3887 | * |
| 3888 | * Nothing is locked there, this function is used in the configuration parser. |
| 3889 | * |
| 3890 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3891 | */ |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3892 | 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] | 3893 | { |
| 3894 | struct crtlist *crtlist = NULL; |
| 3895 | struct ebmb_node *eb; |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3896 | struct crtlist_entry *entry = NULL; |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3897 | struct bind_conf_list *bind_conf_node = NULL; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3898 | int cfgerr = 0; |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3899 | char *end; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3900 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3901 | bind_conf_node = malloc(sizeof(*bind_conf_node)); |
| 3902 | if (!bind_conf_node) { |
| 3903 | memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : ""); |
| 3904 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3905 | goto error; |
| 3906 | } |
| 3907 | bind_conf_node->next = NULL; |
| 3908 | bind_conf_node->bind_conf = bind_conf; |
| 3909 | |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3910 | /* strip trailing slashes, including first one */ |
| 3911 | for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--) |
| 3912 | *end = 0; |
| 3913 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3914 | /* look for an existing crtlist or create one */ |
| 3915 | eb = ebst_lookup(&crtlists_tree, file); |
| 3916 | if (eb) { |
| 3917 | crtlist = ebmb_entry(eb, struct crtlist, node); |
| 3918 | } else { |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3919 | /* load a crt-list OR a directory */ |
| 3920 | if (dir) |
| 3921 | cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err); |
| 3922 | else |
| 3923 | cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err); |
| 3924 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3925 | if (!(cfgerr & ERR_CODE)) |
| 3926 | ebst_insert(&crtlists_tree, &crtlist->node); |
| 3927 | } |
| 3928 | |
| 3929 | if (cfgerr & ERR_CODE) { |
| 3930 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3931 | goto error; |
| 3932 | } |
| 3933 | |
| 3934 | /* generates ckch instance from the crtlist_entry */ |
| 3935 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3936 | struct ckch_store *store; |
| 3937 | struct ckch_inst *ckch_inst = NULL; |
| 3938 | |
| 3939 | store = entry->node.key; |
| 3940 | cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err); |
| 3941 | if (cfgerr & ERR_CODE) { |
| 3942 | memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err); |
| 3943 | goto error; |
| 3944 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3945 | LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry); |
William Lallemand | caa1619 | 2020-04-08 16:29:15 +0200 | [diff] [blame] | 3946 | ckch_inst->crtlist_entry = entry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3947 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3948 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3949 | /* add the bind_conf to the list */ |
| 3950 | bind_conf_node->next = crtlist->bind_conf; |
| 3951 | crtlist->bind_conf = bind_conf_node; |
| 3952 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3953 | return cfgerr; |
| 3954 | error: |
| 3955 | { |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3956 | struct crtlist_entry *lastentry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3957 | struct ckch_inst *inst, *s_inst; |
| 3958 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3959 | lastentry = entry; /* which entry we tried to generate last */ |
| 3960 | if (lastentry) { |
| 3961 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3962 | if (entry == lastentry) /* last entry we tried to generate, no need to go further */ |
| 3963 | break; |
| 3964 | |
| 3965 | 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] | 3966 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3967 | /* this was not generated for this bind_conf, skip */ |
| 3968 | if (inst->bind_conf != bind_conf) |
| 3969 | continue; |
| 3970 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3971 | /* free the sni_ctx and instance */ |
| 3972 | ckch_inst_free(inst); |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3973 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3974 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3975 | } |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3976 | free(bind_conf_node); |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3977 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3978 | return cfgerr; |
| 3979 | } |
| 3980 | |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3981 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
| 3982 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
| 3983 | { |
| 3984 | struct stat buf; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3985 | int cfgerr = 0; |
| 3986 | struct ckch_store *ckchs; |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3987 | struct ckch_inst *ckch_inst = NULL; |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3988 | int found = 0; /* did we found a file to load ? */ |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3989 | |
| 3990 | if ((ckchs = ckchs_lookup(path))) { |
| 3991 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3992 | 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] | 3993 | |
| 3994 | /* This certificate has an 'ocsp-update' already set in a |
| 3995 | * previous crt-list so we must raise an error. */ |
| 3996 | if (ckchs->data->ocsp_update_mode == SSL_SOCK_OCSP_UPDATE_ON) { |
| 3997 | memprintf(err, "%sIncompatibilities found in OCSP update mode for certificate %s\n", err && *err ? *err: "", path); |
| 3998 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3999 | } |
| 4000 | |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4001 | found++; |
| 4002 | } else if (stat(path, &buf) == 0) { |
| 4003 | found++; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 4004 | if (S_ISDIR(buf.st_mode) == 0) { |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 4005 | ckchs = ckchs_load_cert_file(path, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 4006 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4007 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4008 | 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] | 4009 | } else { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4010 | 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] | 4011 | } |
| 4012 | } else { |
| 4013 | /* stat failed, could be a bundle */ |
| 4014 | if (global_ssl.extra_files & SSL_GF_BUNDLE) { |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4015 | char fp[MAXPATHLEN+1] = {0}; |
| 4016 | int n = 0; |
| 4017 | |
| 4018 | /* Load all possible certs and keys in separate ckch_store */ |
| 4019 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 4020 | struct stat buf; |
| 4021 | int ret; |
| 4022 | |
| 4023 | ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 4024 | if (ret > sizeof(fp)) |
| 4025 | continue; |
| 4026 | |
| 4027 | if ((ckchs = ckchs_lookup(fp))) { |
| 4028 | 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] | 4029 | found++; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4030 | } else { |
| 4031 | if (stat(fp, &buf) == 0) { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4032 | found++; |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 4033 | ckchs = ckchs_load_cert_file(fp, err); |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4034 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4035 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 4036 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 4037 | } |
| 4038 | } |
| 4039 | } |
William Lallemand | b7fdfdf | 2020-12-04 15:45:02 +0100 | [diff] [blame] | 4040 | #if HA_OPENSSL_VERSION_NUMBER < 0x10101000L |
| 4041 | if (found) { |
| 4042 | memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n", |
| 4043 | err && *err ? *err : "", path); |
| 4044 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4045 | } |
| 4046 | #endif |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 4047 | } |
| 4048 | } |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 4049 | if (!found) { |
| 4050 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 4051 | err && *err ? *err : "", path, strerror(errno)); |
| 4052 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4053 | } |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 4054 | |
| 4055 | return cfgerr; |
| 4056 | } |
| 4057 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4058 | |
| 4059 | /* Create a full ssl context and ckch instance that will be used for a specific |
| 4060 | * backend server (server configuration line). |
| 4061 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 4062 | */ |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 4063 | 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] | 4064 | { |
| 4065 | struct stat buf; |
| 4066 | int cfgerr = 0; |
| 4067 | struct ckch_store *ckchs; |
| 4068 | int found = 0; /* did we found a file to load ? */ |
| 4069 | |
| 4070 | if ((ckchs = ckchs_lookup(path))) { |
| 4071 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 4072 | 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] | 4073 | found++; |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 4074 | } else { |
| 4075 | if (!create_if_none) { |
| 4076 | memprintf(err, "%sunable to stat SSL certificate '%s'.\n", |
| 4077 | err && *err ? *err : "", path); |
| 4078 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4079 | goto out; |
| 4080 | } |
| 4081 | |
| 4082 | if (stat(path, &buf) == 0) { |
| 4083 | /* We do not manage directories on backend side. */ |
| 4084 | if (S_ISDIR(buf.st_mode) == 0) { |
| 4085 | ++found; |
| 4086 | ckchs = ckchs_load_cert_file(path, err); |
| 4087 | if (!ckchs) |
| 4088 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4089 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
| 4090 | } |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4091 | } |
| 4092 | } |
| 4093 | if (!found) { |
| 4094 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 4095 | err && *err ? *err : "", path, strerror(errno)); |
| 4096 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4097 | } |
| 4098 | |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 4099 | out: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4100 | return cfgerr; |
| 4101 | } |
| 4102 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4103 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4104 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4105 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4106 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4107 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4108 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4109 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4110 | SSL_OP_NO_SSLv2 | |
| 4111 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 4112 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4113 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 4114 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 4115 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 4116 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4117 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4118 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4119 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 4120 | SSL_MODE_RELEASE_BUFFERS | |
| 4121 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 4122 | 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] | 4123 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4124 | int flags = MC_SSL_O_ALL; |
| 4125 | int cfgerr = 0; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 4126 | const int default_min_ver = CONF_TLSV12; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4127 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4128 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4129 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4130 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4131 | 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] | 4132 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 4133 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4134 | 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] | 4135 | else |
| 4136 | flags = conf_ssl_methods->flags; |
| 4137 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 4138 | min = conf_ssl_methods->min; |
| 4139 | max = conf_ssl_methods->max; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 4140 | |
| 4141 | /* default minimum is TLSV12, */ |
| 4142 | if (!min) { |
| 4143 | if (!max || (max >= default_min_ver)) { |
| 4144 | min = default_min_ver; |
| 4145 | } else { |
| 4146 | 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). " |
| 4147 | "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n", |
| 4148 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name); |
| 4149 | min = max; |
| 4150 | } |
| 4151 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4152 | /* 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] | 4153 | if (min) |
| 4154 | flags |= (methodVersions[min].flag - 1); |
| 4155 | if (max) |
| 4156 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4157 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4158 | min = max = CONF_TLSV_NONE; |
| 4159 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4160 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4161 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4162 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4163 | if (min) { |
| 4164 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4165 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 4166 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4167 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 4168 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4169 | hole = 0; |
| 4170 | } |
| 4171 | max = i; |
| 4172 | } |
| 4173 | else { |
| 4174 | min = max = i; |
| 4175 | } |
| 4176 | } |
| 4177 | else { |
| 4178 | if (min) |
| 4179 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4180 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4181 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4182 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4183 | 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] | 4184 | cfgerr += 1; |
| 4185 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4186 | /* save real min/max in bind_conf */ |
| 4187 | conf_ssl_methods->min = min; |
| 4188 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4189 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4190 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4191 | /* 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] | 4192 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4193 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4194 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4195 | else |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4196 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) { |
| 4197 | /* clear every version flags in case SSL_CTX_new() |
| 4198 | * returns an SSL_CTX with disabled versions */ |
| 4199 | SSL_CTX_clear_options(ctx, methodVersions[i].option); |
| 4200 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4201 | if (flags & methodVersions[i].flag) |
| 4202 | options |= methodVersions[i].option; |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4203 | |
| 4204 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4205 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4206 | /* 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] | 4207 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4208 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 4209 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4210 | |
| 4211 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 4212 | options |= SSL_OP_NO_TICKET; |
| 4213 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 4214 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 4215 | |
| 4216 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 4217 | options |= SSL_OP_NO_RENEGOTIATION; |
| 4218 | #endif |
| 4219 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4220 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4221 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4222 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4223 | if (global_ssl.async) |
| 4224 | mode |= SSL_MODE_ASYNC; |
| 4225 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4226 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4227 | if (global_ssl.life_time) |
| 4228 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4229 | |
| 4230 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4231 | # ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4232 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 4233 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4234 | # elif defined(HAVE_SSL_CLIENT_HELLO_CB) |
| 4235 | # if defined(SSL_OP_NO_ANTI_REPLAY) |
Olivier Houchard | 545989f | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 4236 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 4237 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4238 | # endif /* ! SSL_OP_NO_ANTI_REPLAY */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 4239 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 4240 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4241 | # else /* ! OPENSSL_IS_BORINGSSL && ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4242 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4243 | # endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 4244 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
William Lallemand | 4b7938d | 2022-09-07 10:54:17 +0200 | [diff] [blame] | 4245 | #endif /* ! SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4246 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4247 | } |
| 4248 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4249 | |
| 4250 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 4251 | { |
| 4252 | if (first == block) { |
| 4253 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4254 | if (first->len > 0) |
| 4255 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 4256 | } |
| 4257 | } |
| 4258 | |
| 4259 | /* return first block from sh_ssl_sess */ |
| 4260 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 4261 | { |
Ilya Shipitsin | 2ca0158 | 2023-04-15 23:39:43 +0200 | [diff] [blame] | 4262 | 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] | 4263 | |
| 4264 | } |
| 4265 | |
| 4266 | /* store a session into the cache |
| 4267 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 4268 | * data: asn1 encoded session |
| 4269 | * data_len: asn1 encoded session length |
| 4270 | * Returns 1 id session was stored (else 0) |
| 4271 | */ |
| 4272 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 4273 | { |
| 4274 | struct shared_block *first; |
| 4275 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 4276 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4277 | 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] | 4278 | if (!first) { |
| 4279 | /* Could not retrieve enough free blocks to store that session */ |
| 4280 | return 0; |
| 4281 | } |
| 4282 | |
| 4283 | /* STORE the key in the first elem */ |
| 4284 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4285 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 4286 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4287 | |
| 4288 | /* it returns the already existing node |
| 4289 | or current node if none, never returns null */ |
| 4290 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 4291 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 4292 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 4293 | /* release the reserved row */ |
William Lallemand | 222e5a2 | 2023-01-31 14:12:28 +0100 | [diff] [blame] | 4294 | 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] | 4295 | shctx_row_dec_hot(ssl_shctx, first); |
| 4296 | /* replace the previous session already in the tree */ |
| 4297 | sh_ssl_sess = oldsh_ssl_sess; |
| 4298 | /* ignore the previous session data, only use the header */ |
| 4299 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 4300 | shctx_row_inc_hot(ssl_shctx, first); |
| 4301 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4302 | } |
| 4303 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4304 | 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] | 4305 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4306 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4307 | } |
| 4308 | |
| 4309 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4310 | |
| 4311 | return 1; |
| 4312 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4313 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4314 | /* SSL callback used when a new session is created while connecting to a server */ |
| 4315 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4316 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4317 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4318 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4319 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4320 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4321 | |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4322 | /* RWLOCK: only read lock the SSL cache even when writing in it because there is |
| 4323 | * one cache per thread, it only prevents to flush it from the CLI in |
| 4324 | * another thread */ |
| 4325 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4326 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4327 | int len; |
| 4328 | unsigned char *ptr; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4329 | const char *sni; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4330 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4331 | len = i2d_SSL_SESSION(sess, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4332 | sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4333 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4334 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4335 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4336 | } else { |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4337 | ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len); |
Willy Tarreau | 94d7f8a | 2023-08-21 08:45:35 +0200 | [diff] [blame] | 4338 | if (!ptr) |
| 4339 | free(s->ssl_ctx.reused_sess[tid].ptr); |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4340 | s->ssl_ctx.reused_sess[tid].ptr = ptr; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4341 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4342 | } |
| 4343 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4344 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4345 | &ptr); |
| 4346 | } |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4347 | |
| 4348 | if (s->ssl_ctx.reused_sess[tid].sni) { |
| 4349 | /* if the new sni is empty or isn' t the same as the old one */ |
| 4350 | if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) { |
| 4351 | ha_free(&s->ssl_ctx.reused_sess[tid].sni); |
| 4352 | if (sni) |
| 4353 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4354 | } |
| 4355 | } else if (sni) { |
| 4356 | /* if there wasn't an old sni but there is a new one */ |
| 4357 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4358 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4359 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4360 | } else { |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4361 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4362 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4363 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4364 | } |
| 4365 | |
| 4366 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4367 | } |
| 4368 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4369 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4370 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4371 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4372 | { |
| 4373 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4374 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4375 | unsigned char *p; |
| 4376 | int data_len; |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4377 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4378 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4379 | |
| 4380 | /* 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] | 4381 | * so we don't store it to keep size. |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4382 | * note: SSL_SESSION_set1_id is using |
| 4383 | * a memcpy so we need to use a different pointer |
| 4384 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4385 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4386 | */ |
| 4387 | |
| 4388 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4389 | |
| 4390 | /* copy value in an other buffer */ |
| 4391 | memcpy(encid, sid_data, sid_length); |
| 4392 | |
| 4393 | /* pad with 0 */ |
| 4394 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4395 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4396 | |
| 4397 | /* force length to zero to avoid ASN1 encoding */ |
| 4398 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4399 | |
| 4400 | /* force length to zero to avoid ASN1 encoding */ |
| 4401 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4402 | |
| 4403 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4404 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4405 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4406 | goto err; |
| 4407 | |
| 4408 | p = encsess; |
| 4409 | |
| 4410 | /* process ASN1 session encoding before the lock */ |
| 4411 | i2d_SSL_SESSION(sess, &p); |
| 4412 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4413 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4414 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4415 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4416 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4417 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4418 | err: |
| 4419 | /* reset original length values */ |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4420 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4421 | 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] | 4422 | |
| 4423 | return 0; /* do not increment session reference count */ |
| 4424 | } |
| 4425 | |
| 4426 | /* 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] | 4427 | 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] | 4428 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4429 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4430 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4431 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4432 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4433 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4434 | |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4435 | _HA_ATOMIC_INC(&global.shctx_lookups); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4436 | |
| 4437 | /* allow the session to be freed automatically by openssl */ |
| 4438 | *do_copy = 0; |
| 4439 | |
| 4440 | /* tree key is zeros padded sessionid */ |
| 4441 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4442 | memcpy(tmpkey, key, key_len); |
| 4443 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4444 | key = tmpkey; |
| 4445 | } |
| 4446 | |
| 4447 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4448 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4449 | |
| 4450 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4451 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4452 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4453 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4454 | shctx_unlock(ssl_shctx); |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4455 | _HA_ATOMIC_INC(&global.shctx_misses); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4456 | return NULL; |
| 4457 | } |
| 4458 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4459 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4460 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4461 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4462 | 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] | 4463 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4464 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4465 | |
| 4466 | /* decode ASN1 session */ |
| 4467 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4468 | 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] | 4469 | /* Reset session id and session id contenxt */ |
| 4470 | if (sess) { |
| 4471 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4472 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4473 | } |
| 4474 | |
| 4475 | return sess; |
| 4476 | } |
| 4477 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4478 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4479 | /* 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] | 4480 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4481 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4482 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4483 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4484 | unsigned int sid_length; |
| 4485 | const unsigned char *sid_data; |
| 4486 | (void)ctx; |
| 4487 | |
| 4488 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4489 | /* tree key is zeros padded sessionid */ |
| 4490 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4491 | memcpy(tmpkey, sid_data, sid_length); |
| 4492 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4493 | sid_data = tmpkey; |
| 4494 | } |
| 4495 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4496 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4497 | |
| 4498 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4499 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4500 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4501 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4502 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4503 | } |
| 4504 | |
| 4505 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4506 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4507 | } |
| 4508 | |
| 4509 | /* Set session cache mode to server and disable openssl internal cache. |
| 4510 | * Set shared cache callbacks on an ssl context. |
| 4511 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4512 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4513 | { |
| 4514 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4515 | |
| 4516 | if (!ssl_shctx) { |
| 4517 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4518 | return; |
| 4519 | } |
| 4520 | |
| 4521 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4522 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4523 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4524 | |
| 4525 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4526 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4527 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4528 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4529 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4530 | |
| 4531 | /* |
| 4532 | * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
| 4533 | * |
| 4534 | * The format is: |
| 4535 | * * <Label> <space> <ClientRandom> <space> <Secret> |
| 4536 | * We only need to copy the secret as there is a sample fetch for the ClientRandom |
| 4537 | */ |
| 4538 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4539 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4540 | void SSL_CTX_keylog(const SSL *ssl, const char *line) |
| 4541 | { |
| 4542 | struct ssl_keylog *keylog; |
| 4543 | char *lastarg = NULL; |
| 4544 | char *dst = NULL; |
| 4545 | |
Frédéric Lécaille | 36e1e8c | 2023-06-07 11:25:35 +0200 | [diff] [blame] | 4546 | #ifdef USE_QUIC_OPENSSL_COMPAT |
| 4547 | quic_tls_compat_keylog_callback(ssl, line); |
| 4548 | #endif |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4549 | keylog = SSL_get_ex_data(ssl, ssl_keylog_index); |
| 4550 | if (!keylog) |
| 4551 | return; |
| 4552 | |
| 4553 | lastarg = strrchr(line, ' '); |
| 4554 | if (lastarg == NULL || ++lastarg == NULL) |
| 4555 | return; |
| 4556 | |
| 4557 | dst = pool_alloc(pool_head_ssl_keylog_str); |
| 4558 | if (!dst) |
| 4559 | return; |
| 4560 | |
| 4561 | strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1); |
| 4562 | dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0'; |
| 4563 | |
| 4564 | if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) { |
| 4565 | if (keylog->client_random) |
| 4566 | goto error; |
| 4567 | keylog->client_random = dst; |
| 4568 | |
| 4569 | } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) { |
| 4570 | if (keylog->client_early_traffic_secret) |
| 4571 | goto error; |
| 4572 | keylog->client_early_traffic_secret = dst; |
| 4573 | |
| 4574 | } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4575 | if(keylog->client_handshake_traffic_secret) |
| 4576 | goto error; |
| 4577 | keylog->client_handshake_traffic_secret = dst; |
| 4578 | |
| 4579 | } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4580 | if (keylog->server_handshake_traffic_secret) |
| 4581 | goto error; |
| 4582 | keylog->server_handshake_traffic_secret = dst; |
| 4583 | |
| 4584 | } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) { |
| 4585 | if (keylog->client_traffic_secret_0) |
| 4586 | goto error; |
| 4587 | keylog->client_traffic_secret_0 = dst; |
| 4588 | |
| 4589 | } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) { |
| 4590 | if (keylog->server_traffic_secret_0) |
| 4591 | goto error; |
| 4592 | keylog->server_traffic_secret_0 = dst; |
| 4593 | |
| 4594 | } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) { |
| 4595 | if (keylog->early_exporter_secret) |
| 4596 | goto error; |
| 4597 | keylog->early_exporter_secret = dst; |
| 4598 | |
| 4599 | } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) { |
| 4600 | if (keylog->exporter_secret) |
| 4601 | goto error; |
| 4602 | keylog->exporter_secret = dst; |
| 4603 | } else { |
| 4604 | goto error; |
| 4605 | } |
| 4606 | |
| 4607 | return; |
| 4608 | |
| 4609 | error: |
| 4610 | pool_free(pool_head_ssl_keylog_str, dst); |
| 4611 | |
| 4612 | return; |
| 4613 | } |
| 4614 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4615 | |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4616 | /* |
| 4617 | * This function applies the SSL configuration on a SSL_CTX |
| 4618 | * It returns an error code and fills the <err> buffer |
| 4619 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4620 | 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] | 4621 | { |
| 4622 | struct proxy *curproxy = bind_conf->frontend; |
| 4623 | int cfgerr = 0; |
| 4624 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4625 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4626 | const char *conf_ciphers; |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4627 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4628 | const char *conf_ciphersuites; |
| 4629 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4630 | const char *conf_curves = NULL; |
William Lallemand | 64a77e3 | 2023-05-02 18:26:46 +0200 | [diff] [blame] | 4631 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
William Lallemand | 1d3c822 | 2023-05-04 15:33:55 +0200 | [diff] [blame] | 4632 | #if defined(SSL_CTX_set1_sigalgs_list) |
| 4633 | const char *conf_sigalgs = NULL; |
| 4634 | #endif |
William Lallemand | b6ae2aa | 2023-05-05 00:05:46 +0200 | [diff] [blame] | 4635 | #if defined(SSL_CTX_set1_client_sigalgs_list) |
| 4636 | const char *conf_client_sigalgs = NULL; |
| 4637 | #endif |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4638 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4639 | if (ssl_conf) { |
| 4640 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4641 | int i, min, max; |
| 4642 | int flags = MC_SSL_O_ALL; |
| 4643 | |
| 4644 | /* 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] | 4645 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4646 | 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] | 4647 | if (min) |
| 4648 | flags |= (methodVersions[min].flag - 1); |
| 4649 | if (max) |
| 4650 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4651 | min = max = CONF_TLSV_NONE; |
| 4652 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4653 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4654 | if (min) |
| 4655 | max = i; |
| 4656 | else |
| 4657 | min = max = i; |
| 4658 | } |
| 4659 | /* save real min/max */ |
| 4660 | conf_ssl_methods->min = min; |
| 4661 | conf_ssl_methods->max = max; |
| 4662 | if (!min) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4663 | memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4664 | 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] | 4665 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4666 | } |
| 4667 | } |
| 4668 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4669 | 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] | 4670 | case SSL_SOCK_VERIFY_NONE: |
| 4671 | verify = SSL_VERIFY_NONE; |
| 4672 | break; |
| 4673 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4674 | verify = SSL_VERIFY_PEER; |
| 4675 | break; |
| 4676 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4677 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4678 | break; |
| 4679 | } |
| 4680 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4681 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4682 | 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] | 4683 | 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] | 4684 | 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] | 4685 | if (ca_file || ca_verify_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4686 | /* set CAfile to verify */ |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4687 | if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4688 | 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] | 4689 | 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] | 4690 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4691 | } |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4692 | if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) { |
| 4693 | memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n", |
| 4694 | err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4695 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4696 | } |
| 4697 | 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] | 4698 | /* set CA names for client cert request, function returns void */ |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 4699 | 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] | 4700 | } |
William Lallemand | 64a77e3 | 2023-05-02 18:26:46 +0200 | [diff] [blame] | 4701 | #ifdef USE_OPENSSL_WOLFSSL |
| 4702 | /* WolfSSL activates CRL checks by default so we need to disable it */ |
| 4703 | X509_STORE_set_flags(store, 0) ; |
| 4704 | #endif |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4705 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4706 | else { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4707 | memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4708 | 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] | 4709 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4710 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4711 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4712 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4713 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4714 | if (!ssl_set_cert_crl_file(store, crl_file)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4715 | memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4716 | 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] | 4717 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4718 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4719 | else { |
| 4720 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4721 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4722 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4723 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4724 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4725 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4726 | #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] | 4727 | if(bind_conf->keys_ref) { |
Remi Tricot-Le Breton | 8ea1f5f | 2022-02-08 17:45:58 +0100 | [diff] [blame] | 4728 | 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] | 4729 | memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4730 | 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] | 4731 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4732 | } |
| 4733 | } |
| 4734 | #endif |
| 4735 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4736 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4737 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4738 | if (conf_ciphers && |
| 4739 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4740 | memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4741 | 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] | 4742 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4743 | } |
| 4744 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4745 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4746 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4747 | if (conf_ciphersuites && |
| 4748 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4749 | memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4750 | 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] | 4751 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4752 | } |
| 4753 | #endif |
| 4754 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4755 | #ifndef OPENSSL_NO_DH |
Remi Tricot-Le Breton | 1d6338e | 2022-04-12 11:31:55 +0200 | [diff] [blame] | 4756 | if (!local_dh_1024) |
| 4757 | local_dh_1024 = ssl_get_dh_1024(); |
| 4758 | if (!local_dh_2048) |
| 4759 | local_dh_2048 = ssl_get_dh_2048(); |
| 4760 | if (!local_dh_4096) |
| 4761 | local_dh_4096 = ssl_get_dh_4096(); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4762 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4763 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4764 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Ilya Shipitsin | 7ff7747 | 2021-02-08 16:55:06 +0500 | [diff] [blame] | 4765 | #ifdef SSL_CTRL_SET_MSG_CALLBACK |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4766 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4767 | #endif |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4768 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | b60a77b | 2022-11-18 15:00:15 +0100 | [diff] [blame] | 4769 | /* only activate the keylog callback if it was required to prevent performance loss */ |
| 4770 | if (global_ssl.keylog > 0) |
| 4771 | SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4772 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4773 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4774 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4775 | ssl_conf_cur = NULL; |
| 4776 | if (ssl_conf && ssl_conf->npn_str) |
| 4777 | ssl_conf_cur = ssl_conf; |
| 4778 | else if (bind_conf->ssl_conf.npn_str) |
| 4779 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4780 | if (ssl_conf_cur) |
| 4781 | 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] | 4782 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4783 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4784 | ssl_conf_cur = NULL; |
| 4785 | if (ssl_conf && ssl_conf->alpn_str) |
| 4786 | ssl_conf_cur = ssl_conf; |
| 4787 | else if (bind_conf->ssl_conf.alpn_str) |
| 4788 | ssl_conf_cur = &bind_conf->ssl_conf; |
Willy Tarreau | a2a0955 | 2023-04-19 09:05:49 +0200 | [diff] [blame] | 4789 | if (ssl_conf_cur && ssl_conf_cur->alpn_len) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4790 | 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] | 4791 | #endif |
Ilya Shipitsin | 0aa8c29 | 2020-11-04 00:39:07 +0500 | [diff] [blame] | 4792 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4793 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4794 | if (conf_curves) { |
| 4795 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4796 | memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4797 | 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] | 4798 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4799 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4800 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4801 | } |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4802 | #endif /* defined(SSL_CTX_set1_curves_list) */ |
| 4803 | |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4804 | if (!conf_curves) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4805 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4806 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4807 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4808 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4809 | NULL); |
| 4810 | |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4811 | if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) { |
| 4812 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4813 | err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4814 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4815 | } |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4816 | #endif /* defined(SSL_CTX_set1_curves_list) */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4817 | #else |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4818 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 4819 | int i; |
| 4820 | EC_KEY *ecdh; |
| 4821 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4822 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4823 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4824 | ECDHE_DEFAULT_CURVE); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4825 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4826 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4827 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4828 | 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] | 4829 | 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] | 4830 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4831 | } |
| 4832 | else { |
| 4833 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4834 | EC_KEY_free(ecdh); |
| 4835 | } |
Remi Tricot-Le Breton | ff4c3c4 | 2022-02-08 17:45:54 +0100 | [diff] [blame] | 4836 | #endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */ |
| 4837 | #endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */ |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4838 | } |
William Lallemand | 1d3c822 | 2023-05-04 15:33:55 +0200 | [diff] [blame] | 4839 | |
| 4840 | #if defined(SSL_CTX_set1_sigalgs_list) |
| 4841 | conf_sigalgs = (ssl_conf && ssl_conf->sigalgs) ? ssl_conf->sigalgs : bind_conf->ssl_conf.sigalgs; |
| 4842 | if (conf_sigalgs) { |
| 4843 | if (!SSL_CTX_set1_sigalgs_list(ctx, conf_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_sigalgs, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4846 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4847 | } |
| 4848 | } |
| 4849 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4850 | |
William Lallemand | b6ae2aa | 2023-05-05 00:05:46 +0200 | [diff] [blame] | 4851 | #if defined(SSL_CTX_set1_client_sigalgs_list) |
| 4852 | conf_client_sigalgs = (ssl_conf && ssl_conf->client_sigalgs) ? ssl_conf->client_sigalgs : bind_conf->ssl_conf.client_sigalgs; |
| 4853 | if (conf_client_sigalgs) { |
| 4854 | if (!SSL_CTX_set1_client_sigalgs_list(ctx, conf_client_sigalgs)) { |
| 4855 | memprintf(err, "%sProxy '%s': unable to set SSL Signature Algorithm list to '%s' for bind '%s' at [%s:%d].\n", |
| 4856 | err && *err ? *err : "", curproxy->id, conf_client_sigalgs, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4857 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4858 | } |
| 4859 | } |
| 4860 | #endif |
| 4861 | |
Frédéric Lécaille | 23937b7 | 2023-06-07 11:19:51 +0200 | [diff] [blame] | 4862 | #ifdef USE_QUIC_OPENSSL_COMPAT |
| 4863 | if (!quic_tls_compat_init(bind_conf, ctx)) |
| 4864 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4865 | #endif |
| 4866 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4867 | return cfgerr; |
| 4868 | } |
| 4869 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4870 | |
| 4871 | /* |
| 4872 | * Prepare the SSL_CTX based on the bind line configuration. |
| 4873 | * Since the CA file loading is made depending on the verify option of the bind |
| 4874 | * line, the link between the SSL_CTX and the CA file tree entry is made here. |
| 4875 | * If we want to create a link between the CA file entry and the corresponding |
| 4876 | * ckch instance (for CA file hot update), it needs to be done after |
| 4877 | * ssl_sock_prepare_ctx. |
| 4878 | * Returns 0 in case of success. |
| 4879 | */ |
| 4880 | int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 4881 | SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err) |
| 4882 | { |
| 4883 | int errcode = 0; |
| 4884 | |
| 4885 | errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err); |
| 4886 | if (!errcode && ckch_inst) |
| 4887 | ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL); |
| 4888 | |
| 4889 | return errcode; |
| 4890 | } |
| 4891 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4892 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4893 | { |
| 4894 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4895 | size_t prefixlen, suffixlen; |
| 4896 | |
| 4897 | /* Trivial case */ |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4898 | if (strcasecmp(pattern, hostname) == 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4899 | return 1; |
| 4900 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4901 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4902 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4903 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4904 | pattern_wildcard = NULL; |
| 4905 | pattern_left_label_end = pattern; |
| 4906 | while (*pattern_left_label_end != '.') { |
| 4907 | switch (*pattern_left_label_end) { |
| 4908 | case 0: |
| 4909 | /* End of label not found */ |
| 4910 | return 0; |
| 4911 | case '*': |
| 4912 | /* If there is more than one wildcards */ |
| 4913 | if (pattern_wildcard) |
| 4914 | return 0; |
| 4915 | pattern_wildcard = pattern_left_label_end; |
| 4916 | break; |
| 4917 | } |
| 4918 | pattern_left_label_end++; |
| 4919 | } |
| 4920 | |
| 4921 | /* If it's not trivial and there is no wildcard, it can't |
| 4922 | * match */ |
| 4923 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4924 | return 0; |
| 4925 | |
| 4926 | /* Make sure all labels match except the leftmost */ |
| 4927 | hostname_left_label_end = strchr(hostname, '.'); |
| 4928 | if (!hostname_left_label_end |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4929 | || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4930 | return 0; |
| 4931 | |
| 4932 | /* Make sure the leftmost label of the hostname is long enough |
| 4933 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4934 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4935 | return 0; |
| 4936 | |
| 4937 | /* Finally compare the string on either side of the |
| 4938 | * wildcard */ |
| 4939 | prefixlen = pattern_wildcard - pattern; |
| 4940 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4941 | if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0)) |
| 4942 | || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4943 | return 0; |
| 4944 | |
| 4945 | return 1; |
| 4946 | } |
| 4947 | |
| 4948 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4949 | { |
| 4950 | SSL *ssl; |
| 4951 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4952 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4953 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4954 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4955 | |
| 4956 | int depth; |
| 4957 | X509 *cert; |
| 4958 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4959 | int i; |
| 4960 | X509_NAME *cert_subject; |
| 4961 | char *str; |
| 4962 | |
| 4963 | if (ok == 0) |
| 4964 | return ok; |
| 4965 | |
| 4966 | 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] | 4967 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | 3a0a0d6 | 2022-04-12 07:31:06 +0200 | [diff] [blame] | 4968 | ssl_ctx = __conn_get_ssl_sock_ctx(conn); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4969 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4970 | /* We're checking if the provided hostnames match the desired one. The |
| 4971 | * desired hostname comes from the SNI we presented if any, or if not |
| 4972 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4973 | * directive. If neither is set, we don't care about the name so the |
| 4974 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4975 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4976 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4977 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4978 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4979 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4980 | if (!servername) |
| 4981 | return ok; |
| 4982 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4983 | |
| 4984 | /* We only need to verify the CN on the actual server cert, |
| 4985 | * not the indirect CAs */ |
| 4986 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4987 | if (depth != 0) |
| 4988 | return ok; |
| 4989 | |
| 4990 | /* At this point, the cert is *not* OK unless we can find a |
| 4991 | * hostname match */ |
| 4992 | ok = 0; |
| 4993 | |
| 4994 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4995 | /* It seems like this might happen if verify peer isn't set */ |
| 4996 | if (!cert) |
| 4997 | return ok; |
| 4998 | |
| 4999 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 5000 | if (alt_names) { |
| 5001 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 5002 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 5003 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 5004 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 5005 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 5006 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5007 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 5008 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5009 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 5010 | OPENSSL_free(str); |
| 5011 | } |
| 5012 | } |
| 5013 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 5014 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5015 | } |
| 5016 | |
| 5017 | cert_subject = X509_get_subject_name(cert); |
| 5018 | i = -1; |
| 5019 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 5020 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5021 | ASN1_STRING *value; |
| 5022 | value = X509_NAME_ENTRY_get_data(entry); |
| 5023 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5024 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 5025 | OPENSSL_free(str); |
| 5026 | } |
| 5027 | } |
| 5028 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 5029 | /* report the mismatch and indicate if SNI was used or not */ |
| 5030 | if (!ok && !conn->err_code) |
| 5031 | 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] | 5032 | return ok; |
| 5033 | } |
| 5034 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5035 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5036 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5037 | { |
| 5038 | int cfgerr = 0; |
William Lallemand | 2c776f1 | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 5039 | SSL_CTX *ctx; |
William Lallemand | 0adafb3 | 2022-12-13 18:17:44 +0100 | [diff] [blame] | 5040 | /* Automatic memory computations need to know we use SSL there |
| 5041 | * 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] | 5042 | if (!(srv->proxy->cap & PR_CAP_INT)) |
William Lallemand | 0adafb3 | 2022-12-13 18:17:44 +0100 | [diff] [blame] | 5043 | global.ssl_used_backend = 1; |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 5044 | |
| 5045 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5046 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5047 | 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] | 5048 | ha_alert("out of memory.\n"); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5049 | cfgerr++; |
| 5050 | return cfgerr; |
| 5051 | } |
| 5052 | } |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 5053 | if (srv->use_ssl == 1) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5054 | srv->xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5055 | |
William Lallemand | 2c776f1 | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 5056 | if (srv->ssl_ctx.client_crt) { |
| 5057 | const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1; |
| 5058 | char *err = NULL; |
| 5059 | int err_code = 0; |
| 5060 | |
| 5061 | /* If there is a crt keyword there, the SSL_CTX will be created here. */ |
| 5062 | err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err); |
| 5063 | if (err_code != ERR_NONE) { |
| 5064 | if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT)) |
| 5065 | ha_warning("%s", err); |
| 5066 | else |
| 5067 | ha_alert("%s", err); |
| 5068 | |
| 5069 | if (err_code & (ERR_FATAL|ERR_ABORT)) |
| 5070 | cfgerr++; |
| 5071 | } |
| 5072 | ha_free(&err); |
| 5073 | } |
| 5074 | |
| 5075 | ctx = srv->ssl_ctx.ctx; |
| 5076 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5077 | /* The context will be uninitialized if there wasn't any "cert" option |
| 5078 | * in the server line. */ |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5079 | if (!ctx) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5080 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 5081 | if (!ctx) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5082 | ha_alert("unable to allocate ssl context.\n"); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5083 | cfgerr++; |
| 5084 | return cfgerr; |
| 5085 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5086 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 5087 | srv->ssl_ctx.ctx = ctx; |
| 5088 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5089 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5090 | 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] | 5091 | |
| 5092 | return cfgerr; |
| 5093 | } |
| 5094 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5095 | /* Initialize an SSL context that will be used on the backend side. |
| 5096 | * Returns an error count. |
| 5097 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5098 | 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] | 5099 | { |
| 5100 | struct proxy *curproxy = srv->proxy; |
| 5101 | int cfgerr = 0; |
| 5102 | long options = |
| 5103 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 5104 | SSL_OP_NO_SSLv2 | |
| 5105 | SSL_OP_NO_COMPRESSION; |
| 5106 | long mode = |
| 5107 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 5108 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 5109 | SSL_MODE_RELEASE_BUFFERS | |
| 5110 | SSL_MODE_SMALL_BUFFERS; |
| 5111 | int verify = SSL_VERIFY_NONE; |
| 5112 | const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
| 5113 | int i, min, max, hole; |
| 5114 | int flags = MC_SSL_O_ALL; |
| 5115 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5116 | 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] | 5117 | ha_warning("no-sslv3/no-tlsv1x are ignored for this server. " |
| 5118 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n"); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5119 | else |
| 5120 | flags = conf_ssl_methods->flags; |
| 5121 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5122 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 5123 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5124 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5125 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5126 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5127 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 5128 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5129 | min = max = CONF_TLSV_NONE; |
| 5130 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5131 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5132 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5133 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5134 | if (min) { |
| 5135 | if (hole) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 5136 | 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] | 5137 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 5138 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 5139 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5140 | hole = 0; |
| 5141 | } |
| 5142 | max = i; |
| 5143 | } |
| 5144 | else { |
| 5145 | min = max = i; |
| 5146 | } |
| 5147 | } |
| 5148 | else { |
| 5149 | if (min) |
| 5150 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5151 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5152 | if (!min) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 5153 | 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] | 5154 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5155 | cfgerr += 1; |
| 5156 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5157 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 5158 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5159 | /* 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] | 5160 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5161 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 5162 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 5163 | else |
| 5164 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 5165 | if (flags & methodVersions[i].flag) |
| 5166 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5167 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 5168 | /* 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] | 5169 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 5170 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 5171 | #endif |
| 5172 | |
| 5173 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 5174 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5175 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5176 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5177 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5178 | if (global_ssl.async) |
| 5179 | mode |= SSL_MODE_ASYNC; |
| 5180 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5181 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5182 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5183 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 5184 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5185 | switch (srv->ssl_ctx.verify) { |
| 5186 | case SSL_SOCK_VERIFY_NONE: |
| 5187 | verify = SSL_VERIFY_NONE; |
| 5188 | break; |
| 5189 | case SSL_SOCK_VERIFY_REQUIRED: |
| 5190 | verify = SSL_VERIFY_PEER; |
| 5191 | break; |
| 5192 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5193 | SSL_CTX_set_verify(ctx, verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 5194 | (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] | 5195 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5196 | if (srv->ssl_ctx.ca_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 5197 | /* set CAfile to verify */ |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5198 | if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5199 | ha_alert("unable to set CA file '%s'.\n", |
| 5200 | srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5201 | cfgerr++; |
| 5202 | } |
| 5203 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5204 | else { |
| 5205 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5206 | 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] | 5207 | else |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5208 | ha_alert("verify is enabled but no CA file specified.\n"); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5209 | cfgerr++; |
| 5210 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5211 | #ifdef X509_V_FLAG_CRL_CHECK |
| 5212 | if (srv->ssl_ctx.crl_file) { |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5213 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5214 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 5215 | if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5216 | ha_alert("unable to configure CRL file '%s'.\n", |
| 5217 | srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5218 | cfgerr++; |
| 5219 | } |
| 5220 | else { |
| 5221 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 5222 | } |
| 5223 | } |
| 5224 | #endif |
| 5225 | } |
| 5226 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5227 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 5228 | SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5229 | if (srv->ssl_ctx.ciphers && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5230 | !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5231 | ha_alert("unable to set SSL cipher list to '%s'.\n", |
| 5232 | srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5233 | cfgerr++; |
| 5234 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5235 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 5236 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5237 | if (srv->ssl_ctx.ciphersuites && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5238 | !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5239 | ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 5240 | srv->ssl_ctx.ciphersuites); |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5241 | cfgerr++; |
| 5242 | } |
| 5243 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5244 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 5245 | if (srv->ssl_ctx.npn_str) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5246 | 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] | 5247 | #endif |
| 5248 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | a2a0955 | 2023-04-19 09:05:49 +0200 | [diff] [blame] | 5249 | if (srv->ssl_ctx.alpn_str && srv->ssl_ctx.alpn_len) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5250 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 5251 | #endif |
| 5252 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5253 | |
| 5254 | return cfgerr; |
| 5255 | } |
| 5256 | |
| 5257 | /* |
| 5258 | * Prepare the frontend's SSL_CTX based on the server line configuration. |
| 5259 | * Since the CA file loading is made depending on the verify option of the |
| 5260 | * server line, the link between the SSL_CTX and the CA file tree entry is |
| 5261 | * made here. |
| 5262 | * If we want to create a link between the CA file entry and the corresponding |
| 5263 | * ckch instance (for CA file hot update), it needs to be done after |
| 5264 | * ssl_sock_prepare_srv_ssl_ctx. |
| 5265 | * Returns an error count. |
| 5266 | */ |
| 5267 | int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx, |
| 5268 | struct ckch_inst *ckch_inst) |
| 5269 | { |
| 5270 | int cfgerr = 0; |
| 5271 | |
| 5272 | cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx); |
| 5273 | if (!cfgerr && ckch_inst) |
| 5274 | ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5275 | |
| 5276 | return cfgerr; |
| 5277 | } |
| 5278 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5279 | |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5280 | /* |
| 5281 | * Create an initial CTX used to start the SSL connections. |
| 5282 | * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs. |
| 5283 | * Returns 0 if succeeded, or something >0 if not. |
| 5284 | */ |
| 5285 | #ifdef USE_QUIC |
| 5286 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5287 | { |
| 5288 | if (bind_conf->xprt == xprt_get(XPRT_QUIC)) |
| 5289 | return ssl_quic_initial_ctx(bind_conf); |
| 5290 | else |
| 5291 | return ssl_sock_initial_ctx(bind_conf); |
| 5292 | } |
| 5293 | #else |
| 5294 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5295 | { |
| 5296 | return ssl_sock_initial_ctx(bind_conf); |
| 5297 | } |
| 5298 | #endif |
| 5299 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5300 | /* 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] | 5301 | * be NULL, in which case nothing is done. Returns the number of errors |
| 5302 | * encountered. |
| 5303 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5304 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5305 | { |
| 5306 | struct ebmb_node *node; |
| 5307 | struct sni_ctx *sni; |
| 5308 | int err = 0; |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5309 | int errcode = 0; |
| 5310 | char *errmsg = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5311 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 5312 | /* Automatic memory computations need to know we use SSL there */ |
| 5313 | global.ssl_used_frontend = 1; |
| 5314 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5315 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 5316 | if (!bind_conf->initial_ctx) { |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5317 | err += ssl_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5318 | /* It should not be necessary to call this function, but it's |
| 5319 | necessary first to check and move all initialisation related |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5320 | to initial_ctx in ssl_initial_ctx. */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5321 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg); |
| 5322 | } |
| 5323 | if (bind_conf->default_ctx) { |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5324 | 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] | 5325 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5326 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5327 | node = ebmb_first(&bind_conf->sni_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); |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +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); |
| 5334 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5335 | node = ebmb_next(node); |
| 5336 | } |
| 5337 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5338 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5339 | while (node) { |
| 5340 | sni = ebmb_entry(node, struct sni_ctx, name); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5341 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5342 | /* only initialize the CTX on its first occurrence and |
| 5343 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5344 | 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] | 5345 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5346 | node = ebmb_next(node); |
| 5347 | } |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5348 | |
| 5349 | if (errcode & ERR_WARN) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5350 | ha_warning("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5351 | } else if (errcode & ERR_CODE) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5352 | ha_alert("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5353 | err++; |
| 5354 | } |
| 5355 | |
| 5356 | free(errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5357 | return err; |
| 5358 | } |
| 5359 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5360 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 5361 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 5362 | * alerts are directly emitted since the rest of the stack does it below. |
| 5363 | */ |
| 5364 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 5365 | { |
| 5366 | struct proxy *px = bind_conf->frontend; |
| 5367 | int alloc_ctx; |
| 5368 | int err; |
| 5369 | |
Willy Tarreau | 11ba404 | 2022-05-20 15:56:32 +0200 | [diff] [blame] | 5370 | if (!(bind_conf->options & BC_O_USE_SSL)) { |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5371 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5372 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 5373 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5374 | } |
| 5375 | return 0; |
| 5376 | } |
| 5377 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 5378 | if (bind_conf->strict_sni && !(bind_conf->options & BC_O_GENERATE_CERTS)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5379 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 5380 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5381 | } |
| 5382 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5383 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5384 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5385 | return -1; |
| 5386 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5387 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5388 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5389 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5390 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
Willy Tarreau | 9135859 | 2021-06-15 08:08:04 +0200 | [diff] [blame] | 5391 | sizeof(*sh_ssl_sess_tree), (global.nbthread > 1)); |
Frédéric Lécaille | 4c8aa11 | 2018-10-25 20:22:46 +0200 | [diff] [blame] | 5392 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5393 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5394 | 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"); |
| 5395 | else |
| 5396 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5397 | return -1; |
| 5398 | } |
| 5399 | /* free block callback */ |
| 5400 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5401 | /* init the root tree within the extra space */ |
| 5402 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5403 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5404 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5405 | err = 0; |
| 5406 | /* initialize all certificate contexts */ |
| 5407 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5408 | |
| 5409 | /* initialize CA variables if the certificates generation is enabled */ |
| 5410 | err += ssl_sock_load_ca(bind_conf); |
| 5411 | |
| 5412 | return -err; |
| 5413 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5414 | |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5415 | /* release ssl context allocated for servers. Most of the field free here |
| 5416 | * must also be allocated in srv_ssl_settings_cpy() */ |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5417 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5418 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5419 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5420 | ha_free(&srv->ssl_ctx.alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5421 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5422 | #ifdef OPENSSL_NPN_NEGOTIATED |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5423 | ha_free(&srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5424 | #endif |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5425 | if (srv->ssl_ctx.reused_sess) { |
| 5426 | int i; |
| 5427 | |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5428 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5429 | ha_free(&srv->ssl_ctx.reused_sess[i].ptr); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5430 | ha_free(&srv->ssl_ctx.reused_sess[i].sni); |
| 5431 | } |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5432 | ha_free(&srv->ssl_ctx.reused_sess); |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5433 | } |
| 5434 | |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5435 | if (srv->ssl_ctx.ctx) { |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5436 | SSL_CTX_free(srv->ssl_ctx.ctx); |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5437 | srv->ssl_ctx.ctx = NULL; |
| 5438 | } |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5439 | |
| 5440 | ha_free(&srv->ssl_ctx.ca_file); |
| 5441 | ha_free(&srv->ssl_ctx.crl_file); |
| 5442 | ha_free(&srv->ssl_ctx.client_crt); |
| 5443 | ha_free(&srv->ssl_ctx.verify_host); |
| 5444 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5445 | ha_free(&srv->sni_expr); |
William Lallemand | 43c2ce4 | 2022-03-16 17:48:19 +0100 | [diff] [blame] | 5446 | release_sample_expr(srv->ssl_ctx.sni); |
| 5447 | srv->ssl_ctx.sni = NULL; |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5448 | #endif |
| 5449 | ha_free(&srv->ssl_ctx.ciphers); |
| 5450 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
| 5451 | ha_free(&srv->ssl_ctx.ciphersuites); |
| 5452 | #endif |
William Lallemand | e69563f | 2021-12-30 14:45:19 +0100 | [diff] [blame] | 5453 | /* If there is a certificate we must unlink the ckch instance */ |
| 5454 | ckch_inst_free(srv->ssl_ctx.inst); |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5455 | } |
| 5456 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5457 | /* 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] | 5458 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5459 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5460 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5461 | { |
| 5462 | struct ebmb_node *node, *back; |
| 5463 | struct sni_ctx *sni; |
| 5464 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5465 | node = ebmb_first(&bind_conf->sni_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 | } |
| 5475 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5476 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5477 | while (node) { |
| 5478 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5479 | back = ebmb_next(node); |
| 5480 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5481 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5482 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5483 | free(sni); |
| 5484 | node = back; |
| 5485 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5486 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5487 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5488 | bind_conf->initial_ctx = NULL; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5489 | SSL_CTX_free(bind_conf->default_ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5490 | bind_conf->default_ctx = NULL; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5491 | bind_conf->default_inst = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5492 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5493 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5494 | |
| 5495 | |
| 5496 | void ssl_sock_deinit() |
| 5497 | { |
| 5498 | crtlist_deinit(); /* must be free'd before the ckchs */ |
| 5499 | ckch_deinit(); |
| 5500 | } |
| 5501 | REGISTER_POST_DEINIT(ssl_sock_deinit); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5502 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5503 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5504 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5505 | { |
| 5506 | ssl_sock_free_ca(bind_conf); |
| 5507 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5508 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5509 | free(bind_conf->ca_sign_file); |
| 5510 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5511 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5512 | free(bind_conf->keys_ref->filename); |
| 5513 | free(bind_conf->keys_ref->tlskeys); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5514 | LIST_DELETE(&bind_conf->keys_ref->list); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5515 | free(bind_conf->keys_ref); |
| 5516 | } |
| 5517 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5518 | bind_conf->ca_sign_pass = NULL; |
| 5519 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5520 | } |
| 5521 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5522 | /* Load CA cert file and private key used to generate certificates */ |
| 5523 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5524 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5525 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5526 | struct proxy *px = bind_conf->frontend; |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5527 | struct ckch_data *data = NULL; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5528 | int ret = 0; |
| 5529 | char *err = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5530 | |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 5531 | if (!(bind_conf->options & BC_O_GENERATE_CERTS)) |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5532 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5533 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5534 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5535 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5536 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5537 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5538 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5539 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5540 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5541 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5542 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5543 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5544 | "no CA certificate File configured at [%s:%d].\n", |
| 5545 | px->id, bind_conf->file, bind_conf->line); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5546 | goto failed; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5547 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5548 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5549 | /* Allocate cert structure */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5550 | data = calloc(1, sizeof(*data)); |
| 5551 | if (!data) { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5552 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n", |
| 5553 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5554 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5555 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5556 | |
| 5557 | /* Try to parse file */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5558 | 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] | 5559 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n", |
| 5560 | 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] | 5561 | free(err); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5562 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5563 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5564 | |
| 5565 | /* Fail if missing cert or pkey */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5566 | if ((!data->cert) || (!data->key)) { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5567 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n", |
| 5568 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5569 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5570 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5571 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5572 | /* Final assignment to bind */ |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5573 | bind_conf->ca_sign_ckch = data; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5574 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5575 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5576 | failed: |
William Lallemand | 52ddd99 | 2022-11-22 11:51:53 +0100 | [diff] [blame] | 5577 | if (data) { |
| 5578 | ssl_sock_free_cert_key_and_chain_contents(data); |
| 5579 | free(data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5580 | } |
| 5581 | |
Willy Tarreau | 1ea6e6a | 2022-05-20 16:03:18 +0200 | [diff] [blame] | 5582 | bind_conf->options &= ~BC_O_GENERATE_CERTS; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5583 | ret++; |
| 5584 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5585 | } |
| 5586 | |
| 5587 | /* Release CA cert and private key used to generate certificated */ |
| 5588 | void |
| 5589 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5590 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5591 | if (bind_conf->ca_sign_ckch) { |
| 5592 | 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] | 5593 | ha_free(&bind_conf->ca_sign_ckch); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5594 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5595 | } |
| 5596 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5597 | /* |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5598 | * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and |
| 5599 | * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings. |
| 5600 | * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom |
| 5601 | * 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] | 5602 | * 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] | 5603 | * as parameters to this function. |
| 5604 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to |
| 5605 | * CO_ER_SSL_NO_MEM. |
| 5606 | */ |
| 5607 | int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx, |
| 5608 | SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx) |
| 5609 | { |
| 5610 | int retry = 1; |
| 5611 | |
| 5612 | retry: |
| 5613 | /* Alloc a new SSL session. */ |
| 5614 | *ssl = SSL_new(ssl_ctx); |
| 5615 | if (!*ssl) { |
| 5616 | if (!retry--) |
| 5617 | goto err; |
| 5618 | |
| 5619 | pool_gc(NULL); |
| 5620 | goto retry; |
| 5621 | } |
| 5622 | |
| 5623 | *bio = BIO_new(bio_meth); |
| 5624 | if (!*bio) { |
| 5625 | SSL_free(*ssl); |
| 5626 | *ssl = NULL; |
| 5627 | if (!retry--) |
| 5628 | goto err; |
| 5629 | |
| 5630 | pool_gc(NULL); |
| 5631 | goto retry; |
| 5632 | } |
| 5633 | |
| 5634 | BIO_set_data(*bio, ctx); |
| 5635 | SSL_set_bio(*ssl, *bio, *bio); |
| 5636 | |
| 5637 | /* set connection pointer. */ |
| 5638 | if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) { |
| 5639 | SSL_free(*ssl); |
| 5640 | *ssl = NULL; |
| 5641 | if (!retry--) |
| 5642 | goto err; |
| 5643 | |
| 5644 | pool_gc(NULL); |
| 5645 | goto retry; |
| 5646 | } |
| 5647 | |
| 5648 | return 0; |
| 5649 | |
| 5650 | err: |
| 5651 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5652 | return -1; |
| 5653 | } |
| 5654 | |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 5655 | /* This function is called when all the XPRT have been initialized. We can |
| 5656 | * now attempt to start the SSL handshake. |
| 5657 | */ |
| 5658 | static int ssl_sock_start(struct connection *conn, void *xprt_ctx) |
| 5659 | { |
| 5660 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5661 | |
| 5662 | if (ctx->xprt->start) { |
| 5663 | int ret; |
| 5664 | |
| 5665 | ret = ctx->xprt->start(conn, ctx->xprt_ctx); |
| 5666 | if (ret < 0) |
| 5667 | return ret; |
| 5668 | } |
| 5669 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 5670 | |
| 5671 | return 0; |
| 5672 | } |
| 5673 | |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5674 | /* Similar to increment_actconn() but for SSL connections. */ |
| 5675 | int increment_sslconn() |
| 5676 | { |
| 5677 | unsigned int count, next_sslconn; |
| 5678 | |
| 5679 | do { |
| 5680 | count = global.sslconns; |
| 5681 | if (global.maxsslconn && count >= global.maxsslconn) { |
| 5682 | /* maxconn reached */ |
| 5683 | next_sslconn = 0; |
| 5684 | goto end; |
| 5685 | } |
| 5686 | |
| 5687 | /* try to increment sslconns */ |
| 5688 | next_sslconn = count + 1; |
| 5689 | } while (!_HA_ATOMIC_CAS(&global.sslconns, &count, next_sslconn) && __ha_cpu_relax()); |
| 5690 | |
| 5691 | end: |
| 5692 | return next_sslconn; |
| 5693 | } |
| 5694 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5695 | /* |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5696 | * This function is called if SSL * context is not yet allocated. The function |
| 5697 | * is designed to be called before any other data-layer operation and sets the |
| 5698 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5699 | * It returns 0 on success and -1 in error case. |
| 5700 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5701 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5702 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5703 | struct ssl_sock_ctx *ctx; |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5704 | int next_sslconn = 0; |
| 5705 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5706 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5707 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5708 | return 0; |
| 5709 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5710 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5711 | if (!ctx) { |
| 5712 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5713 | return -1; |
| 5714 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5715 | ctx->wait_event.tasklet = tasklet_new(); |
| 5716 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5717 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5718 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5719 | return -1; |
| 5720 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5721 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5722 | ctx->wait_event.tasklet->context = ctx; |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5723 | 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] | 5724 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5725 | ctx->sent_early_data = 0; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5726 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5727 | ctx->conn = conn; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5728 | ctx->subs = NULL; |
Emeric Brun | 5762a0d | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5729 | ctx->xprt_st = 0; |
| 5730 | ctx->xprt_ctx = NULL; |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 5731 | ctx->error_code = 0; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5732 | |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5733 | next_sslconn = increment_sslconn(); |
| 5734 | if (!next_sslconn) { |
| 5735 | conn->err_code = CO_ER_SSL_TOO_MANY; |
| 5736 | goto err; |
| 5737 | } |
| 5738 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5739 | /* Only work with sockets for now, this should be adapted when we'll |
| 5740 | * add QUIC support. |
| 5741 | */ |
| 5742 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5743 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5744 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5745 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5746 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5747 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5748 | /* If it is in client mode initiate SSL session |
| 5749 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5750 | if (objt_server(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5751 | if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx, |
| 5752 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5753 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5754 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5755 | SSL_set_connect_state(ctx->ssl); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5756 | 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] | 5757 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5758 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5759 | 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] | 5760 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5761 | SSL_SESSION_free(sess); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5762 | ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5763 | } else if (sess) { |
| 5764 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5765 | } |
| 5766 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5767 | 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] | 5768 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5769 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5770 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5771 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5772 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5773 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5774 | return 0; |
| 5775 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5776 | else if (objt_listener(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5777 | struct bind_conf *bc = __objt_listener(conn->target)->bind_conf; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5778 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5779 | if (ssl_bio_and_sess_init(conn, bc->initial_ctx, |
| 5780 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5781 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5782 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5783 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5784 | if (bc->ssl_conf.early_data) { |
Frédéric Lécaille | 3139c1b | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5785 | b_alloc(&ctx->early_buf); |
| 5786 | SSL_set_max_early_data(ctx->ssl, |
| 5787 | /* Only allow early data if we managed to allocate |
| 5788 | * a buffer. |
| 5789 | */ |
| 5790 | (!b_is_null(&ctx->early_buf)) ? |
| 5791 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5792 | } |
| 5793 | #endif |
| 5794 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5795 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5796 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5797 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5798 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5799 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Willy Tarreau | a84986a | 2021-02-03 11:21:38 +0100 | [diff] [blame] | 5800 | if (bc->ssl_conf.early_data) |
| 5801 | conn->flags |= CO_FL_EARLY_SSL_HS; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5802 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5803 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5804 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5805 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5806 | return 0; |
| 5807 | } |
| 5808 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5809 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5810 | err: |
Amaury Denoyelle | ca1cedf | 2023-10-25 15:38:04 +0200 | [diff] [blame] | 5811 | if (next_sslconn) |
| 5812 | _HA_ATOMIC_DEC(&global.sslconns); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5813 | if (ctx && ctx->wait_event.tasklet) |
| 5814 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5815 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5816 | return -1; |
| 5817 | } |
| 5818 | |
| 5819 | |
| 5820 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5821 | * updates the FD status if it wants some polling before being called again. |
| 5822 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5823 | * otherwise it returns non-zero and removes itself from the connection's |
| 5824 | * flags (the bit is provided in <flag> by the caller). |
| 5825 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5826 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5827 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 5828 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5829 | int ret; |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5830 | struct ssl_counters *counters = NULL; |
| 5831 | struct ssl_counters *counters_px = NULL; |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5832 | struct listener *li; |
| 5833 | struct server *srv; |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5834 | socklen_t lskerr; |
| 5835 | int skerr; |
| 5836 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5837 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5838 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5839 | return 0; |
| 5840 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5841 | /* get counters */ |
| 5842 | switch (obj_type(conn->target)) { |
| 5843 | case OBJ_TYPE_LISTENER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5844 | li = __objt_listener(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5845 | counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module); |
| 5846 | counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe, |
| 5847 | &ssl_stats_module); |
| 5848 | break; |
| 5849 | |
| 5850 | case OBJ_TYPE_SERVER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5851 | srv = __objt_server(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5852 | counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module); |
| 5853 | counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be, |
| 5854 | &ssl_stats_module); |
| 5855 | break; |
| 5856 | |
| 5857 | default: |
| 5858 | break; |
| 5859 | } |
| 5860 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 5861 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5862 | goto out_error; |
| 5863 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5864 | /* don't start calculating a handshake on a dead connection */ |
| 5865 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) |
| 5866 | goto out_error; |
| 5867 | |
| 5868 | /* FIXME/WT: for now we don't have a clear way to inspect the connection |
| 5869 | * status from the lower layers, so let's check the FD directly. Ideally |
| 5870 | * the xprt layers should provide some status indicating their knowledge |
| 5871 | * of shutdowns or error. |
| 5872 | */ |
Willy Tarreau | 07ecfc5 | 2022-04-11 18:07:03 +0200 | [diff] [blame] | 5873 | BUG_ON(conn->flags & CO_FL_FDLESS); |
| 5874 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5875 | skerr = 0; |
| 5876 | lskerr = sizeof(skerr); |
| 5877 | if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) || |
| 5878 | skerr != 0) |
| 5879 | goto out_error; |
| 5880 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5881 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5882 | /* |
| 5883 | * Check if we have early data. If we do, we have to read them |
| 5884 | * before SSL_do_handshake() is called, And there's no way to |
| 5885 | * detect early data, except to try to read them |
| 5886 | */ |
| 5887 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5888 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5889 | |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5890 | while (1) { |
| 5891 | ret = SSL_read_early_data(ctx->ssl, |
| 5892 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5893 | &read_data); |
| 5894 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5895 | goto check_error; |
| 5896 | if (read_data > 0) { |
| 5897 | conn->flags |= CO_FL_EARLY_DATA; |
| 5898 | b_add(&ctx->early_buf, read_data); |
| 5899 | } |
| 5900 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5901 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5902 | if (!b_data(&ctx->early_buf)) |
| 5903 | b_free(&ctx->early_buf); |
| 5904 | break; |
| 5905 | } |
| 5906 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5907 | } |
| 5908 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5909 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5910 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5911 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5912 | * the reneg handshake. |
| 5913 | * Here we use SSL_peek as a workaround for reneg. |
| 5914 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 5915 | 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] | 5916 | char c; |
| 5917 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5918 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5919 | if (ret <= 0) { |
| 5920 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5921 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5922 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5923 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5924 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5925 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5926 | 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] | 5927 | return 0; |
| 5928 | } |
| 5929 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5930 | /* handshake may have been completed but we have |
| 5931 | * no more data to read. |
| 5932 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5933 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5934 | ret = 1; |
| 5935 | goto reneg_ok; |
| 5936 | } |
| 5937 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5938 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5939 | 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] | 5940 | return 0; |
| 5941 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5942 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5943 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5944 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5945 | return 0; |
| 5946 | } |
| 5947 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5948 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5949 | /* if errno is null, then connection was successfully established */ |
| 5950 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5951 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5952 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5953 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5954 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5955 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5956 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5957 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5958 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5959 | /* 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] | 5960 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5961 | empty_handshake = state == TLS_ST_BEFORE; |
| 5962 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5963 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5964 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5965 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5966 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5967 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5968 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5969 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5970 | else |
| 5971 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5972 | } |
| 5973 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5974 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5975 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5976 | else |
| 5977 | conn->err_code = CO_ER_SSL_ABORT; |
| 5978 | } |
| 5979 | } |
| 5980 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5981 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5982 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5983 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5984 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5985 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5986 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5987 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5988 | goto out_error; |
| 5989 | } |
| 5990 | else { |
| 5991 | /* Fail on all other handshake errors */ |
| 5992 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5993 | * buffer, causing an RST to be emitted upon close() on |
| 5994 | * TCP sockets. We first try to drain possibly pending |
| 5995 | * data to avoid this as much as possible. |
| 5996 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5997 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5998 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5999 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 6000 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 6001 | goto out_error; |
| 6002 | } |
| 6003 | } |
| 6004 | /* read some data: consider handshake completed */ |
| 6005 | goto reneg_ok; |
| 6006 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6007 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6008 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6009 | if (ret != 1) { |
| 6010 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6011 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6012 | |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 6013 | if (!ctx->error_code) |
| 6014 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 7c6898e | 2021-07-29 09:45:51 +0200 | [diff] [blame] | 6015 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6016 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 6017 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 6018 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6019 | 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] | 6020 | return 0; |
| 6021 | } |
| 6022 | else if (ret == SSL_ERROR_WANT_READ) { |
| 6023 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6024 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6025 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6026 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6027 | return 0; |
| 6028 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6029 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6030 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6031 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6032 | return 0; |
| 6033 | } |
| 6034 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 6035 | else if (ret == SSL_ERROR_SYSCALL) { |
| 6036 | /* if errno is null, then connection was successfully established */ |
| 6037 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 6038 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6039 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6040 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 6041 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6042 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 6043 | #else |
| 6044 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 6045 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6046 | /* 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] | 6047 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6048 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6049 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6050 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 6051 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 6052 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6053 | if (empty_handshake) { |
| 6054 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6055 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6056 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 6057 | else |
| 6058 | conn->err_code = CO_ER_SSL_EMPTY; |
| 6059 | } |
| 6060 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6061 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6062 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 6063 | else |
| 6064 | conn->err_code = CO_ER_SSL_ABORT; |
| 6065 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6066 | } |
| 6067 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6068 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6069 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 6070 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 6071 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6072 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 6073 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 6074 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 6075 | goto out_error; |
| 6076 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6077 | else { |
| 6078 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 6079 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 6080 | * buffer, causing an RST to be emitted upon close() on |
| 6081 | * TCP sockets. We first try to drain possibly pending |
| 6082 | * data to avoid this as much as possible. |
| 6083 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 6084 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 6085 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6086 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 6087 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6088 | goto out_error; |
| 6089 | } |
| 6090 | } |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6091 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6092 | else { |
| 6093 | /* |
| 6094 | * If the server refused the early data, we have to send a |
| 6095 | * 425 to the client, as we no longer have the data to sent |
| 6096 | * them again. |
| 6097 | */ |
| 6098 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6099 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6100 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 6101 | goto out_error; |
| 6102 | } |
| 6103 | } |
| 6104 | } |
| 6105 | #endif |
| 6106 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6107 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 6108 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6109 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6110 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6111 | /* ASYNC engine API doesn't support moving read/write |
| 6112 | * buffers. So we disable ASYNC mode right after |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6113 | * the handshake to avoid buffer overflow. |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6114 | */ |
| 6115 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6116 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6117 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6118 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6119 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 6120 | if (objt_server(conn->target)) { |
| 6121 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 6122 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 6123 | 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] | 6124 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 6125 | else { |
| 6126 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 6127 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 6128 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 6129 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 6130 | |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 6131 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 6132 | HA_ATOMIC_INC(&counters->sess); |
| 6133 | HA_ATOMIC_INC(&counters_px->sess); |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 6134 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 6135 | } |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 6136 | else if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 6137 | HA_ATOMIC_INC(&counters->reused_sess); |
| 6138 | HA_ATOMIC_INC(&counters_px->reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6139 | } |
| 6140 | |
| 6141 | /* The connection is now established at both layers, it's time to leave */ |
| 6142 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 6143 | return 1; |
| 6144 | |
| 6145 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6146 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6147 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6148 | ERR_clear_error(); |
| 6149 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 6150 | /* free resumed session if exists */ |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 6151 | if (objt_server(conn->target)) { |
| 6152 | struct server *s = __objt_server(conn->target); |
| 6153 | /* RWLOCK: only rdlock the SSL cache even when writing in it because there is |
| 6154 | * one cache per thread, it only prevents to flush it from the CLI in |
| 6155 | * another thread */ |
| 6156 | |
| 6157 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 6158 | if (s->ssl_ctx.reused_sess[tid].ptr) |
| 6159 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 6160 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 6161 | } |
| 6162 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 6163 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 6164 | HA_ATOMIC_INC(&counters->failed_handshake); |
| 6165 | HA_ATOMIC_INC(&counters_px->failed_handshake); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 6166 | } |
| 6167 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6168 | /* Fail on all other handshake errors */ |
| 6169 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 6170 | if (!conn->err_code) |
| 6171 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6172 | return 0; |
| 6173 | } |
| 6174 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6175 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 6176 | * event subscriber <es> is not allowed to change from a previous call as long |
| 6177 | * as at least one event is still subscribed. The <event_type> must only be a |
| 6178 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, |
| 6179 | * unless the transport layer was already released. |
| 6180 | */ |
| 6181 | 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] | 6182 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6183 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6184 | |
Olivier Houchard | 0ff2865 | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 6185 | if (!ctx) |
| 6186 | return -1; |
| 6187 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6188 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6189 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6190 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6191 | ctx->subs = es; |
| 6192 | es->events |= event_type; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6193 | |
| 6194 | /* we may have to subscribe to lower layers for new events */ |
| 6195 | event_type &= ~ctx->wait_event.events; |
| 6196 | if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS)) |
| 6197 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6198 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 6199 | } |
| 6200 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6201 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 6202 | * The <es> pointer is not allowed to differ from the one passed to the |
| 6203 | * subscribe() call. It always returns zero. |
| 6204 | */ |
| 6205 | 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] | 6206 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6207 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6208 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6209 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6210 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6211 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6212 | es->events &= ~event_type; |
| 6213 | if (!es->events) |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6214 | ctx->subs = NULL; |
| 6215 | |
| 6216 | /* If we subscribed, and we're not doing the handshake, |
| 6217 | * then we subscribed because the upper layer asked for it, |
| 6218 | * as the upper layer is no longer interested, we can |
| 6219 | * unsubscribe too. |
| 6220 | */ |
| 6221 | event_type &= ctx->wait_event.events; |
| 6222 | if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) |
| 6223 | conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6224 | |
| 6225 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 6226 | } |
| 6227 | |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6228 | /* The connection has been taken over, so destroy the old tasklet and create |
| 6229 | * a new one. The original thread ID must be passed into orig_tid |
| 6230 | * It should be called with the takeover lock for the old thread held. |
| 6231 | * Returns 0 on success, and -1 on failure |
| 6232 | */ |
| 6233 | static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid) |
| 6234 | { |
| 6235 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6236 | struct tasklet *tl = tasklet_new(); |
| 6237 | |
| 6238 | if (!tl) |
| 6239 | return -1; |
| 6240 | |
| 6241 | ctx->wait_event.tasklet->context = NULL; |
| 6242 | tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid); |
| 6243 | ctx->wait_event.tasklet = tl; |
| 6244 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 6245 | ctx->wait_event.tasklet->context = ctx; |
| 6246 | return 0; |
| 6247 | } |
| 6248 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6249 | /* notify the next xprt that the connection is about to become idle and that it |
| 6250 | * may be stolen at any time after the function returns and that any tasklet in |
| 6251 | * the chain must be careful before dereferencing its context. |
| 6252 | */ |
| 6253 | static void ssl_set_idle(struct connection *conn, void *xprt_ctx) |
| 6254 | { |
| 6255 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6256 | |
| 6257 | if (!ctx || !ctx->wait_event.tasklet) |
| 6258 | return; |
| 6259 | |
| 6260 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 6261 | if (ctx->xprt) |
| 6262 | xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx); |
| 6263 | } |
| 6264 | |
| 6265 | /* notify the next xprt that the connection is not idle anymore and that it may |
| 6266 | * not be stolen before the next xprt_set_idle(). |
| 6267 | */ |
| 6268 | static void ssl_set_used(struct connection *conn, void *xprt_ctx) |
| 6269 | { |
| 6270 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6271 | |
| 6272 | if (!ctx || !ctx->wait_event.tasklet) |
| 6273 | return; |
| 6274 | |
| 6275 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 6276 | if (ctx->xprt) |
| 6277 | xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx); |
| 6278 | } |
| 6279 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 6280 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 6281 | * Returns 0 on success, and non-zero on failure. |
| 6282 | */ |
| 6283 | 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) |
| 6284 | { |
| 6285 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6286 | |
| 6287 | if (oldxprt_ops != NULL) |
| 6288 | *oldxprt_ops = ctx->xprt; |
| 6289 | if (oldxprt_ctx != NULL) |
| 6290 | *oldxprt_ctx = ctx->xprt_ctx; |
| 6291 | ctx->xprt = toadd_ops; |
| 6292 | ctx->xprt_ctx = toadd_ctx; |
| 6293 | return 0; |
| 6294 | } |
| 6295 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 6296 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 6297 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 6298 | * XPRT. |
| 6299 | */ |
| 6300 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 6301 | { |
| 6302 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6303 | |
| 6304 | if (ctx->xprt_ctx == toremove_ctx) { |
| 6305 | ctx->xprt_ctx = newctx; |
| 6306 | ctx->xprt = newops; |
| 6307 | return 0; |
| 6308 | } |
| 6309 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 6310 | } |
| 6311 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 6312 | 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] | 6313 | { |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6314 | struct tasklet *tl = (struct tasklet *)t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6315 | struct ssl_sock_ctx *ctx = context; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6316 | struct connection *conn; |
| 6317 | int conn_in_list; |
| 6318 | int ret = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6319 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6320 | if (state & TASK_F_USR1) { |
| 6321 | /* the tasklet was idling on an idle connection, it might have |
| 6322 | * been stolen, let's be careful! |
| 6323 | */ |
| 6324 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6325 | if (tl->context == NULL) { |
| 6326 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6327 | tasklet_free(tl); |
| 6328 | return NULL; |
| 6329 | } |
| 6330 | conn = ctx->conn; |
Christopher Faulet | 3a7b539 | 2023-03-16 11:43:05 +0100 | [diff] [blame] | 6331 | conn_in_list = conn_get_idle_flag(conn); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6332 | if (conn_in_list) |
| 6333 | conn_delete_from_tree(&conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6334 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6335 | } else { |
| 6336 | conn = ctx->conn; |
| 6337 | conn_in_list = 0; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6338 | } |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6339 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6340 | /* First if we're doing an handshake, try that */ |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6341 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6342 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6343 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 6344 | /* handshake completed, leave the bulk queue */ |
Willy Tarreau | 4c48edb | 2021-03-09 17:58:02 +0100 | [diff] [blame] | 6345 | _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6346 | } |
| 6347 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6348 | /* If we had an error, or the handshake is done and I/O is available, |
| 6349 | * let the upper layer know. |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6350 | * If no mux was set up yet, then call conn_create_mux() |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6351 | * we can't be sure conn_fd_handler() will be called again. |
| 6352 | */ |
| 6353 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 6354 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6355 | int woke = 0; |
| 6356 | |
| 6357 | /* On error, wake any waiter */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6358 | if (ctx->subs) { |
| 6359 | tasklet_wakeup(ctx->subs->tasklet); |
| 6360 | ctx->subs->events = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6361 | woke = 1; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6362 | ctx->subs = NULL; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6363 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6364 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6365 | /* If we're the first xprt for the connection, let the |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6366 | * upper layers know. If we have no mux, create it, |
| 6367 | * and once we have a mux, call its wake method if we didn't |
| 6368 | * woke a tasklet already. |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6369 | */ |
| 6370 | if (ctx->conn->xprt_ctx == ctx) { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6371 | if (!ctx->conn->mux) |
| 6372 | ret = conn_create_mux(ctx->conn); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6373 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6374 | ret = ctx->conn->mux->wake(ctx->conn); |
| 6375 | goto leave; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6376 | } |
| 6377 | } |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6378 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6379 | /* If we have early data and somebody wants to receive, let them */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6380 | else if (b_data(&ctx->early_buf) && ctx->subs && |
| 6381 | ctx->subs->events & SUB_RETRY_RECV) { |
| 6382 | tasklet_wakeup(ctx->subs->tasklet); |
| 6383 | ctx->subs->events &= ~SUB_RETRY_RECV; |
| 6384 | if (!ctx->subs->events) |
| 6385 | ctx->subs = NULL; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6386 | } |
| 6387 | #endif |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6388 | leave: |
| 6389 | if (!ret && conn_in_list) { |
| 6390 | struct server *srv = objt_server(conn->target); |
| 6391 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6392 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6393 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 8522348 | 2022-09-29 20:32:43 +0200 | [diff] [blame] | 6394 | eb64_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6395 | else |
Willy Tarreau | 8522348 | 2022-09-29 20:32:43 +0200 | [diff] [blame] | 6396 | eb64_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6397 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6398 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 6399 | return t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6400 | } |
| 6401 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6402 | /* 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] | 6403 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6404 | * buffer wraps, in which case a second call may be performed. The connection's |
| 6405 | * flags are updated with whatever special event is detected (error, read0, |
| 6406 | * empty). The caller is responsible for taking care of those events and |
| 6407 | * avoiding the call if inappropriate. The function does not call the |
| 6408 | * connection's polling update function, so the caller is responsible for this. |
| 6409 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6410 | 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] | 6411 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6412 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 6413 | ssize_t ret; |
| 6414 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6415 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6416 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6417 | goto out_error; |
| 6418 | |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6419 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6420 | if (b_data(&ctx->early_buf)) { |
| 6421 | try = b_contig_space(buf); |
| 6422 | if (try > b_data(&ctx->early_buf)) |
| 6423 | try = b_data(&ctx->early_buf); |
| 6424 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 6425 | b_add(buf, try); |
| 6426 | b_del(&ctx->early_buf, try); |
| 6427 | if (b_data(&ctx->early_buf) == 0) |
| 6428 | b_free(&ctx->early_buf); |
| 6429 | return try; |
| 6430 | } |
| 6431 | #endif |
| 6432 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6433 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6434 | /* a handshake was requested */ |
| 6435 | return 0; |
| 6436 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6437 | /* read the largest possible block. For this, we perform only one call |
| 6438 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 6439 | * in which case we accept to do it once again. A new attempt is made on |
| 6440 | * EINTR too. |
| 6441 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 6442 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6443 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6444 | try = b_contig_space(buf); |
| 6445 | if (!try) |
| 6446 | break; |
| 6447 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 6448 | if (try > count) |
| 6449 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6450 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6451 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | f967c31 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 6452 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6453 | if (conn->flags & CO_FL_ERROR) { |
| 6454 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6455 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6456 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6457 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 6458 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6459 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6460 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6461 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6462 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6463 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6464 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6465 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6466 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6467 | 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] | 6468 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6469 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6470 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6471 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6472 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6473 | break; |
| 6474 | } |
| 6475 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6476 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6477 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6478 | SUB_RETRY_RECV, |
| 6479 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6480 | /* handshake is running, and it may need to re-enable read */ |
| 6481 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6482 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6483 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6484 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6485 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6486 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6487 | break; |
| 6488 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6489 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6490 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 6491 | goto read0; |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6492 | else if (ret == SSL_ERROR_SSL) { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6493 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
| 6494 | if (ctx && !ctx->error_code) |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6495 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6496 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6497 | } |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6498 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 6499 | * stack before shutting down the connection for |
| 6500 | * reading. */ |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 6501 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN || errno == EWOULDBLOCK)) |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6502 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6503 | /* otherwise it's a real error */ |
| 6504 | goto out_error; |
| 6505 | } |
| 6506 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6507 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6508 | return done; |
| 6509 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6510 | clear_ssl_error: |
| 6511 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6512 | ssl_sock_dump_errors(conn, NULL); |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6513 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6514 | read0: |
| 6515 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6516 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6517 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6518 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6519 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6520 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6521 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6522 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6523 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6524 | } |
| 6525 | |
| 6526 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6527 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 6528 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 6529 | * 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] | 6530 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 6531 | * a second call may be performed. The connection's flags are updated with |
| 6532 | * whatever special event is detected (error, empty). The caller is responsible |
| 6533 | * for taking care of those events and avoiding the call if inappropriate. The |
| 6534 | * 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] | 6535 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 6536 | * caller to take care of this. It's up to the caller to update the buffer's |
| 6537 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6538 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6539 | 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] | 6540 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6541 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6542 | ssize_t ret; |
| 6543 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6544 | |
| 6545 | done = 0; |
| 6546 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6547 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6548 | goto out_error; |
| 6549 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6550 | 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] | 6551 | /* a handshake was requested */ |
| 6552 | return 0; |
| 6553 | |
| 6554 | /* send the largest possible block. For this we perform only one call |
| 6555 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 6556 | * in which case we accept to do it once again. |
| 6557 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6558 | while (count) { |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6559 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6560 | size_t written_data; |
| 6561 | #endif |
| 6562 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6563 | try = b_contig_data(buf, done); |
| 6564 | if (try > count) |
| 6565 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6566 | |
Thomas Prückl | 1024393 | 2022-04-27 13:04:54 +0200 | [diff] [blame] | 6567 | if (global_ssl.hard_max_record && try > global_ssl.hard_max_record) |
| 6568 | try = global_ssl.hard_max_record; |
| 6569 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6570 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6571 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6572 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6573 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6574 | } |
| 6575 | else { |
| 6576 | /* we need to keep the information about the fact that |
| 6577 | * we're not limiting the upcoming send(), because if it |
| 6578 | * fails, we'll have to retry with at least as many data. |
| 6579 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6580 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6581 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6582 | |
Willy Tarreau | ac78c4f | 2023-03-17 16:13:05 +0100 | [diff] [blame] | 6583 | if (try < count || flags & CO_SFL_MSG_MORE) |
| 6584 | ctx->xprt_st |= SSL_SOCK_SEND_MORE; |
| 6585 | else |
| 6586 | ctx->xprt_st &= ~SSL_SOCK_SEND_MORE; |
| 6587 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6588 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6589 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6590 | unsigned int max_early; |
| 6591 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6592 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6593 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6594 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6595 | if (SSL_get0_session(ctx->ssl)) |
| 6596 | 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] | 6597 | else |
| 6598 | max_early = 0; |
| 6599 | } |
| 6600 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6601 | if (try + ctx->sent_early_data > max_early) { |
| 6602 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6603 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6604 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6605 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6606 | break; |
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 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6609 | 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] | 6610 | if (ret == 1) { |
| 6611 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6612 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6613 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6614 | 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] | 6615 | /* Initiate the handshake, now */ |
| 6616 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6617 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6618 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6619 | } |
| 6620 | |
| 6621 | } else |
| 6622 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6623 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6624 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6625 | if (conn->flags & CO_FL_ERROR) { |
| 6626 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6627 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6628 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6629 | if (ret > 0) { |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 6630 | /* A send succeeded, so we can consider ourself connected */ |
| 6631 | conn->flags &= ~CO_FL_WAIT_L4L6; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6632 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6633 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6634 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6635 | } |
| 6636 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6637 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6638 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6639 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6640 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6641 | /* handshake is running, and it may need to re-enable write */ |
| 6642 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6643 | 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] | 6644 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6645 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6646 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6647 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6648 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6649 | break; |
| 6650 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6651 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6652 | break; |
| 6653 | } |
| 6654 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6655 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6656 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6657 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6658 | SUB_RETRY_RECV, |
| 6659 | &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6660 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6661 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6662 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6663 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6664 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6665 | break; |
| 6666 | } |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6667 | else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6668 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
| 6669 | |
Willy Tarreau | 3a0a0d6 | 2022-04-12 07:31:06 +0200 | [diff] [blame] | 6670 | if (ctx && !ctx->error_code) |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6671 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6672 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6673 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6674 | goto out_error; |
| 6675 | } |
| 6676 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6677 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6678 | return done; |
| 6679 | |
| 6680 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6681 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6682 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6683 | ERR_clear_error(); |
| 6684 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6685 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6686 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6687 | } |
| 6688 | |
Willy Tarreau | 832e242 | 2021-05-13 10:11:03 +0200 | [diff] [blame] | 6689 | void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6690 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6691 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6692 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6693 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6694 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6695 | if (ctx->wait_event.events != 0) |
| 6696 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6697 | ctx->wait_event.events, |
| 6698 | &ctx->wait_event); |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6699 | if (ctx->subs) { |
| 6700 | ctx->subs->events = 0; |
| 6701 | tasklet_wakeup(ctx->subs->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6702 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6703 | |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6704 | if (ctx->xprt->close) |
| 6705 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6706 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6707 | if (global_ssl.async) { |
| 6708 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6709 | size_t num_all_fds = 0; |
| 6710 | int i; |
| 6711 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6712 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6713 | if (num_all_fds > 32) { |
| 6714 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6715 | return; |
| 6716 | } |
| 6717 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6718 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6719 | |
| 6720 | /* If an async job is pending, we must try to |
| 6721 | to catch the end using polling before calling |
| 6722 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6723 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6724 | for (i=0 ; i < num_all_fds ; i++) { |
| 6725 | /* switch on an handler designed to |
| 6726 | * handle the SSL_free |
| 6727 | */ |
| 6728 | afd = all_fd[i]; |
| 6729 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6730 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6731 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6732 | /* To ensure that the fd cache won't be used |
| 6733 | * and we'll catch a real RD event. |
| 6734 | */ |
| 6735 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6736 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6737 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6738 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6739 | _HA_ATOMIC_INC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6740 | return; |
| 6741 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6742 | /* Else we can remove the fds from the fdtab |
| 6743 | * and call SSL_free. |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6744 | * note: we do a fd_stop_both and not a delete |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6745 | * because the fd is owned by the engine. |
| 6746 | * the engine is responsible to close |
| 6747 | */ |
Emeric Brun | 7d392a5 | 2022-07-01 17:36:50 +0200 | [diff] [blame] | 6748 | for (i=0 ; i < num_all_fds ; i++) { |
| 6749 | /* We want to remove the fd from the fdtab |
| 6750 | * but we flag it to disown because the |
| 6751 | * close is performed by the engine itself |
| 6752 | */ |
| 6753 | fdtab[all_fd[i]].state |= FD_DISOWN; |
| 6754 | fd_delete(all_fd[i]); |
| 6755 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6756 | } |
| 6757 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6758 | SSL_free(ctx->ssl); |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6759 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6760 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6761 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 6762 | _HA_ATOMIC_DEC(&global.sslconns); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6763 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6764 | } |
| 6765 | |
| 6766 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6767 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6768 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6769 | 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] | 6770 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6771 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6772 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6773 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6774 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6775 | if (!clean) |
| 6776 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6777 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6778 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6779 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6780 | /* Clear openssl global errors stack */ |
Frédéric Lécaille | 2be0ac5 | 2022-09-06 19:37:08 +0200 | [diff] [blame] | 6781 | ssl_sock_dump_errors(conn, NULL); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6782 | ERR_clear_error(); |
| 6783 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6784 | } |
| 6785 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6786 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6787 | /* used for ppv2 pkey algo (can be used for logging) */ |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6788 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
| 6789 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6790 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6791 | X509 *crt; |
| 6792 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6793 | if (!ctx) |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6794 | return 0; |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6795 | crt = SSL_get_certificate(ctx->ssl); |
| 6796 | if (!crt) |
| 6797 | return 0; |
| 6798 | |
| 6799 | return cert_get_pkey_algo(crt, out); |
| 6800 | } |
| 6801 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6802 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6803 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6804 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6805 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6806 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6807 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6808 | X509 *crt; |
| 6809 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6810 | if (!ctx) |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6811 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6812 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6813 | if (!crt) |
| 6814 | return NULL; |
| 6815 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6816 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6817 | } |
| 6818 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6819 | /* used for ppv2 authority */ |
| 6820 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6821 | { |
| 6822 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6823 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6824 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6825 | if (!ctx) |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6826 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6827 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6828 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6829 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6830 | #endif |
| 6831 | } |
| 6832 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6833 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6834 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6835 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6836 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6837 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6838 | if (!ctx) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6839 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6840 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6841 | } |
| 6842 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6843 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6844 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6845 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6846 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6847 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6848 | if (!ctx) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6849 | return NULL; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6850 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6851 | } |
| 6852 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6853 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6854 | { |
| 6855 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6856 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6857 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6858 | if (!ctx) |
Olivier Houchard | e488ea8 | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6859 | return; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6860 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6861 | #endif |
| 6862 | } |
| 6863 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6864 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6865 | * to disable SNI. |
| 6866 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6867 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6868 | { |
| 6869 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6870 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6871 | struct server *s; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6872 | char *prev_name; |
| 6873 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6874 | if (!ctx) |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6875 | return; |
Willy Tarreau | 77bfa66 | 2021-12-23 11:12:13 +0100 | [diff] [blame] | 6876 | |
| 6877 | BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN)); |
| 6878 | BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS)); |
| 6879 | |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6880 | s = __objt_server(conn->target); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6881 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6882 | /* 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] | 6883 | * new connection will present a new SNI. compare with the SNI |
| 6884 | * previously stored in the reused_sess */ |
| 6885 | /* the RWLOCK is used to ensure that we are not trying to flush the |
| 6886 | * cache from the CLI */ |
| 6887 | |
| 6888 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
| 6889 | prev_name = s->ssl_ctx.reused_sess[tid].sni; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6890 | if ((!prev_name && hostname) || |
| 6891 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6892 | SSL_set_session(ctx->ssl, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6893 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6894 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6895 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6896 | #endif |
| 6897 | } |
| 6898 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6899 | /* Extract peer certificate's common name into the chunk dest |
| 6900 | * Returns |
| 6901 | * the len of the extracted common name |
| 6902 | * or 0 if no CN found in DN |
| 6903 | * or -1 on error case (i.e. no peer certificate) |
| 6904 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6905 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6906 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6907 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6908 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6909 | X509 *crt = NULL; |
| 6910 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6911 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6912 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6913 | .area = (char *)&find_cn, |
| 6914 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6915 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6916 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6917 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6918 | if (!ctx) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6919 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6920 | |
| 6921 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6922 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6923 | if (!crt) |
| 6924 | goto out; |
| 6925 | |
| 6926 | name = X509_get_subject_name(crt); |
| 6927 | if (!name) |
| 6928 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6929 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6930 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6931 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6932 | if (crt) |
| 6933 | X509_free(crt); |
| 6934 | |
| 6935 | return result; |
| 6936 | } |
| 6937 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6938 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6939 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6940 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6941 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6942 | X509 *crt = NULL; |
| 6943 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6944 | if (!ctx) |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6945 | return 0; |
| 6946 | |
| 6947 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6948 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6949 | if (!crt) |
| 6950 | return 0; |
| 6951 | |
| 6952 | X509_free(crt); |
| 6953 | return 1; |
| 6954 | } |
| 6955 | |
| 6956 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6957 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6958 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6959 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6960 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6961 | if (!ctx) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6962 | return 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6963 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6964 | } |
| 6965 | |
| 6966 | /* returns result from SSL verify */ |
| 6967 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6968 | { |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6969 | struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6970 | |
Willy Tarreau | 939b0bf | 2022-04-11 11:29:11 +0200 | [diff] [blame] | 6971 | if (!ctx) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6972 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6973 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6974 | } |
| 6975 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6976 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6977 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6978 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6979 | * freed by the caller. NPN is also checked if available since older versions |
| 6980 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6981 | */ |
Amaury Denoyelle | 71e588c | 2021-11-12 11:23:29 +0100 | [diff] [blame] | 6982 | 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] | 6983 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6984 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6985 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6986 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6987 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6988 | return 0; |
| 6989 | |
| 6990 | *str = NULL; |
| 6991 | |
| 6992 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6993 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6994 | if (*str) |
| 6995 | return 1; |
| 6996 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6997 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6998 | 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] | 6999 | if (*str) |
| 7000 | return 1; |
| 7001 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 7002 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 7003 | return 0; |
| 7004 | } |
| 7005 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7006 | /* "issuers-chain-path" load chain certificate in global */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7007 | 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] | 7008 | { |
| 7009 | X509 *ca; |
| 7010 | X509_NAME *name = NULL; |
| 7011 | ASN1_OCTET_STRING *skid = NULL; |
| 7012 | STACK_OF(X509) *chain = NULL; |
| 7013 | struct issuer_chain *issuer; |
| 7014 | struct eb64_node *node; |
| 7015 | char *path; |
| 7016 | u64 key; |
| 7017 | int ret = 0; |
| 7018 | |
| 7019 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 7020 | if (chain == NULL) { |
| 7021 | chain = sk_X509_new_null(); |
| 7022 | skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL); |
| 7023 | name = X509_get_subject_name(ca); |
| 7024 | } |
| 7025 | if (!sk_X509_push(chain, ca)) { |
| 7026 | X509_free(ca); |
| 7027 | goto end; |
| 7028 | } |
| 7029 | } |
| 7030 | if (!chain) { |
| 7031 | memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp); |
| 7032 | goto end; |
| 7033 | } |
| 7034 | if (!skid) { |
| 7035 | memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp); |
| 7036 | goto end; |
| 7037 | } |
| 7038 | if (!name) { |
| 7039 | memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp); |
| 7040 | goto end; |
| 7041 | } |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 7042 | key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0); |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 7043 | 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] | 7044 | issuer = container_of(node, typeof(*issuer), node); |
| 7045 | if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) { |
| 7046 | memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path); |
| 7047 | goto end; |
| 7048 | } |
| 7049 | } |
| 7050 | issuer = calloc(1, sizeof *issuer); |
| 7051 | path = strdup(fp); |
| 7052 | if (!issuer || !path) { |
| 7053 | free(issuer); |
| 7054 | free(path); |
| 7055 | goto end; |
| 7056 | } |
| 7057 | issuer->node.key = key; |
| 7058 | issuer->path = path; |
| 7059 | issuer->chain = chain; |
| 7060 | chain = NULL; |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 7061 | eb64_insert(&cert_issuer_tree, &issuer->node); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7062 | ret = 1; |
| 7063 | end: |
| 7064 | if (skid) |
| 7065 | ASN1_OCTET_STRING_free(skid); |
| 7066 | if (chain) |
| 7067 | sk_X509_pop_free(chain, X509_free); |
| 7068 | return ret; |
| 7069 | } |
| 7070 | |
William Lallemand | da8584c | 2020-05-14 10:14:37 +0200 | [diff] [blame] | 7071 | struct issuer_chain* ssl_get0_issuer_chain(X509 *cert) |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7072 | { |
| 7073 | AUTHORITY_KEYID *akid; |
| 7074 | struct issuer_chain *issuer = NULL; |
| 7075 | |
| 7076 | akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL); |
William Lallemand | f69cd68 | 2020-11-19 16:24:13 +0100 | [diff] [blame] | 7077 | if (akid && akid->keyid) { |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7078 | struct eb64_node *node; |
| 7079 | u64 hk; |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 7080 | 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] | 7081 | for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) { |
| 7082 | struct issuer_chain *ti = container_of(node, typeof(*issuer), node); |
| 7083 | if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) { |
| 7084 | issuer = ti; |
| 7085 | break; |
| 7086 | } |
| 7087 | } |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7088 | } |
Remi Tricot-Le Breton | 1621dc1 | 2022-11-03 15:16:48 +0100 | [diff] [blame] | 7089 | AUTHORITY_KEYID_free(akid); |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 7090 | return issuer; |
| 7091 | } |
| 7092 | |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7093 | void ssl_free_global_issuers(void) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7094 | { |
| 7095 | struct eb64_node *node, *back; |
| 7096 | struct issuer_chain *issuer; |
| 7097 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 7098 | node = eb64_first(&cert_issuer_tree); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7099 | while (node) { |
| 7100 | issuer = container_of(node, typeof(*issuer), node); |
| 7101 | back = eb64_next(node); |
| 7102 | eb64_delete(node); |
| 7103 | free(issuer->path); |
| 7104 | sk_X509_pop_free(issuer->chain, X509_free); |
| 7105 | free(issuer); |
| 7106 | node = back; |
| 7107 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7108 | } |
| 7109 | |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7110 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7111 | static int ssl_check_async_engine_count(void) { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 7112 | int err_code = ERR_NONE; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7113 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 7114 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 7115 | 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] | 7116 | err_code = ERR_ABORT; |
| 7117 | } |
| 7118 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 7119 | } |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 7120 | #endif |
| 7121 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7122 | /* "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] | 7123 | * 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] | 7124 | */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 7125 | 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] | 7126 | { |
| 7127 | const struct ssl_sock_ctx *sctx = ctx; |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7128 | int ret = 0; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7129 | |
| 7130 | if (!sctx) |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7131 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7132 | |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7133 | if (sctx->conn != conn) { |
| 7134 | chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn); |
| 7135 | ret = 1; |
| 7136 | } |
Christopher Faulet | f19c639 | 2023-03-14 15:51:33 +0100 | [diff] [blame] | 7137 | 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] | 7138 | |
| 7139 | if (sctx->xprt) { |
| 7140 | chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name); |
| 7141 | if (sctx->xprt_ctx) |
| 7142 | chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx); |
| 7143 | } |
| 7144 | |
| 7145 | chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7146 | |
| 7147 | /* as soon as a shutdown is reported the lower layer unregisters its |
| 7148 | * subscriber, so the situations below are transient and rare enough to |
| 7149 | * be reported as suspicious. In any case they shouldn't last. |
| 7150 | */ |
| 7151 | if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR))) |
| 7152 | ret = 1; |
| 7153 | if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR))) |
| 7154 | ret = 1; |
| 7155 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7156 | chunk_appendf(&trash, " .subs=%p", sctx->subs); |
| 7157 | if (sctx->subs) { |
| 7158 | 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] | 7159 | if (sctx->subs->tasklet->calls >= 1000000) |
| 7160 | ret = 1; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7161 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 7162 | sctx->subs->tasklet->calls, |
| 7163 | sctx->subs->tasklet->context); |
| 7164 | resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process); |
| 7165 | chunk_appendf(&trash, ")"); |
| 7166 | } |
| 7167 | chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data); |
| 7168 | chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 7169 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7170 | } |
| 7171 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7172 | #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] | 7173 | /* 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] | 7174 | * each reference. The variable <ref> must point to the current node's list |
| 7175 | * 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] | 7176 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7177 | static inline |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7178 | 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] | 7179 | { |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 7180 | /* Get next list entry. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7181 | ref = ref->n; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7182 | |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 7183 | /* If the entry is the last of the list, return NULL. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7184 | if (ref == end) |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 7185 | return NULL; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7186 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7187 | return LIST_ELEM(ref, struct tls_keys_ref *, list); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7188 | } |
| 7189 | |
| 7190 | static inline |
| 7191 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 7192 | { |
| 7193 | int id; |
| 7194 | char *error; |
| 7195 | |
| 7196 | /* If the reference starts by a '#', this is numeric id. */ |
| 7197 | if (reference[0] == '#') { |
| 7198 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 7199 | id = strtol(reference + 1, &error, 10); |
| 7200 | if (*error != '\0') |
| 7201 | return NULL; |
| 7202 | |
| 7203 | /* Perform the unique id lookup. */ |
| 7204 | return tlskeys_ref_lookupid(id); |
| 7205 | } |
| 7206 | |
| 7207 | /* Perform the string lookup. */ |
| 7208 | return tlskeys_ref_lookup(reference); |
| 7209 | } |
| 7210 | #endif |
| 7211 | |
| 7212 | |
| 7213 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7214 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7215 | /* 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] | 7216 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) |
| 7217 | { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7218 | struct show_keys_ctx *ctx = appctx->svcctx; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7219 | |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7220 | switch (ctx->state) { |
| 7221 | case SHOW_KEYS_INIT: |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7222 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 7223 | * quit the function with returning 0. The function is called |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7224 | * later and restart at the state "SHOW_KEYS_INIT". |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7225 | */ |
| 7226 | chunk_reset(&trash); |
| 7227 | |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7228 | if (ctx->dump_entries) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7229 | chunk_appendf(&trash, "# id secret\n"); |
| 7230 | else |
| 7231 | chunk_appendf(&trash, "# id (file)\n"); |
| 7232 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7233 | if (applet_putchk(appctx, &trash) == -1) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7234 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7235 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7236 | /* Now, we start the browsing of the references lists. |
| 7237 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 7238 | * available field of this pointer is <list>. It is used with the function |
| 7239 | * tlskeys_list_get_next() for retruning the first available entry |
| 7240 | */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7241 | if (ctx->next_ref == NULL) |
| 7242 | ctx->next_ref = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7243 | |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7244 | ctx->state = SHOW_KEYS_LIST; |
Willy Tarreau | a551f4f | 2022-11-14 07:34:43 +0100 | [diff] [blame] | 7245 | __fallthrough; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7246 | |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7247 | case SHOW_KEYS_LIST: |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7248 | while (ctx->next_ref) { |
| 7249 | struct tls_keys_ref *ref = ctx->next_ref; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7250 | |
| 7251 | chunk_reset(&trash); |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7252 | if (ctx->dump_entries && ctx->next_index == 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7253 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7254 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7255 | if (ctx->next_index == 0) |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7256 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 7257 | |
Willy Tarreau | bd33864 | 2022-05-05 08:59:17 +0200 | [diff] [blame] | 7258 | if (ctx->dump_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7259 | int head; |
| 7260 | |
| 7261 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 7262 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7263 | while (ctx->next_index < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7264 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7265 | |
| 7266 | chunk_reset(t2); |
| 7267 | /* 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] | 7268 | if (ref->key_size_bits == 128) { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7269 | 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] | 7270 | sizeof(struct tls_sess_key_128), |
| 7271 | t2->area, t2->size); |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7272 | 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] | 7273 | t2->area); |
| 7274 | } |
| 7275 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7276 | 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] | 7277 | sizeof(struct tls_sess_key_256), |
| 7278 | t2->area, t2->size); |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7279 | 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] | 7280 | t2->area); |
| 7281 | } |
| 7282 | else { |
| 7283 | /* This case should never happen */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7284 | 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] | 7285 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7286 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7287 | if (applet_putchk(appctx, &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7288 | /* let's try again later from this stream. We add ourselves into |
| 7289 | * this stream's users so that it can remove us upon termination. |
| 7290 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7291 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7292 | return 0; |
| 7293 | } |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7294 | ctx->next_index++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7295 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7296 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7297 | ctx->next_index = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7298 | } |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7299 | if (applet_putchk(appctx, &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7300 | /* let's try again later from this stream. We add ourselves into |
| 7301 | * this stream's users so that it can remove us upon termination. |
| 7302 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7303 | return 0; |
| 7304 | } |
| 7305 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7306 | if (ctx->names_only == 0) /* don't display everything if not necessary */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7307 | break; |
| 7308 | |
| 7309 | /* get next list entry and check the end of the list */ |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7310 | ctx->next_ref = tlskeys_list_get_next(&ref->list, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7311 | } |
Willy Tarreau | 9c5a38c | 2022-05-05 09:03:44 +0200 | [diff] [blame] | 7312 | ctx->state = SHOW_KEYS_DONE; |
Willy Tarreau | a551f4f | 2022-11-14 07:34:43 +0100 | [diff] [blame] | 7313 | __fallthrough; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7314 | |
| 7315 | default: |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7316 | return 1; |
| 7317 | } |
| 7318 | return 0; |
| 7319 | } |
| 7320 | |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7321 | /* 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] | 7322 | 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] | 7323 | { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7324 | struct show_keys_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 7325 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7326 | /* no parameter, shows only file list */ |
| 7327 | if (!*args[2]) { |
Willy Tarreau | a938052 | 2022-05-05 08:50:17 +0200 | [diff] [blame] | 7328 | ctx->names_only = 1; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 7329 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7330 | } |
| 7331 | |
| 7332 | if (args[2][0] == '*') { |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7333 | /* list every TLS ticket keys */ |
| 7334 | ctx->names_only = 1; |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7335 | } else { |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7336 | ctx->next_ref = tlskeys_ref_lookup_ref(args[2]); |
| 7337 | if (!ctx->next_ref) |
| 7338 | 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] | 7339 | } |
| 7340 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7341 | ctx->dump_entries = 1; |
| 7342 | return 0; |
| 7343 | } |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7344 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7345 | static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
| 7346 | { |
| 7347 | struct tls_keys_ref *ref; |
| 7348 | int ret; |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7349 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7350 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
| 7351 | if (!*args[3] || !*args[4]) |
| 7352 | 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] | 7353 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7354 | ref = tlskeys_ref_lookup_ref(args[3]); |
| 7355 | if (!ref) |
| 7356 | 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] | 7357 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7358 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
| 7359 | if (ret < 0) |
| 7360 | 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] | 7361 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7362 | trash.data = ret; |
| 7363 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) |
| 7364 | 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] | 7365 | |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7366 | 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] | 7367 | } |
Remi Tricot-Le Breton | c8d814e | 2022-12-20 11:11:17 +0100 | [diff] [blame] | 7368 | #endif |
| 7369 | |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7370 | |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7371 | #ifdef HAVE_SSL_PROVIDERS |
| 7372 | struct provider_name { |
| 7373 | const char *name; |
| 7374 | struct list list; |
| 7375 | }; |
| 7376 | |
| 7377 | |
| 7378 | static int ssl_provider_get_name_cb(OSSL_PROVIDER *provider, void *cbdata) |
| 7379 | { |
| 7380 | struct list *provider_names = cbdata; |
| 7381 | struct provider_name *item = NULL; |
| 7382 | const char *name = OSSL_PROVIDER_get0_name(provider); |
| 7383 | |
| 7384 | if (!provider_names) |
| 7385 | return 0; |
| 7386 | |
| 7387 | item = calloc(1, sizeof(*item)); |
| 7388 | |
| 7389 | if (!item) |
| 7390 | return 0; |
| 7391 | |
| 7392 | item->name = name; |
| 7393 | LIST_APPEND(provider_names, &item->list); |
| 7394 | |
| 7395 | return 1; |
| 7396 | } |
| 7397 | |
| 7398 | static void ssl_provider_get_name_list(struct list *provider_names) |
| 7399 | { |
| 7400 | if (!provider_names) |
| 7401 | return; |
| 7402 | |
| 7403 | OSSL_PROVIDER_do_all(NULL, ssl_provider_get_name_cb, provider_names); |
| 7404 | } |
| 7405 | |
| 7406 | static void ssl_provider_clear_name_list(struct list *provider_names) |
| 7407 | { |
| 7408 | struct provider_name *item = NULL, *item_s = NULL; |
| 7409 | |
| 7410 | if (provider_names) { |
| 7411 | list_for_each_entry_safe(item, item_s, provider_names, list) { |
| 7412 | LIST_DELETE(&item->list); |
| 7413 | free(item); |
| 7414 | } |
| 7415 | } |
| 7416 | } |
| 7417 | |
| 7418 | static int cli_io_handler_show_providers(struct appctx *appctx) |
| 7419 | { |
| 7420 | struct buffer *trash = get_trash_chunk(); |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7421 | struct list provider_names; |
| 7422 | struct provider_name *name; |
| 7423 | |
| 7424 | LIST_INIT(&provider_names); |
| 7425 | |
| 7426 | chunk_appendf(trash, "Loaded providers : \n"); |
| 7427 | |
| 7428 | ssl_provider_get_name_list(&provider_names); |
| 7429 | |
| 7430 | list_for_each_entry(name, &provider_names, list) { |
| 7431 | chunk_appendf(trash, "\t- %s\n", name->name); |
| 7432 | } |
| 7433 | |
| 7434 | ssl_provider_clear_name_list(&provider_names); |
| 7435 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 7436 | if (applet_putchk(appctx, trash) == -1) |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7437 | goto yield; |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7438 | |
| 7439 | return 1; |
| 7440 | |
| 7441 | yield: |
| 7442 | return 0; |
| 7443 | } |
| 7444 | #endif |
Remi Tricot-Le Breton | eeaa29b | 2022-12-20 11:11:07 +0100 | [diff] [blame] | 7445 | |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7446 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7447 | /* register cli keywords */ |
| 7448 | static struct cli_kw_list cli_kws = {{ },{ |
| 7449 | #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] | 7450 | { { "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 }, |
| 7451 | { { "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] | 7452 | #endif |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7453 | #ifdef HAVE_SSL_PROVIDERS |
| 7454 | { { "show", "ssl", "providers", NULL }, "show ssl providers : show loaded SSL providers", NULL, cli_io_handler_show_providers }, |
| 7455 | #endif |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7456 | { { NULL }, NULL, NULL, NULL } |
| 7457 | }}; |
| 7458 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7459 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7460 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 7461 | /* transport-layer operations for SSL sockets */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7462 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7463 | .snd_buf = ssl_sock_from_buf, |
| 7464 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 7465 | .subscribe = ssl_subscribe, |
| 7466 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 7467 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 7468 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7469 | .rcv_pipe = NULL, |
| 7470 | .snd_pipe = NULL, |
| 7471 | .shutr = NULL, |
| 7472 | .shutw = ssl_sock_shutw, |
| 7473 | .close = ssl_sock_close, |
| 7474 | .init = ssl_sock_init, |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 7475 | .start = ssl_sock_start, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 7476 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 7477 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 7478 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 7479 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 7480 | .get_alpn = ssl_sock_get_alpn, |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 7481 | .takeover = ssl_takeover, |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 7482 | .set_idle = ssl_set_idle, |
| 7483 | .set_used = ssl_set_used, |
Willy Tarreau | de82795 | 2022-04-11 10:43:28 +0200 | [diff] [blame] | 7484 | .get_ssl_sock_ctx = ssl_sock_get_ctx, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 7485 | .name = "SSL", |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7486 | .show_fd = ssl_sock_show_fd, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7487 | }; |
| 7488 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7489 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 7490 | struct session *sess, struct stream *s, int flags) |
| 7491 | { |
| 7492 | struct connection *conn; |
| 7493 | |
| 7494 | conn = objt_conn(sess->origin); |
| 7495 | |
Willy Tarreau | b52d4d2 | 2022-05-27 10:44:39 +0200 | [diff] [blame] | 7496 | if (conn) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7497 | 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] | 7498 | sc_ep_set(s->scf, SE_FL_WAIT_FOR_HS); |
Christopher Faulet | 6e1bbc4 | 2022-12-12 08:08:15 +0100 | [diff] [blame] | 7499 | s->req.flags |= CF_READ_EVENT; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7500 | return ACT_RET_YIELD; |
| 7501 | } |
| 7502 | } |
| 7503 | return (ACT_RET_CONT); |
| 7504 | } |
| 7505 | |
| 7506 | 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) |
| 7507 | { |
| 7508 | rule->action_ptr = ssl_action_wait_for_hs; |
| 7509 | |
| 7510 | return ACT_RET_PRS_OK; |
| 7511 | } |
| 7512 | |
| 7513 | static struct action_kw_list http_req_actions = {ILH, { |
| 7514 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 7515 | { /* END */ } |
| 7516 | }}; |
| 7517 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7518 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 7519 | |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7520 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7521 | |
| 7522 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7523 | { |
| 7524 | if (ptr) { |
| 7525 | chunk_destroy(ptr); |
| 7526 | free(ptr); |
| 7527 | } |
| 7528 | } |
| 7529 | |
| 7530 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7531 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7532 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7533 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7534 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7535 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7536 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7537 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7538 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7539 | static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7540 | { |
| 7541 | struct ssl_keylog *keylog; |
| 7542 | |
| 7543 | if (!ptr) |
| 7544 | return; |
| 7545 | |
| 7546 | keylog = ptr; |
| 7547 | |
| 7548 | pool_free(pool_head_ssl_keylog_str, keylog->client_random); |
| 7549 | pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret); |
| 7550 | pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret); |
| 7551 | pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret); |
| 7552 | pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0); |
| 7553 | pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0); |
| 7554 | pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret); |
| 7555 | pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret); |
| 7556 | |
| 7557 | pool_free(pool_head_ssl_keylog, ptr); |
| 7558 | } |
| 7559 | #endif |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7560 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7561 | static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7562 | { |
| 7563 | if (!ptr) |
| 7564 | return; |
| 7565 | |
| 7566 | X509_free((X509*)ptr); |
| 7567 | } |
| 7568 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 7569 | static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7570 | { |
| 7571 | pool_free(ssl_sock_client_sni_pool, ptr); |
| 7572 | } |
| 7573 | |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7574 | static void __ssl_sock_init(void) |
| 7575 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7576 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7577 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7578 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7579 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7580 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7581 | if (global_ssl.listen_default_ciphers) |
| 7582 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 7583 | if (global_ssl.connect_default_ciphers) |
| 7584 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 7585 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7586 | if (global_ssl.listen_default_ciphersuites) |
| 7587 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 7588 | if (global_ssl.connect_default_ciphersuites) |
| 7589 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 7590 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 7591 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 7592 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7593 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7594 | SSL_library_init(); |
William Lallemand | 3f54384 | 2024-03-12 12:03:07 +0100 | [diff] [blame] | 7595 | #elif HA_OPENSSL_VERSION_NUMBER >= 0x10100000L |
| 7596 | OPENSSL_init_ssl(0, NULL); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7597 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7598 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7599 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7600 | n = sk_SSL_COMP_num(cm); |
| 7601 | while (n--) { |
| 7602 | (void) sk_SSL_COMP_pop(cm); |
| 7603 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7604 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7605 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7606 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7607 | ssl_locking_init(); |
| 7608 | #endif |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7609 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7610 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 7611 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7612 | |
| 7613 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7614 | ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func); |
| 7615 | #endif |
| 7616 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 7617 | 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] | 7618 | 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] | 7619 | #ifdef USE_QUIC |
| 7620 | ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7621 | #endif /* USE_QUIC */ |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7622 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7623 | ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func); |
| 7624 | #endif |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7625 | 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] | 7626 | 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] | 7627 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7628 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7629 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7630 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 7631 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7632 | hap_register_post_check(tlskeys_finalize_config); |
| 7633 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7634 | |
| 7635 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 7636 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 7637 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7638 | hap_register_post_deinit(ssl_free_global_issuers); |
| 7639 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7640 | #ifndef OPENSSL_NO_DH |
| 7641 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7642 | hap_register_post_deinit(ssl_free_dh); |
| 7643 | #endif |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7644 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7645 | hap_register_post_deinit(ssl_free_engines); |
| 7646 | #endif |
Remi Tricot-Le Breton | 1746a38 | 2022-05-16 16:24:33 +0200 | [diff] [blame] | 7647 | #ifdef HAVE_SSL_PROVIDERS |
| 7648 | hap_register_post_deinit(ssl_unload_providers); |
| 7649 | #endif |
Remi Tricot-Le Breton | 78a36e3 | 2022-02-11 12:04:45 +0100 | [diff] [blame] | 7650 | #if HA_OPENSSL_VERSION_NUMBER < 0x3000000fL |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7651 | /* Load SSL string for the verbose & debug mode. */ |
| 7652 | ERR_load_SSL_strings(); |
Remi Tricot-Le Breton | 78a36e3 | 2022-02-11 12:04:45 +0100 | [diff] [blame] | 7653 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7654 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
eaglegai | 15c3d20 | 2023-05-26 16:42:47 +0800 | [diff] [blame] | 7655 | if (ha_meth != NULL) { |
| 7656 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 7657 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 7658 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 7659 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 7660 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 7661 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 7662 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
| 7663 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 7664 | |
| 7665 | HA_SPIN_INIT(&ckch_lock); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7666 | |
Remi Tricot-Le Breton | 2b96364 | 2022-12-20 11:11:02 +0100 | [diff] [blame] | 7667 | HA_SPIN_INIT(&ocsp_tree_lock); |
| 7668 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 7669 | /* Try to register dedicated SSL/TLS protocol message callbacks for |
| 7670 | * heartbleed attack (CVE-2014-0160) and clienthello. |
| 7671 | */ |
| 7672 | hap_register_post_check(ssl_sock_register_msg_callbacks); |
| 7673 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7674 | /* Try to free all callbacks that were registered by using |
| 7675 | * ssl_sock_register_msg_callback(). |
| 7676 | */ |
| 7677 | hap_register_post_deinit(ssl_sock_unregister_msg_callbacks); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7678 | } |
Willy Tarreau | 79367f9 | 2022-04-25 19:18:24 +0200 | [diff] [blame] | 7679 | INITCALL0(STG_REGISTER, __ssl_sock_init); |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 7680 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7681 | /* Compute and register the version string */ |
| 7682 | static void ssl_register_build_options() |
| 7683 | { |
| 7684 | char *ptr = NULL; |
| 7685 | int i; |
| 7686 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7687 | memprintf(&ptr, "Built with OpenSSL version : " |
| 7688 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7689 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7690 | #else /* OPENSSL_IS_BORINGSSL */ |
| 7691 | OPENSSL_VERSION_TEXT |
| 7692 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7693 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 7694 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7695 | #endif |
| 7696 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7697 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7698 | "no (library version too old)" |
| 7699 | #elif defined(OPENSSL_NO_TLSEXT) |
| 7700 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 7701 | #else |
| 7702 | "yes" |
| 7703 | #endif |
| 7704 | "", ptr); |
| 7705 | |
| 7706 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 7707 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7708 | "yes" |
| 7709 | #else |
| 7710 | #ifdef OPENSSL_NO_TLSEXT |
| 7711 | "no (because of OPENSSL_NO_TLSEXT)" |
| 7712 | #else |
| 7713 | "no (version might be too old, 0.9.8f min needed)" |
| 7714 | #endif |
| 7715 | #endif |
| 7716 | "", ptr); |
| 7717 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 7718 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 7719 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7720 | if (methodVersions[i].option) |
| 7721 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7722 | |
Remi Tricot-Le Breton | f87c67e | 2022-04-21 12:06:41 +0200 | [diff] [blame] | 7723 | #ifdef HAVE_SSL_PROVIDERS |
| 7724 | { |
| 7725 | struct list provider_names; |
| 7726 | struct provider_name *name; |
| 7727 | LIST_INIT(&provider_names); |
| 7728 | ssl_provider_get_name_list(&provider_names); |
| 7729 | |
| 7730 | memprintf(&ptr, "%s\nOpenSSL providers loaded :", ptr); |
| 7731 | |
| 7732 | list_for_each_entry(name, &provider_names, list) { |
| 7733 | memprintf(&ptr, "%s %s", ptr, name->name); |
| 7734 | } |
| 7735 | |
| 7736 | ssl_provider_clear_name_list(&provider_names); |
| 7737 | } |
| 7738 | #endif |
| 7739 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7740 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7741 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7742 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7743 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 7744 | |
William Lallemand | d7bfbe2 | 2022-04-11 18:41:24 +0200 | [diff] [blame] | 7745 | #if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7746 | void ssl_free_engines(void) { |
| 7747 | struct ssl_engine_list *wl, *wlb; |
| 7748 | /* free up engine list */ |
| 7749 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 7750 | ENGINE_finish(wl->e); |
| 7751 | ENGINE_free(wl->e); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 7752 | LIST_DELETE(&wl->list); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7753 | free(wl); |
| 7754 | } |
| 7755 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7756 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7757 | |
Remi Tricot-Le Breton | 1746a38 | 2022-05-16 16:24:33 +0200 | [diff] [blame] | 7758 | #ifdef HAVE_SSL_PROVIDERS |
| 7759 | void ssl_unload_providers(void) { |
| 7760 | struct ssl_provider_list *prov, *provb; |
| 7761 | list_for_each_entry_safe(prov, provb, &openssl_providers, list) { |
| 7762 | OSSL_PROVIDER_unload(prov->provider); |
| 7763 | LIST_DELETE(&prov->list); |
| 7764 | free(prov); |
| 7765 | } |
| 7766 | } |
| 7767 | #endif |
| 7768 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7769 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7770 | void ssl_free_dh(void) { |
| 7771 | if (local_dh_1024) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7772 | HASSL_DH_free(local_dh_1024); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7773 | local_dh_1024 = NULL; |
| 7774 | } |
| 7775 | if (local_dh_2048) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7776 | HASSL_DH_free(local_dh_2048); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7777 | local_dh_2048 = NULL; |
| 7778 | } |
| 7779 | if (local_dh_4096) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7780 | HASSL_DH_free(local_dh_4096); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7781 | local_dh_4096 = NULL; |
| 7782 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7783 | if (global_dh) { |
Remi Tricot-Le Breton | c76c3c4 | 2022-02-11 12:04:55 +0100 | [diff] [blame] | 7784 | HASSL_DH_free(global_dh); |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7785 | global_dh = NULL; |
| 7786 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7787 | } |
| 7788 | #endif |
| 7789 | |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7790 | static void __ssl_sock_deinit(void) |
| 7791 | { |
| 7792 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7793 | if (ssl_ctx_lru_tree) { |
| 7794 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 7795 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7796 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7797 | #endif |
| 7798 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7799 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7800 | ERR_remove_state(0); |
| 7801 | ERR_free_strings(); |
| 7802 | |
| 7803 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7804 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7805 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7806 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7807 | CRYPTO_cleanup_all_ex_data(); |
| 7808 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7809 | BIO_meth_free(ha_meth); |
Remi Tricot-Le Breton | 6477bbd | 2022-12-20 11:11:13 +0100 | [diff] [blame] | 7810 | |
| 7811 | #if !defined OPENSSL_NO_OCSP |
| 7812 | ssl_destroy_ocsp_update_task(); |
| 7813 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7814 | } |
Willy Tarreau | 79367f9 | 2022-04-25 19:18:24 +0200 | [diff] [blame] | 7815 | REGISTER_POST_DEINIT(__ssl_sock_deinit); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7816 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7817 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7818 | /* |
| 7819 | * Local variables: |
| 7820 | * c-indent-level: 8 |
| 7821 | * c-basic-offset: 8 |
| 7822 | * End: |
| 7823 | */ |