blob: 3c89aaa8d2107775fa9a33b67a34736c2a1af4a3 [file] [log] [blame]
yanbzhu08ce6ab2015-12-02 13:01:29 -05001
Emeric Brun46591952012-05-18 15:47:34 +02002/*
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003 * SSL/TLS transport layer over SOCK_STREAM sockets
Emeric Brun46591952012-05-18 15:47:34 +02004 *
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 Tarreau69845df2012-09-10 09:43:09 +020012 * 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 Brun46591952012-05-18 15:47:34 +020024 */
25
Willy Tarreau8d164dc2019-05-10 09:35:00 +020026/* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */
Emeric Brun46591952012-05-18 15:47:34 +020027#define _GNU_SOURCE
Emeric Brunfc0421f2012-09-07 17:30:07 +020028#include <ctype.h>
29#include <dirent.h>
Emeric Brun46591952012-05-18 15:47:34 +020030#include <errno.h>
Emeric Brun46591952012-05-18 15:47:34 +020031#include <stdio.h>
32#include <stdlib.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020033#include <string.h>
34#include <unistd.h>
Emeric Brun46591952012-05-18 15:47:34 +020035
36#include <sys/socket.h>
37#include <sys/stat.h>
38#include <sys/types.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020039#include <netdb.h>
Emeric Brun46591952012-05-18 15:47:34 +020040#include <netinet/tcp.h>
41
Willy Tarreaub2551052020-06-09 09:07:15 +020042#include <import/ebpttree.h>
43#include <import/ebsttree.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020044#include <import/lru.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020045
Willy Tarreaub2551052020-06-09 09:07:15 +020046#include <haproxy/api.h>
Willy Tarreaua9380522022-05-05 08:50:17 +020047#include <haproxy/applet.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/arg.h>
49#include <haproxy/base64.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020050#include <haproxy/channel.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020051#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020052#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020053#include <haproxy/connection.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020054#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020055#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020056#include <haproxy/fd.h>
57#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020058#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020059#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020060#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020061#include <haproxy/log.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +020062#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020063#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020064#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020065#include <haproxy/proxy.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020066#include <haproxy/sample.h>
67#include <haproxy/sc_strm.h>
Frédéric Lécaille748ece62022-05-21 23:58:40 +020068#include <haproxy/quic_tp.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020069#include <haproxy/server.h>
Willy Tarreau334099c2020-06-03 18:38:48 +020070#include <haproxy/shctx.h>
Willy Tarreau47d7f902020-06-04 14:25:47 +020071#include <haproxy/ssl_ckch.h>
Willy Tarreau52d88722020-06-04 14:29:23 +020072#include <haproxy/ssl_crtlist.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020073#include <haproxy/ssl_sock.h>
Willy Tarreaub2bd8652020-06-04 14:21:22 +020074#include <haproxy/ssl_utils.h>
Amaury Denoyelle9963fa72020-11-03 17:10:00 +010075#include <haproxy/stats.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020076#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020077#include <haproxy/stream-t.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020078#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020079#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020080#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020081#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020082#include <haproxy/vars.h>
Frédéric Lécailleec216522020-11-23 14:33:30 +010083#include <haproxy/xprt_quic.h>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020084#include <haproxy/xxhash.h>
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +010085#include <haproxy/istbuf.h>
Emeric Brun46591952012-05-18 15:47:34 +020086
Emeric Brun46591952012-05-18 15:47:34 +020087
Willy Tarreau9356dac2019-05-10 09:22:53 +020088/* ***** READ THIS before adding code here! *****
89 *
90 * Due to API incompatibilities between multiple OpenSSL versions and their
91 * derivatives, it's often tempting to add macros to (re-)define certain
92 * symbols. Please do not do this here, and do it in common/openssl-compat.h
93 * exclusively so that the whole code consistently uses the same macros.
94 *
95 * Whenever possible if a macro is missing in certain versions, it's better
96 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
97 */
98
Emeric Brunece0c332017-12-06 13:51:49 +010099int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +0200100
William Lallemande0f3fd52020-02-25 14:53:06 +0100101static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
102
William Lallemand7fd8b452020-05-07 15:20:43 +0200103struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100104#ifdef LISTEN_DEFAULT_CIPHERS
105 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
106#endif
107#ifdef CONNECT_DEFAULT_CIPHERS
108 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
109#endif
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +0500110#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200111 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200112 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
113#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100114 .listen_default_ssloptions = BC_SSL_O_NONE,
115 .connect_default_ssloptions = SRV_SSL_O_NONE,
116
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200117 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
118 .listen_default_sslmethods.min = CONF_TLSV_NONE,
119 .listen_default_sslmethods.max = CONF_TLSV_NONE,
120 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
121 .connect_default_sslmethods.min = CONF_TLSV_NONE,
122 .connect_default_sslmethods.max = CONF_TLSV_NONE,
123
Willy Tarreauef934602016-12-22 23:12:01 +0100124#ifdef DEFAULT_SSL_MAX_RECORD
125 .max_record = DEFAULT_SSL_MAX_RECORD,
126#endif
Thomas Prückl10243932022-04-27 13:04:54 +0200127 .hard_max_record = 0,
Willy Tarreauef934602016-12-22 23:12:01 +0100128 .default_dh_param = SSL_DEFAULT_DH_PARAM,
129 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Marcin Deranek310a2602021-07-13 19:04:24 +0200130 .capture_buffer_size = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100131 .extra_files = SSL_GF_ALL,
William Lallemand8e8581e2020-10-20 17:36:46 +0200132 .extra_files_noext = 0,
William Lallemand722180a2021-06-09 16:46:12 +0200133#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200134 .keylog = 0
135#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100136};
137
Olivier Houcharda8955d52019-04-07 22:00:38 +0200138static BIO_METHOD *ha_meth;
139
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200140DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx", sizeof(struct ssl_sock_ctx));
Olivier Houchard66ab4982019-02-26 18:37:15 +0100141
Willy Tarreaub8dec4a2022-06-23 11:02:08 +0200142DECLARE_STATIC_POOL(ssl_sock_client_sni_pool, "ssl_sock_client_sni", TLSEXT_MAXLEN_host_name + 1);
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +0100143
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100144/* ssl stats module */
145enum {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100146 SSL_ST_SESS,
147 SSL_ST_REUSED_SESS,
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100148 SSL_ST_FAILED_HANDSHAKE,
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100149
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100150 SSL_ST_STATS_COUNT /* must be the last member of the enum */
151};
152
153static struct name_desc ssl_stats[] = {
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100154 [SSL_ST_SESS] = { .name = "ssl_sess",
155 .desc = "Total number of ssl sessions established" },
156 [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess",
157 .desc = "Total number of ssl sessions reused" },
158 [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake",
159 .desc = "Total number of failed handshake" },
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100160};
161
162static struct ssl_counters {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100163 long long sess;
164 long long reused_sess;
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100165 long long failed_handshake;
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100166} ssl_counters;
167
168static void ssl_fill_stats(void *data, struct field *stats)
169{
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100170 struct ssl_counters *counters = data;
171
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100172 stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess);
173 stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess);
174 stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake);
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100175}
176
177static struct stats_module ssl_stats_module = {
178 .name = "ssl",
179 .fill_stats = ssl_fill_stats,
180 .stats = ssl_stats,
181 .stats_count = SSL_ST_STATS_COUNT,
182 .counters = &ssl_counters,
183 .counters_size = sizeof(ssl_counters),
184 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV),
185 .clearable = 1,
186};
187
188INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module);
189
Willy Tarreaua9380522022-05-05 08:50:17 +0200190/* CLI context for "show tls-keys" */
191struct show_keys_ctx {
192 struct tls_keys_ref *next_ref; /* next reference to be dumped */
193 int names_only; /* non-zero = only show file names */
194 int next_index; /* next index to be dumped */
Willy Tarreaubd338642022-05-05 08:59:17 +0200195 int dump_entries; /* dump entries also */
Willy Tarreau9c5a38c2022-05-05 09:03:44 +0200196 enum {
197 SHOW_KEYS_INIT = 0,
198 SHOW_KEYS_LIST,
199 SHOW_KEYS_DONE,
200 } state; /* phase of the current dump */
Willy Tarreaua9380522022-05-05 08:50:17 +0200201};
202
Willy Tarreau691d5032021-01-20 14:55:01 +0100203/* ssl_sock_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100204struct task *ssl_sock_io_cb(struct task *, void *, unsigned int);
Olivier Houchard000694c2019-05-23 14:45:12 +0200205static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200206
Olivier Houcharda8955d52019-04-07 22:00:38 +0200207/* Methods to implement OpenSSL BIO */
208static int ha_ssl_write(BIO *h, const char *buf, int num)
209{
210 struct buffer tmpbuf;
211 struct ssl_sock_ctx *ctx;
212 int ret;
213
214 ctx = BIO_get_data(h);
215 tmpbuf.size = num;
216 tmpbuf.area = (void *)(uintptr_t)buf;
217 tmpbuf.data = num;
218 tmpbuf.head = 0;
219 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200220 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200221 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200222 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200223 } else if (ret == 0)
224 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200225 return ret;
226}
227
228static int ha_ssl_gets(BIO *h, char *buf, int size)
229{
230
231 return 0;
232}
233
234static int ha_ssl_puts(BIO *h, const char *str)
235{
236
237 return ha_ssl_write(h, str, strlen(str));
238}
239
240static int ha_ssl_read(BIO *h, char *buf, int size)
241{
242 struct buffer tmpbuf;
243 struct ssl_sock_ctx *ctx;
244 int ret;
245
246 ctx = BIO_get_data(h);
247 tmpbuf.size = size;
248 tmpbuf.area = buf;
249 tmpbuf.data = 0;
250 tmpbuf.head = 0;
251 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200252 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200253 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200254 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200255 } else if (ret == 0)
256 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200257
258 return ret;
259}
260
261static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
262{
263 int ret = 0;
264 switch (cmd) {
265 case BIO_CTRL_DUP:
266 case BIO_CTRL_FLUSH:
267 ret = 1;
268 break;
269 }
270 return ret;
271}
272
273static int ha_ssl_new(BIO *h)
274{
275 BIO_set_init(h, 1);
276 BIO_set_data(h, NULL);
277 BIO_clear_flags(h, ~0);
278 return 1;
279}
280
281static int ha_ssl_free(BIO *data)
282{
283
284 return 1;
285}
286
287
Willy Tarreau5db847a2019-05-09 14:13:35 +0200288#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100289
Emeric Brun821bb9b2017-06-15 16:37:39 +0200290static HA_RWLOCK_T *ssl_rwlocks;
291
292
293unsigned long ssl_id_function(void)
294{
295 return (unsigned long)tid;
296}
297
298void ssl_locking_function(int mode, int n, const char * file, int line)
299{
300 if (mode & CRYPTO_LOCK) {
301 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100302 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200303 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100304 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200305 }
306 else {
307 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100308 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200309 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100310 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200311 }
312}
313
314static int ssl_locking_init(void)
315{
316 int i;
317
318 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
319 if (!ssl_rwlocks)
320 return -1;
321
322 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100323 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200324
325 CRYPTO_set_id_callback(ssl_id_function);
326 CRYPTO_set_locking_callback(ssl_locking_function);
327
328 return 0;
329}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100330
Emeric Brun821bb9b2017-06-15 16:37:39 +0200331#endif
332
Willy Tarreauaf613e82020-06-05 08:40:51 +0200333__decl_thread(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200334
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100335
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200336
337/* mimic what X509_STORE_load_locations do with store_ctx */
338static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
339{
Remi Tricot-Le Bretond75b99e2021-05-17 11:45:55 +0200340 X509_STORE *store = NULL;
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +0100341 struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0);
342 if (ca_e)
343 store = ca_e->ca_store;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200344 if (store_ctx && store) {
345 int i;
346 X509_OBJECT *obj;
347 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
348 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
349 obj = sk_X509_OBJECT_value(objs, i);
350 switch (X509_OBJECT_get_type(obj)) {
351 case X509_LU_X509:
352 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
353 break;
354 case X509_LU_CRL:
355 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
356 break;
357 default:
358 break;
359 }
360 }
361 return 1;
362 }
363 return 0;
364}
365
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500366/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200367static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
368{
369 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
370 return ssl_set_cert_crl_file(store_ctx, path);
371}
372
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200373/*
374 Extract CA_list from CA_file already in tree.
375 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
376 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
377*/
378static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
379{
380 struct ebmb_node *eb;
381 struct cafile_entry *ca_e;
382
383 eb = ebst_lookup(&cafile_tree, path);
384 if (!eb)
385 return NULL;
386 ca_e = ebmb_entry(eb, struct cafile_entry, node);
387
388 if (ca_e->ca_list == NULL) {
389 int i;
390 unsigned long key;
391 struct eb_root ca_name_tree = EB_ROOT;
392 struct eb64_node *node, *back;
393 struct {
394 struct eb64_node node;
395 X509_NAME *xname;
396 } *ca_name;
397 STACK_OF(X509_OBJECT) *objs;
398 STACK_OF(X509_NAME) *skn;
399 X509 *x;
400 X509_NAME *xn;
401
402 skn = sk_X509_NAME_new_null();
403 /* take x509 from cafile_tree */
404 objs = X509_STORE_get0_objects(ca_e->ca_store);
405 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
406 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
407 if (!x)
408 continue;
409 xn = X509_get_subject_name(x);
410 if (!xn)
411 continue;
412 /* Check for duplicates. */
413 key = X509_NAME_hash(xn);
414 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
415 node && ca_name == NULL;
416 node = eb64_next(node)) {
417 ca_name = container_of(node, typeof(*ca_name), node);
418 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
419 ca_name = NULL;
420 }
421 /* find a duplicate */
422 if (ca_name)
423 continue;
424 ca_name = calloc(1, sizeof *ca_name);
425 xn = X509_NAME_dup(xn);
426 if (!ca_name ||
427 !xn ||
428 !sk_X509_NAME_push(skn, xn)) {
429 free(ca_name);
430 X509_NAME_free(xn);
431 sk_X509_NAME_pop_free(skn, X509_NAME_free);
432 sk_X509_NAME_free(skn);
433 skn = NULL;
434 break;
435 }
436 ca_name->node.key = key;
437 ca_name->xname = xn;
438 eb64_insert(&ca_name_tree, &ca_name->node);
439 }
440 ca_e->ca_list = skn;
441 /* remove temporary ca_name tree */
442 node = eb64_first(&ca_name_tree);
443 while (node) {
444 ca_name = container_of(node, typeof(*ca_name), node);
445 back = eb64_next(node);
446 eb64_delete(node);
447 free(ca_name);
448 node = back;
449 }
450 }
451 return ca_e->ca_list;
452}
453
Willy Tarreauff882702021-04-10 17:23:00 +0200454struct pool_head *pool_head_ssl_capture __read_mostly = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200455int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100456int ssl_app_data_index = -1;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100457#ifdef USE_QUIC
458int ssl_qc_app_data_index = -1;
459#endif /* USE_QUIC */
Willy Tarreauef934602016-12-22 23:12:01 +0100460
William Lallemand722180a2021-06-09 16:46:12 +0200461#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200462int ssl_keylog_index = -1;
Willy Tarreauff882702021-04-10 17:23:00 +0200463struct pool_head *pool_head_ssl_keylog __read_mostly = NULL;
464struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL;
William Lallemand7d42ef52020-07-06 11:41:30 +0200465#endif
466
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +0200467int ssl_client_crt_ref_index = -1;
468
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +0100469/* Used to store the client's SNI in case of ClientHello callback error */
470int ssl_client_sni_index = -1;
471
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200472#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
473struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
474#endif
475
William Lallemandd7bfbe22022-04-11 18:41:24 +0200476#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
William Lallemanddad31052020-05-14 17:47:32 +0200477unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000478struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
479struct ssl_engine_list {
480 struct list list;
481 ENGINE *e;
482};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200483#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000484
Remi Tricot-Le Breton1746a382022-05-16 16:24:33 +0200485#ifdef HAVE_SSL_PROVIDERS
486struct list openssl_providers = LIST_HEAD_INIT(openssl_providers);
487struct ssl_provider_list {
488 struct list list;
489 OSSL_PROVIDER *provider;
490};
491#endif
492
Remi Gacogne8de54152014-07-15 11:36:40 +0200493#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200494static int ssl_dh_ptr_index = -1;
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +0100495static HASSL_DH *global_dh = NULL;
496static HASSL_DH *local_dh_1024 = NULL;
497static HASSL_DH *local_dh_2048 = NULL;
498static HASSL_DH *local_dh_4096 = NULL;
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +0100499#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +0100500static DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen);
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +0100501#else
502static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey);
503#endif
Remi Gacogne8de54152014-07-15 11:36:40 +0200504#endif /* OPENSSL_NO_DH */
505
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100506#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200507/* X509V3 Extensions that will be added on generated certificates */
508#define X509V3_EXT_SIZE 5
509static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
510 "basicConstraints",
511 "nsComment",
512 "subjectKeyIdentifier",
513 "authorityKeyIdentifier",
514 "keyUsage",
515};
516static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
517 "CA:FALSE",
518 "\"OpenSSL Generated Certificate\"",
519 "hash",
520 "keyid,issuer:always",
521 "nonRepudiation,digitalSignature,keyEncipherment"
522};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200523/* LRU cache to store generated certificate */
524static struct lru64_head *ssl_ctx_lru_tree = NULL;
525static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200526static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100527__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200528
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200529#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
530
yanbzhube2774d2015-12-10 15:07:30 -0500531/* The order here matters for picking a default context,
532 * keep the most common keytype at the bottom of the list
533 */
534const char *SSL_SOCK_KEYTYPE_NAMES[] = {
535 "dsa",
536 "ecdsa",
537 "rsa"
538};
yanbzhube2774d2015-12-10 15:07:30 -0500539
William Lallemandc3cd35f2017-11-28 11:04:43 +0100540static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100541static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
542
Dragan Dosen9ac98092020-05-11 15:51:45 +0200543/* Dedicated callback functions for heartbeat and clienthello.
544 */
545#ifdef TLS1_RT_HEARTBEAT
546static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
547 int content_type, const void *buf, size_t len,
548 SSL *ssl);
549#endif
550static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
551 int content_type, const void *buf, size_t len,
552 SSL *ssl);
553
William Lallemand722180a2021-06-09 16:46:12 +0200554#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200555static void ssl_init_keylog(struct connection *conn, int write_p, int version,
556 int content_type, const void *buf, size_t len,
557 SSL *ssl);
558#endif
559
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200560/* List head of all registered SSL/TLS protocol message callbacks. */
561struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
562
563/* Registers the function <func> in order to be called on SSL/TLS protocol
564 * message processing. It will return 0 if the function <func> is not set
565 * or if it fails to allocate memory.
566 */
567int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
568{
569 struct ssl_sock_msg_callback *cbk;
570
571 if (!func)
572 return 0;
573
574 cbk = calloc(1, sizeof(*cbk));
575 if (!cbk) {
576 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
577 return 0;
578 }
579
580 cbk->func = func;
581
Willy Tarreau2b718102021-04-21 07:32:39 +0200582 LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200583
584 return 1;
585}
586
Dragan Dosen9ac98092020-05-11 15:51:45 +0200587/* Used to register dedicated SSL/TLS protocol message callbacks.
588 */
589static int ssl_sock_register_msg_callbacks(void)
590{
591#ifdef TLS1_RT_HEARTBEAT
592 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
593 return ERR_ABORT;
594#endif
Marcin Deranek310a2602021-07-13 19:04:24 +0200595 if (global_ssl.capture_buffer_size > 0) {
Dragan Dosen9ac98092020-05-11 15:51:45 +0200596 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
597 return ERR_ABORT;
598 }
William Lallemand722180a2021-06-09 16:46:12 +0200599#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200600 if (global_ssl.keylog > 0) {
601 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
602 return ERR_ABORT;
603 }
604#endif
605
Christopher Fauletfc633b62020-11-06 15:24:23 +0100606 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200607}
608
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200609/* Used to free all SSL/TLS protocol message callbacks that were
610 * registered by using ssl_sock_register_msg_callback().
611 */
612static void ssl_sock_unregister_msg_callbacks(void)
613{
614 struct ssl_sock_msg_callback *cbk, *cbkback;
615
616 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200617 LIST_DELETE(&cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200618 free(cbk);
619 }
620}
621
Willy Tarreaude827952022-04-11 10:43:28 +0200622static struct ssl_sock_ctx *ssl_sock_get_ctx(struct connection *conn)
623{
624 if (!conn || conn->xprt != xprt_get(XPRT_SSL) || !conn->xprt_ctx)
625 return NULL;
626
627 return (struct ssl_sock_ctx *)conn->xprt_ctx;
628}
629
Dragan Doseneb607fe2020-05-11 17:17:06 +0200630SSL *ssl_sock_get_ssl_object(struct connection *conn)
631{
Willy Tarreau939b0bf2022-04-11 11:29:11 +0200632 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Dragan Doseneb607fe2020-05-11 17:17:06 +0200633
Willy Tarreau939b0bf2022-04-11 11:29:11 +0200634 return ctx ? ctx->ssl : NULL;
Dragan Doseneb607fe2020-05-11 17:17:06 +0200635}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100636/*
637 * This function gives the detail of the SSL error. It is used only
638 * if the debug mode and the verbose mode are activated. It dump all
639 * the SSL error until the stack was empty.
640 */
641static forceinline void ssl_sock_dump_errors(struct connection *conn)
642{
643 unsigned long ret;
644
645 if (unlikely(global.mode & MODE_DEBUG)) {
646 while(1) {
Remi Tricot-Le Breton1effd9a2022-02-11 12:04:44 +0100647 const char *func = NULL;
648 ERR_peek_error_func(&func);
649
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100650 ret = ERR_get_error();
651 if (ret == 0)
652 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100653 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
Willy Tarreau0e9c2642022-04-11 18:01:28 +0200654 conn_fd(conn), ret,
Remi Tricot-Le Breton1effd9a2022-02-11 12:04:44 +0100655 func, ERR_reason_error_string(ret));
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100656 }
657 }
658}
659
yanbzhube2774d2015-12-10 15:07:30 -0500660
William Lallemandd7bfbe22022-04-11 18:41:24 +0200661#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
William Lallemanddad31052020-05-14 17:47:32 +0200662int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000663{
664 int err_code = ERR_ABORT;
665 ENGINE *engine;
666 struct ssl_engine_list *el;
667
668 /* grab the structural reference to the engine */
669 engine = ENGINE_by_id(engine_id);
670 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100671 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000672 goto fail_get;
673 }
674
675 if (!ENGINE_init(engine)) {
676 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100677 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000678 goto fail_init;
679 }
680
681 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100682 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000683 goto fail_set_method;
684 }
685
686 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200687 if (!el)
688 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000689 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200690 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100691 nb_engines++;
692 if (global_ssl.async)
693 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000694 return 0;
695
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200696fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000697fail_set_method:
698 /* release the functional reference from ENGINE_init() */
699 ENGINE_finish(engine);
700
701fail_init:
702 /* release the structural reference from ENGINE_by_id() */
703 ENGINE_free(engine);
704
705fail_get:
706 return err_code;
707}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200708#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000709
Remi Tricot-Le Breton1746a382022-05-16 16:24:33 +0200710#ifdef HAVE_SSL_PROVIDERS
711int ssl_init_provider(const char *provider_name)
712{
713 int err_code = ERR_ABORT;
714 struct ssl_provider_list *prov = NULL;
715
716 prov = calloc(1, sizeof(*prov));
717 if (!prov) {
718 ha_alert("ssl-provider %s: memory allocation failure\n", provider_name);
719 goto error;
720 }
721
722 if ((prov->provider = OSSL_PROVIDER_load(NULL, provider_name)) == NULL) {
723 ha_alert("ssl-provider %s: unknown provider\n", provider_name);
724 goto error;
725 }
726
727 LIST_INSERT(&openssl_providers, &prov->list);
728
729 return 0;
730
731error:
732 ha_free(&prov);
733 return err_code;
734}
735#endif /* HAVE_SSL_PROVIDERS */
736
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500737#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200738/*
739 * openssl async fd handler
740 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200741void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000742{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200743 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000744
Emeric Brun3854e012017-05-17 20:42:48 +0200745 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000746 * to poll this fd until it is requested
747 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000748 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000749 fd_cant_recv(fd);
750
751 /* crypto engine is available, let's notify the associated
752 * connection that it can pursue its processing.
753 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200754 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000755}
756
Emeric Brun3854e012017-05-17 20:42:48 +0200757/*
758 * openssl async delayed SSL_free handler
759 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200760void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000761{
762 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200763 OSSL_ASYNC_FD all_fd[32];
764 size_t num_all_fds = 0;
765 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000766
Emeric Brun3854e012017-05-17 20:42:48 +0200767 /* We suppose that the async job for a same SSL *
768 * are serialized. So if we are awake it is
769 * because the running job has just finished
770 * and we can remove all async fds safely
771 */
772 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
773 if (num_all_fds > 32) {
774 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
775 return;
776 }
777
778 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
Emeric Brun7d392a52022-07-01 17:36:50 +0200779 for (i=0 ; i < num_all_fds ; i++) {
780 /* We want to remove the fd from the fdtab
781 * but we flag it to disown because the
782 * close is performed by the engine itself
783 */
784 fdtab[all_fd[i]].state |= FD_DISOWN;
785 fd_delete(all_fd[i]);
786 }
Emeric Brun3854e012017-05-17 20:42:48 +0200787
788 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000789 SSL_free(ssl);
Willy Tarreau82531f62021-10-06 12:15:18 +0200790 _HA_ATOMIC_DEC(&global.sslconns);
Willy Tarreau4781b152021-04-06 13:53:36 +0200791 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000792}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000793/*
Emeric Brun3854e012017-05-17 20:42:48 +0200794 * function used to manage a returned SSL_ERROR_WANT_ASYNC
795 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000796 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200797static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000798{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100799 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200800 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200801 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000802 size_t num_add_fds = 0;
803 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200804 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000805
806 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
807 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200808 if (num_add_fds > 32 || num_del_fds > 32) {
809 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000810 return;
811 }
812
Emeric Brun3854e012017-05-17 20:42:48 +0200813 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000814
Emeric Brun3854e012017-05-17 20:42:48 +0200815 /* We remove unused fds from the fdtab */
Emeric Brun7d392a52022-07-01 17:36:50 +0200816 for (i=0 ; i < num_del_fds ; i++) {
817 /* We want to remove the fd from the fdtab
818 * but we flag it to disown because the
819 * close is performed by the engine itself
820 */
821 fdtab[del_fd[i]].state |= FD_DISOWN;
822 fd_delete(del_fd[i]);
823 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000824
Emeric Brun3854e012017-05-17 20:42:48 +0200825 /* We add new fds to the fdtab */
826 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200827 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000828 }
829
Emeric Brun3854e012017-05-17 20:42:48 +0200830 num_add_fds = 0;
831 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
832 if (num_add_fds > 32) {
833 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
834 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000835 }
Emeric Brun3854e012017-05-17 20:42:48 +0200836
837 /* We activate the polling for all known async fds */
838 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000839 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200840 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000841 /* To ensure that the fd cache won't be used
842 * We'll prefer to catch a real RD event
843 * because handling an EAGAIN on this fd will
844 * result in a context switch and also
845 * some engines uses a fd in blocking mode.
846 */
847 fd_cant_recv(add_fd[i]);
848 }
Emeric Brun3854e012017-05-17 20:42:48 +0200849
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000850}
851#endif
852
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200853#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP && !defined HAVE_ASN1_TIME_TO_TM)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200854/*
855 * This function returns the number of seconds elapsed
856 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
857 * date presented un ASN1_GENERALIZEDTIME.
858 *
859 * In parsing error case, it returns -1.
860 */
861static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
862{
863 long epoch;
864 char *p, *end;
865 const unsigned short month_offset[12] = {
866 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
867 };
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +0200868 unsigned long year, month;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200869
870 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
871
872 p = (char *)d->data;
873 end = p + d->length;
874
875 if (end - p < 4) return -1;
876 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
877 p += 4;
878 if (end - p < 2) return -1;
879 month = 10 * (p[0] - '0') + p[1] - '0';
880 if (month < 1 || month > 12) return -1;
881 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
882 We consider leap years and the current month (<marsh or not) */
883 epoch = ( ((year - 1970) * 365)
884 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
885 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
886 + month_offset[month-1]
887 ) * 24 * 60 * 60;
888 p += 2;
889 if (end - p < 2) return -1;
890 /* Add the number of seconds of completed days of current month */
891 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
892 p += 2;
893 if (end - p < 2) return -1;
894 /* Add the completed hours of the current day */
895 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
896 p += 2;
897 if (end - p < 2) return -1;
898 /* Add the completed minutes of the current hour */
899 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
900 p += 2;
901 if (p == end) return -1;
902 /* Test if there is available seconds */
903 if (p[0] < '0' || p[0] > '9')
904 goto nosec;
905 if (end - p < 2) return -1;
906 /* Add the seconds of the current minute */
907 epoch += 10 * (p[0] - '0') + p[1] - '0';
908 p += 2;
909 if (p == end) return -1;
910 /* Ignore seconds float part if present */
911 if (p[0] == '.') {
912 do {
913 if (++p == end) return -1;
914 } while (p[0] >= '0' && p[0] <= '9');
915 }
916
917nosec:
918 if (p[0] == 'Z') {
919 if (end - p != 1) return -1;
920 return epoch;
921 }
922 else if (p[0] == '+') {
923 if (end - p != 5) return -1;
924 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700925 return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200926 }
927 else if (p[0] == '-') {
928 if (end - p != 5) return -1;
929 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700930 return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200931 }
932
933 return -1;
934}
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200935#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200936
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200937#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
William Lallemand104a7a62019-10-14 14:14:59 +0200938/*
939 * struct alignment works here such that the key.key is the same as key_data
940 * Do not change the placement of key_data
941 */
942struct certificate_ocsp {
943 struct ebmb_node key;
944 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +0200945 unsigned int key_length;
William Lallemand104a7a62019-10-14 14:14:59 +0200946 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200947 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200948 long expire;
949};
950
951struct ocsp_cbk_arg {
952 int is_single;
953 int single_kt;
954 union {
955 struct certificate_ocsp *s_ocsp;
956 /*
957 * m_ocsp will have multiple entries dependent on key type
958 * Entry 0 - DSA
959 * Entry 1 - ECDSA
960 * Entry 2 - RSA
961 */
962 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
963 };
964};
965
Emeric Brun1d3865b2014-06-20 15:37:32 +0200966static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200967
968/* This function starts to check if the OCSP response (in DER format) contained
969 * in chunk 'ocsp_response' is valid (else exits on error).
970 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
971 * contained in the OCSP Response and exits on error if no match.
972 * If it's a valid OCSP Response:
973 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
974 * pointed by 'ocsp'.
975 * If 'ocsp' is NULL, the function looks up into the OCSP response's
976 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
977 * from the response) and exits on error if not found. Finally, If an OCSP response is
978 * already present in the container, it will be overwritten.
979 *
980 * Note: OCSP response containing more than one OCSP Single response is not
981 * considered valid.
982 *
983 * Returns 0 on success, 1 in error case.
984 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200985static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
986 struct certificate_ocsp *ocsp,
987 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200988{
989 OCSP_RESPONSE *resp;
990 OCSP_BASICRESP *bs = NULL;
991 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200992 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200993 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200994 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200995 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200996 int reason;
997 int ret = 1;
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200998#ifdef HAVE_ASN1_TIME_TO_TM
999 struct tm nextupd_tm = {0};
1000#endif
Emeric Brun4147b2e2014-06-16 18:36:30 +02001001
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001002 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
1003 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001004 if (!resp) {
1005 memprintf(err, "Unable to parse OCSP response");
1006 goto out;
1007 }
1008
1009 rc = OCSP_response_status(resp);
1010 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
1011 memprintf(err, "OCSP response status not successful");
1012 goto out;
1013 }
1014
1015 bs = OCSP_response_get1_basic(resp);
1016 if (!bs) {
1017 memprintf(err, "Failed to get basic response from OCSP Response");
1018 goto out;
1019 }
1020
1021 count_sr = OCSP_resp_count(bs);
1022 if (count_sr > 1) {
1023 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
1024 goto out;
1025 }
1026
1027 sr = OCSP_resp_get0(bs, 0);
1028 if (!sr) {
1029 memprintf(err, "Failed to get OCSP single response");
1030 goto out;
1031 }
1032
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001033 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
1034
Emeric Brun4147b2e2014-06-16 18:36:30 +02001035 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +02001036 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +02001037 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +02001038 goto out;
1039 }
1040
Emeric Brun13a6b482014-06-20 15:44:34 +02001041 if (!nextupd) {
1042 memprintf(err, "OCSP single response: missing nextupdate");
1043 goto out;
1044 }
1045
Emeric Brunc8b27b62014-06-19 14:16:17 +02001046 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001047 if (!rc) {
1048 memprintf(err, "OCSP single response: no longer valid.");
1049 goto out;
1050 }
1051
1052 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001053 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +02001054 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
1055 goto out;
1056 }
1057 }
1058
1059 if (!ocsp) {
1060 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
1061 unsigned char *p;
1062
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001063 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001064 if (!rc) {
1065 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
1066 goto out;
1067 }
1068
1069 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
1070 memprintf(err, "OCSP single response: Certificate ID too long");
1071 goto out;
1072 }
1073
1074 p = key;
1075 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001076 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001077 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
1078 if (!ocsp) {
1079 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
1080 goto out;
1081 }
1082 }
1083
1084 /* According to comments on "chunk_dup", the
1085 previous chunk buffer will be freed */
1086 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1087 memprintf(err, "OCSP response: Memory allocation error");
1088 goto out;
1089 }
1090
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001091#ifdef HAVE_ASN1_TIME_TO_TM
1092 if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) {
1093 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1094 goto out;
1095 }
1096 ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW;
1097#else
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001098 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +02001099 if (ocsp->expire < 0) {
1100 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1101 goto out;
1102 }
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001103#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001104
Emeric Brun4147b2e2014-06-16 18:36:30 +02001105 ret = 0;
1106out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001107 ERR_clear_error();
1108
Emeric Brun4147b2e2014-06-16 18:36:30 +02001109 if (bs)
1110 OCSP_BASICRESP_free(bs);
1111
1112 if (resp)
1113 OCSP_RESPONSE_free(resp);
1114
1115 return ret;
1116}
1117/*
1118 * External function use to update the OCSP response in the OCSP response's
1119 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1120 * to update in DER format.
1121 *
1122 * Returns 0 on success, 1 in error case.
1123 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001124int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001125{
1126 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1127}
1128
William Lallemand4a660132019-10-14 14:51:41 +02001129#endif
1130
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001131
1132/*
1133 * Initialize an HMAC context <hctx> using the <key> and <md> parameters.
1134 * Returns -1 in case of error, 1 otherwise.
1135 */
1136static int ssl_hmac_init(MAC_CTX *hctx, unsigned char *key, int key_len, const EVP_MD *md)
1137{
1138#ifdef HAVE_OSSL_PARAM
1139 OSSL_PARAM params[3];
1140
1141 params[0] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, key, key_len);
1142 params[1] = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, (char*)EVP_MD_name(md), 0);
1143 params[2] = OSSL_PARAM_construct_end();
1144 if (EVP_MAC_CTX_set_params(hctx, params) == 0)
1145 return -1; /* error in mac initialisation */
1146
1147#else
1148 HMAC_Init_ex(hctx, key, key_len, md, NULL);
1149#endif
1150 return 1;
1151}
1152
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001153#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01001154
1155static 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 Merdanovic05552d42015-02-27 19:56:49 +01001156{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001157 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001158 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001159 struct connection *conn;
1160 int head;
1161 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001162 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001163
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001164 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001165 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001166 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1167
1168 keys = ref->tlskeys;
1169 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001170
1171 if (enc) {
1172 memcpy(key_name, keys[head].name, 16);
1173
1174 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001175 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001176
Emeric Brun9e754772019-01-10 17:51:55 +01001177 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001178
Emeric Brun9e754772019-01-10 17:51:55 +01001179 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1180 goto end;
1181
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001182 if (ssl_hmac_init(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0)
1183 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001184 ret = 1;
1185 }
1186 else if (ref->key_size_bits == 256 ) {
1187
1188 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1189 goto end;
1190
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001191 if (ssl_hmac_init(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0)
1192 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001193 ret = 1;
1194 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001195 } else {
1196 for (i = 0; i < TLS_TICKETS_NO; i++) {
1197 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1198 goto found;
1199 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001200 ret = 0;
1201 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001202
Christopher Faulet16f45c82018-02-16 11:23:49 +01001203 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001204 if (ref->key_size_bits == 128) {
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001205 if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0)
1206 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001207 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1208 goto end;
1209 /* 2 for key renewal, 1 if current key is still valid */
1210 ret = i ? 2 : 1;
1211 }
1212 else if (ref->key_size_bits == 256) {
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001213 if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0)
1214 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001215 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1216 goto end;
1217 /* 2 for key renewal, 1 if current key is still valid */
1218 ret = i ? 2 : 1;
1219 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001220 }
Emeric Brun9e754772019-01-10 17:51:55 +01001221
Christopher Faulet16f45c82018-02-16 11:23:49 +01001222 end:
1223 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1224 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001225}
1226
1227struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1228{
1229 struct tls_keys_ref *ref;
1230
1231 list_for_each_entry(ref, &tlskeys_reference, list)
1232 if (ref->filename && strcmp(filename, ref->filename) == 0)
1233 return ref;
1234 return NULL;
1235}
1236
1237struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1238{
1239 struct tls_keys_ref *ref;
1240
1241 list_for_each_entry(ref, &tlskeys_reference, list)
1242 if (ref->unique_id == unique_id)
1243 return ref;
1244 return NULL;
1245}
1246
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001247/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001248 * match existing ones, this function returns -1
1249 * else it returns 0 on success.
1250 */
1251int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001252 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001253{
Emeric Brun9e754772019-01-10 17:51:55 +01001254 if (ref->key_size_bits == 128) {
1255 if (tlskey->data != sizeof(struct tls_sess_key_128))
1256 return -1;
1257 }
1258 else if (ref->key_size_bits == 256) {
1259 if (tlskey->data != sizeof(struct tls_sess_key_256))
1260 return -1;
1261 }
1262 else
1263 return -1;
1264
Christopher Faulet16f45c82018-02-16 11:23:49 +01001265 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001266 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1267 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001268 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1269 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001270
1271 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001272}
1273
Willy Tarreau83061a82018-07-13 11:56:34 +02001274int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001275{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001276 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1277
1278 if(!ref) {
1279 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1280 return 1;
1281 }
Emeric Brun9e754772019-01-10 17:51:55 +01001282 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1283 memprintf(err, "Invalid key size");
1284 return 1;
1285 }
1286
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001287 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001288}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001289
1290/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001291 * automatic ids. It's called just after the basic checks. It returns
1292 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001293 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001294static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001295{
1296 int i = 0;
1297 struct tls_keys_ref *ref, *ref2, *ref3;
1298 struct list tkr = LIST_HEAD_INIT(tkr);
1299
1300 list_for_each_entry(ref, &tlskeys_reference, list) {
1301 if (ref->unique_id == -1) {
1302 /* Look for the first free id. */
1303 while (1) {
1304 list_for_each_entry(ref2, &tlskeys_reference, list) {
1305 if (ref2->unique_id == i) {
1306 i++;
1307 break;
1308 }
1309 }
1310 if (&ref2->list == &tlskeys_reference)
1311 break;
1312 }
1313
1314 /* Uses the unique id and increment it for the next entry. */
1315 ref->unique_id = i;
1316 i++;
1317 }
1318 }
1319
1320 /* This sort the reference list by id. */
1321 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001322 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001323 list_for_each_entry(ref3, &tkr, list) {
1324 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001325 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001326 break;
1327 }
1328 }
1329 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001330 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001331 }
1332
1333 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001334 LIST_INSERT(&tkr, &tlskeys_reference);
1335 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001336 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001337}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001338#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1339
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001340#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001341int ocsp_ex_index = -1;
1342
yanbzhube2774d2015-12-10 15:07:30 -05001343int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1344{
1345 switch (evp_keytype) {
1346 case EVP_PKEY_RSA:
1347 return 2;
1348 case EVP_PKEY_DSA:
1349 return 0;
1350 case EVP_PKEY_EC:
1351 return 1;
1352 }
1353
1354 return -1;
1355}
1356
Emeric Brun4147b2e2014-06-16 18:36:30 +02001357/*
1358 * Callback used to set OCSP status extension content in server hello.
1359 */
1360int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1361{
yanbzhube2774d2015-12-10 15:07:30 -05001362 struct certificate_ocsp *ocsp;
1363 struct ocsp_cbk_arg *ocsp_arg;
1364 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001365 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001366 EVP_PKEY *ssl_pkey;
1367 int key_type;
1368 int index;
1369
William Lallemand76b4a122020-08-04 17:41:39 +02001370 ctx = SSL_get_SSL_CTX(ssl);
1371 if (!ctx)
1372 return SSL_TLSEXT_ERR_NOACK;
1373
1374 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1375 if (!ocsp_arg)
1376 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001377
1378 ssl_pkey = SSL_get_privatekey(ssl);
1379 if (!ssl_pkey)
1380 return SSL_TLSEXT_ERR_NOACK;
1381
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001382 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001383
1384 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1385 ocsp = ocsp_arg->s_ocsp;
1386 else {
1387 /* For multiple certs per context, we have to find the correct OCSP response based on
1388 * the certificate type
1389 */
1390 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1391
1392 if (index < 0)
1393 return SSL_TLSEXT_ERR_NOACK;
1394
1395 ocsp = ocsp_arg->m_ocsp[index];
1396
1397 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001398
1399 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001400 !ocsp->response.area ||
1401 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001402 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001403 return SSL_TLSEXT_ERR_NOACK;
1404
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001405 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001406 if (!ssl_buf)
1407 return SSL_TLSEXT_ERR_NOACK;
1408
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001409 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1410 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001411
1412 return SSL_TLSEXT_ERR_OK;
1413}
1414
William Lallemand4a660132019-10-14 14:51:41 +02001415#endif
1416
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001417#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001418
1419
1420/*
1421 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1422 * used anymore. Also removes it from the tree if free'd.
1423 */
1424static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1425{
1426 if (!ocsp)
1427 return;
1428
1429 ocsp->refcount--;
1430 if (ocsp->refcount <= 0) {
1431 ebmb_delete(&ocsp->key);
1432 chunk_destroy(&ocsp->response);
1433 free(ocsp);
1434 }
1435}
1436
1437
Emeric Brun4147b2e2014-06-16 18:36:30 +02001438/*
1439 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001440 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1441 * status extension, the issuer's certificate is mandatory. It should be
1442 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001443 *
William Lallemand246c0242019-10-11 08:59:13 +02001444 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1445 * OCSP response. If file is empty or content is not a valid OCSP response,
1446 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1447 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001448 *
1449 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001450 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001451 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001452static int ssl_sock_load_ocsp(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, STACK_OF(X509) *chain)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001453{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001454 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001455 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001456 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001457 struct certificate_ocsp *ocsp = NULL, *iocsp;
1458 char *warn = NULL;
1459 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001460 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001461
Emeric Brun4147b2e2014-06-16 18:36:30 +02001462
William Lallemand246c0242019-10-11 08:59:13 +02001463 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001464 if (!x)
1465 goto out;
1466
William Lallemand246c0242019-10-11 08:59:13 +02001467 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001468 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1469 if (chain) {
1470 /* check if one of the certificate of the chain is the issuer */
1471 for (i = 0; i < sk_X509_num(chain); i++) {
1472 X509 *ti = sk_X509_value(chain, i);
1473 if (X509_check_issued(ti, x) == X509_V_OK) {
1474 issuer = ti;
1475 break;
1476 }
1477 }
1478 }
William Lallemand246c0242019-10-11 08:59:13 +02001479 if (!issuer)
1480 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001481
1482 cid = OCSP_cert_to_id(0, x, issuer);
1483 if (!cid)
1484 goto out;
1485
1486 i = i2d_OCSP_CERTID(cid, NULL);
1487 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1488 goto out;
1489
Vincent Bernat02779b62016-04-03 13:48:43 +02001490 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001491 if (!ocsp)
1492 goto out;
1493
1494 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001495 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001496
1497 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1498 if (iocsp == ocsp)
1499 ocsp = NULL;
1500
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001501#ifndef SSL_CTX_get_tlsext_status_cb
1502# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1503 *cb = (void (*) (void))ctx->tlsext_status_cb;
1504#endif
1505 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1506
1507 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001508 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001509 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001510
William Lallemanda560c062020-07-31 11:43:20 +02001511 cb_arg = calloc(1, sizeof(*cb_arg));
1512 if (!cb_arg)
1513 goto out;
1514
yanbzhube2774d2015-12-10 15:07:30 -05001515 cb_arg->is_single = 1;
1516 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001517 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001518
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001519 pkey = X509_get_pubkey(x);
1520 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1521 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001522
1523 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001524 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 */
1525
yanbzhube2774d2015-12-10 15:07:30 -05001526 } else {
1527 /*
1528 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1529 * Update that cb_arg with the new cert's staple
1530 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001531 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001532 struct certificate_ocsp *tmp_ocsp;
1533 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001534 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001535 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001536
William Lallemand76b4a122020-08-04 17:41:39 +02001537 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001538
1539 /*
1540 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1541 * the order of operations below matter, take care when changing it
1542 */
1543 tmp_ocsp = cb_arg->s_ocsp;
1544 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1545 cb_arg->s_ocsp = NULL;
1546 cb_arg->m_ocsp[index] = tmp_ocsp;
1547 cb_arg->is_single = 0;
1548 cb_arg->single_kt = 0;
1549
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001550 pkey = X509_get_pubkey(x);
1551 key_type = EVP_PKEY_base_id(pkey);
1552 EVP_PKEY_free(pkey);
1553
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001554 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001555 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001556 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001557 iocsp->refcount++;
1558 }
yanbzhube2774d2015-12-10 15:07:30 -05001559 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001560
1561 ret = 0;
1562
1563 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001564 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001565 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001566 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001567 }
1568
1569out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001570 if (cid)
1571 OCSP_CERTID_free(cid);
1572
1573 if (ocsp)
1574 free(ocsp);
1575
1576 if (warn)
1577 free(warn);
1578
Emeric Brun4147b2e2014-06-16 18:36:30 +02001579 return ret;
1580}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001581#endif
1582
1583#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001584static int ssl_sock_load_ocsp(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, STACK_OF(X509) *chain)
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001585{
William Lallemand4a660132019-10-14 14:51:41 +02001586 return SSL_CTX_set_ocsp_response(ctx, (const uint8_t *)ckch->ocsp_response->area, ckch->ocsp_response->data);
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001587}
1588#endif
1589
William Lallemand4a660132019-10-14 14:51:41 +02001590
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001591#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001592
1593#define CT_EXTENSION_TYPE 18
1594
William Lallemand03c331c2020-05-13 10:10:01 +02001595int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001596
1597int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1598{
Willy Tarreau83061a82018-07-13 11:56:34 +02001599 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001600
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001601 *out = (unsigned char *) sctl->area;
1602 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001603
1604 return 1;
1605}
1606
1607int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1608{
1609 return 1;
1610}
1611
William Lallemanda17f4112019-10-10 15:16:44 +02001612static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001613{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001614 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001615
William Lallemanda17f4112019-10-10 15:16:44 +02001616 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 Dziemidowicz2c701b52015-03-07 23:03:59 +01001617 goto out;
1618
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001619 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1620
1621 ret = 0;
1622
1623out:
1624 return ret;
1625}
1626
1627#endif
1628
Emeric Brune1f38db2012-09-03 20:36:47 +02001629void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1630{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001631 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001632#ifdef USE_QUIC
1633 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1634#endif /* USE_QUIC */
1635 struct ssl_sock_ctx *ctx = NULL;
1636
Emeric Brund8b2bb52014-01-28 15:43:53 +01001637 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001638 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001639
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001640 if (conn)
Willy Tarreau939b0bf2022-04-11 11:29:11 +02001641 ctx = conn_get_ssl_sock_ctx(conn);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001642#ifdef USE_QUIC
1643 else if (qc)
1644 ctx = qc->xprt_ctx;
1645#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01001646
1647 if (!ctx) {
1648 /* must never happen */
1649 ABORT_NOW();
1650 return;
1651 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001652
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001653#ifndef SSL_OP_NO_RENEGOTIATION
1654 /* Please note that BoringSSL defines this macro to zero so don't
1655 * change this to #if and do not assign a default value to this macro!
1656 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001657 if (where & SSL_CB_HANDSHAKE_START) {
1658 /* Disable renegotiation (CVE-2009-3555) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001659 if (conn && (conn->flags & (CO_FL_WAIT_L6_CONN | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == 0) {
Emeric Brune1f38db2012-09-03 20:36:47 +02001660 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001661 conn->err_code = CO_ER_SSL_RENEG;
1662 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001663 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001664#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001665
1666 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001667 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001668 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001669 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001670 consider that the buffering was activated,
1671 so we rise the output buffer size from 4k
1672 to 16k */
1673 write_bio = SSL_get_wbio(ssl);
1674 if (write_bio != SSL_get_rbio(ssl)) {
1675 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001676 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001677 }
1678 }
1679 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001680}
1681
Emeric Brune64aef12012-09-21 13:15:06 +02001682/* Callback is called for each certificate of the chain during a verify
1683 ok is set to 1 if preverify detect no error on current certificate.
1684 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001685int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001686{
1687 SSL *ssl;
1688 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001689 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001690 int err, depth;
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001691 X509 *client_crt;
1692 STACK_OF(X509) *certs;
Emeric Brune64aef12012-09-21 13:15:06 +02001693
1694 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001695 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001696 client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001697
Willy Tarreau3a0a0d62022-04-12 07:31:06 +02001698 ctx = __conn_get_ssl_sock_ctx(conn);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001699 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001700
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001701 depth = X509_STORE_CTX_get_error_depth(x_store);
1702 err = X509_STORE_CTX_get_error(x_store);
1703
Emeric Brun81c00f02012-09-21 14:31:21 +02001704 if (ok) /* no errors */
1705 return ok;
1706
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001707 /* Keep a reference to the client's certificate in order to be able to
1708 * dump some fetches values in a log even when the verification process
1709 * fails. */
1710 if (depth == 0) {
1711 X509_free(client_crt);
1712 client_crt = X509_STORE_CTX_get0_cert(x_store);
1713 if (client_crt) {
1714 X509_up_ref(client_crt);
1715 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
1716 }
1717 }
1718 else {
1719 /* An error occurred on a CA certificate of the certificate
1720 * chain, we might never call this verify callback on the client
1721 * certificate's depth (which is 0) so we try to store the
1722 * reference right now. */
Remi Tricot-Le Bretonf95c2952021-08-20 09:51:23 +02001723 certs = X509_STORE_CTX_get1_chain(x_store);
1724 if (certs) {
1725 client_crt = sk_X509_value(certs, 0);
1726 if (client_crt) {
1727 X509_up_ref(client_crt);
1728 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001729 }
1730 sk_X509_pop_free(certs, X509_free);
1731 }
1732 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001733
1734 /* check if CA error needs to be ignored */
1735 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001736 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1737 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1738 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001739 }
1740
Willy Tarreau731248f2020-02-04 14:02:02 +01001741 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001742 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001743 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001744 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001745 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001746
Willy Tarreau20879a02012-12-03 16:32:10 +01001747 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001748 return 0;
1749 }
1750
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001751 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1752 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001753
Emeric Brun81c00f02012-09-21 14:31:21 +02001754 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001755 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001756 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001757 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001758 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001759 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001760
Willy Tarreau20879a02012-12-03 16:32:10 +01001761 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001762 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001763}
1764
Dragan Dosen9ac98092020-05-11 15:51:45 +02001765#ifdef TLS1_RT_HEARTBEAT
1766static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1767 int content_type, const void *buf, size_t len,
1768 SSL *ssl)
1769{
1770 /* test heartbeat received (write_p is set to 0
1771 for a received record) */
1772 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
Willy Tarreau3a0a0d62022-04-12 07:31:06 +02001773 struct ssl_sock_ctx *ctx = __conn_get_ssl_sock_ctx(conn);
Dragan Dosen9ac98092020-05-11 15:51:45 +02001774 const unsigned char *p = buf;
1775 unsigned int payload;
1776
1777 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1778
1779 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1780 if (*p != TLS1_HB_REQUEST)
1781 return;
1782
1783 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1784 goto kill_it;
1785
1786 payload = (p[1] * 256) + p[2];
1787 if (3 + payload + 16 <= len)
1788 return; /* OK no problem */
1789 kill_it:
1790 /* We have a clear heartbleed attack (CVE-2014-0160), the
1791 * advertised payload is larger than the advertised packet
1792 * length, so we have garbage in the buffer between the
1793 * payload and the end of the buffer (p+len). We can't know
1794 * if the SSL stack is patched, and we don't know if we can
1795 * safely wipe out the area between p+3+len and payload.
1796 * So instead, we prevent the response from being sent by
1797 * setting the max_send_fragment to 0 and we report an SSL
1798 * error, which will kill this connection. It will be reported
1799 * above as SSL_ERROR_SSL while an other handshake failure with
1800 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1801 */
1802 ssl->max_send_fragment = 0;
1803 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1804 }
1805}
1806#endif
1807
1808static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1809 int content_type, const void *buf, size_t len,
1810 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001811{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001812 struct ssl_capture *capture;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001813 uchar *msg;
1814 uchar *end;
1815 uchar *extensions_end;
1816 uchar *ec_start = NULL;
1817 uchar *ec_formats_start = NULL;
1818 uchar *list_end;
1819 ushort protocol_version;
1820 ushort extension_id;
1821 ushort ec_len = 0;
1822 uchar ec_formats_len = 0;
1823 int offset = 0;
1824 int rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001825
1826 /* This function is called for "from client" and "to server"
1827 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001828 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001829 */
1830
1831 /* "write_p" is set to 0 is the bytes are received messages,
1832 * otherwise it is set to 1.
1833 */
1834 if (write_p != 0)
1835 return;
1836
1837 /* content_type contains the type of message received or sent
1838 * according with the SSL/TLS protocol spec. This message is
1839 * encoded with one byte. The value 256 (two bytes) is used
1840 * for designing the SSL/TLS record layer. According with the
1841 * rfc6101, the expected message (other than 256) are:
1842 * - change_cipher_spec(20)
1843 * - alert(21)
1844 * - handshake(22)
1845 * - application_data(23)
1846 * - (255)
1847 * We are interessed by the handshake and specially the client
1848 * hello.
1849 */
1850 if (content_type != 22)
1851 return;
1852
1853 /* The message length is at least 4 bytes, containing the
1854 * message type and the message length.
1855 */
1856 if (len < 4)
1857 return;
1858
1859 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001860 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001861 * - hello_request(0)
1862 * - client_hello(1)
1863 * - server_hello(2)
1864 * - certificate(11)
1865 * - server_key_exchange (12)
1866 * - certificate_request(13)
1867 * - server_hello_done(14)
1868 * We are interested by the client hello.
1869 */
1870 msg = (unsigned char *)buf;
1871 if (msg[0] != 1)
1872 return;
1873
1874 /* Next three bytes are the length of the message. The total length
1875 * must be this decoded length + 4. If the length given as argument
1876 * is not the same, we abort the protocol dissector.
1877 */
1878 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1879 if (len < rec_len + 4)
1880 return;
1881 msg += 4;
1882 end = msg + rec_len;
1883 if (end < msg)
1884 return;
1885
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001886 /* Expect 2 bytes for protocol version
1887 * (1 byte for major and 1 byte for minor)
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001888 */
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001889 if (msg + 2 > end)
1890 return;
1891 protocol_version = (msg[0] << 8) + msg[1];
1892 msg += 2;
1893
1894 /* Expect the random, composed by 4 bytes for the unix time and
1895 * 28 bytes for unix payload. So we jump 4 + 28.
1896 */
1897 msg += 4 + 28;
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001898 if (msg > end)
1899 return;
1900
1901 /* Next, is session id:
1902 * if present, we have to jump by length + 1 for the size information
1903 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001904 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001905 if (msg[0] > 0)
1906 msg += msg[0];
1907 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001908 if (msg > end)
1909 return;
1910
1911 /* Next two bytes are the ciphersuite length. */
1912 if (msg + 2 > end)
1913 return;
1914 rec_len = (msg[0] << 8) + msg[1];
1915 msg += 2;
1916 if (msg + rec_len > end || msg + rec_len < msg)
1917 return;
1918
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001919 capture = pool_zalloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001920 if (!capture)
1921 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001922 /* Compute the xxh64 of the ciphersuite. */
1923 capture->xxh64 = XXH64(msg, rec_len, 0);
1924
1925 /* Capture the ciphersuite. */
Marcin Deranek310a2602021-07-13 19:04:24 +02001926 capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len);
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001927 capture->ciphersuite_offset = 0;
1928 memcpy(capture->data, msg, capture->ciphersuite_len);
1929 msg += rec_len;
1930 offset += capture->ciphersuite_len;
1931
1932 /* Initialize other data */
1933 capture->protocol_version = protocol_version;
1934
1935 /* Next, compression methods:
1936 * if present, we have to jump by length + 1 for the size information
1937 * if not present, we have to jump by 1 only
1938 */
1939 if (msg[0] > 0)
1940 msg += msg[0];
1941 msg += 1;
1942 if (msg > end)
1943 goto store_capture;
1944
1945 /* We reached extensions */
1946 if (msg + 2 > end)
1947 goto store_capture;
1948 rec_len = (msg[0] << 8) + msg[1];
1949 msg += 2;
1950 if (msg + rec_len > end || msg + rec_len < msg)
1951 goto store_capture;
1952 extensions_end = msg + rec_len;
1953 capture->extensions_offset = offset;
1954
1955 /* Parse each extension */
1956 while (msg + 4 < extensions_end) {
1957 /* Add 2 bytes of extension_id */
Marcin Deranek310a2602021-07-13 19:04:24 +02001958 if (global_ssl.capture_buffer_size >= offset + 2) {
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001959 capture->data[offset++] = msg[0];
1960 capture->data[offset++] = msg[1];
1961 capture->extensions_len += 2;
1962 }
1963 else
1964 break;
1965 extension_id = (msg[0] << 8) + msg[1];
1966 /* Length of the extension */
1967 rec_len = (msg[2] << 8) + msg[3];
1968
1969 /* Expect 2 bytes extension id + 2 bytes extension size */
1970 msg += 2 + 2;
1971 if (msg + rec_len > extensions_end || msg + rec_len < msg)
1972 goto store_capture;
1973 /* TLS Extensions
1974 * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1975 if (extension_id == 0x000a) {
1976 /* Elliptic Curves:
1977 * https://www.rfc-editor.org/rfc/rfc8422.html
1978 * https://www.rfc-editor.org/rfc/rfc7919.html */
1979 list_end = msg + rec_len;
1980 if (msg + 2 > list_end)
1981 goto store_capture;
1982 rec_len = (msg[0] << 8) + msg[1];
1983 msg += 2;
1984
1985 if (msg + rec_len > list_end || msg + rec_len < msg)
1986 goto store_capture;
1987 /* Store location/size of the list */
1988 ec_start = msg;
1989 ec_len = rec_len;
1990 }
1991 else if (extension_id == 0x000b) {
1992 /* Elliptic Curves Point Formats:
1993 * https://www.rfc-editor.org/rfc/rfc8422.html */
1994 list_end = msg + rec_len;
1995 if (msg + 1 > list_end)
1996 goto store_capture;
1997 rec_len = msg[0];
1998 msg += 1;
1999
2000 if (msg + rec_len > list_end || msg + rec_len < msg)
2001 goto store_capture;
2002 /* Store location/size of the list */
2003 ec_formats_start = msg;
2004 ec_formats_len = rec_len;
2005 }
2006 msg += rec_len;
2007 }
2008
2009 if (ec_start) {
2010 rec_len = ec_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02002011 if (offset + rec_len > global_ssl.capture_buffer_size)
2012 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02002013 memcpy(capture->data + offset, ec_start, rec_len);
2014 capture->ec_offset = offset;
2015 capture->ec_len = rec_len;
2016 offset += rec_len;
2017 }
2018 if (ec_formats_start) {
2019 rec_len = ec_formats_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02002020 if (offset + rec_len > global_ssl.capture_buffer_size)
2021 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02002022 memcpy(capture->data + offset, ec_formats_start, rec_len);
2023 capture->ec_formats_offset = offset;
2024 capture->ec_formats_len = rec_len;
2025 offset += rec_len;
2026 }
Emmanuel Hocdete3804742017-03-08 11:07:10 +01002027
Marcin Deranek769fd2e2021-07-12 14:16:55 +02002028 store_capture:
Emmanuel Hocdete3804742017-03-08 11:07:10 +01002029 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01002030}
William Lallemand7d42ef52020-07-06 11:41:30 +02002031
2032
William Lallemand722180a2021-06-09 16:46:12 +02002033#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02002034static void ssl_init_keylog(struct connection *conn, int write_p, int version,
2035 int content_type, const void *buf, size_t len,
2036 SSL *ssl)
2037{
2038 struct ssl_keylog *keylog;
2039
2040 if (SSL_get_ex_data(ssl, ssl_keylog_index))
2041 return;
2042
Willy Tarreauf208ac02021-03-22 21:10:12 +01002043 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02002044 if (!keylog)
2045 return;
2046
William Lallemand7d42ef52020-07-06 11:41:30 +02002047 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
2048 pool_free(pool_head_ssl_keylog, keylog);
2049 return;
2050 }
2051}
2052#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01002053
Emeric Brun29f037d2014-04-25 19:05:36 +02002054/* Callback is called for ssl protocol analyse */
2055void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
2056{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02002057 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
2058 struct ssl_sock_msg_callback *cbk;
2059
Dragan Dosen1e7ed042020-05-08 18:30:00 +02002060 /* Try to call all callback functions that were registered by using
2061 * ssl_sock_register_msg_callback().
2062 */
2063 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
2064 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
2065 }
Emeric Brun29f037d2014-04-25 19:05:36 +02002066}
2067
Bernard Spil13c53f82018-02-15 13:34:58 +01002068#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01002069static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
2070 const unsigned char *in, unsigned int inlen,
2071 void *arg)
2072{
2073 struct server *srv = arg;
2074
2075 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
2076 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
2077 return SSL_TLSEXT_ERR_OK;
2078 return SSL_TLSEXT_ERR_NOACK;
2079}
2080#endif
2081
2082#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002083/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002084 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002085 */
2086static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
2087 unsigned int *len, void *arg)
2088{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002089 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002090
2091 *data = (const unsigned char *)conf->npn_str;
2092 *len = conf->npn_len;
2093 return SSL_TLSEXT_ERR_OK;
2094}
2095#endif
2096
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002097#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02002098/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002099 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02002100 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002101static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
2102 unsigned char *outlen,
2103 const unsigned char *server,
2104 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02002105{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002106 struct ssl_bind_conf *conf = arg;
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002107#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002108 struct quic_conn *qc = SSL_get_ex_data(s, ssl_qc_app_data_index);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002109#endif
Willy Tarreauab861d32013-04-02 02:30:41 +02002110
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002111 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
2112 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002113#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002114 if (qc)
2115 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002116#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002117 return SSL_TLSEXT_ERR_NOACK;
2118 }
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002119
2120#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002121 if (qc && !quic_set_app_ops(qc, *out, *outlen)) {
2122 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002123 return SSL_TLSEXT_ERR_NOACK;
2124 }
2125#endif
2126
Willy Tarreauab861d32013-04-02 02:30:41 +02002127 return SSL_TLSEXT_ERR_OK;
2128}
2129#endif
2130
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02002131#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002132#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002133
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002134/* Configure a DNS SAN extenion on a certificate. */
2135int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
2136 int failure = 0;
2137 X509_EXTENSION *san_ext = NULL;
2138 CONF *conf = NULL;
2139 struct buffer *san_name = get_trash_chunk();
2140
2141 conf = NCONF_new(NULL);
2142 if (!conf) {
2143 failure = 1;
2144 goto cleanup;
2145 }
2146
2147 /* Build an extension based on the DNS entry above */
2148 chunk_appendf(san_name, "DNS:%s", servername);
2149 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
2150 if (!san_ext) {
2151 failure = 1;
2152 goto cleanup;
2153 }
2154
2155 /* Add the extension */
2156 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
2157 failure = 1;
2158 goto cleanup;
2159 }
2160
2161 /* Success */
2162 failure = 0;
2163
2164cleanup:
2165 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
2166 if (NULL != conf) NCONF_free(conf);
2167
2168 return failure;
2169}
2170
Christopher Faulet30548802015-06-11 13:39:32 +02002171/* Create a X509 certificate with the specified servername and serial. This
2172 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02002173static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002174ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002175{
Shimi Gersner5846c492020-08-23 13:58:12 +03002176 X509 *cacert = bind_conf->ca_sign_ckch->cert;
2177 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002178 SSL_CTX *ssl_ctx = NULL;
2179 X509 *newcrt = NULL;
2180 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002181 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002182 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002183 X509_NAME *name;
2184 const EVP_MD *digest;
2185 X509V3_CTX ctx;
2186 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002187 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002188
Christopher Faulet48a83322017-07-28 16:56:09 +02002189 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05002190#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002191 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
2192#else
2193 tmp_ssl = SSL_new(bind_conf->default_ctx);
2194 if (tmp_ssl)
2195 pkey = SSL_get_privatekey(tmp_ssl);
2196#endif
2197 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002198 goto mkcert_error;
2199
2200 /* Create the certificate */
2201 if (!(newcrt = X509_new()))
2202 goto mkcert_error;
2203
2204 /* Set version number for the certificate (X509v3) and the serial
2205 * number */
2206 if (X509_set_version(newcrt, 2L) != 1)
2207 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02002208 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002209
2210 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08002211 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
2212 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002213 goto mkcert_error;
2214
2215 /* set public key in the certificate */
2216 if (X509_set_pubkey(newcrt, pkey) != 1)
2217 goto mkcert_error;
2218
2219 /* Set issuer name from the CA */
2220 if (!(name = X509_get_subject_name(cacert)))
2221 goto mkcert_error;
2222 if (X509_set_issuer_name(newcrt, name) != 1)
2223 goto mkcert_error;
2224
2225 /* Set the subject name using the same, but the CN */
2226 name = X509_NAME_dup(name);
2227 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
2228 (const unsigned char *)servername,
2229 -1, -1, 0) != 1) {
2230 X509_NAME_free(name);
2231 goto mkcert_error;
2232 }
2233 if (X509_set_subject_name(newcrt, name) != 1) {
2234 X509_NAME_free(name);
2235 goto mkcert_error;
2236 }
2237 X509_NAME_free(name);
2238
2239 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002240 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002241 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
2242 for (i = 0; i < X509V3_EXT_SIZE; i++) {
2243 X509_EXTENSION *ext;
2244
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002245 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002246 goto mkcert_error;
2247 if (!X509_add_ext(newcrt, ext, -1)) {
2248 X509_EXTENSION_free(ext);
2249 goto mkcert_error;
2250 }
2251 X509_EXTENSION_free(ext);
2252 }
2253
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002254 /* Add SAN extension */
2255 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
2256 goto mkcert_error;
2257 }
2258
Christopher Faulet31af49d2015-06-09 17:29:50 +02002259 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002260
2261 key_type = EVP_PKEY_base_id(capkey);
2262
2263 if (key_type == EVP_PKEY_DSA)
2264 digest = EVP_sha1();
2265 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002266 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002267 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002268 digest = EVP_sha256();
2269 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002270#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002271 int nid;
2272
2273 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2274 goto mkcert_error;
2275 if (!(digest = EVP_get_digestbynid(nid)))
2276 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002277#else
2278 goto mkcert_error;
2279#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002280 }
2281
Christopher Faulet31af49d2015-06-09 17:29:50 +02002282 if (!(X509_sign(newcrt, capkey, digest)))
2283 goto mkcert_error;
2284
2285 /* Create and set the new SSL_CTX */
2286 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2287 goto mkcert_error;
2288 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2289 goto mkcert_error;
2290 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2291 goto mkcert_error;
2292 if (!SSL_CTX_check_private_key(ssl_ctx))
2293 goto mkcert_error;
2294
Shimi Gersner5846c492020-08-23 13:58:12 +03002295 /* Build chaining the CA cert and the rest of the chain, keep these order */
2296#if defined(SSL_CTX_add1_chain_cert)
2297 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2298 goto mkcert_error;
2299 }
2300
2301 if (bind_conf->ca_sign_ckch->chain) {
2302 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2303 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2304 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2305 goto mkcert_error;
2306 }
2307 }
2308 }
2309#endif
2310
Christopher Faulet31af49d2015-06-09 17:29:50 +02002311 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002312
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002313#ifndef OPENSSL_NO_DH
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01002314#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01002315 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh_cbk);
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01002316#else
2317 ssl_sock_set_tmp_dh_from_pkey(ssl_ctx, pkey);
2318#endif
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002319#endif
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002320
2321#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
2322#if defined(SSL_CTX_set1_curves_list)
2323 {
2324 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
2325 if (!SSL_CTX_set1_curves_list(ssl_ctx, ecdhe))
2326 goto end;
2327 }
2328#endif
2329#else
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002330#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2331 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002332 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002333 EC_KEY *ecc;
2334 int nid;
2335
2336 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2337 goto end;
2338 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2339 goto end;
2340 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2341 EC_KEY_free(ecc);
2342 }
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002343#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
2344#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002345 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002346 return ssl_ctx;
2347
2348 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002349 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002350 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002351 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2352 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002353 return NULL;
2354}
2355
Christopher Faulet7969a332015-10-09 11:15:03 +02002356
Christopher Faulet30548802015-06-11 13:39:32 +02002357/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002358 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002359SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002360ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002361{
2362 struct lru64 *lru = NULL;
2363
2364 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002365 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002366 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002367 if (lru && lru->domain) {
2368 if (ssl)
2369 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002370 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002371 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002372 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002373 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002374 }
2375 return NULL;
2376}
2377
Emeric Brun821bb9b2017-06-15 16:37:39 +02002378/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2379 * function is not thread-safe, it should only be used to check if a certificate
2380 * exists in the lru cache (with no warranty it will not be removed by another
2381 * thread). It is kept for backward compatibility. */
2382SSL_CTX *
2383ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2384{
2385 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2386}
2387
Christopher Fauletd2cab922015-07-28 16:03:47 +02002388/* Set a certificate int the LRU cache used to store generated
2389 * certificate. Return 0 on success, otherwise -1 */
2390int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002391ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002392{
2393 struct lru64 *lru = NULL;
2394
2395 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002396 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002397 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002398 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002399 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002400 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002401 }
Christopher Faulet30548802015-06-11 13:39:32 +02002402 if (lru->domain && lru->data)
2403 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002404 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002405 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002406 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002407 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002408 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002409}
2410
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002411/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002412unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002413ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002414{
2415 return XXH32(data, len, ssl_ctx_lru_seed);
2416}
2417
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002418/* Generate a cert and immediately assign it to the SSL session so that the cert's
2419 * refcount is maintained regardless of the cert's presence in the LRU cache.
2420 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002421static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002422ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002423{
Shimi Gersner5846c492020-08-23 13:58:12 +03002424 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002425 SSL_CTX *ssl_ctx = NULL;
2426 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002427 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002428
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002429 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002430 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002431 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002432 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002433 if (lru && lru->domain)
2434 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002435 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002436 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002437 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002438 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002439 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002440 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002441 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002442 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002443 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002444 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002445 SSL_set_SSL_CTX(ssl, ssl_ctx);
2446 /* No LRU cache, this CTX will be released as soon as the session dies */
2447 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002448 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002449 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002450 return 0;
2451}
2452static int
2453ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2454{
2455 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002456 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002457
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002458 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002459 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002460 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002461 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002462 }
2463 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002464}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002465#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002466
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002467#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002468
2469static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002470{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002471#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002472 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002473 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2474#endif
2475}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002476static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2477 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002478 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2479}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002480static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002481#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002482 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002483 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2484#endif
2485}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002486static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002487#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002488 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002489 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2490#endif
2491}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002492/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002493static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2494/* Unusable in this context. */
2495static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2496static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2497static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2498static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2499static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002500#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002501
2502static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2503 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002504 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2505}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002506static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2507 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2508 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2509}
2510static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2511 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002512 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2513}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002514static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2515 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2516 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2517}
2518static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2519 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002520 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2521}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002522static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2523 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2524 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2525}
2526static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2527 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002528 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2529}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002530static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2531 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2532 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2533}
2534static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002535#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002536 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002537 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2538#endif
2539}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002540static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002541#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002542 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2543 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002544#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002545}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002546#endif
2547static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2548static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002549
William Lallemand7fd8b452020-05-07 15:20:43 +02002550struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002551 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2552 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2553 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2554 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2555 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2556 {SSL_OP_NO_TLSv1_3, MC_SSL_O_NO_TLSV13, ctx_set_TLSv13_func, ssl_set_TLSv13_func, "TLSv1.3"}, /* CONF_TLSV13 */
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002557};
2558
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002559static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2560{
2561 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2562 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2563 SSL_set_SSL_CTX(ssl, ctx);
2564}
2565
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002566#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002567
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002568int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002569{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002570 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002571 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002572
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02002573 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || (s->options & BC_O_GENERATE_CERTS))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002574 return SSL_TLSEXT_ERR_OK;
2575 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002576}
2577
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002578#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002579int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002580{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002581 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002582#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002583int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002584{
2585#endif
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002586 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
2587#ifdef USE_QUIC
2588 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
2589#endif /* USE_QUIC */
2590 struct bind_conf *s = NULL;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002591 const uint8_t *extension_data;
2592 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002593 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002594
2595 char *wildp = NULL;
2596 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002597 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002598 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002599 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002600 int i;
2601
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002602 if (conn)
2603 s = __objt_listener(conn->target)->bind_conf;
2604#ifdef USE_QUIC
2605 else if (qc)
2606 s = qc->li->bind_conf;
2607#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01002608
2609 if (!s) {
2610 /* must never happen */
2611 ABORT_NOW();
2612 return 0;
2613 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002614
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002615#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002616 if (qc) {
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002617 /* Look for the QUIC transport parameters. */
2618#ifdef OPENSSL_IS_BORINGSSL
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002619 if (!SSL_early_callback_ctx_extension_get(ctx, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002620 &extension_data, &extension_len))
2621#else
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002622 if (!SSL_client_hello_get0_ext(ssl, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002623 &extension_data, &extension_len))
2624#endif
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002625 {
2626 /* This is not redundant. It we only return 0 without setting
2627 * <*al>, this has as side effect to generate another TLS alert
2628 * which would be set after calling quic_set_tls_alert().
2629 */
2630 *al = SSL_AD_MISSING_EXTENSION;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002631 quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION);
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002632 return 0;
2633 }
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002634
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002635 if (!quic_transport_params_store(qc, 0, extension_data,
Frédéric Lécaille301425b2022-06-14 17:40:39 +02002636 extension_data + extension_len) ||
2637 !qc_conn_finalize(qc, 0))
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002638 goto abort;
2639 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002640#endif /* USE_QUIC */
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002641
Olivier Houchard9679ac92017-10-27 14:58:08 +02002642 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002643 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002644#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002645 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2646 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002647#else
2648 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2649#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002650 /*
2651 * The server_name extension was given too much extensibility when it
2652 * was written, so parsing the normal case is a bit complex.
2653 */
2654 size_t len;
2655 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002656 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002657 /* Extract the length of the supplied list of names. */
2658 len = (*extension_data++) << 8;
2659 len |= *extension_data++;
2660 if (len + 2 != extension_len)
2661 goto abort;
2662 /*
2663 * The list in practice only has a single element, so we only consider
2664 * the first one.
2665 */
2666 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2667 goto abort;
2668 extension_len = len - 1;
2669 /* Now we can finally pull out the byte array with the actual hostname. */
2670 if (extension_len <= 2)
2671 goto abort;
2672 len = (*extension_data++) << 8;
2673 len |= *extension_data++;
2674 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2675 || memchr(extension_data, 0, len) != NULL)
2676 goto abort;
2677 servername = extension_data;
2678 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002679 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002680#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02002681 if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002682 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002683 }
2684#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002685 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002686 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002687 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002688 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002689 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002690 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002691 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002692 goto abort;
2693 }
2694
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002695 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002696#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002697 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002698#else
2699 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2700#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002701 uint8_t sign;
2702 size_t len;
2703 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002704 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002705 len = (*extension_data++) << 8;
2706 len |= *extension_data++;
2707 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002708 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002709 if (len % 2 != 0)
2710 goto abort;
2711 for (; len > 0; len -= 2) {
2712 extension_data++; /* hash */
2713 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002714 switch (sign) {
2715 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002716 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002717 break;
2718 case TLSEXT_signature_ecdsa:
2719 has_ecdsa_sig = 1;
2720 break;
2721 default:
2722 continue;
2723 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002724 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002725 break;
2726 }
2727 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002728 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002729 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002730 }
2731 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002732 const SSL_CIPHER *cipher;
2733 size_t len;
2734 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002735 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002736#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002737 len = ctx->cipher_suites_len;
2738 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002739#else
2740 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2741#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002742 if (len % 2 != 0)
2743 goto abort;
2744 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002745#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002746 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002747 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002748#else
2749 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2750#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002751 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002752 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002753 break;
2754 }
2755 }
2756 }
2757
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002758 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002759 trash.area[i] = tolower(servername[i]);
2760 if (!wildp && (trash.area[i] == '.'))
2761 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002762 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002763 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002764
William Lallemand150bfa82019-09-19 17:12:49 +02002765 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002766
William Lallemand94bd3192020-08-14 14:43:35 +02002767 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2768 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002769 for (i = 0; i < 2; i++) {
2770 if (i == 0) /* lookup in full qualified names */
2771 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002772 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002773 node = ebst_lookup(&s->sni_w_ctx, wildp);
2774 else
2775 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002776
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002777 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002778
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002779 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002780 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002781 struct sni_ctx *sni, *sni_tmp;
2782 int skip = 0;
2783
2784 if (i == 1 && wildp) { /* wildcard */
2785 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2786 sni = container_of(n, struct sni_ctx, name);
2787 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002788 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002789 skip = 1;
2790 break;
2791 }
2792 }
2793 if (skip)
2794 continue;
2795 }
2796
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002797 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002798 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002799 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002800 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002801 break;
2802 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002803 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002804 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002805 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002806 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002807 if (!node_anonymous)
2808 node_anonymous = n;
2809 break;
2810 }
2811 }
2812 }
William Lallemand94bd3192020-08-14 14:43:35 +02002813 }
2814 /* Once the certificates are found, select them depending on what is
2815 * supported in the client and by key_signature priority order: EDSA >
2816 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002817 if (has_ecdsa_sig && node_ecdsa)
2818 node = node_ecdsa;
2819 else if (has_rsa_sig && node_rsa)
2820 node = node_rsa;
2821 else if (node_anonymous)
2822 node = node_anonymous;
2823 else if (node_ecdsa)
2824 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2825 else
2826 node = node_rsa; /* no rsa signature case (far far away) */
2827
William Lallemand94bd3192020-08-14 14:43:35 +02002828 if (node) {
2829 /* switch ctx */
2830 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2831 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2832 if (conf) {
2833 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2834 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2835 if (conf->early_data)
2836 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002837 }
William Lallemand94bd3192020-08-14 14:43:35 +02002838 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2839 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002840 }
William Lallemand150bfa82019-09-19 17:12:49 +02002841
William Lallemand02010472019-10-18 11:02:19 +02002842 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002843#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02002844 if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002845 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002846 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002847 }
2848#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002849 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002850 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002851 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002852 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002853 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
William Lallemand7980dff2021-11-18 17:46:26 +01002854 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002855 }
William Lallemand7980dff2021-11-18 17:46:26 +01002856
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01002857 /* We are about to raise an handshake error so the servername extension
2858 * callback will never be called and the SNI will never be stored in the
2859 * SSL context. In order for the ssl_fc_sni sample fetch to still work
2860 * in such a case, we store the SNI ourselves as an ex_data information
2861 * in the SSL context.
2862 */
2863 {
2864 char *client_sni = pool_alloc(ssl_sock_client_sni_pool);
2865 if (client_sni) {
2866 strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name);
2867 client_sni[TLSEXT_MAXLEN_host_name] = '\0';
2868 SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni);
2869 }
2870 }
2871
William Lallemand7980dff2021-11-18 17:46:26 +01002872 /* other cases fallback on abort, if strict-sni is set but no node was found */
2873
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002874 abort:
2875 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002876 if (conn)
2877 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002878#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002879 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002880#else
2881 *al = SSL_AD_UNRECOGNIZED_NAME;
2882 return 0;
2883#endif
William Lallemand7980dff2021-11-18 17:46:26 +01002884
2885allow_early:
2886#ifdef OPENSSL_IS_BORINGSSL
2887 if (allow_early)
2888 SSL_set_early_data_enabled(ssl, 1);
2889#else
2890 if (!allow_early)
2891 SSL_set_max_early_data(ssl, 0);
2892#endif
2893 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002894}
2895
William Lallemand002e2062021-11-18 15:25:16 +01002896#else /* ! HAVE_SSL_CLIENT_HELLO_CB */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002897
Emeric Brunfc0421f2012-09-07 17:30:07 +02002898/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2899 * warning when no match is found, which implies the default (first) cert
2900 * will keep being used.
2901 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002902static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002903{
2904 const char *servername;
2905 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002906 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002907 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002908 int i;
2909 (void)al; /* shut gcc stupid warning */
2910
2911 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002912 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002913#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02002914 if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate_from_conn(s, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002915 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002916#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002917 if (s->strict_sni)
2918 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002919 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002920 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002921 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002922 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002923 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002924
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002925 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002926 if (!servername[i])
2927 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002928 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002929 if (!wildp && (trash.area[i] == '.'))
2930 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002931 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002932 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002933
William Lallemand150bfa82019-09-19 17:12:49 +02002934 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002935 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002936 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002937 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2938 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002939 if (!container_of(n, struct sni_ctx, name)->neg) {
2940 node = n;
2941 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002942 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002943 }
2944 if (!node && wildp) {
2945 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002946 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2947 /* lookup a not neg filter */
2948 if (!container_of(n, struct sni_ctx, name)->neg) {
2949 node = n;
2950 break;
2951 }
2952 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002953 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002954 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002955#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02002956 if (s->options & BC_O_GENERATE_CERTS && ssl_sock_generate_certificate(servername, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002957 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002958 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002959 return SSL_TLSEXT_ERR_OK;
2960 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002961#endif
William Lallemand21724f02019-11-04 17:56:13 +01002962 if (s->strict_sni) {
2963 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002964 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002965 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002966 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002967 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002968 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002969 }
2970
2971 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002972 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002973 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002974 return SSL_TLSEXT_ERR_OK;
2975}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002976#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002977#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2978
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002979#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002980
Remi Tricot-Le Breton7f6425a2022-02-11 12:04:52 +01002981static inline HASSL_DH *ssl_new_dh_fromdata(BIGNUM *p, BIGNUM *g)
2982{
2983#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
2984 OSSL_PARAM_BLD *tmpl = NULL;
2985 OSSL_PARAM *params = NULL;
2986 EVP_PKEY_CTX *ctx = NULL;
2987 EVP_PKEY *pkey = NULL;
2988
2989 if ((tmpl = OSSL_PARAM_BLD_new()) == NULL
2990 || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_P, p)
2991 || !OSSL_PARAM_BLD_push_BN(tmpl, OSSL_PKEY_PARAM_FFC_G, g)
2992 || (params = OSSL_PARAM_BLD_to_param(tmpl)) == NULL) {
2993 goto end;
2994 }
2995 ctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL);
2996 if (ctx == NULL
2997 || !EVP_PKEY_fromdata_init(ctx)
2998 || !EVP_PKEY_fromdata(ctx, &pkey, EVP_PKEY_KEY_PARAMETERS, params)) {
2999 goto end;
3000 }
3001
3002end:
3003 EVP_PKEY_CTX_free(ctx);
3004 OSSL_PARAM_free(params);
3005 OSSL_PARAM_BLD_free(tmpl);
3006 return pkey;
3007#else
3008
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003009 HASSL_DH *dh = DH_new();
Remi Tricot-Le Breton7f6425a2022-02-11 12:04:52 +01003010
3011 if (!dh)
3012 return NULL;
3013
3014 DH_set0_pqg(dh, p, NULL, g);
3015
3016 return dh;
3017#endif
3018}
3019
Remi Tricot-Le Bretonc69be7c2022-04-20 18:30:17 +02003020#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003021static inline HASSL_DH *ssl_get_dh_by_nid(int nid)
3022{
3023#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3024 OSSL_PARAM params[2];
3025 EVP_PKEY *pkey = NULL;
3026 EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_from_name(NULL, "DH", NULL);
3027 const char *named_group = NULL;
3028
3029 if (!pctx)
3030 goto end;
3031
3032 named_group = OBJ_nid2ln(nid);
3033
3034 if (!named_group)
3035 goto end;
3036
3037 params[0] = OSSL_PARAM_construct_utf8_string("group", (char*)named_group, 0);
3038 params[1] = OSSL_PARAM_construct_end();
3039
3040 if (EVP_PKEY_keygen_init(pctx) && EVP_PKEY_CTX_set_params(pctx, params))
3041 EVP_PKEY_generate(pctx, &pkey);
3042
3043end:
3044 EVP_PKEY_CTX_free(pctx);
3045 return pkey;
3046#else
3047
3048 HASSL_DH *dh = NULL;
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003049 dh = DH_new_by_nid(nid);
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003050 return dh;
3051#endif
3052}
Remi Tricot-Le Bretonc69be7c2022-04-20 18:30:17 +02003053#endif
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003054
Remi Tricot-Le Breton7f6425a2022-02-11 12:04:52 +01003055
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003056static HASSL_DH * ssl_get_dh_1024(void)
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003057{
Remi Gacogned3a341a2015-05-29 16:26:17 +02003058 static unsigned char dh1024_p[]={
3059 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
3060 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
3061 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
3062 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
3063 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
3064 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
3065 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
3066 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
3067 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
3068 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
3069 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
3070 };
3071 static unsigned char dh1024_g[]={
3072 0x02,
3073 };
3074
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003075 BIGNUM *p;
3076 BIGNUM *g;
Remi Gacogned3a341a2015-05-29 16:26:17 +02003077
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003078 HASSL_DH *dh = NULL;
3079
3080 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
3081 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
3082
3083 if (p && g)
3084 dh = ssl_new_dh_fromdata(p, g);
3085
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003086 return dh;
3087}
3088
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003089static HASSL_DH *ssl_get_dh_2048(void)
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003090{
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003091#if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L)
Remi Gacogned3a341a2015-05-29 16:26:17 +02003092 static unsigned char dh2048_p[]={
3093 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
3094 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
3095 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
3096 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
3097 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
3098 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
3099 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
3100 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
3101 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
3102 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
3103 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
3104 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
3105 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
3106 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
3107 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
3108 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
3109 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
3110 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
3111 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
3112 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
3113 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
3114 0xB7,0x1F,0x77,0xF3,
3115 };
3116 static unsigned char dh2048_g[]={
3117 0x02,
3118 };
3119
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003120 BIGNUM *p;
3121 BIGNUM *g;
Remi Gacogned3a341a2015-05-29 16:26:17 +02003122
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003123 HASSL_DH *dh = NULL;
3124
3125 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
3126 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
3127
3128 if (p && g)
3129 dh = ssl_new_dh_fromdata(p, g);
3130
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003131 return dh;
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003132#else
3133 return ssl_get_dh_by_nid(NID_ffdhe2048);
3134#endif
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003135}
3136
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003137static HASSL_DH *ssl_get_dh_4096(void)
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003138{
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003139#if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L)
Remi Gacogned3a341a2015-05-29 16:26:17 +02003140 static unsigned char dh4096_p[]={
3141 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
3142 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
3143 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
3144 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
3145 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
3146 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
3147 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
3148 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
3149 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
3150 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
3151 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
3152 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
3153 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
3154 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
3155 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
3156 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
3157 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
3158 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
3159 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
3160 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
3161 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
3162 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
3163 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
3164 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
3165 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
3166 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
3167 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
3168 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
3169 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
3170 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
3171 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
3172 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
3173 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
3174 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
3175 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
3176 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
3177 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
3178 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
3179 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
3180 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
3181 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
3182 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
3183 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003184 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02003185 static unsigned char dh4096_g[]={
3186 0x02,
3187 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003188
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003189 BIGNUM *p;
3190 BIGNUM *g;
Remi Gacogned3a341a2015-05-29 16:26:17 +02003191
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003192 HASSL_DH *dh = NULL;
3193
3194 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
3195 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
3196
3197 if (p && g)
3198 dh = ssl_new_dh_fromdata(p, g);
3199
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003200 return dh;
Remi Tricot-Le Breton528b3fd2022-04-12 11:31:54 +02003201#else
3202 return ssl_get_dh_by_nid(NID_ffdhe4096);
3203#endif
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003204}
3205
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003206static HASSL_DH *ssl_get_tmp_dh(EVP_PKEY *pkey)
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003207{
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003208 HASSL_DH *dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003209 int type;
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003210 int keylen = 0;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003211
3212 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003213
3214 /* The keylen supplied by OpenSSL can only be 512 or 1024.
3215 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
3216 */
3217 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
3218 keylen = EVP_PKEY_bits(pkey);
3219 }
3220
Willy Tarreauef934602016-12-22 23:12:01 +01003221 if (keylen > global_ssl.default_dh_param) {
3222 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003223 }
3224
Remi Gacogned3a341a2015-05-29 16:26:17 +02003225 if (keylen >= 4096) {
Remi Tricot-Le Bretonbed72632022-02-11 12:04:53 +01003226 if (!local_dh_4096)
3227 local_dh_4096 = ssl_get_dh_4096();
Remi Gacogne8de54152014-07-15 11:36:40 +02003228 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003229 }
3230 else if (keylen >= 2048) {
Remi Tricot-Le Bretonbed72632022-02-11 12:04:53 +01003231 if (!local_dh_2048)
3232 local_dh_2048 = ssl_get_dh_2048();
Remi Gacogne8de54152014-07-15 11:36:40 +02003233 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003234 }
3235 else {
Remi Tricot-Le Bretonbed72632022-02-11 12:04:53 +01003236 if (!local_dh_1024)
3237 local_dh_1024 = ssl_get_dh_1024();
Remi Gacogne8de54152014-07-15 11:36:40 +02003238 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003239 }
3240
3241 return dh;
3242}
3243
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003244#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003245/* Returns Diffie-Hellman parameters matching the private key length
3246 but not exceeding global_ssl.default_dh_param */
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003247static HASSL_DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen)
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003248{
3249 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
3250
3251 return ssl_get_tmp_dh(pkey);
3252}
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003253#endif
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003254
Remi Tricot-Le Breton846eda92022-02-11 12:04:50 +01003255static int ssl_sock_set_tmp_dh(SSL_CTX *ctx, HASSL_DH *dh)
3256{
3257#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
3258 return SSL_CTX_set_tmp_dh(ctx, dh);
3259#else
3260 int retval = 0;
3261 HASSL_DH_up_ref(dh);
3262
3263 retval = SSL_CTX_set0_tmp_dh_pkey(ctx, dh);
3264
3265 if (!retval)
3266 HASSL_DH_free(dh);
3267
3268 return retval;
3269#endif
3270}
3271
Remi Tricot-Le Breton5f179302022-02-11 12:04:51 +01003272#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3273static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey)
3274{
3275 HASSL_DH *dh = NULL;
3276 if (pkey && (dh = ssl_get_tmp_dh(pkey))) {
3277 HASSL_DH_up_ref(dh);
3278 if (!SSL_CTX_set0_tmp_dh_pkey(ctx, dh))
3279 HASSL_DH_free(dh);
3280 }
Remi Tricot-Le Breton5f179302022-02-11 12:04:51 +01003281}
3282#endif
3283
Remi Tricot-Le Breton09ebb332022-02-11 12:04:48 +01003284HASSL_DH *ssl_sock_get_dh_from_bio(BIO *bio)
3285{
3286#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3287 HASSL_DH *dh = NULL;
3288 OSSL_DECODER_CTX *dctx = NULL;
3289 const char *format = "PEM";
3290 const char *keytype = "DH";
3291
3292 dctx = OSSL_DECODER_CTX_new_for_pkey(&dh, format, NULL, keytype,
3293 OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
3294 NULL, NULL);
3295
3296 if (dctx == NULL || OSSL_DECODER_CTX_get_num_decoders(dctx) == 0)
3297 goto end;
3298
3299 /* The DH parameters might not be the first section found in the PEM
3300 * file so we need to iterate over all of them until we find the right
3301 * one.
3302 */
3303 while (!BIO_eof(bio) && !dh)
3304 OSSL_DECODER_from_bio(dctx, bio);
3305
3306end:
3307 OSSL_DECODER_CTX_free(dctx);
3308 return dh;
3309#else
3310 HASSL_DH *dh = NULL;
3311
3312 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
3313
3314 return dh;
3315#endif
3316}
3317
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003318static HASSL_DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003319{
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003320 HASSL_DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02003321 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003322
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003323 if (in == NULL)
3324 goto end;
3325
Remi Gacogne47783ef2015-05-29 15:53:22 +02003326 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003327 goto end;
3328
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003329 dh = ssl_sock_get_dh_from_bio(in);
Remi Gacogne47783ef2015-05-29 15:53:22 +02003330
3331end:
3332 if (in)
3333 BIO_free(in);
3334
Emeric Brune1b4ed42018-08-16 15:14:12 +02003335 ERR_clear_error();
3336
Remi Gacogne47783ef2015-05-29 15:53:22 +02003337 return dh;
3338}
3339
3340int ssl_sock_load_global_dh_param_from_file(const char *filename)
3341{
3342 global_dh = ssl_sock_get_dh_from_file(filename);
3343
3344 if (global_dh) {
3345 return 0;
3346 }
3347
3348 return -1;
3349}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003350#endif
3351
William Lallemand9117de92019-10-04 00:29:42 +02003352/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02003353static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02003354 struct bind_conf *s, struct ssl_bind_conf *conf,
3355 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003356{
3357 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003358 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003359
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003360 if (*name == '!') {
3361 neg = 1;
3362 name++;
3363 }
3364 if (*name == '*') {
3365 wild = 1;
3366 name++;
3367 }
3368 /* !* filter is a nop */
3369 if (neg && wild)
3370 return order;
3371 if (*name) {
3372 int j, len;
3373 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003374 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02003375 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003376 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02003377 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003378 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003379
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003380 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02003381 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02003382 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003383 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02003384 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003385 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003386 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003387 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003388 sc->order = order++;
3389 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02003390 sc->wild = wild;
3391 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01003392 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02003393 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003394 }
3395 return order;
3396}
3397
William Lallemand6af03992019-07-23 15:00:54 +02003398/*
William Lallemand1d29c742019-10-04 00:53:29 +02003399 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
3400 * This function can't return an error.
3401 *
3402 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
3403 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003404void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02003405{
3406
3407 struct sni_ctx *sc0, *sc0b, *sc1;
3408 struct ebmb_node *node;
3409
3410 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
3411
3412 /* ignore if sc0 was already inserted in a tree */
3413 if (sc0->name.node.leaf_p)
3414 continue;
3415
3416 /* Check for duplicates. */
3417 if (sc0->wild)
3418 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
3419 else
3420 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
3421
3422 for (; node; node = ebmb_next_dup(node)) {
3423 sc1 = ebmb_entry(node, struct sni_ctx, name);
3424 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
3425 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
3426 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02003427 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02003428 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003429 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02003430 break;
William Lallemand1d29c742019-10-04 00:53:29 +02003431 }
3432 }
3433
3434 /* if duplicate, ignore the insertion */
3435 if (!sc0)
3436 continue;
3437
3438 if (sc0->wild)
3439 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
3440 else
3441 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003442 }
William Lallemand21724f02019-11-04 17:56:13 +01003443
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003444 /* replace the default_ctx if required with the instance's ctx. */
3445 if (ckch_inst->is_default) {
3446 SSL_CTX_free(bind_conf->default_ctx);
3447 SSL_CTX_up_ref(ckch_inst->ctx);
3448 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003449 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02003450 }
3451}
3452
3453/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003454 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02003455 */
William Lallemande3af8fb2019-10-08 11:36:53 +02003456struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02003457
William Lallemand2954c472020-03-06 21:54:13 +01003458/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02003459struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02003460
Emeric Brun7a883362019-10-17 13:27:40 +02003461/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003462 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003463 * DH parameter is loaded into the SSL_CTX and if there is no
3464 * DH parameter available in ckchs nor in global, the default
3465 * DH parameters are applied on the SSL_CTX.
3466 * Returns a bitfield containing the flags:
3467 * ERR_FATAL in any fatal error case
3468 * ERR_ALERT if a reason of the error is availabine in err
3469 * ERR_WARN if a warning is available into err
3470 * The value 0 means there is no error nor warning and
3471 * the operation succeed.
3472 */
William Lallemandfa892222019-07-23 16:06:08 +02003473#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003474static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3475 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003476{
Emeric Brun7a883362019-10-17 13:27:40 +02003477 int ret = 0;
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003478 HASSL_DH *dh = NULL;
William Lallemandfa892222019-07-23 16:06:08 +02003479
William Lallemanda8c73742019-07-31 18:31:34 +02003480 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003481 dh = ckch->dh;
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003482 if (!ssl_sock_set_tmp_dh(ctx, dh)) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003483 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3484 err && *err ? *err : "", path);
Emeric Bruna9363eb2019-10-17 14:53:03 +02003485 memprintf(err, "%s, DH ciphers won't be available.\n",
3486 err && *err ? *err : "");
Emeric Bruna9363eb2019-10-17 14:53:03 +02003487 ret |= ERR_WARN;
3488 goto end;
3489 }
William Lallemandfa892222019-07-23 16:06:08 +02003490
3491 if (ssl_dh_ptr_index >= 0) {
3492 /* store a pointer to the DH params to avoid complaining about
3493 ssl-default-dh-param not being set for this SSL_CTX */
3494 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3495 }
3496 }
3497 else if (global_dh) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003498 if (!ssl_sock_set_tmp_dh(ctx, global_dh)) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003499 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3500 err && *err ? *err : "", path);
Emeric Bruna9363eb2019-10-17 14:53:03 +02003501 memprintf(err, "%s, DH ciphers won't be available.\n",
3502 err && *err ? *err : "");
Emeric Bruna9363eb2019-10-17 14:53:03 +02003503 ret |= ERR_WARN;
3504 goto end;
3505 }
William Lallemandfa892222019-07-23 16:06:08 +02003506 }
3507 else {
3508 /* Clear openssl global errors stack */
3509 ERR_clear_error();
3510
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003511 /* We do not want DHE ciphers to be added to the cipher list
3512 * unless there is an explicit global dh option in the conf.
3513 */
3514 if (global_ssl.default_dh_param) {
3515 if (global_ssl.default_dh_param <= 1024) {
3516 /* we are limited to DH parameter of 1024 bits anyway */
3517 if (local_dh_1024 == NULL)
3518 local_dh_1024 = ssl_get_dh_1024();
William Lallemandfa892222019-07-23 16:06:08 +02003519
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003520 if (local_dh_1024 == NULL) {
3521 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3522 err && *err ? *err : "", path);
3523 ret |= ERR_ALERT | ERR_FATAL;
3524 goto end;
3525 }
William Lallemandfa892222019-07-23 16:06:08 +02003526
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003527 if (!ssl_sock_set_tmp_dh(ctx, local_dh_1024)) {
3528 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3529 err && *err ? *err : "", path);
3530 memprintf(err, "%s, DH ciphers won't be available.\n",
3531 err && *err ? *err : "");
3532 ret |= ERR_WARN;
3533 goto end;
3534 }
Emeric Bruna9363eb2019-10-17 14:53:03 +02003535 }
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003536 else {
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003537#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003538 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh_cbk);
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003539#else
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003540 ssl_sock_set_tmp_dh_from_pkey(ctx, ckch ? ckch->key : NULL);
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003541#endif
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003542 }
William Lallemandfa892222019-07-23 16:06:08 +02003543 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003544 }
3545
William Lallemandf9568fc2019-10-16 18:27:58 +02003546end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003547 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003548 return ret;
3549}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003550#endif
William Lallemandfa892222019-07-23 16:06:08 +02003551
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003552
3553/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003554 * Returns a bitfield containing the flags:
3555 * ERR_FATAL in any fatal error case
3556 * ERR_ALERT if the reason of the error is available in err
3557 * ERR_WARN if a warning is available into err
3558 * The value 0 means there is no error nor warning and
3559 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003560 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003561static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3562 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003563{
Emeric Bruna96b5822019-10-17 13:25:14 +02003564 int errcode = 0;
3565
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003566 if (find_chain == NULL) {
3567 errcode |= ERR_FATAL;
3568 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003569 }
3570
3571 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3572 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3573 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003574 errcode |= ERR_ALERT | ERR_FATAL;
3575 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003576 }
3577
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003578 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003579 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003580 } else {
3581 /* Find Certificate Chain in global */
3582 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003583 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003584 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003585 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003586 }
William Lallemand85888572020-02-27 14:48:35 +01003587
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003588 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003589 /* always put a null chain stack in the SSL_CTX so it does not
3590 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003591 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003592 }
3593
William Lallemandf187ce62020-06-02 18:27:20 +02003594 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003595#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003596 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003597 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3598 err && *err ? *err : "", path);
3599 errcode |= ERR_ALERT | ERR_FATAL;
3600 goto end;
3601 }
William Lallemandf187ce62020-06-02 18:27:20 +02003602#else
3603 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003604 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003605 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003606 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003607 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003608 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003609 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3610 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003611 X509_free(ca);
3612 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003613 errcode |= ERR_ALERT | ERR_FATAL;
3614 goto end;
3615 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003616 }
William Lallemandf187ce62020-06-02 18:27:20 +02003617#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003618
William Lallemand9a1d8392020-08-10 17:28:23 +02003619#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003620 /* remove the Root CA from the SSL_CTX if the option is activated */
3621 if (global_ssl.skip_self_issued_ca) {
3622 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3623 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3624 err && *err ? *err : "", path);
3625 errcode |= ERR_ALERT | ERR_FATAL;
3626 goto end;
3627 }
3628 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003629#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003630
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003631end:
3632 return errcode;
3633}
3634
3635
3636/* Loads the info in ckch into ctx
3637 * Returns a bitfield containing the flags:
3638 * ERR_FATAL in any fatal error case
3639 * ERR_ALERT if the reason of the error is available in err
3640 * ERR_WARN if a warning is available into err
3641 * The value 0 means there is no error nor warning and
3642 * the operation succeed.
3643 */
3644static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3645{
3646 int errcode = 0;
3647 STACK_OF(X509) *find_chain = NULL;
3648
3649 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3650 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3651 err && *err ? *err : "", path);
3652 errcode |= ERR_ALERT | ERR_FATAL;
3653 return errcode;
3654 }
3655
3656 /* Load certificate chain */
3657 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3658 if (errcode & ERR_CODE)
3659 goto end;
3660
William Lallemandfa892222019-07-23 16:06:08 +02003661#ifndef OPENSSL_NO_DH
3662 /* store a NULL pointer to indicate we have not yet loaded
3663 a custom DH param file */
3664 if (ssl_dh_ptr_index >= 0) {
3665 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3666 }
3667
Emeric Brun7a883362019-10-17 13:27:40 +02003668 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3669 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003670 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3671 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003672 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003673 }
3674#endif
3675
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003676#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003677 if (sctl_ex_index >= 0 && ckch->sctl) {
3678 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3679 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003680 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003681 errcode |= ERR_ALERT | ERR_FATAL;
3682 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003683 }
3684 }
3685#endif
3686
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003687#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003688 /* Load OCSP Info into context */
3689 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003690 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003691 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",
3692 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003693 errcode |= ERR_ALERT | ERR_FATAL;
3694 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003695 }
3696 }
William Lallemand246c0242019-10-11 08:59:13 +02003697#endif
3698
Emeric Bruna96b5822019-10-17 13:25:14 +02003699 end:
3700 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003701}
3702
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003703
3704/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3705 * Returns a bitfield containing the flags:
3706 * ERR_FATAL in any fatal error case
3707 * ERR_ALERT if the reason of the error is available in err
3708 * ERR_WARN if a warning is available into err
3709 * The value 0 means there is no error nor warning and
3710 * the operation succeed.
3711 */
3712static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3713 SSL_CTX *ctx, char **err)
3714{
3715 int errcode = 0;
3716 STACK_OF(X509) *find_chain = NULL;
3717
3718 /* Load the private key */
3719 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3720 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3721 err && *err ? *err : "", path);
3722 errcode |= ERR_ALERT | ERR_FATAL;
3723 }
3724
3725 /* Load certificate chain */
3726 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3727 if (errcode & ERR_CODE)
3728 goto end;
3729
3730 if (SSL_CTX_check_private_key(ctx) <= 0) {
3731 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3732 err && *err ? *err : "", path);
3733 errcode |= ERR_ALERT | ERR_FATAL;
3734 }
3735
3736end:
3737 return errcode;
3738}
3739
3740
William Lallemand614ca0d2019-10-07 13:52:11 +02003741/*
3742 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003743 *
3744 * Returns a bitfield containing the flags:
3745 * ERR_FATAL in any fatal error case
3746 * ERR_ALERT if the reason of the error is available in err
3747 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003748 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003749int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003750 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003751{
William Lallemandc9402072019-05-15 15:33:54 +02003752 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003753 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003754 int order = 0;
3755 X509_NAME *xname;
3756 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003757 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003758 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003759#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3760 STACK_OF(GENERAL_NAME) *names;
3761#endif
William Lallemand36b84632019-07-18 19:28:17 +02003762 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003763 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003764 int errcode = 0;
3765
3766 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003767
William Lallemande3af8fb2019-10-08 11:36:53 +02003768 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003769 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003770
William Lallemande3af8fb2019-10-08 11:36:53 +02003771 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003772
William Lallemandc9402072019-05-15 15:33:54 +02003773 ctx = SSL_CTX_new(SSLv23_server_method());
3774 if (!ctx) {
3775 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3776 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003777 errcode |= ERR_ALERT | ERR_FATAL;
3778 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003779 }
3780
Emeric Bruna96b5822019-10-17 13:25:14 +02003781 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3782 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003783 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003784
3785 ckch_inst = ckch_inst_new();
3786 if (!ckch_inst) {
3787 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3788 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003789 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003790 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003791 }
3792
William Lallemand36b84632019-07-18 19:28:17 +02003793 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003794 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003795 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003796 switch(EVP_PKEY_base_id(pkey)) {
3797 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003798 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003799 break;
3800 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003801 kinfo.sig = TLSEXT_signature_ecdsa;
3802 break;
3803 case EVP_PKEY_DSA:
3804 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003805 break;
3806 }
3807 EVP_PKEY_free(pkey);
3808 }
3809
Emeric Brun50bcecc2013-04-22 13:05:23 +02003810 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003811 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003812 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, sni_filter[fcount], order);
William Lallemandfe49bb32019-10-03 23:46:33 +02003813 if (order < 0) {
3814 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003815 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003816 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003817 }
3818 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003819 }
3820 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003821#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003822 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003823 if (names) {
3824 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3825 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3826 if (name->type == GEN_DNS) {
3827 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003828 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003829 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003830 if (order < 0) {
3831 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003832 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003833 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003834 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003835 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003836 }
3837 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003838 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003839 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003840#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003841 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003842 i = -1;
3843 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3844 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003845 ASN1_STRING *value;
3846
3847 value = X509_NAME_ENTRY_get_data(entry);
3848 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003849 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003850 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003851 if (order < 0) {
3852 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003853 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003854 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003855 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003856 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003857 }
3858 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003859 /* we must not free the SSL_CTX anymore below, since it's already in
3860 * the tree, so it will be discovered and cleaned in time.
3861 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003862
Emeric Brunfc0421f2012-09-07 17:30:07 +02003863#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003864 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003865 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3866 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003867 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003868 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003869 }
3870#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003871 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003872 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003873 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003874 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003875 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003876 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003877 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003878
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003879 /* Always keep a reference to the newly constructed SSL_CTX in the
3880 * instance. This way if the instance has no SNIs, the SSL_CTX will
3881 * still be linked. */
3882 SSL_CTX_up_ref(ctx);
3883 ckch_inst->ctx = ctx;
3884
William Lallemand9117de92019-10-04 00:29:42 +02003885 /* everything succeed, the ckch instance can be used */
3886 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003887 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003888 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003889
William Lallemand02e19a52020-04-08 16:11:26 +02003890 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3891
Emeric Brun054563d2019-10-17 13:16:58 +02003892 *ckchi = ckch_inst;
3893 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003894
3895error:
3896 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003897 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003898 if (ckch_inst->is_default)
3899 SSL_CTX_free(ctx);
3900
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003901 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003902 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003903 }
William Lallemandd9199372019-10-04 15:37:05 +02003904 SSL_CTX_free(ctx);
3905
Emeric Brun054563d2019-10-17 13:16:58 +02003906 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003907}
3908
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003909
3910/*
3911 * This function allocate a ckch_inst that will be used on the backend side
3912 * (server line)
3913 *
3914 * Returns a bitfield containing the flags:
3915 * ERR_FATAL in any fatal error case
3916 * ERR_ALERT if the reason of the error is available in err
3917 * ERR_WARN if a warning is available into err
3918 */
3919int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003920 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003921{
3922 SSL_CTX *ctx;
3923 struct cert_key_and_chain *ckch;
3924 struct ckch_inst *ckch_inst = NULL;
3925 int errcode = 0;
3926
3927 *ckchi = NULL;
3928
3929 if (!ckchs || !ckchs->ckch)
3930 return ERR_FATAL;
3931
3932 ckch = ckchs->ckch;
3933
3934 ctx = SSL_CTX_new(SSLv23_client_method());
3935 if (!ctx) {
3936 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3937 err && *err ? *err : "", path);
3938 errcode |= ERR_ALERT | ERR_FATAL;
3939 goto error;
3940 }
3941
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003942 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3943 if (errcode & ERR_CODE)
3944 goto error;
3945
3946 ckch_inst = ckch_inst_new();
3947 if (!ckch_inst) {
3948 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3949 err && *err ? *err : "", path);
3950 errcode |= ERR_ALERT | ERR_FATAL;
3951 goto error;
3952 }
3953
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003954 /* everything succeed, the ckch instance can be used */
3955 ckch_inst->bind_conf = NULL;
3956 ckch_inst->ssl_conf = NULL;
3957 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003958 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003959 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003960
3961 *ckchi = ckch_inst;
3962 return errcode;
3963
3964error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003965 SSL_CTX_free(ctx);
3966
3967 return errcode;
3968}
3969
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003970/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003971static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3972 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003973 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003974{
Emeric Brun054563d2019-10-17 13:16:58 +02003975 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003976
3977 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003978 errcode |= ckch_inst_new_load_store(path, ckchs, bind_conf, ssl_conf, sni_filter, fcount, ckch_inst, err);
William Lallemand614ca0d2019-10-07 13:52:11 +02003979
Emeric Brun054563d2019-10-17 13:16:58 +02003980 if (errcode & ERR_CODE)
3981 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003982
William Lallemand24bde432020-03-09 16:48:43 +01003983 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003984
3985 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003986 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003987 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003988}
3989
William Lallemanddb26e2b2021-01-26 12:01:46 +01003990/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3991 * fill the SSL_CTX of the server.
3992 *
3993 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003994static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003995 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003996{
3997 int errcode = 0;
3998
3999 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01004000 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004001
4002 if (errcode & ERR_CODE)
4003 return errcode;
4004
William Lallemanddb26e2b2021-01-26 12:01:46 +01004005 (*ckch_inst)->server = server;
4006 /* Keep the reference to the SSL_CTX in the server. */
4007 SSL_CTX_up_ref((*ckch_inst)->ctx);
4008 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004009 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02004010 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004011 return errcode;
4012}
4013
William Lallemand6be66ec2020-03-06 22:26:32 +01004014
William Lallemand4c68bba2020-03-30 18:45:10 +02004015
4016
4017/* Make sure openssl opens /dev/urandom before the chroot. The work is only
4018 * done once. Zero is returned if the operation fails. No error is returned
4019 * if the random is said as not implemented, because we expect that openssl
4020 * will use another method once needed.
4021 */
Amaury Denoyellec593bcd2021-05-19 15:35:29 +02004022int ssl_initialize_random(void)
William Lallemand4c68bba2020-03-30 18:45:10 +02004023{
4024 unsigned char random;
4025 static int random_initialized = 0;
4026
4027 if (!random_initialized && RAND_bytes(&random, 1) != 0)
4028 random_initialized = 1;
4029
4030 return random_initialized;
4031}
4032
William Lallemand2954c472020-03-06 21:54:13 +01004033/* Load a crt-list file, this is done in 2 parts:
4034 * - store the content of the file in a crtlist structure with crtlist_entry structures
4035 * - generate the instances by iterating on entries in the crtlist struct
4036 *
4037 * Nothing is locked there, this function is used in the configuration parser.
4038 *
4039 * Returns a set of ERR_* flags possibly with an error in <err>.
4040 */
William Lallemand6be66ec2020-03-06 22:26:32 +01004041int ssl_sock_load_cert_list_file(char *file, int dir, struct bind_conf *bind_conf, struct proxy *curproxy, char **err)
William Lallemand2954c472020-03-06 21:54:13 +01004042{
4043 struct crtlist *crtlist = NULL;
4044 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02004045 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01004046 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01004047 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02004048 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01004049
William Lallemand79d31ec2020-03-25 15:10:49 +01004050 bind_conf_node = malloc(sizeof(*bind_conf_node));
4051 if (!bind_conf_node) {
4052 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
4053 cfgerr |= ERR_FATAL | ERR_ALERT;
4054 goto error;
4055 }
4056 bind_conf_node->next = NULL;
4057 bind_conf_node->bind_conf = bind_conf;
4058
William Lallemand41ca9302020-04-08 13:15:18 +02004059 /* strip trailing slashes, including first one */
4060 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
4061 *end = 0;
4062
William Lallemand2954c472020-03-06 21:54:13 +01004063 /* look for an existing crtlist or create one */
4064 eb = ebst_lookup(&crtlists_tree, file);
4065 if (eb) {
4066 crtlist = ebmb_entry(eb, struct crtlist, node);
4067 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01004068 /* load a crt-list OR a directory */
4069 if (dir)
4070 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
4071 else
4072 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
4073
William Lallemand2954c472020-03-06 21:54:13 +01004074 if (!(cfgerr & ERR_CODE))
4075 ebst_insert(&crtlists_tree, &crtlist->node);
4076 }
4077
4078 if (cfgerr & ERR_CODE) {
4079 cfgerr |= ERR_FATAL | ERR_ALERT;
4080 goto error;
4081 }
4082
4083 /* generates ckch instance from the crtlist_entry */
4084 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
4085 struct ckch_store *store;
4086 struct ckch_inst *ckch_inst = NULL;
4087
4088 store = entry->node.key;
4089 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
4090 if (cfgerr & ERR_CODE) {
4091 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
4092 goto error;
4093 }
Willy Tarreau2b718102021-04-21 07:32:39 +02004094 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02004095 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01004096 }
William Lallemand2954c472020-03-06 21:54:13 +01004097
William Lallemand79d31ec2020-03-25 15:10:49 +01004098 /* add the bind_conf to the list */
4099 bind_conf_node->next = crtlist->bind_conf;
4100 crtlist->bind_conf = bind_conf_node;
4101
William Lallemand2954c472020-03-06 21:54:13 +01004102 return cfgerr;
4103error:
4104 {
William Lallemand49398312020-03-30 17:01:33 +02004105 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01004106 struct ckch_inst *inst, *s_inst;
4107
William Lallemand49398312020-03-30 17:01:33 +02004108 lastentry = entry; /* which entry we tried to generate last */
4109 if (lastentry) {
4110 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
4111 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
4112 break;
4113
4114 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01004115
William Lallemand49398312020-03-30 17:01:33 +02004116 /* this was not generated for this bind_conf, skip */
4117 if (inst->bind_conf != bind_conf)
4118 continue;
4119
William Lallemandd9d5d1b2020-04-09 16:31:05 +02004120 /* free the sni_ctx and instance */
4121 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02004122 }
William Lallemand2954c472020-03-06 21:54:13 +01004123 }
William Lallemand2954c472020-03-06 21:54:13 +01004124 }
William Lallemand79d31ec2020-03-25 15:10:49 +01004125 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01004126 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01004127 return cfgerr;
4128}
4129
William Lallemand06b22a82020-03-16 14:45:55 +01004130/* Returns a set of ERR_* flags possibly with an error in <err>. */
4131int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
4132{
4133 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01004134 int cfgerr = 0;
4135 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01004136 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01004137 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01004138
4139 if ((ckchs = ckchs_lookup(path))) {
4140 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01004141 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
4142 found++;
4143 } else if (stat(path, &buf) == 0) {
4144 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01004145 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02004146 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004147 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01004148 cfgerr |= ERR_ALERT | ERR_FATAL;
4149 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004150 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01004151 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004152 }
4153 } else {
4154 /* stat failed, could be a bundle */
4155 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02004156 char fp[MAXPATHLEN+1] = {0};
4157 int n = 0;
4158
4159 /* Load all possible certs and keys in separate ckch_store */
4160 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
4161 struct stat buf;
4162 int ret;
4163
4164 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
4165 if (ret > sizeof(fp))
4166 continue;
4167
4168 if ((ckchs = ckchs_lookup(fp))) {
4169 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01004170 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02004171 } else {
4172 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01004173 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02004174 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02004175 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01004176 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02004177 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
4178 }
4179 }
4180 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01004181#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
4182 if (found) {
4183 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
4184 err && *err ? *err : "", path);
4185 cfgerr |= ERR_ALERT | ERR_FATAL;
4186 }
4187#endif
William Lallemand06b22a82020-03-16 14:45:55 +01004188 }
4189 }
William Lallemand06ce84a2020-11-20 15:36:13 +01004190 if (!found) {
4191 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4192 err && *err ? *err : "", path, strerror(errno));
4193 cfgerr |= ERR_ALERT | ERR_FATAL;
4194 }
William Lallemand06b22a82020-03-16 14:45:55 +01004195
4196 return cfgerr;
4197}
4198
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004199
4200/* Create a full ssl context and ckch instance that will be used for a specific
4201 * backend server (server configuration line).
4202 * Returns a set of ERR_* flags possibly with an error in <err>.
4203 */
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004204int ssl_sock_load_srv_cert(char *path, struct server *server, int create_if_none, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004205{
4206 struct stat buf;
4207 int cfgerr = 0;
4208 struct ckch_store *ckchs;
4209 int found = 0; /* did we found a file to load ? */
4210
4211 if ((ckchs = ckchs_lookup(path))) {
4212 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01004213 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004214 found++;
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004215 } else {
4216 if (!create_if_none) {
4217 memprintf(err, "%sunable to stat SSL certificate '%s'.\n",
4218 err && *err ? *err : "", path);
4219 cfgerr |= ERR_ALERT | ERR_FATAL;
4220 goto out;
4221 }
4222
4223 if (stat(path, &buf) == 0) {
4224 /* We do not manage directories on backend side. */
4225 if (S_ISDIR(buf.st_mode) == 0) {
4226 ++found;
4227 ckchs = ckchs_load_cert_file(path, err);
4228 if (!ckchs)
4229 cfgerr |= ERR_ALERT | ERR_FATAL;
4230 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
4231 }
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004232 }
4233 }
4234 if (!found) {
4235 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4236 err && *err ? *err : "", path, strerror(errno));
4237 cfgerr |= ERR_ALERT | ERR_FATAL;
4238 }
4239
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004240out:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004241 return cfgerr;
4242}
4243
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004244/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004245static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004246ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004247{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004248 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004249 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004250 SSL_OP_ALL | /* all known workarounds for bugs */
4251 SSL_OP_NO_SSLv2 |
4252 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02004253 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02004254 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004255 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02004256 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004257 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004258 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004259 SSL_MODE_ENABLE_PARTIAL_WRITE |
4260 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004261 SSL_MODE_RELEASE_BUFFERS |
4262 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004263 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004264 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004265 int flags = MC_SSL_O_ALL;
4266 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02004267 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004268
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004269 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004270 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004271
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004272 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004273 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
4274 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4275 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004276 else
4277 flags = conf_ssl_methods->flags;
4278
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004279 min = conf_ssl_methods->min;
4280 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02004281
4282 /* default minimum is TLSV12, */
4283 if (!min) {
4284 if (!max || (max >= default_min_ver)) {
4285 min = default_min_ver;
4286 } else {
4287 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). "
4288 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
4289 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
4290 min = max;
4291 }
4292 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004293 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004294 if (min)
4295 flags |= (methodVersions[min].flag - 1);
4296 if (max)
4297 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004298 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004299 min = max = CONF_TLSV_NONE;
4300 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004301 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004302 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004303 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004304 if (min) {
4305 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004306 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
4307 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4308 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4309 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004310 hole = 0;
4311 }
4312 max = i;
4313 }
4314 else {
4315 min = max = i;
4316 }
4317 }
4318 else {
4319 if (min)
4320 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004321 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004322 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004323 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4324 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004325 cfgerr += 1;
4326 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004327 /* save real min/max in bind_conf */
4328 conf_ssl_methods->min = min;
4329 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004330
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004331#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004332 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004333 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004334 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004335 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004336 else
William Lallemandd0712f32020-06-11 17:34:00 +02004337 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
4338 /* clear every version flags in case SSL_CTX_new()
4339 * returns an SSL_CTX with disabled versions */
4340 SSL_CTX_clear_options(ctx, methodVersions[i].option);
4341
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004342 if (flags & methodVersions[i].flag)
4343 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02004344
4345 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004346#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004347 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004348 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4349 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02004350#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004351
4352 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
4353 options |= SSL_OP_NO_TICKET;
4354 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
4355 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08004356
4357#ifdef SSL_OP_NO_RENEGOTIATION
4358 options |= SSL_OP_NO_RENEGOTIATION;
4359#endif
4360
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004361 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004362
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004363#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004364 if (global_ssl.async)
4365 mode |= SSL_MODE_ASYNC;
4366#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004367 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004368 if (global_ssl.life_time)
4369 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004370
4371#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
4372#ifdef OPENSSL_IS_BORINGSSL
4373 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
4374 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05004375#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01004376 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01004377 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02004378 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
4379 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004380#else
4381 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004382#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02004383 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004384#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004385 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004386}
4387
William Lallemand4f45bb92017-10-30 20:08:51 +01004388
4389static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
4390{
4391 if (first == block) {
4392 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4393 if (first->len > 0)
4394 sh_ssl_sess_tree_delete(sh_ssl_sess);
4395 }
4396}
4397
4398/* return first block from sh_ssl_sess */
4399static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
4400{
4401 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
4402
4403}
4404
4405/* store a session into the cache
4406 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
4407 * data: asn1 encoded session
4408 * data_len: asn1 encoded session length
4409 * Returns 1 id session was stored (else 0)
4410 */
4411static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
4412{
4413 struct shared_block *first;
4414 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
4415
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004416 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01004417 if (!first) {
4418 /* Could not retrieve enough free blocks to store that session */
4419 return 0;
4420 }
4421
4422 /* STORE the key in the first elem */
4423 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4424 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
4425 first->len = sizeof(struct sh_ssl_sess_hdr);
4426
4427 /* it returns the already existing node
4428 or current node if none, never returns null */
4429 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4430 if (oldsh_ssl_sess != sh_ssl_sess) {
4431 /* NOTE: Row couldn't be in use because we lock read & write function */
4432 /* release the reserved row */
4433 shctx_row_dec_hot(ssl_shctx, first);
4434 /* replace the previous session already in the tree */
4435 sh_ssl_sess = oldsh_ssl_sess;
4436 /* ignore the previous session data, only use the header */
4437 first = sh_ssl_sess_first_block(sh_ssl_sess);
4438 shctx_row_inc_hot(ssl_shctx, first);
4439 first->len = sizeof(struct sh_ssl_sess_hdr);
4440 }
4441
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004442 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004443 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004444 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004445 }
4446
4447 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004448
4449 return 1;
4450}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004451
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004452/* SSL callback used when a new session is created while connecting to a server */
4453static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4454{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004455 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004456 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004457
Willy Tarreau07d94e42018-09-20 10:57:52 +02004458 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004459
William Lallemand3ce6eed2021-02-08 10:43:44 +01004460 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
4461 * one cache per thread, it only prevents to flush it from the CLI in
4462 * another thread */
4463
Olivier Houcharde6060c52017-11-16 17:42:52 +01004464 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4465 int len;
4466 unsigned char *ptr;
William Lallemande18d4e82021-11-17 02:59:21 +01004467 const char *sni;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004468
Olivier Houcharde6060c52017-11-16 17:42:52 +01004469 len = i2d_SSL_SESSION(sess, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01004470 sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004471 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004472 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4473 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4474 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004475 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4476 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004477 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4478 }
4479 if (s->ssl_ctx.reused_sess[tid].ptr) {
4480 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4481 &ptr);
4482 }
William Lallemande18d4e82021-11-17 02:59:21 +01004483
4484 if (s->ssl_ctx.reused_sess[tid].sni) {
4485 /* if the new sni is empty or isn' t the same as the old one */
4486 if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) {
4487 ha_free(&s->ssl_ctx.reused_sess[tid].sni);
4488 if (sni)
4489 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4490 }
4491 } else if (sni) {
4492 /* if there wasn't an old sni but there is a new one */
4493 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4494 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004495 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004496 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004497 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004498 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004499 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004500 }
4501
4502 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004503}
4504
Olivier Houcharde6060c52017-11-16 17:42:52 +01004505
William Lallemanded0b5ad2017-10-30 19:36:36 +01004506/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004507int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004508{
4509 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4510 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4511 unsigned char *p;
4512 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004513 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004514 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004515
4516 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004517 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004518 * note: SSL_SESSION_set1_id is using
4519 * a memcpy so we need to use a different pointer
4520 * than sid_data or sid_ctx_data to avoid valgrind
4521 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004522 */
4523
4524 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004525
4526 /* copy value in an other buffer */
4527 memcpy(encid, sid_data, sid_length);
4528
4529 /* pad with 0 */
4530 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4531 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4532
4533 /* force length to zero to avoid ASN1 encoding */
4534 SSL_SESSION_set1_id(sess, encid, 0);
4535
4536 /* force length to zero to avoid ASN1 encoding */
4537 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004538
4539 /* check if buffer is large enough for the ASN1 encoded session */
4540 data_len = i2d_SSL_SESSION(sess, NULL);
4541 if (data_len > SHSESS_MAX_DATA_LEN)
4542 goto err;
4543
4544 p = encsess;
4545
4546 /* process ASN1 session encoding before the lock */
4547 i2d_SSL_SESSION(sess, &p);
4548
William Lallemanded0b5ad2017-10-30 19:36:36 +01004549
William Lallemanda3c77cf2017-10-30 23:44:40 +01004550 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004551 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004552 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004553 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004554err:
4555 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004556 SSL_SESSION_set1_id(sess, encid, sid_length);
4557 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004558
4559 return 0; /* do not increment session reference count */
4560}
4561
4562/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004563SSL_SESSION *sh_ssl_sess_get_cb(SSL *ssl, __OPENSSL_110_CONST__ unsigned char *key, int key_len, int *do_copy)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004564{
William Lallemand4f45bb92017-10-30 20:08:51 +01004565 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004566 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4567 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004568 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004569 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004570
Willy Tarreau4c19e992021-06-15 16:39:22 +02004571 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004572
4573 /* allow the session to be freed automatically by openssl */
4574 *do_copy = 0;
4575
4576 /* tree key is zeros padded sessionid */
4577 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4578 memcpy(tmpkey, key, key_len);
4579 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4580 key = tmpkey;
4581 }
4582
4583 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004584 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004585
4586 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004587 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4588 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004589 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004590 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004591 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004592 return NULL;
4593 }
4594
William Lallemand4f45bb92017-10-30 20:08:51 +01004595 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4596 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004597
William Lallemand4f45bb92017-10-30 20:08:51 +01004598 shctx_row_data_get(ssl_shctx, first, data, sizeof(struct sh_ssl_sess_hdr), first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004599
William Lallemanda3c77cf2017-10-30 23:44:40 +01004600 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004601
4602 /* decode ASN1 session */
4603 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004604 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004605 /* Reset session id and session id contenxt */
4606 if (sess) {
4607 SSL_SESSION_set1_id(sess, key, key_len);
4608 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4609 }
4610
4611 return sess;
4612}
4613
William Lallemand4f45bb92017-10-30 20:08:51 +01004614
William Lallemanded0b5ad2017-10-30 19:36:36 +01004615/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004616void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004617{
William Lallemand4f45bb92017-10-30 20:08:51 +01004618 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004619 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4620 unsigned int sid_length;
4621 const unsigned char *sid_data;
4622 (void)ctx;
4623
4624 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4625 /* tree key is zeros padded sessionid */
4626 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4627 memcpy(tmpkey, sid_data, sid_length);
4628 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4629 sid_data = tmpkey;
4630 }
4631
William Lallemanda3c77cf2017-10-30 23:44:40 +01004632 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004633
4634 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004635 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4636 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004637 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004638 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004639 }
4640
4641 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004642 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004643}
4644
4645/* Set session cache mode to server and disable openssl internal cache.
4646 * Set shared cache callbacks on an ssl context.
4647 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004648void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004649{
4650 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4651
4652 if (!ssl_shctx) {
4653 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4654 return;
4655 }
4656
4657 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4658 SSL_SESS_CACHE_NO_INTERNAL |
4659 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4660
4661 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004662 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4663 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4664 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004665}
William Lallemand7d42ef52020-07-06 11:41:30 +02004666
4667/*
4668 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4669 *
4670 * The format is:
4671 * * <Label> <space> <ClientRandom> <space> <Secret>
4672 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4673 */
4674
William Lallemand722180a2021-06-09 16:46:12 +02004675#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004676void SSL_CTX_keylog(const SSL *ssl, const char *line)
4677{
4678 struct ssl_keylog *keylog;
4679 char *lastarg = NULL;
4680 char *dst = NULL;
4681
4682 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4683 if (!keylog)
4684 return;
4685
4686 lastarg = strrchr(line, ' ');
4687 if (lastarg == NULL || ++lastarg == NULL)
4688 return;
4689
4690 dst = pool_alloc(pool_head_ssl_keylog_str);
4691 if (!dst)
4692 return;
4693
4694 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4695 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4696
4697 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4698 if (keylog->client_random)
4699 goto error;
4700 keylog->client_random = dst;
4701
4702 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4703 if (keylog->client_early_traffic_secret)
4704 goto error;
4705 keylog->client_early_traffic_secret = dst;
4706
4707 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4708 if(keylog->client_handshake_traffic_secret)
4709 goto error;
4710 keylog->client_handshake_traffic_secret = dst;
4711
4712 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4713 if (keylog->server_handshake_traffic_secret)
4714 goto error;
4715 keylog->server_handshake_traffic_secret = dst;
4716
4717 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4718 if (keylog->client_traffic_secret_0)
4719 goto error;
4720 keylog->client_traffic_secret_0 = dst;
4721
4722 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4723 if (keylog->server_traffic_secret_0)
4724 goto error;
4725 keylog->server_traffic_secret_0 = dst;
4726
4727 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4728 if (keylog->early_exporter_secret)
4729 goto error;
4730 keylog->early_exporter_secret = dst;
4731
4732 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4733 if (keylog->exporter_secret)
4734 goto error;
4735 keylog->exporter_secret = dst;
4736 } else {
4737 goto error;
4738 }
4739
4740 return;
4741
4742error:
4743 pool_free(pool_head_ssl_keylog_str, dst);
4744
4745 return;
4746}
4747#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004748
William Lallemand8b453912019-11-21 15:48:10 +01004749/*
4750 * This function applies the SSL configuration on a SSL_CTX
4751 * It returns an error code and fills the <err> buffer
4752 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004753static int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx, char **err)
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004754{
4755 struct proxy *curproxy = bind_conf->frontend;
4756 int cfgerr = 0;
4757 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004758 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004759 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004760#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004761 const char *conf_ciphersuites;
4762#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004763 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004764
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004765 if (ssl_conf) {
4766 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4767 int i, min, max;
4768 int flags = MC_SSL_O_ALL;
4769
4770 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004771 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4772 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004773 if (min)
4774 flags |= (methodVersions[min].flag - 1);
4775 if (max)
4776 flags |= ~((methodVersions[max].flag << 1) - 1);
4777 min = max = CONF_TLSV_NONE;
4778 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4779 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4780 if (min)
4781 max = i;
4782 else
4783 min = max = i;
4784 }
4785 /* save real min/max */
4786 conf_ssl_methods->min = min;
4787 conf_ssl_methods->max = max;
4788 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004789 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4790 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004791 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004792 }
4793 }
4794
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004795 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004796 case SSL_SOCK_VERIFY_NONE:
4797 verify = SSL_VERIFY_NONE;
4798 break;
4799 case SSL_SOCK_VERIFY_OPTIONAL:
4800 verify = SSL_VERIFY_PEER;
4801 break;
4802 case SSL_SOCK_VERIFY_REQUIRED:
4803 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4804 break;
4805 }
4806 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4807 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004808 char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file;
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004809 char *ca_verify_file = (ssl_conf && ssl_conf->ca_verify_file) ? ssl_conf->ca_verify_file : bind_conf->ssl_conf.ca_verify_file;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004810 char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file;
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004811 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004812 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004813 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004814 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004815 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004816 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004817 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004818 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4819 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4820 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4821 cfgerr |= ERR_ALERT | ERR_FATAL;
4822 }
4823 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004824 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004825 SSL_CTX_set_client_CA_list(ctx, SSL_dup_CA_list(ssl_get_client_ca_file(ca_file)));
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004826 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004827 }
Emeric Brun850efd52014-01-29 12:24:34 +01004828 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004829 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4830 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004831 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004832 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004833#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004834 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004835 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4836
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004837 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004838 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4839 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004840 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004841 }
Emeric Brun561e5742012-10-02 15:20:55 +02004842 else {
4843 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4844 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004845 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004846#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004847 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004848 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004849#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004850 if(bind_conf->keys_ref) {
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01004851 if (!SSL_CTX_set_tlsext_ticket_key_evp_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004852 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4853 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004854 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004855 }
4856 }
4857#endif
4858
William Lallemand4f45bb92017-10-30 20:08:51 +01004859 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004860 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4861 if (conf_ciphers &&
4862 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004863 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4864 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004865 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004866 }
4867
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004868#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004869 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4870 if (conf_ciphersuites &&
4871 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004872 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4873 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004874 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004875 }
4876#endif
4877
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004878#ifndef OPENSSL_NO_DH
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02004879 if (!local_dh_1024)
4880 local_dh_1024 = ssl_get_dh_1024();
4881 if (!local_dh_2048)
4882 local_dh_2048 = ssl_get_dh_2048();
4883 if (!local_dh_4096)
4884 local_dh_4096 = ssl_get_dh_4096();
Remi Gacogne8de54152014-07-15 11:36:40 +02004885#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004886
Emeric Brunfc0421f2012-09-07 17:30:07 +02004887 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004888#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004889 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004890#endif
William Lallemand722180a2021-06-09 16:46:12 +02004891#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004892 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4893#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004894
Bernard Spil13c53f82018-02-15 13:34:58 +01004895#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004896 ssl_conf_cur = NULL;
4897 if (ssl_conf && ssl_conf->npn_str)
4898 ssl_conf_cur = ssl_conf;
4899 else if (bind_conf->ssl_conf.npn_str)
4900 ssl_conf_cur = &bind_conf->ssl_conf;
4901 if (ssl_conf_cur)
4902 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004903#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004904#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004905 ssl_conf_cur = NULL;
4906 if (ssl_conf && ssl_conf->alpn_str)
4907 ssl_conf_cur = ssl_conf;
4908 else if (bind_conf->ssl_conf.alpn_str)
4909 ssl_conf_cur = &bind_conf->ssl_conf;
4910 if (ssl_conf_cur)
4911 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004912#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004913#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004914 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4915 if (conf_curves) {
4916 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004917 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4918 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004919 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004920 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004921 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004922 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004923#endif /* defined(SSL_CTX_set1_curves_list) */
4924
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004925 if (!conf_curves) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004926#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004927#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004928 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004929 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4930 NULL);
4931
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004932 if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) {
4933 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4934 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
4935 cfgerr |= ERR_ALERT | ERR_FATAL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02004936 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004937#endif /* defined(SSL_CTX_set1_curves_list) */
Olivier Houchardc2aae742017-09-22 18:26:28 +02004938#else
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004939#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
4940 int i;
4941 EC_KEY *ecdh;
4942
Olivier Houchardc2aae742017-09-22 18:26:28 +02004943 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4944 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4945 ECDHE_DEFAULT_CURVE);
Emeric Brun2b58d042012-09-20 17:10:03 +02004946
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004947 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004948 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004949 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004950 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004951 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004952 }
4953 else {
4954 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4955 EC_KEY_free(ecdh);
4956 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004957#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
4958#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Emeric Brun2b58d042012-09-20 17:10:03 +02004959 }
Emeric Brun2b58d042012-09-20 17:10:03 +02004960
Emeric Brunfc0421f2012-09-07 17:30:07 +02004961 return cfgerr;
4962}
4963
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004964
4965/*
4966 * Prepare the SSL_CTX based on the bind line configuration.
4967 * Since the CA file loading is made depending on the verify option of the bind
4968 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4969 * If we want to create a link between the CA file entry and the corresponding
4970 * ckch instance (for CA file hot update), it needs to be done after
4971 * ssl_sock_prepare_ctx.
4972 * Returns 0 in case of success.
4973 */
4974int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4975 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4976{
4977 int errcode = 0;
4978
4979 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4980 if (!errcode && ckch_inst)
4981 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4982
4983 return errcode;
4984}
4985
Evan Broderbe554312013-06-27 00:05:25 -07004986static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4987{
4988 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4989 size_t prefixlen, suffixlen;
4990
4991 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004992 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004993 return 1;
4994
Evan Broderbe554312013-06-27 00:05:25 -07004995 /* The rest of this logic is based on RFC 6125, section 6.4.3
4996 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4997
Emeric Bruna848dae2013-10-08 11:27:28 +02004998 pattern_wildcard = NULL;
4999 pattern_left_label_end = pattern;
5000 while (*pattern_left_label_end != '.') {
5001 switch (*pattern_left_label_end) {
5002 case 0:
5003 /* End of label not found */
5004 return 0;
5005 case '*':
5006 /* If there is more than one wildcards */
5007 if (pattern_wildcard)
5008 return 0;
5009 pattern_wildcard = pattern_left_label_end;
5010 break;
5011 }
5012 pattern_left_label_end++;
5013 }
5014
5015 /* If it's not trivial and there is no wildcard, it can't
5016 * match */
5017 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07005018 return 0;
5019
5020 /* Make sure all labels match except the leftmost */
5021 hostname_left_label_end = strchr(hostname, '.');
5022 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02005023 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07005024 return 0;
5025
5026 /* Make sure the leftmost label of the hostname is long enough
5027 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02005028 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07005029 return 0;
5030
5031 /* Finally compare the string on either side of the
5032 * wildcard */
5033 prefixlen = pattern_wildcard - pattern;
5034 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02005035 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
5036 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07005037 return 0;
5038
5039 return 1;
5040}
5041
5042static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
5043{
5044 SSL *ssl;
5045 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005046 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02005047 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02005048 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07005049
5050 int depth;
5051 X509 *cert;
5052 STACK_OF(GENERAL_NAME) *alt_names;
5053 int i;
5054 X509_NAME *cert_subject;
5055 char *str;
5056
5057 if (ok == 0)
5058 return ok;
5059
5060 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02005061 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreau3a0a0d62022-04-12 07:31:06 +02005062 ssl_ctx = __conn_get_ssl_sock_ctx(conn);
Evan Broderbe554312013-06-27 00:05:25 -07005063
Willy Tarreauad92a9a2017-07-28 11:38:41 +02005064 /* We're checking if the provided hostnames match the desired one. The
5065 * desired hostname comes from the SNI we presented if any, or if not
5066 * provided then it may have been explicitly stated using a "verifyhost"
5067 * directive. If neither is set, we don't care about the name so the
5068 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02005069 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005070 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02005071 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02005072 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02005073 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02005074 if (!servername)
5075 return ok;
5076 }
Evan Broderbe554312013-06-27 00:05:25 -07005077
5078 /* We only need to verify the CN on the actual server cert,
5079 * not the indirect CAs */
5080 depth = X509_STORE_CTX_get_error_depth(ctx);
5081 if (depth != 0)
5082 return ok;
5083
5084 /* At this point, the cert is *not* OK unless we can find a
5085 * hostname match */
5086 ok = 0;
5087
5088 cert = X509_STORE_CTX_get_current_cert(ctx);
5089 /* It seems like this might happen if verify peer isn't set */
5090 if (!cert)
5091 return ok;
5092
5093 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
5094 if (alt_names) {
5095 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
5096 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
5097 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005098#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02005099 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
5100#else
Evan Broderbe554312013-06-27 00:05:25 -07005101 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02005102#endif
Evan Broderbe554312013-06-27 00:05:25 -07005103 ok = ssl_sock_srv_hostcheck(str, servername);
5104 OPENSSL_free(str);
5105 }
5106 }
5107 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02005108 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07005109 }
5110
5111 cert_subject = X509_get_subject_name(cert);
5112 i = -1;
5113 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
5114 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005115 ASN1_STRING *value;
5116 value = X509_NAME_ENTRY_get_data(entry);
5117 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07005118 ok = ssl_sock_srv_hostcheck(str, servername);
5119 OPENSSL_free(str);
5120 }
5121 }
5122
Willy Tarreau71d058c2017-07-26 20:09:56 +02005123 /* report the mismatch and indicate if SNI was used or not */
5124 if (!ok && !conn->err_code)
5125 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07005126 return ok;
5127}
5128
Emeric Brun94324a42012-10-11 14:00:19 +02005129/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01005130int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02005131{
5132 int cfgerr = 0;
William Lallemand2c776f12021-12-28 18:47:17 +01005133 SSL_CTX *ctx;
Willy Tarreaufce03112015-01-15 21:32:40 +01005134 /* Automatic memory computations need to know we use SSL there */
5135 global.ssl_used_backend = 1;
5136
5137 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02005138 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005139 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005140 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02005141 cfgerr++;
5142 return cfgerr;
5143 }
5144 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01005145 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02005146 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02005147
William Lallemand2c776f12021-12-28 18:47:17 +01005148 if (srv->ssl_ctx.client_crt) {
5149 const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1;
5150 char *err = NULL;
5151 int err_code = 0;
5152
5153 /* If there is a crt keyword there, the SSL_CTX will be created here. */
5154 err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err);
5155 if (err_code != ERR_NONE) {
5156 if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT))
5157 ha_warning("%s", err);
5158 else
5159 ha_alert("%s", err);
5160
5161 if (err_code & (ERR_FATAL|ERR_ABORT))
5162 cfgerr++;
5163 }
5164 ha_free(&err);
5165 }
5166
5167 ctx = srv->ssl_ctx.ctx;
5168
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005169 /* The context will be uninitialized if there wasn't any "cert" option
5170 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005171 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005172 ctx = SSL_CTX_new(SSLv23_client_method());
5173 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005174 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005175 cfgerr++;
5176 return cfgerr;
5177 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005178
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005179 srv->ssl_ctx.ctx = ctx;
5180 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005181
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005182 cfgerr += ssl_sock_prep_srv_ctx_and_inst(srv, srv->ssl_ctx.ctx, srv->ssl_ctx.inst);
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005183
5184 return cfgerr;
5185}
5186
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005187/* Initialize an SSL context that will be used on the backend side.
5188 * Returns an error count.
5189 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005190static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005191{
5192 struct proxy *curproxy = srv->proxy;
5193 int cfgerr = 0;
5194 long options =
5195 SSL_OP_ALL | /* all known workarounds for bugs */
5196 SSL_OP_NO_SSLv2 |
5197 SSL_OP_NO_COMPRESSION;
5198 long mode =
5199 SSL_MODE_ENABLE_PARTIAL_WRITE |
5200 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
5201 SSL_MODE_RELEASE_BUFFERS |
5202 SSL_MODE_SMALL_BUFFERS;
5203 int verify = SSL_VERIFY_NONE;
5204 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
5205 int i, min, max, hole;
5206 int flags = MC_SSL_O_ALL;
5207
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005208 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005209 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
5210 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005211 else
5212 flags = conf_ssl_methods->flags;
5213
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005214 /* Real min and max should be determinate with configuration and openssl's capabilities */
5215 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005216 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005217 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005218 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005219
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005220 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005221 min = max = CONF_TLSV_NONE;
5222 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005223 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005224 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005225 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005226 if (min) {
5227 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005228 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01005229 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
5230 proxy_type_str(curproxy), curproxy->id, srv->id,
5231 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005232 hole = 0;
5233 }
5234 max = i;
5235 }
5236 else {
5237 min = max = i;
5238 }
5239 }
5240 else {
5241 if (min)
5242 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005243 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005244 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005245 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01005246 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005247 cfgerr += 1;
5248 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005249
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005250#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005251 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08005252 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005253 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005254 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005255 else
5256 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
5257 if (flags & methodVersions[i].flag)
5258 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005259#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005260 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005261 methodVersions[min].ctx_set_version(ctx, SET_MIN);
5262 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005263#endif
5264
5265 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
5266 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005267 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005268
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005269#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005270 if (global_ssl.async)
5271 mode |= SSL_MODE_ASYNC;
5272#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005273 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005274
Emeric Brun850efd52014-01-29 12:24:34 +01005275 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
5276 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01005277 switch (srv->ssl_ctx.verify) {
5278 case SSL_SOCK_VERIFY_NONE:
5279 verify = SSL_VERIFY_NONE;
5280 break;
5281 case SSL_SOCK_VERIFY_REQUIRED:
5282 verify = SSL_VERIFY_PEER;
5283 break;
5284 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005285 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02005286 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01005287 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02005288 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02005289 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005290 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005291 ha_alert("unable to set CA file '%s'.\n",
5292 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005293 cfgerr++;
5294 }
5295 }
Emeric Brun850efd52014-01-29 12:24:34 +01005296 else {
5297 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005298 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 Brun850efd52014-01-29 12:24:34 +01005299 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005300 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01005301 cfgerr++;
5302 }
Emeric Brunef42d922012-10-11 16:11:36 +02005303#ifdef X509_V_FLAG_CRL_CHECK
5304 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005305 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02005306
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01005307 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005308 ha_alert("unable to configure CRL file '%s'.\n",
5309 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005310 cfgerr++;
5311 }
5312 else {
5313 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
5314 }
5315 }
5316#endif
5317 }
5318
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005319 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
5320 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02005321 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005322 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005323 ha_alert("unable to set SSL cipher list to '%s'.\n",
5324 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02005325 cfgerr++;
5326 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005327
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05005328#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005329 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005330 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005331 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
5332 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005333 cfgerr++;
5334 }
5335#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01005336#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
5337 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005338 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01005339#endif
5340#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5341 if (srv->ssl_ctx.alpn_str)
5342 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
5343#endif
5344
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005345
5346 return cfgerr;
5347}
5348
5349/*
5350 * Prepare the frontend's SSL_CTX based on the server line configuration.
5351 * Since the CA file loading is made depending on the verify option of the
5352 * server line, the link between the SSL_CTX and the CA file tree entry is
5353 * made here.
5354 * If we want to create a link between the CA file entry and the corresponding
5355 * ckch instance (for CA file hot update), it needs to be done after
5356 * ssl_sock_prepare_srv_ssl_ctx.
5357 * Returns an error count.
5358 */
5359int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
5360 struct ckch_inst *ckch_inst)
5361{
5362 int cfgerr = 0;
5363
5364 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
5365 if (!cfgerr && ckch_inst)
5366 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02005367
5368 return cfgerr;
5369}
5370
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005371
Frédéric Lécailleec216522020-11-23 14:33:30 +01005372/*
5373 * Create an initial CTX used to start the SSL connections.
5374 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
5375 * Returns 0 if succeeded, or something >0 if not.
5376 */
5377#ifdef USE_QUIC
5378static int ssl_initial_ctx(struct bind_conf *bind_conf)
5379{
5380 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
5381 return ssl_quic_initial_ctx(bind_conf);
5382 else
5383 return ssl_sock_initial_ctx(bind_conf);
5384}
5385#else
5386static int ssl_initial_ctx(struct bind_conf *bind_conf)
5387{
5388 return ssl_sock_initial_ctx(bind_conf);
5389}
5390#endif
5391
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005392/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005393 * be NULL, in which case nothing is done. Returns the number of errors
5394 * encountered.
5395 */
Willy Tarreau03209342016-12-22 17:08:28 +01005396int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005397{
5398 struct ebmb_node *node;
5399 struct sni_ctx *sni;
5400 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01005401 int errcode = 0;
5402 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02005403
Willy Tarreaufce03112015-01-15 21:32:40 +01005404 /* Automatic memory computations need to know we use SSL there */
5405 global.ssl_used_frontend = 1;
5406
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005407 /* Create initial_ctx used to start the ssl connection before do switchctx */
5408 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01005409 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005410 /* It should not be necessary to call this function, but it's
5411 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01005412 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005413 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
5414 }
5415 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005416 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, bind_conf->default_inst, &errmsg);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005417 }
Emeric Brun0bed9942014-10-30 19:25:24 +01005418
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005419 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005420 while (node) {
5421 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005422 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005423 /* only initialize the CTX on its first occurrence and
5424 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005425 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
5426 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005427 node = ebmb_next(node);
5428 }
5429
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005430 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005431 while (node) {
5432 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01005433 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005434 /* only initialize the CTX on its first occurrence and
5435 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005436 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005437 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005438 node = ebmb_next(node);
5439 }
William Lallemand8b453912019-11-21 15:48:10 +01005440
5441 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005442 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005443 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005444 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005445 err++;
5446 }
5447
5448 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005449 return err;
5450}
5451
Willy Tarreau55d37912016-12-21 23:38:39 +01005452/* Prepares all the contexts for a bind_conf and allocates the shared SSL
5453 * context if needed. Returns < 0 on error, 0 on success. The warnings and
5454 * alerts are directly emitted since the rest of the stack does it below.
5455 */
5456int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
5457{
5458 struct proxy *px = bind_conf->frontend;
5459 int alloc_ctx;
5460 int err;
5461
Willy Tarreau11ba4042022-05-20 15:56:32 +02005462 if (!(bind_conf->options & BC_O_USE_SSL)) {
Willy Tarreau55d37912016-12-21 23:38:39 +01005463 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005464 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
5465 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01005466 }
5467 return 0;
5468 }
5469 if (!bind_conf->default_ctx) {
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02005470 if (bind_conf->strict_sni && !(bind_conf->options & BC_O_GENERATE_CERTS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005471 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
5472 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005473 }
5474 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005475 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
5476 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005477 return -1;
5478 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005479 }
William Lallemandc61c0b32017-12-04 18:46:39 +01005480 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005481 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02005482 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
Willy Tarreau91358592021-06-15 08:08:04 +02005483 sizeof(*sh_ssl_sess_tree), (global.nbthread > 1));
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02005484 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005485 if (alloc_ctx == SHCTX_E_INIT_LOCK)
5486 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");
5487 else
5488 ha_alert("Unable to allocate SSL session cache.\n");
5489 return -1;
5490 }
5491 /* free block callback */
5492 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
5493 /* init the root tree within the extra space */
5494 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
5495 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01005496 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005497 err = 0;
5498 /* initialize all certificate contexts */
5499 err += ssl_sock_prepare_all_ctx(bind_conf);
5500
5501 /* initialize CA variables if the certificates generation is enabled */
5502 err += ssl_sock_load_ca(bind_conf);
5503
5504 return -err;
5505}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005506
William Lallemand231610a2021-12-30 11:25:43 +01005507/* release ssl context allocated for servers. Most of the field free here
5508 * must also be allocated in srv_ssl_settings_cpy() */
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005509void ssl_sock_free_srv_ctx(struct server *srv)
5510{
Olivier Houchardc7566002018-11-20 23:33:50 +01005511#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
William Lallemand231610a2021-12-30 11:25:43 +01005512 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005513#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005514#ifdef OPENSSL_NPN_NEGOTIATED
William Lallemand231610a2021-12-30 11:25:43 +01005515 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005516#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005517 if (srv->ssl_ctx.reused_sess) {
5518 int i;
5519
William Lallemande18d4e82021-11-17 02:59:21 +01005520 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaue709e822021-02-26 21:06:32 +01005521 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
William Lallemande18d4e82021-11-17 02:59:21 +01005522 ha_free(&srv->ssl_ctx.reused_sess[i].sni);
5523 }
Willy Tarreaue709e822021-02-26 21:06:32 +01005524 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005525 }
5526
Willy Tarreaue709e822021-02-26 21:06:32 +01005527 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005528 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005529 srv->ssl_ctx.ctx = NULL;
5530 }
William Lallemand231610a2021-12-30 11:25:43 +01005531
5532 ha_free(&srv->ssl_ctx.ca_file);
5533 ha_free(&srv->ssl_ctx.crl_file);
5534 ha_free(&srv->ssl_ctx.client_crt);
5535 ha_free(&srv->ssl_ctx.verify_host);
5536#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
5537 ha_free(&srv->sni_expr);
William Lallemand43c2ce42022-03-16 17:48:19 +01005538 release_sample_expr(srv->ssl_ctx.sni);
5539 srv->ssl_ctx.sni = NULL;
William Lallemand231610a2021-12-30 11:25:43 +01005540#endif
5541 ha_free(&srv->ssl_ctx.ciphers);
5542#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
5543 ha_free(&srv->ssl_ctx.ciphersuites);
5544#endif
William Lallemande69563f2021-12-30 14:45:19 +01005545 /* If there is a certificate we must unlink the ckch instance */
5546 ckch_inst_free(srv->ssl_ctx.inst);
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005547}
5548
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005549/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005550 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5551 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005552void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005553{
5554 struct ebmb_node *node, *back;
5555 struct sni_ctx *sni;
5556
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005557 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005558 while (node) {
5559 sni = ebmb_entry(node, struct sni_ctx, name);
5560 back = ebmb_next(node);
5561 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005562 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005563 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005564 free(sni);
5565 node = back;
5566 }
5567
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005568 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005569 while (node) {
5570 sni = ebmb_entry(node, struct sni_ctx, name);
5571 back = ebmb_next(node);
5572 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005573 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005574 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005575 free(sni);
5576 node = back;
5577 }
William Lallemandb2408692020-06-24 09:54:29 +02005578
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005579 SSL_CTX_free(bind_conf->initial_ctx);
5580 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005581 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005582 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005583 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005584 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005585}
William Lallemandb2408692020-06-24 09:54:29 +02005586
5587
5588void ssl_sock_deinit()
5589{
5590 crtlist_deinit(); /* must be free'd before the ckchs */
5591 ckch_deinit();
5592}
5593REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005594
Willy Tarreau795cdab2016-12-22 17:30:54 +01005595/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5596void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5597{
5598 ssl_sock_free_ca(bind_conf);
5599 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005600 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005601 free(bind_conf->ca_sign_file);
5602 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005603 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005604 free(bind_conf->keys_ref->filename);
5605 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005606 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005607 free(bind_conf->keys_ref);
5608 }
5609 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005610 bind_conf->ca_sign_pass = NULL;
5611 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005612}
5613
Christopher Faulet31af49d2015-06-09 17:29:50 +02005614/* Load CA cert file and private key used to generate certificates */
5615int
Willy Tarreau03209342016-12-22 17:08:28 +01005616ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005617{
Willy Tarreau03209342016-12-22 17:08:28 +01005618 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005619 struct cert_key_and_chain *ckch = NULL;
5620 int ret = 0;
5621 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005622
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02005623 if (!(bind_conf->options & BC_O_GENERATE_CERTS))
Shimi Gersner5846c492020-08-23 13:58:12 +03005624 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005625
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005626#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005627 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005628 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005629 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005630 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005631 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005632#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005633
Christopher Faulet31af49d2015-06-09 17:29:50 +02005634 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005635 ha_alert("Proxy '%s': cannot enable certificate generation, "
5636 "no CA certificate File configured at [%s:%d].\n",
5637 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005638 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005639 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005640
Shimi Gersner5846c492020-08-23 13:58:12 +03005641 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005642 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005643 if (!ckch) {
5644 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5645 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5646 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005647 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005648
5649 /* Try to parse file */
5650 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5651 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5652 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005653 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005654 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005655 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005656
5657 /* Fail if missing cert or pkey */
5658 if ((!ckch->cert) || (!ckch->key)) {
5659 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5660 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5661 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005662 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005663
Shimi Gersner5846c492020-08-23 13:58:12 +03005664 /* Final assignment to bind */
5665 bind_conf->ca_sign_ckch = ckch;
5666 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005667
Shimi Gersner5846c492020-08-23 13:58:12 +03005668 failed:
5669 if (ckch) {
5670 ssl_sock_free_cert_key_and_chain_contents(ckch);
5671 free(ckch);
5672 }
5673
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02005674 bind_conf->options &= ~BC_O_GENERATE_CERTS;
Shimi Gersner5846c492020-08-23 13:58:12 +03005675 ret++;
5676 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005677}
5678
5679/* Release CA cert and private key used to generate certificated */
5680void
5681ssl_sock_free_ca(struct bind_conf *bind_conf)
5682{
Shimi Gersner5846c492020-08-23 13:58:12 +03005683 if (bind_conf->ca_sign_ckch) {
5684 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005685 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005686 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005687}
5688
Emeric Brun46591952012-05-18 15:47:34 +02005689/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005690 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5691 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5692 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5693 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005694 * This is the responsibility of the caller to check the validity of all the pointers passed
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005695 * as parameters to this function.
5696 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5697 * CO_ER_SSL_NO_MEM.
5698 */
5699int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5700 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5701{
5702 int retry = 1;
5703
5704 retry:
5705 /* Alloc a new SSL session. */
5706 *ssl = SSL_new(ssl_ctx);
5707 if (!*ssl) {
5708 if (!retry--)
5709 goto err;
5710
5711 pool_gc(NULL);
5712 goto retry;
5713 }
5714
5715 *bio = BIO_new(bio_meth);
5716 if (!*bio) {
5717 SSL_free(*ssl);
5718 *ssl = NULL;
5719 if (!retry--)
5720 goto err;
5721
5722 pool_gc(NULL);
5723 goto retry;
5724 }
5725
5726 BIO_set_data(*bio, ctx);
5727 SSL_set_bio(*ssl, *bio, *bio);
5728
5729 /* set connection pointer. */
5730 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5731 SSL_free(*ssl);
5732 *ssl = NULL;
5733 if (!retry--)
5734 goto err;
5735
5736 pool_gc(NULL);
5737 goto retry;
5738 }
5739
5740 return 0;
5741
5742 err:
5743 conn->err_code = CO_ER_SSL_NO_MEM;
5744 return -1;
5745}
5746
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005747/* This function is called when all the XPRT have been initialized. We can
5748 * now attempt to start the SSL handshake.
5749 */
5750static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5751{
5752 struct ssl_sock_ctx *ctx = xprt_ctx;
5753
5754 if (ctx->xprt->start) {
5755 int ret;
5756
5757 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5758 if (ret < 0)
5759 return ret;
5760 }
5761 tasklet_wakeup(ctx->wait_event.tasklet);
5762
5763 return 0;
5764}
5765
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005766/*
Emeric Brun46591952012-05-18 15:47:34 +02005767 * This function is called if SSL * context is not yet allocated. The function
5768 * is designed to be called before any other data-layer operation and sets the
5769 * handshake flag on the connection. It is safe to call it multiple times.
5770 * It returns 0 on success and -1 in error case.
5771 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005772static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005773{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005774 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005775 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005776 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005777 return 0;
5778
Olivier Houchard66ab4982019-02-26 18:37:15 +01005779 ctx = pool_alloc(ssl_sock_ctx_pool);
5780 if (!ctx) {
5781 conn->err_code = CO_ER_SSL_NO_MEM;
5782 return -1;
5783 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005784 ctx->wait_event.tasklet = tasklet_new();
5785 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005786 conn->err_code = CO_ER_SSL_NO_MEM;
5787 pool_free(ssl_sock_ctx_pool, ctx);
5788 return -1;
5789 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005790 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5791 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005792 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005793 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005794 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005795 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005796 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005797 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005798 ctx->xprt_st = 0;
5799 ctx->xprt_ctx = NULL;
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005800 ctx->error_code = 0;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005801
5802 /* Only work with sockets for now, this should be adapted when we'll
5803 * add QUIC support.
5804 */
5805 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005806 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005807 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5808 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005809 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005810
Willy Tarreau82531f62021-10-06 12:15:18 +02005811 if (global.maxsslconn && global.sslconns >= global.maxsslconn) {
Willy Tarreau20879a02012-12-03 16:32:10 +01005812 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005813 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005814 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005815
Emeric Brun46591952012-05-18 15:47:34 +02005816 /* If it is in client mode initiate SSL session
5817 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005818 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005819 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5820 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005821 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005822
Olivier Houchard66ab4982019-02-26 18:37:15 +01005823 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005824 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005825 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5826 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5827 SSL_SESSION *sess = d2i_SSL_SESSION(NULL, &ptr, __objt_server(conn->target)->ssl_ctx.reused_sess[tid].size);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005828 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005829 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005830 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005831 } else if (sess) {
5832 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005833 }
5834 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005835 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005836
Emeric Brun46591952012-05-18 15:47:34 +02005837 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005838 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005839
Willy Tarreau82531f62021-10-06 12:15:18 +02005840 _HA_ATOMIC_INC(&global.sslconns);
5841 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005842 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005843 return 0;
5844 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005845 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005846 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005847
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005848 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5849 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005850 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005851
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005852#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005853 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005854 b_alloc(&ctx->early_buf);
5855 SSL_set_max_early_data(ctx->ssl,
5856 /* Only allow early data if we managed to allocate
5857 * a buffer.
5858 */
5859 (!b_is_null(&ctx->early_buf)) ?
5860 global.tune.bufsize - global.tune.maxrewrite : 0);
5861 }
5862#endif
5863
Olivier Houchard66ab4982019-02-26 18:37:15 +01005864 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005865
Emeric Brun46591952012-05-18 15:47:34 +02005866 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005867 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005868#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005869 if (bc->ssl_conf.early_data)
5870 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005871#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005872
Willy Tarreau82531f62021-10-06 12:15:18 +02005873 _HA_ATOMIC_INC(&global.sslconns);
5874 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005875 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005876 return 0;
5877 }
5878 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005879 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005880err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005881 if (ctx && ctx->wait_event.tasklet)
5882 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005883 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005884 return -1;
5885}
5886
5887
5888/* This is the callback which is used when an SSL handshake is pending. It
5889 * updates the FD status if it wants some polling before being called again.
5890 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5891 * otherwise it returns non-zero and removes itself from the connection's
5892 * flags (the bit is provided in <flag> by the caller).
5893 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005894static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005895{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02005896 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Emeric Brun46591952012-05-18 15:47:34 +02005897 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005898 struct ssl_counters *counters = NULL;
5899 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005900 struct listener *li;
5901 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005902 socklen_t lskerr;
5903 int skerr;
5904
Emeric Brun46591952012-05-18 15:47:34 +02005905
Willy Tarreau3c728722014-01-23 13:50:42 +01005906 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005907 return 0;
5908
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005909 /* get counters */
5910 switch (obj_type(conn->target)) {
5911 case OBJ_TYPE_LISTENER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005912 li = __objt_listener(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005913 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5914 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5915 &ssl_stats_module);
5916 break;
5917
5918 case OBJ_TYPE_SERVER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005919 srv = __objt_server(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005920 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5921 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5922 &ssl_stats_module);
5923 break;
5924
5925 default:
5926 break;
5927 }
5928
Willy Tarreau939b0bf2022-04-11 11:29:11 +02005929 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005930 goto out_error;
5931
Willy Tarreau06300382021-02-02 15:42:25 +01005932 /* don't start calculating a handshake on a dead connection */
5933 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5934 goto out_error;
5935
5936 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5937 * status from the lower layers, so let's check the FD directly. Ideally
5938 * the xprt layers should provide some status indicating their knowledge
5939 * of shutdowns or error.
5940 */
Willy Tarreau07ecfc52022-04-11 18:07:03 +02005941 BUG_ON(conn->flags & CO_FL_FDLESS);
5942
Willy Tarreau06300382021-02-02 15:42:25 +01005943 skerr = 0;
5944 lskerr = sizeof(skerr);
5945 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5946 skerr != 0)
5947 goto out_error;
5948
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005949#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005950 /*
5951 * Check if we have early data. If we do, we have to read them
5952 * before SSL_do_handshake() is called, And there's no way to
5953 * detect early data, except to try to read them
5954 */
5955 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005956 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005957
Olivier Houchard54907bb2019-12-19 15:02:39 +01005958 while (1) {
5959 ret = SSL_read_early_data(ctx->ssl,
5960 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5961 &read_data);
5962 if (ret == SSL_READ_EARLY_DATA_ERROR)
5963 goto check_error;
5964 if (read_data > 0) {
5965 conn->flags |= CO_FL_EARLY_DATA;
5966 b_add(&ctx->early_buf, read_data);
5967 }
5968 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5969 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5970 if (!b_data(&ctx->early_buf))
5971 b_free(&ctx->early_buf);
5972 break;
5973 }
5974 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005975 }
5976#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005977 /* If we use SSL_do_handshake to process a reneg initiated by
5978 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5979 * Usually SSL_write and SSL_read are used and process implicitly
5980 * the reneg handshake.
5981 * Here we use SSL_peek as a workaround for reneg.
5982 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005983 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005984 char c;
5985
Olivier Houchard66ab4982019-02-26 18:37:15 +01005986 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005987 if (ret <= 0) {
5988 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005989 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005990
Emeric Brun674b7432012-11-08 19:21:55 +01005991 if (ret == SSL_ERROR_WANT_WRITE) {
5992 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005993 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005994 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005995 return 0;
5996 }
5997 else if (ret == SSL_ERROR_WANT_READ) {
5998 /* handshake may have been completed but we have
5999 * no more data to read.
6000 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006001 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01006002 ret = 1;
6003 goto reneg_ok;
6004 }
6005 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02006006 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02006007 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01006008 return 0;
6009 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006010#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006011 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006012 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006013 return 0;
6014 }
6015#endif
Emeric Brun674b7432012-11-08 19:21:55 +01006016 else if (ret == SSL_ERROR_SYSCALL) {
6017 /* if errno is null, then connection was successfully established */
6018 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
6019 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01006020 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02006021#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
6022 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006023 conn->err_code = CO_ER_SSL_HANDSHAKE;
6024#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006025 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02006026#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02006027 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006028 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006029 empty_handshake = state == TLS_ST_BEFORE;
6030#else
Lukas Tribus49799162019-07-08 14:29:15 +02006031 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
6032 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006033#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006034 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02006035 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006036 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006037 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6038 else
6039 conn->err_code = CO_ER_SSL_EMPTY;
6040 }
6041 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006042 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006043 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6044 else
6045 conn->err_code = CO_ER_SSL_ABORT;
6046 }
6047 }
6048 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006049 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006050 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01006051 else
Emeric Brun29f037d2014-04-25 19:05:36 +02006052 conn->err_code = CO_ER_SSL_HANDSHAKE;
6053 }
Lukas Tribus49799162019-07-08 14:29:15 +02006054#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01006055 }
Emeric Brun674b7432012-11-08 19:21:55 +01006056 goto out_error;
6057 }
6058 else {
6059 /* Fail on all other handshake errors */
6060 /* Note: OpenSSL may leave unread bytes in the socket's
6061 * buffer, causing an RST to be emitted upon close() on
6062 * TCP sockets. We first try to drain possibly pending
6063 * data to avoid this as much as possible.
6064 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01006065 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01006066 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006067 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02006068 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01006069 goto out_error;
6070 }
6071 }
6072 /* read some data: consider handshake completed */
6073 goto reneg_ok;
6074 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006075 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006076check_error:
Emeric Brun46591952012-05-18 15:47:34 +02006077 if (ret != 1) {
6078 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006079 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006080
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02006081 if (!ctx->error_code)
6082 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02006083
Emeric Brun46591952012-05-18 15:47:34 +02006084 if (ret == SSL_ERROR_WANT_WRITE) {
6085 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02006086 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02006087 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02006088 return 0;
6089 }
6090 else if (ret == SSL_ERROR_WANT_READ) {
6091 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02006092 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02006093 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6094 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02006095 return 0;
6096 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006097#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006098 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006099 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006100 return 0;
6101 }
6102#endif
Willy Tarreau89230192012-09-28 20:22:13 +02006103 else if (ret == SSL_ERROR_SYSCALL) {
6104 /* if errno is null, then connection was successfully established */
6105 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
6106 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006107 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02006108#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
6109 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006110 conn->err_code = CO_ER_SSL_HANDSHAKE;
6111#else
6112 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02006113#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02006114 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006115 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006116 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006117#else
Lukas Tribus49799162019-07-08 14:29:15 +02006118 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
6119 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006120#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006121 if (empty_handshake) {
6122 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006123 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006124 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6125 else
6126 conn->err_code = CO_ER_SSL_EMPTY;
6127 }
6128 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006129 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006130 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6131 else
6132 conn->err_code = CO_ER_SSL_ABORT;
6133 }
Emeric Brun29f037d2014-04-25 19:05:36 +02006134 }
6135 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006136 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006137 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6138 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006139 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02006140 }
Lukas Tribus49799162019-07-08 14:29:15 +02006141#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02006142 }
Willy Tarreau89230192012-09-28 20:22:13 +02006143 goto out_error;
6144 }
Emeric Brun46591952012-05-18 15:47:34 +02006145 else {
6146 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02006147 /* Note: OpenSSL may leave unread bytes in the socket's
6148 * buffer, causing an RST to be emitted upon close() on
6149 * TCP sockets. We first try to drain possibly pending
6150 * data to avoid this as much as possible.
6151 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01006152 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01006153 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006154 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02006155 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006156 goto out_error;
6157 }
6158 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006159#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01006160 else {
6161 /*
6162 * If the server refused the early data, we have to send a
6163 * 425 to the client, as we no longer have the data to sent
6164 * them again.
6165 */
6166 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006167 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006168 conn->err_code = CO_ER_SSL_EARLY_FAILED;
6169 goto out_error;
6170 }
6171 }
6172 }
6173#endif
6174
Emeric Brun46591952012-05-18 15:47:34 +02006175
Emeric Brun674b7432012-11-08 19:21:55 +01006176reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00006177
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006178#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006179 /* ASYNC engine API doesn't support moving read/write
6180 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006181 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00006182 */
6183 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006184 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006185#endif
Emeric Brun46591952012-05-18 15:47:34 +02006186 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006187 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02006188 if (objt_server(conn->target)) {
6189 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
6190 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
6191 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02006192 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02006193 else {
6194 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
6195 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
6196 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
6197 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01006198
Willy Tarreau42995282020-11-06 13:19:18 +01006199 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006200 HA_ATOMIC_INC(&counters->sess);
6201 HA_ATOMIC_INC(&counters_px->sess);
Willy Tarreau42995282020-11-06 13:19:18 +01006202 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01006203 }
Willy Tarreau42995282020-11-06 13:19:18 +01006204 else if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006205 HA_ATOMIC_INC(&counters->reused_sess);
6206 HA_ATOMIC_INC(&counters_px->reused_sess);
Emeric Brun46591952012-05-18 15:47:34 +02006207 }
6208
6209 /* The connection is now established at both layers, it's time to leave */
6210 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
6211 return 1;
6212
6213 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006214 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006215 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006216 ERR_clear_error();
6217
Emeric Brun9fa89732012-10-04 17:09:56 +02006218 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01006219 if (objt_server(conn->target)) {
6220 struct server *s = __objt_server(conn->target);
6221 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
6222 * one cache per thread, it only prevents to flush it from the CLI in
6223 * another thread */
6224
6225 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01006226 if (s->ssl_ctx.reused_sess[tid].ptr)
6227 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01006228 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02006229 }
6230
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006231 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006232 HA_ATOMIC_INC(&counters->failed_handshake);
6233 HA_ATOMIC_INC(&counters_px->failed_handshake);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006234 }
6235
Emeric Brun46591952012-05-18 15:47:34 +02006236 /* Fail on all other handshake errors */
6237 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01006238 if (!conn->err_code)
6239 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006240 return 0;
6241}
6242
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006243/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6244 * event subscriber <es> is not allowed to change from a previous call as long
6245 * as at least one event is still subscribed. The <event_type> must only be a
6246 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
6247 * unless the transport layer was already released.
6248 */
6249static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006250{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006251 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006252
Olivier Houchard0ff28652019-06-24 18:57:39 +02006253 if (!ctx)
6254 return -1;
6255
Willy Tarreau113d52b2020-01-10 09:20:26 +01006256 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006257 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006258
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006259 ctx->subs = es;
6260 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006261
6262 /* we may have to subscribe to lower layers for new events */
6263 event_type &= ~ctx->wait_event.events;
6264 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
6265 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006266 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006267}
6268
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006269/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6270 * The <es> pointer is not allowed to differ from the one passed to the
6271 * subscribe() call. It always returns zero.
6272 */
6273static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006274{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006275 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006276
Willy Tarreau113d52b2020-01-10 09:20:26 +01006277 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006278 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006279
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006280 es->events &= ~event_type;
6281 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01006282 ctx->subs = NULL;
6283
6284 /* If we subscribed, and we're not doing the handshake,
6285 * then we subscribed because the upper layer asked for it,
6286 * as the upper layer is no longer interested, we can
6287 * unsubscribe too.
6288 */
6289 event_type &= ctx->wait_event.events;
6290 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
6291 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006292
6293 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006294}
6295
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006296/* The connection has been taken over, so destroy the old tasklet and create
6297 * a new one. The original thread ID must be passed into orig_tid
6298 * It should be called with the takeover lock for the old thread held.
6299 * Returns 0 on success, and -1 on failure
6300 */
6301static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
6302{
6303 struct ssl_sock_ctx *ctx = xprt_ctx;
6304 struct tasklet *tl = tasklet_new();
6305
6306 if (!tl)
6307 return -1;
6308
6309 ctx->wait_event.tasklet->context = NULL;
6310 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
6311 ctx->wait_event.tasklet = tl;
6312 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
6313 ctx->wait_event.tasklet->context = ctx;
6314 return 0;
6315}
6316
Willy Tarreau41491682021-03-02 17:29:56 +01006317/* notify the next xprt that the connection is about to become idle and that it
6318 * may be stolen at any time after the function returns and that any tasklet in
6319 * the chain must be careful before dereferencing its context.
6320 */
6321static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
6322{
6323 struct ssl_sock_ctx *ctx = xprt_ctx;
6324
6325 if (!ctx || !ctx->wait_event.tasklet)
6326 return;
6327
6328 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6329 if (ctx->xprt)
6330 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
6331}
6332
6333/* notify the next xprt that the connection is not idle anymore and that it may
6334 * not be stolen before the next xprt_set_idle().
6335 */
6336static void ssl_set_used(struct connection *conn, void *xprt_ctx)
6337{
6338 struct ssl_sock_ctx *ctx = xprt_ctx;
6339
6340 if (!ctx || !ctx->wait_event.tasklet)
6341 return;
6342
6343 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6344 if (ctx->xprt)
6345 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
6346}
6347
Olivier Houchard2e055482019-05-27 19:50:12 +02006348/* Use the provided XPRT as an underlying XPRT, and provide the old one.
6349 * Returns 0 on success, and non-zero on failure.
6350 */
6351static 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)
6352{
6353 struct ssl_sock_ctx *ctx = xprt_ctx;
6354
6355 if (oldxprt_ops != NULL)
6356 *oldxprt_ops = ctx->xprt;
6357 if (oldxprt_ctx != NULL)
6358 *oldxprt_ctx = ctx->xprt_ctx;
6359 ctx->xprt = toadd_ops;
6360 ctx->xprt_ctx = toadd_ctx;
6361 return 0;
6362}
6363
Olivier Houchard5149b592019-05-23 17:47:36 +02006364/* Remove the specified xprt. If if it our underlying XPRT, remove it and
6365 * return 0, otherwise just call the remove_xprt method from the underlying
6366 * XPRT.
6367 */
6368static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
6369{
6370 struct ssl_sock_ctx *ctx = xprt_ctx;
6371
6372 if (ctx->xprt_ctx == toremove_ctx) {
6373 ctx->xprt_ctx = newctx;
6374 ctx->xprt = newops;
6375 return 0;
6376 }
6377 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
6378}
6379
Willy Tarreau144f84a2021-03-02 16:09:26 +01006380struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02006381{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006382 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006383 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006384 struct connection *conn;
6385 int conn_in_list;
6386 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006387
Willy Tarreau41491682021-03-02 17:29:56 +01006388 if (state & TASK_F_USR1) {
6389 /* the tasklet was idling on an idle connection, it might have
6390 * been stolen, let's be careful!
6391 */
6392 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6393 if (tl->context == NULL) {
6394 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6395 tasklet_free(tl);
6396 return NULL;
6397 }
6398 conn = ctx->conn;
6399 conn_in_list = conn->flags & CO_FL_LIST_MASK;
6400 if (conn_in_list)
6401 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006402 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01006403 } else {
6404 conn = ctx->conn;
6405 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006406 }
Willy Tarreau41491682021-03-02 17:29:56 +01006407
Olivier Houchardea8dd942019-05-20 14:02:16 +02006408 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01006409 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006410 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006411 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
6412 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01006413 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006414 }
6415 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006416 /* If we had an error, or the handshake is done and I/O is available,
6417 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01006418 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02006419 * we can't be sure conn_fd_handler() will be called again.
6420 */
6421 if ((ctx->conn->flags & CO_FL_ERROR) ||
6422 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006423 int woke = 0;
6424
6425 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006426 if (ctx->subs) {
6427 tasklet_wakeup(ctx->subs->tasklet);
6428 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006429 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006430 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006431 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006432
Olivier Houchardea8dd942019-05-20 14:02:16 +02006433 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01006434 * upper layers know. If we have no mux, create it,
6435 * and once we have a mux, call its wake method if we didn't
6436 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02006437 */
6438 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01006439 if (!ctx->conn->mux)
6440 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006441 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006442 ret = ctx->conn->mux->wake(ctx->conn);
6443 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006444 }
6445 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006446#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006447 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006448 else if (b_data(&ctx->early_buf) && ctx->subs &&
6449 ctx->subs->events & SUB_RETRY_RECV) {
6450 tasklet_wakeup(ctx->subs->tasklet);
6451 ctx->subs->events &= ~SUB_RETRY_RECV;
6452 if (!ctx->subs->events)
6453 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01006454 }
6455#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006456leave:
6457 if (!ret && conn_in_list) {
6458 struct server *srv = objt_server(conn->target);
6459
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006460 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006461 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006462 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006463 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006464 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006465 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006466 }
Willy Tarreau74163142021-03-13 11:30:19 +01006467 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006468}
6469
Emeric Brun46591952012-05-18 15:47:34 +02006470/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01006471 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02006472 * buffer wraps, in which case a second call may be performed. The connection's
6473 * flags are updated with whatever special event is detected (error, read0,
6474 * empty). The caller is responsible for taking care of those events and
6475 * avoiding the call if inappropriate. The function does not call the
6476 * connection's polling update function, so the caller is responsible for this.
6477 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006478static size_t ssl_sock_to_buf(struct connection *conn, void *xprt_ctx, struct buffer *buf, size_t count, int flags)
Emeric Brun46591952012-05-18 15:47:34 +02006479{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006480 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02006481 ssize_t ret;
6482 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02006483
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006484 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006485 goto out_error;
6486
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006487#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006488 if (b_data(&ctx->early_buf)) {
6489 try = b_contig_space(buf);
6490 if (try > b_data(&ctx->early_buf))
6491 try = b_data(&ctx->early_buf);
6492 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
6493 b_add(buf, try);
6494 b_del(&ctx->early_buf, try);
6495 if (b_data(&ctx->early_buf) == 0)
6496 b_free(&ctx->early_buf);
6497 return try;
6498 }
6499#endif
6500
Willy Tarreau911db9b2020-01-23 16:27:54 +01006501 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006502 /* a handshake was requested */
6503 return 0;
6504
Emeric Brun46591952012-05-18 15:47:34 +02006505 /* read the largest possible block. For this, we perform only one call
6506 * to recv() unless the buffer wraps and we exactly fill the first hunk,
6507 * in which case we accept to do it once again. A new attempt is made on
6508 * EINTR too.
6509 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01006510 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006511
Willy Tarreau591d4452018-06-15 17:21:00 +02006512 try = b_contig_space(buf);
6513 if (!try)
6514 break;
6515
Willy Tarreauabf08d92014-01-14 11:31:27 +01006516 if (try > count)
6517 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02006518
Olivier Houchard66ab4982019-02-26 18:37:15 +01006519 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02006520
Emeric Brune1f38db2012-09-03 20:36:47 +02006521 if (conn->flags & CO_FL_ERROR) {
6522 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006523 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006524 }
Emeric Brun46591952012-05-18 15:47:34 +02006525 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006526 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006527 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006528 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006529 }
Emeric Brun46591952012-05-18 15:47:34 +02006530 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006531 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006532 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006533 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006534 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006535 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006536#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006537 /* Async mode can be re-enabled, because we're leaving data state.*/
6538 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006539 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006540#endif
Emeric Brun46591952012-05-18 15:47:34 +02006541 break;
6542 }
6543 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006544 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006545 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6546 SUB_RETRY_RECV,
6547 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006548 /* handshake is running, and it may need to re-enable read */
6549 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006550#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006551 /* Async mode can be re-enabled, because we're leaving data state.*/
6552 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006553 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006554#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006555 break;
6556 }
Emeric Brun46591952012-05-18 15:47:34 +02006557 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006558 } else if (ret == SSL_ERROR_ZERO_RETURN)
6559 goto read0;
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006560 else if (ret == SSL_ERROR_SSL) {
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006561 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
6562 if (ctx && !ctx->error_code)
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006563 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006564 conn->err_code = CO_ERR_SSL_FATAL;
6565 }
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006566 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6567 * stack before shutting down the connection for
6568 * reading. */
Willy Tarreauacef5e22022-04-25 20:32:15 +02006569 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN || errno == EWOULDBLOCK))
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006570 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006571 /* otherwise it's a real error */
6572 goto out_error;
6573 }
6574 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006575 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006576 return done;
6577
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006578 clear_ssl_error:
6579 /* Clear openssl global errors stack */
6580 ssl_sock_dump_errors(conn);
6581 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006582 read0:
6583 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006584 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006585
Emeric Brun46591952012-05-18 15:47:34 +02006586 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006587 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006588 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006589 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006590 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006591 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006592}
6593
6594
Willy Tarreau787db9a2018-06-14 18:31:46 +02006595/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6596 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6597 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006598 * Only one call to send() is performed, unless the buffer wraps, in which case
6599 * a second call may be performed. The connection's flags are updated with
6600 * whatever special event is detected (error, empty). The caller is responsible
6601 * for taking care of those events and avoiding the call if inappropriate. The
6602 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006603 * is responsible for this. The buffer's output is not adjusted, it's up to the
6604 * caller to take care of this. It's up to the caller to update the buffer's
6605 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006606 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006607static size_t ssl_sock_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags)
Emeric Brun46591952012-05-18 15:47:34 +02006608{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006609 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006610 ssize_t ret;
6611 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006612
6613 done = 0;
6614
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006615 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006616 goto out_error;
6617
Willy Tarreau911db9b2020-01-23 16:27:54 +01006618 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006619 /* a handshake was requested */
6620 return 0;
6621
6622 /* send the largest possible block. For this we perform only one call
6623 * to send() unless the buffer wraps and we exactly fill the first hunk,
6624 * in which case we accept to do it once again.
6625 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006626 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006627#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006628 size_t written_data;
6629#endif
6630
Willy Tarreau787db9a2018-06-14 18:31:46 +02006631 try = b_contig_data(buf, done);
6632 if (try > count)
6633 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006634
Thomas Prückl10243932022-04-27 13:04:54 +02006635 if (global_ssl.hard_max_record && try > global_ssl.hard_max_record)
6636 try = global_ssl.hard_max_record;
6637
Willy Tarreau7bed9452014-02-02 02:00:24 +01006638 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006639 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006640 global_ssl.max_record && try > global_ssl.max_record) {
6641 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006642 }
6643 else {
6644 /* we need to keep the information about the fact that
6645 * we're not limiting the upcoming send(), because if it
6646 * fails, we'll have to retry with at least as many data.
6647 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006648 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006649 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006650
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006651#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006652 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006653 unsigned int max_early;
6654
Olivier Houchard522eea72017-11-03 16:27:47 +01006655 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006656 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006657 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006658 if (SSL_get0_session(ctx->ssl))
6659 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006660 else
6661 max_early = 0;
6662 }
6663
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006664 if (try + ctx->sent_early_data > max_early) {
6665 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006666 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006667 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006668 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006669 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006670 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006671 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006672 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006673 if (ret == 1) {
6674 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006675 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006676 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006677 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006678 /* Initiate the handshake, now */
6679 tasklet_wakeup(ctx->wait_event.tasklet);
6680 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006681
Olivier Houchardc2aae742017-09-22 18:26:28 +02006682 }
6683
6684 } else
6685#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006686 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006687
Emeric Brune1f38db2012-09-03 20:36:47 +02006688 if (conn->flags & CO_FL_ERROR) {
6689 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006690 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006691 }
Emeric Brun46591952012-05-18 15:47:34 +02006692 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006693 /* A send succeeded, so we can consider ourself connected */
6694 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006695 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006696 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006697 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006698 }
6699 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006700 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006701
Emeric Brun46591952012-05-18 15:47:34 +02006702 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006703 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006704 /* handshake is running, and it may need to re-enable write */
6705 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006706 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006707#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006708 /* Async mode can be re-enabled, because we're leaving data state.*/
6709 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006710 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006711#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006712 break;
6713 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006714
Emeric Brun46591952012-05-18 15:47:34 +02006715 break;
6716 }
6717 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006718 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006719 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006720 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6721 SUB_RETRY_RECV,
6722 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006723#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006724 /* Async mode can be re-enabled, because we're leaving data state.*/
6725 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006726 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006727#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006728 break;
6729 }
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006730 else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) {
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006731 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
6732
Willy Tarreau3a0a0d62022-04-12 07:31:06 +02006733 if (ctx && !ctx->error_code)
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006734 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006735 conn->err_code = CO_ERR_SSL_FATAL;
6736 }
Emeric Brun46591952012-05-18 15:47:34 +02006737 goto out_error;
6738 }
6739 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006740 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006741 return done;
6742
6743 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006744 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006745 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006746 ERR_clear_error();
6747
Emeric Brun46591952012-05-18 15:47:34 +02006748 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006749 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006750}
6751
Willy Tarreau832e2422021-05-13 10:11:03 +02006752void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006753
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006754 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006755
Olivier Houchardea8dd942019-05-20 14:02:16 +02006756
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006757 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006758 if (ctx->wait_event.events != 0)
6759 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6760 ctx->wait_event.events,
6761 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006762 if (ctx->subs) {
6763 ctx->subs->events = 0;
6764 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006765 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006766
Olivier Houchard692c1d02019-05-23 18:41:47 +02006767 if (ctx->xprt->close)
6768 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006769#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006770 if (global_ssl.async) {
6771 OSSL_ASYNC_FD all_fd[32], afd;
6772 size_t num_all_fds = 0;
6773 int i;
6774
Olivier Houchard66ab4982019-02-26 18:37:15 +01006775 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006776 if (num_all_fds > 32) {
6777 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6778 return;
6779 }
6780
Olivier Houchard66ab4982019-02-26 18:37:15 +01006781 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006782
6783 /* If an async job is pending, we must try to
6784 to catch the end using polling before calling
6785 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006786 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006787 for (i=0 ; i < num_all_fds ; i++) {
6788 /* switch on an handler designed to
6789 * handle the SSL_free
6790 */
6791 afd = all_fd[i];
6792 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006793 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006794 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006795 /* To ensure that the fd cache won't be used
6796 * and we'll catch a real RD event.
6797 */
6798 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006799 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006800 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006801 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006802 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006803 return;
6804 }
Emeric Brun3854e012017-05-17 20:42:48 +02006805 /* Else we can remove the fds from the fdtab
6806 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006807 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006808 * because the fd is owned by the engine.
6809 * the engine is responsible to close
6810 */
Emeric Brun7d392a52022-07-01 17:36:50 +02006811 for (i=0 ; i < num_all_fds ; i++) {
6812 /* We want to remove the fd from the fdtab
6813 * but we flag it to disown because the
6814 * close is performed by the engine itself
6815 */
6816 fdtab[all_fd[i]].state |= FD_DISOWN;
6817 fd_delete(all_fd[i]);
6818 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006819 }
6820#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006821 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006822 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006823 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006824 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau82531f62021-10-06 12:15:18 +02006825 _HA_ATOMIC_DEC(&global.sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006826 }
Emeric Brun46591952012-05-18 15:47:34 +02006827}
6828
6829/* This function tries to perform a clean shutdown on an SSL connection, and in
6830 * any case, flags the connection as reusable if no handshake was in progress.
6831 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006832static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006833{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006834 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006835
Willy Tarreau911db9b2020-01-23 16:27:54 +01006836 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006837 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006838 if (!clean)
6839 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006840 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006841 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006842 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006843 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006844 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006845 ERR_clear_error();
6846 }
Emeric Brun46591952012-05-18 15:47:34 +02006847}
6848
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006849
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006850/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006851int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6852{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006853 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
William Lallemandd4f946c2019-12-05 10:26:40 +01006854 X509 *crt;
6855
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006856 if (!ctx)
William Lallemandd4f946c2019-12-05 10:26:40 +01006857 return 0;
William Lallemandd4f946c2019-12-05 10:26:40 +01006858 crt = SSL_get_certificate(ctx->ssl);
6859 if (!crt)
6860 return 0;
6861
6862 return cert_get_pkey_algo(crt, out);
6863}
6864
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006865/* used for ppv2 cert signature (can be used for logging) */
6866const char *ssl_sock_get_cert_sig(struct connection *conn)
6867{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006868 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006869
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006870 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6871 X509 *crt;
6872
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006873 if (!ctx)
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006874 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006875 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006876 if (!crt)
6877 return NULL;
6878 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6879 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6880}
6881
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006882/* used for ppv2 authority */
6883const char *ssl_sock_get_sni(struct connection *conn)
6884{
6885#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006886 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006887
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006888 if (!ctx)
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006889 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006890 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006891#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006892 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006893#endif
6894}
6895
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006896/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006897const char *ssl_sock_get_cipher_name(struct connection *conn)
6898{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006899 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006900
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006901 if (!ctx)
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006902 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006903 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006904}
6905
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006906/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006907const char *ssl_sock_get_proto_version(struct connection *conn)
6908{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006909 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006910
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006911 if (!ctx)
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006912 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006913 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006914}
6915
Olivier Houchardab28a322018-12-21 19:45:40 +01006916void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6917{
6918#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006919 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006920
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006921 if (!ctx)
Olivier Houcharde488ea82019-06-28 14:10:33 +02006922 return;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006923 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006924#endif
6925}
6926
Willy Tarreau119a4082016-12-22 21:58:38 +01006927/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6928 * to disable SNI.
6929 */
Willy Tarreau63076412015-07-10 11:33:32 +02006930void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6931{
6932#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006933 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
William Lallemande18d4e82021-11-17 02:59:21 +01006934 struct server *s;
Willy Tarreau119a4082016-12-22 21:58:38 +01006935 char *prev_name;
6936
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006937 if (!ctx)
Willy Tarreau63076412015-07-10 11:33:32 +02006938 return;
Willy Tarreau77bfa662021-12-23 11:12:13 +01006939
6940 BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN));
6941 BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS));
6942
William Lallemande18d4e82021-11-17 02:59:21 +01006943 s = __objt_server(conn->target);
Willy Tarreau63076412015-07-10 11:33:32 +02006944
Willy Tarreau119a4082016-12-22 21:58:38 +01006945 /* if the SNI changes, we must destroy the reusable context so that a
William Lallemande18d4e82021-11-17 02:59:21 +01006946 * new connection will present a new SNI. compare with the SNI
6947 * previously stored in the reused_sess */
6948 /* the RWLOCK is used to ensure that we are not trying to flush the
6949 * cache from the CLI */
6950
6951 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
6952 prev_name = s->ssl_ctx.reused_sess[tid].sni;
Willy Tarreau119a4082016-12-22 21:58:38 +01006953 if ((!prev_name && hostname) ||
6954 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006955 SSL_set_session(ctx->ssl, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01006956 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau119a4082016-12-22 21:58:38 +01006957
Olivier Houchard66ab4982019-02-26 18:37:15 +01006958 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006959#endif
6960}
6961
Emeric Brun0abf8362014-06-24 18:26:41 +02006962/* Extract peer certificate's common name into the chunk dest
6963 * Returns
6964 * the len of the extracted common name
6965 * or 0 if no CN found in DN
6966 * or -1 on error case (i.e. no peer certificate)
6967 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006968int ssl_sock_get_remote_common_name(struct connection *conn,
6969 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006970{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006971 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
David Safb76832014-05-08 23:42:08 -04006972 X509 *crt = NULL;
6973 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006974 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006975 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006976 .area = (char *)&find_cn,
6977 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006978 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006979 int result = -1;
David Safb76832014-05-08 23:42:08 -04006980
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006981 if (!ctx)
Emeric Brun0abf8362014-06-24 18:26:41 +02006982 goto out;
David Safb76832014-05-08 23:42:08 -04006983
6984 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006985 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006986 if (!crt)
6987 goto out;
6988
6989 name = X509_get_subject_name(crt);
6990 if (!name)
6991 goto out;
David Safb76832014-05-08 23:42:08 -04006992
Emeric Brun0abf8362014-06-24 18:26:41 +02006993 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6994out:
David Safb76832014-05-08 23:42:08 -04006995 if (crt)
6996 X509_free(crt);
6997
6998 return result;
6999}
7000
Dave McCowan328fb582014-07-30 10:39:13 -04007001/* returns 1 if client passed a certificate for this session, 0 if not */
7002int ssl_sock_get_cert_used_sess(struct connection *conn)
7003{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007004 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Dave McCowan328fb582014-07-30 10:39:13 -04007005 X509 *crt = NULL;
7006
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007007 if (!ctx)
Dave McCowan328fb582014-07-30 10:39:13 -04007008 return 0;
7009
7010 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01007011 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04007012 if (!crt)
7013 return 0;
7014
7015 X509_free(crt);
7016 return 1;
7017}
7018
7019/* returns 1 if client passed a certificate for this connection, 0 if not */
7020int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04007021{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007022 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007023
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007024 if (!ctx)
David Safb76832014-05-08 23:42:08 -04007025 return 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007026 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04007027}
7028
7029/* returns result from SSL verify */
7030unsigned int ssl_sock_get_verify_result(struct connection *conn)
7031{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007032 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01007033
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007034 if (!ctx)
David Safb76832014-05-08 23:42:08 -04007035 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007036 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04007037}
7038
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007039/* Returns the application layer protocol name in <str> and <len> when known.
7040 * Zero is returned if the protocol name was not found, otherwise non-zero is
7041 * returned. The string is allocated in the SSL context and doesn't have to be
7042 * freed by the caller. NPN is also checked if available since older versions
7043 * of openssl (1.0.1) which are more common in field only support this one.
7044 */
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01007045int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007046{
Olivier Houchard66ab4982019-02-26 18:37:15 +01007047#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
7048 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01007049 struct ssl_sock_ctx *ctx = xprt_ctx;
7050 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007051 return 0;
7052
7053 *str = NULL;
7054
7055#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01007056 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007057 if (*str)
7058 return 1;
7059#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01007060#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01007061 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007062 if (*str)
7063 return 1;
7064#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01007065#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007066 return 0;
7067}
7068
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007069/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02007070int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007071{
7072 X509 *ca;
7073 X509_NAME *name = NULL;
7074 ASN1_OCTET_STRING *skid = NULL;
7075 STACK_OF(X509) *chain = NULL;
7076 struct issuer_chain *issuer;
7077 struct eb64_node *node;
7078 char *path;
7079 u64 key;
7080 int ret = 0;
7081
7082 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
7083 if (chain == NULL) {
7084 chain = sk_X509_new_null();
7085 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
7086 name = X509_get_subject_name(ca);
7087 }
7088 if (!sk_X509_push(chain, ca)) {
7089 X509_free(ca);
7090 goto end;
7091 }
7092 }
7093 if (!chain) {
7094 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
7095 goto end;
7096 }
7097 if (!skid) {
7098 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
7099 goto end;
7100 }
7101 if (!name) {
7102 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
7103 goto end;
7104 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01007105 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01007106 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007107 issuer = container_of(node, typeof(*issuer), node);
7108 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
7109 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
7110 goto end;
7111 }
7112 }
7113 issuer = calloc(1, sizeof *issuer);
7114 path = strdup(fp);
7115 if (!issuer || !path) {
7116 free(issuer);
7117 free(path);
7118 goto end;
7119 }
7120 issuer->node.key = key;
7121 issuer->path = path;
7122 issuer->chain = chain;
7123 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01007124 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007125 ret = 1;
7126 end:
7127 if (skid)
7128 ASN1_OCTET_STRING_free(skid);
7129 if (chain)
7130 sk_X509_pop_free(chain, X509_free);
7131 return ret;
7132}
7133
William Lallemandda8584c2020-05-14 10:14:37 +02007134 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007135{
7136 AUTHORITY_KEYID *akid;
7137 struct issuer_chain *issuer = NULL;
7138
7139 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01007140 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007141 struct eb64_node *node;
7142 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01007143 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007144 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
7145 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
7146 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
7147 issuer = ti;
7148 break;
7149 }
7150 }
7151 AUTHORITY_KEYID_free(akid);
7152 }
7153 return issuer;
7154}
7155
William Lallemanddad31052020-05-14 17:47:32 +02007156void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007157{
7158 struct eb64_node *node, *back;
7159 struct issuer_chain *issuer;
7160
William Lallemande0f3fd52020-02-25 14:53:06 +01007161 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007162 while (node) {
7163 issuer = container_of(node, typeof(*issuer), node);
7164 back = eb64_next(node);
7165 eb64_delete(node);
7166 free(issuer->path);
7167 sk_X509_pop_free(issuer->chain, X509_free);
7168 free(issuer);
7169 node = back;
7170 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007171}
7172
William Lallemandd7bfbe22022-04-11 18:41:24 +02007173#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007174static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01007175 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007176
Emeric Brun3854e012017-05-17 20:42:48 +02007177 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01007178 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007179 err_code = ERR_ABORT;
7180 }
7181 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01007182}
Willy Tarreau9ceda382016-12-21 23:13:03 +01007183#endif
7184
Willy Tarreaude5675a2021-01-20 14:41:29 +01007185/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007186 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01007187 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01007188static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01007189{
7190 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007191 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007192
7193 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007194 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007195
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007196 if (sctx->conn != conn) {
7197 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
7198 ret = 1;
7199 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01007200 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
7201
7202 if (sctx->xprt) {
7203 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
7204 if (sctx->xprt_ctx)
7205 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
7206 }
7207
7208 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007209
7210 /* as soon as a shutdown is reported the lower layer unregisters its
7211 * subscriber, so the situations below are transient and rare enough to
7212 * be reported as suspicious. In any case they shouldn't last.
7213 */
7214 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
7215 ret = 1;
7216 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
7217 ret = 1;
7218
Willy Tarreaude5675a2021-01-20 14:41:29 +01007219 chunk_appendf(&trash, " .subs=%p", sctx->subs);
7220 if (sctx->subs) {
7221 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007222 if (sctx->subs->tasklet->calls >= 1000000)
7223 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007224 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
7225 sctx->subs->tasklet->calls,
7226 sctx->subs->tasklet->context);
7227 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
7228 chunk_appendf(&trash, ")");
7229 }
7230 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
7231 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007232 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007233}
7234
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007235#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02007236/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007237 * each reference. The variable <ref> must point to the current node's list
7238 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02007239 */
William Lallemand32af2032016-10-29 18:09:35 +02007240static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007241struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02007242{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007243 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007244 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02007245
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007246 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007247 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007248 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02007249
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007250 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02007251}
7252
7253static inline
7254struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
7255{
7256 int id;
7257 char *error;
7258
7259 /* If the reference starts by a '#', this is numeric id. */
7260 if (reference[0] == '#') {
7261 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
7262 id = strtol(reference + 1, &error, 10);
7263 if (*error != '\0')
7264 return NULL;
7265
7266 /* Perform the unique id lookup. */
7267 return tlskeys_ref_lookupid(id);
7268 }
7269
7270 /* Perform the string lookup. */
7271 return tlskeys_ref_lookup(reference);
7272}
7273#endif
7274
7275
7276#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7277
Willy Tarreaua9380522022-05-05 08:50:17 +02007278/* dumps all tls keys. Relies on the show_keys_ctx context from the appctx. */
Willy Tarreaubd338642022-05-05 08:59:17 +02007279static int cli_io_handler_tlskeys_files(struct appctx *appctx)
7280{
Willy Tarreaua9380522022-05-05 08:50:17 +02007281 struct show_keys_ctx *ctx = appctx->svcctx;
William Lallemand32af2032016-10-29 18:09:35 +02007282
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007283 switch (ctx->state) {
7284 case SHOW_KEYS_INIT:
William Lallemand32af2032016-10-29 18:09:35 +02007285 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08007286 * quit the function with returning 0. The function is called
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007287 * later and restart at the state "SHOW_KEYS_INIT".
William Lallemand32af2032016-10-29 18:09:35 +02007288 */
7289 chunk_reset(&trash);
7290
Willy Tarreaubd338642022-05-05 08:59:17 +02007291 if (ctx->dump_entries)
William Lallemand32af2032016-10-29 18:09:35 +02007292 chunk_appendf(&trash, "# id secret\n");
7293 else
7294 chunk_appendf(&trash, "# id (file)\n");
7295
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007296 if (applet_putchk(appctx, &trash) == -1)
William Lallemand32af2032016-10-29 18:09:35 +02007297 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007298
William Lallemand32af2032016-10-29 18:09:35 +02007299 /* Now, we start the browsing of the references lists.
7300 * Note that the following call to LIST_ELEM return bad pointer. The only
7301 * available field of this pointer is <list>. It is used with the function
7302 * tlskeys_list_get_next() for retruning the first available entry
7303 */
Willy Tarreaua9380522022-05-05 08:50:17 +02007304 if (ctx->next_ref == NULL)
7305 ctx->next_ref = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007306
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007307 ctx->state = SHOW_KEYS_LIST;
William Lallemand32af2032016-10-29 18:09:35 +02007308 /* fall through */
7309
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007310 case SHOW_KEYS_LIST:
Willy Tarreaua9380522022-05-05 08:50:17 +02007311 while (ctx->next_ref) {
7312 struct tls_keys_ref *ref = ctx->next_ref;
William Lallemand32af2032016-10-29 18:09:35 +02007313
7314 chunk_reset(&trash);
Willy Tarreaubd338642022-05-05 08:59:17 +02007315 if (ctx->dump_entries && ctx->next_index == 0)
William Lallemand32af2032016-10-29 18:09:35 +02007316 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007317
Willy Tarreaua9380522022-05-05 08:50:17 +02007318 if (ctx->next_index == 0)
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007319 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
7320
Willy Tarreaubd338642022-05-05 08:59:17 +02007321 if (ctx->dump_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01007322 int head;
7323
7324 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
7325 head = ref->tls_ticket_enc_index;
Willy Tarreaua9380522022-05-05 08:50:17 +02007326 while (ctx->next_index < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02007327 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02007328
7329 chunk_reset(t2);
7330 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01007331 if (ref->key_size_bits == 128) {
Willy Tarreaua9380522022-05-05 08:50:17 +02007332 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + ctx->next_index) % TLS_TICKETS_NO),
Emeric Brun9e754772019-01-10 17:51:55 +01007333 sizeof(struct tls_sess_key_128),
7334 t2->area, t2->size);
Willy Tarreaua9380522022-05-05 08:50:17 +02007335 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, ctx->next_index,
Emeric Brun9e754772019-01-10 17:51:55 +01007336 t2->area);
7337 }
7338 else if (ref->key_size_bits == 256) {
Willy Tarreaua9380522022-05-05 08:50:17 +02007339 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + ctx->next_index) % TLS_TICKETS_NO),
Emeric Brun9e754772019-01-10 17:51:55 +01007340 sizeof(struct tls_sess_key_256),
7341 t2->area, t2->size);
Willy Tarreaua9380522022-05-05 08:50:17 +02007342 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, ctx->next_index,
Emeric Brun9e754772019-01-10 17:51:55 +01007343 t2->area);
7344 }
7345 else {
7346 /* This case should never happen */
Willy Tarreaua9380522022-05-05 08:50:17 +02007347 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, ctx->next_index);
Emeric Brun9e754772019-01-10 17:51:55 +01007348 }
William Lallemand32af2032016-10-29 18:09:35 +02007349
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007350 if (applet_putchk(appctx, &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007351 /* let's try again later from this stream. We add ourselves into
7352 * this stream's users so that it can remove us upon termination.
7353 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01007354 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
William Lallemand32af2032016-10-29 18:09:35 +02007355 return 0;
7356 }
Willy Tarreaua9380522022-05-05 08:50:17 +02007357 ctx->next_index++;
William Lallemand32af2032016-10-29 18:09:35 +02007358 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01007359 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaua9380522022-05-05 08:50:17 +02007360 ctx->next_index = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007361 }
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007362 if (applet_putchk(appctx, &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007363 /* let's try again later from this stream. We add ourselves into
7364 * this stream's users so that it can remove us upon termination.
7365 */
William Lallemand32af2032016-10-29 18:09:35 +02007366 return 0;
7367 }
7368
Willy Tarreaua9380522022-05-05 08:50:17 +02007369 if (ctx->names_only == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02007370 break;
7371
7372 /* get next list entry and check the end of the list */
Willy Tarreaua9380522022-05-05 08:50:17 +02007373 ctx->next_ref = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007374 }
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007375 ctx->state = SHOW_KEYS_DONE;
William Lallemand32af2032016-10-29 18:09:35 +02007376 /* fall through */
7377
7378 default:
William Lallemand32af2032016-10-29 18:09:35 +02007379 return 1;
7380 }
7381 return 0;
7382}
7383
Willy Tarreaua9380522022-05-05 08:50:17 +02007384/* Prepares a "show_keys_ctx" and sets the appropriate io_handler if needed */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007385static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007386{
Willy Tarreaua9380522022-05-05 08:50:17 +02007387 struct show_keys_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
7388
William Lallemand32af2032016-10-29 18:09:35 +02007389 /* no parameter, shows only file list */
7390 if (!*args[2]) {
Willy Tarreaua9380522022-05-05 08:50:17 +02007391 ctx->names_only = 1;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007392 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007393 }
7394
7395 if (args[2][0] == '*') {
7396 /* list every TLS ticket keys */
Willy Tarreaua9380522022-05-05 08:50:17 +02007397 ctx->names_only = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007398 } else {
Willy Tarreaua9380522022-05-05 08:50:17 +02007399 ctx->next_ref = tlskeys_ref_lookup_ref(args[2]);
7400 if (!ctx->next_ref)
Willy Tarreau9d008692019-08-09 11:21:01 +02007401 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007402 }
Willy Tarreaubd338642022-05-05 08:59:17 +02007403
7404 ctx->dump_entries = 1;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007405 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007406}
7407
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007408static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007409{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007410 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007411 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007412
William Lallemand32af2032016-10-29 18:09:35 +02007413 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007414 if (!*args[3] || !*args[4])
7415 return cli_err(appctx, "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007416
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007417 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007418 if (!ref)
7419 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007420
Willy Tarreau1c913e42018-08-22 05:26:57 +02007421 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007422 if (ret < 0)
7423 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01007424
Willy Tarreau1c913e42018-08-22 05:26:57 +02007425 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02007426 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
7427 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007428
Willy Tarreau9d008692019-08-09 11:21:01 +02007429 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007430}
William Lallemandd4f946c2019-12-05 10:26:40 +01007431#endif
William Lallemand419e6342020-04-08 12:05:39 +02007432
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007433static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007434{
7435#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
7436 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007437 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007438
7439 if (!payload)
7440 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02007441
7442 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007443 if (!*payload)
7444 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007445
7446 /* remove \r and \n from the payload */
7447 for (i = 0, j = 0; payload[i]; i++) {
7448 if (payload[i] == '\r' || payload[i] == '\n')
7449 continue;
7450 payload[j++] = payload[i];
7451 }
7452 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007453
Willy Tarreau1c913e42018-08-22 05:26:57 +02007454 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007455 if (ret < 0)
7456 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007457
Willy Tarreau1c913e42018-08-22 05:26:57 +02007458 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02007459 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02007460 if (err)
7461 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
7462 else
7463 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007464 }
Willy Tarreau9d008692019-08-09 11:21:01 +02007465
7466 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007467#else
Willy Tarreau9d008692019-08-09 11:21:01 +02007468 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007469#endif
7470
Elliot Otchet71f82972020-01-15 08:12:14 -05007471}
7472
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007473
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007474#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007475static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
7476#endif
7477
Willy Tarreau170b35b2022-05-05 09:09:15 +02007478/* parsing function for 'show ssl ocsp-response [id]'. If an entry is forced,
7479 * it's set into appctx->svcctx.
7480 */
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007481static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
7482{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007483#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007484 if (*args[3]) {
7485 struct certificate_ocsp *ocsp = NULL;
7486 char *key = NULL;
7487 int key_length = 0;
7488
7489 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
7490 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
7491 }
7492
7493 if (parse_binary(args[3], &key, &key_length, NULL)) {
7494
7495 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
7496 memcpy(full_key, key, key_length);
7497
7498 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
7499 }
7500 if (key)
7501 ha_free(&key);
7502
7503 if (!ocsp) {
7504 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
7505 }
7506
Willy Tarreau170b35b2022-05-05 09:09:15 +02007507 appctx->svcctx = ocsp;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007508 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
7509 }
7510
7511 return 0;
7512
7513#else
7514 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7515#endif
7516}
7517
7518
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007519#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007520/*
7521 * This function dumps the details of an OCSP_CERTID. It is based on
7522 * ocsp_certid_print in OpenSSL.
7523 */
7524static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
7525{
7526 ASN1_OCTET_STRING *piNameHash = NULL;
7527 ASN1_OCTET_STRING *piKeyHash = NULL;
7528 ASN1_INTEGER *pSerial = NULL;
7529
7530 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7531
7532 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7533 indent += 2;
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007534 BIO_printf(bp, "%*sIssuer Name Hash: ", indent, "");
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007535 i2a_ASN1_STRING(bp, piNameHash, 0);
7536 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7537 i2a_ASN1_STRING(bp, piKeyHash, 0);
7538 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7539 i2a_ASN1_INTEGER(bp, pSerial);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007540 }
7541 return 1;
7542}
7543#endif
7544
7545/*
7546 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7547 * is managed in cli_io_handler_show_ocspresponse_detail.
Willy Tarreau170b35b2022-05-05 09:09:15 +02007548 * The current entry is taken from appctx->svcctx.
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007549 */
7550static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7551{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007552#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007553 struct buffer *trash = alloc_trash_chunk();
7554 struct buffer *tmp = NULL;
7555 struct ebmb_node *node;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007556 struct certificate_ocsp *ocsp = NULL;
7557 BIO *bio = NULL;
7558 int write = -1;
7559
7560 if (trash == NULL)
7561 return 1;
7562
7563 tmp = alloc_trash_chunk();
7564 if (!tmp)
7565 goto end;
7566
7567 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7568 goto end;
7569
Willy Tarreau170b35b2022-05-05 09:09:15 +02007570 if (!appctx->svcctx) {
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007571 chunk_appendf(trash, "# Certificate IDs\n");
7572 node = ebmb_first(&cert_ocsp_tree);
7573 } else {
Willy Tarreau170b35b2022-05-05 09:09:15 +02007574 node = &((struct certificate_ocsp *)appctx->svcctx)->key;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007575 }
7576
7577 while (node) {
7578 OCSP_CERTID *certid = NULL;
7579 const unsigned char *p = NULL;
7580 int i;
7581
7582 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7583
7584 /* Dump the key in hexadecimal */
7585 chunk_appendf(trash, "Certificate ID key : ");
7586 for (i = 0; i < ocsp->key_length; ++i) {
7587 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7588 }
7589 chunk_appendf(trash, "\n");
7590
7591 p = ocsp->key_data;
7592
7593 /* Decode the certificate ID (serialized into the key). */
7594 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007595 if (!certid)
7596 goto end;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007597
7598 /* Dump the CERTID info */
7599 ocsp_certid_print(bio, certid, 1);
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007600 OCSP_CERTID_free(certid);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007601 write = BIO_read(bio, tmp->area, tmp->size-1);
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007602 /* strip trailing LFs */
7603 while (write > 0 && tmp->area[write-1] == '\n')
7604 write--;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007605 tmp->area[write] = '\0';
7606
7607 chunk_appendf(trash, "%s\n", tmp->area);
7608
7609 node = ebmb_next(node);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007610 if (applet_putchk(appctx, trash) == -1)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007611 goto yield;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007612 }
7613
7614end:
Willy Tarreau170b35b2022-05-05 09:09:15 +02007615 appctx->svcctx = NULL;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007616 if (trash)
7617 free_trash_chunk(trash);
7618 if (tmp)
7619 free_trash_chunk(tmp);
7620 if (bio)
7621 BIO_free(bio);
7622 return 1;
7623
7624yield:
7625
7626 if (trash)
7627 free_trash_chunk(trash);
7628 if (tmp)
7629 free_trash_chunk(tmp);
7630 if (bio)
7631 BIO_free(bio);
Willy Tarreau170b35b2022-05-05 09:09:15 +02007632 appctx->svcctx = ocsp;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007633 return 0;
7634#else
7635 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7636#endif
7637}
7638
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007639#ifdef HAVE_SSL_PROVIDERS
7640struct provider_name {
7641 const char *name;
7642 struct list list;
7643};
7644
7645
7646static int ssl_provider_get_name_cb(OSSL_PROVIDER *provider, void *cbdata)
7647{
7648 struct list *provider_names = cbdata;
7649 struct provider_name *item = NULL;
7650 const char *name = OSSL_PROVIDER_get0_name(provider);
7651
7652 if (!provider_names)
7653 return 0;
7654
7655 item = calloc(1, sizeof(*item));
7656
7657 if (!item)
7658 return 0;
7659
7660 item->name = name;
7661 LIST_APPEND(provider_names, &item->list);
7662
7663 return 1;
7664}
7665
7666static void ssl_provider_get_name_list(struct list *provider_names)
7667{
7668 if (!provider_names)
7669 return;
7670
7671 OSSL_PROVIDER_do_all(NULL, ssl_provider_get_name_cb, provider_names);
7672}
7673
7674static void ssl_provider_clear_name_list(struct list *provider_names)
7675{
7676 struct provider_name *item = NULL, *item_s = NULL;
7677
7678 if (provider_names) {
7679 list_for_each_entry_safe(item, item_s, provider_names, list) {
7680 LIST_DELETE(&item->list);
7681 free(item);
7682 }
7683 }
7684}
7685
7686static int cli_io_handler_show_providers(struct appctx *appctx)
7687{
7688 struct buffer *trash = get_trash_chunk();
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007689 struct list provider_names;
7690 struct provider_name *name;
7691
7692 LIST_INIT(&provider_names);
7693
7694 chunk_appendf(trash, "Loaded providers : \n");
7695
7696 ssl_provider_get_name_list(&provider_names);
7697
7698 list_for_each_entry(name, &provider_names, list) {
7699 chunk_appendf(trash, "\t- %s\n", name->name);
7700 }
7701
7702 ssl_provider_clear_name_list(&provider_names);
7703
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007704 if (applet_putchk(appctx, trash) == -1)
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007705 goto yield;
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007706
7707 return 1;
7708
7709yield:
7710 return 0;
7711}
7712#endif
7713
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007714
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007715#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007716/*
7717 * Dump the details about an OCSP response in DER format stored in
7718 * <ocsp_response> into buffer <out>.
7719 * Returns 0 in case of success.
7720 */
7721int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7722{
7723 BIO *bio = NULL;
7724 int write = -1;
7725 OCSP_RESPONSE *resp;
7726 const unsigned char *p;
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007727 int retval = -1;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007728
7729 if (!ocsp_response)
7730 return -1;
7731
7732 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7733 return -1;
7734
7735 p = (const unsigned char*)ocsp_response->area;
7736
7737 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7738 if (!resp) {
7739 chunk_appendf(out, "Unable to parse OCSP response");
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007740 goto end;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007741 }
7742
7743 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007744 struct buffer *trash = get_trash_chunk();
7745 struct ist ist_block = IST_NULL;
7746 struct ist ist_double_lf = IST_NULL;
7747 static struct ist double_lf = IST("\n\n");
7748
7749 write = BIO_read(bio, trash->area, trash->size - 1);
Remi Tricot-Le Breton1b01b7f2022-02-16 15:17:09 +01007750 if (write <= 0)
7751 goto end;
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007752 trash->data = write;
7753
7754 /* Look for empty lines in the 'trash' buffer and add a space to
7755 * the beginning to avoid having empty lines in the output
7756 * (without changing the appearance of the information
7757 * displayed).
7758 */
7759 ist_block = ist2(b_orig(trash), b_data(trash));
7760
7761 ist_double_lf = istist(ist_block, double_lf);
7762
7763 while (istlen(ist_double_lf)) {
7764 /* istptr(ist_double_lf) points to the first \n of a
7765 * \n\n pattern.
7766 */
7767 uint empty_line_offset = istptr(ist_double_lf) + 1 - istptr(ist_block);
7768
7769 /* Write up to the first '\n' of the "\n\n" pattern into
7770 * the output buffer.
7771 */
7772 b_putblk(out, istptr(ist_block), empty_line_offset);
7773 /* Add an extra space. */
7774 b_putchr(out, ' ');
7775
7776 /* Keep looking for empty lines in the rest of the data. */
7777 ist_block = istadv(ist_block, empty_line_offset);
7778
7779 ist_double_lf = istist(ist_block, double_lf);
7780 }
7781
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007782 retval = (b_istput(out, ist_block) <= 0);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007783 }
7784
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007785end:
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007786 if (bio)
7787 BIO_free(bio);
7788
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007789 OCSP_RESPONSE_free(resp);
7790
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007791 return retval;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007792}
7793
7794/*
7795 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7796 * Returns 0 in case of success.
7797 */
7798int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7799{
7800 struct certificate_ocsp *ocsp;
7801
7802 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7803 if (!ocsp)
7804 return -1;
7805
7806 return ssl_ocsp_response_print(&ocsp->response, out);
7807}
7808
7809
Willy Tarreau170b35b2022-05-05 09:09:15 +02007810/* IO handler of details "show ssl ocsp-response <id>".
7811 * The current entry is taken from appctx->svcctx.
7812 */
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007813static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7814{
7815 struct buffer *trash = alloc_trash_chunk();
Willy Tarreau170b35b2022-05-05 09:09:15 +02007816 struct certificate_ocsp *ocsp = appctx->svcctx;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007817
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007818 if (trash == NULL)
7819 return 1;
7820
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007821 if (ssl_ocsp_response_print(&ocsp->response, trash)) {
7822 free_trash_chunk(trash);
7823 return 1;
7824 }
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007825
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007826 if (applet_putchk(appctx, trash) == -1)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007827 goto yield;
Willy Tarreau170b35b2022-05-05 09:09:15 +02007828
7829 appctx->svcctx = NULL;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007830 if (trash)
7831 free_trash_chunk(trash);
7832 return 1;
7833
7834yield:
7835 if (trash)
7836 free_trash_chunk(trash);
7837
7838 return 0;
7839}
7840#endif
7841
William Lallemand32af2032016-10-29 18:09:35 +02007842/* register cli keywords */
7843static struct cli_kw_list cli_kws = {{ },{
7844#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaubd338642022-05-05 08:59:17 +02007845 { { "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 },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007846 { { "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 Lallemand32af2032016-10-29 18:09:35 +02007847#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007848 { { "set", "ssl", "ocsp-response", NULL }, "set ssl ocsp-response <resp|payload> : update a certificate's OCSP Response from a base64-encode DER", cli_parse_set_ocspresponse, NULL },
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007849
7850 { { "show", "ssl", "ocsp-response", NULL },"show ssl ocsp-response [id] : display the IDs of the OCSP responses used in memory, or the details of a single OCSP response", cli_parse_show_ocspresponse, cli_io_handler_show_ocspresponse, NULL },
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007851#ifdef HAVE_SSL_PROVIDERS
7852 { { "show", "ssl", "providers", NULL }, "show ssl providers : show loaded SSL providers", NULL, cli_io_handler_show_providers },
7853#endif
William Lallemand32af2032016-10-29 18:09:35 +02007854 { { NULL }, NULL, NULL, NULL }
7855}};
7856
Willy Tarreau0108d902018-11-25 19:14:37 +01007857INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007858
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007859/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007860struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007861 .snd_buf = ssl_sock_from_buf,
7862 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007863 .subscribe = ssl_subscribe,
7864 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007865 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007866 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007867 .rcv_pipe = NULL,
7868 .snd_pipe = NULL,
7869 .shutr = NULL,
7870 .shutw = ssl_sock_shutw,
7871 .close = ssl_sock_close,
7872 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007873 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007874 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007875 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007876 .prepare_srv = ssl_sock_prepare_srv_ctx,
7877 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007878 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007879 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007880 .set_idle = ssl_set_idle,
7881 .set_used = ssl_set_used,
Willy Tarreaude827952022-04-11 10:43:28 +02007882 .get_ssl_sock_ctx = ssl_sock_get_ctx,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007883 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007884 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007885};
7886
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007887enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7888 struct session *sess, struct stream *s, int flags)
7889{
7890 struct connection *conn;
7891
7892 conn = objt_conn(sess->origin);
7893
Willy Tarreaub52d4d22022-05-27 10:44:39 +02007894 if (conn) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007895 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Willy Tarreaub52d4d22022-05-27 10:44:39 +02007896 sc_ep_set(s->scf, SE_FL_WAIT_FOR_HS);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007897 s->req.flags |= CF_READ_NULL;
7898 return ACT_RET_YIELD;
7899 }
7900 }
7901 return (ACT_RET_CONT);
7902}
7903
7904static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7905{
7906 rule->action_ptr = ssl_action_wait_for_hs;
7907
7908 return ACT_RET_PRS_OK;
7909}
7910
7911static struct action_kw_list http_req_actions = {ILH, {
7912 { "wait-for-handshake", ssl_parse_wait_for_hs },
7913 { /* END */ }
7914}};
7915
Willy Tarreau0108d902018-11-25 19:14:37 +01007916INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7917
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007918#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007919
7920static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7921{
7922 if (ptr) {
7923 chunk_destroy(ptr);
7924 free(ptr);
7925 }
7926}
7927
7928#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007929
7930#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7931static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7932{
7933 struct ocsp_cbk_arg *ocsp_arg;
7934
7935 if (ptr) {
7936 ocsp_arg = ptr;
7937
7938 if (ocsp_arg->is_single) {
7939 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7940 ocsp_arg->s_ocsp = NULL;
7941 } else {
7942 int i;
7943
7944 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7945 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7946 ocsp_arg->m_ocsp[i] = NULL;
7947 }
7948 }
7949 free(ocsp_arg);
7950 }
7951}
7952#endif
7953
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007954static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7955{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007956 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007957}
William Lallemand7d42ef52020-07-06 11:41:30 +02007958
William Lallemand722180a2021-06-09 16:46:12 +02007959#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007960static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7961{
7962 struct ssl_keylog *keylog;
7963
7964 if (!ptr)
7965 return;
7966
7967 keylog = ptr;
7968
7969 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7970 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7971 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7972 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7973 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7974 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7975 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7976 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7977
7978 pool_free(pool_head_ssl_keylog, ptr);
7979}
7980#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007981
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007982static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7983{
7984 if (!ptr)
7985 return;
7986
7987 X509_free((X509*)ptr);
7988}
7989
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01007990static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7991{
7992 pool_free(ssl_sock_client_sni_pool, ptr);
7993}
7994
Willy Tarreau92faadf2012-10-10 23:04:25 +02007995static void __ssl_sock_init(void)
7996{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007997#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007998 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007999 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008000#endif
Emeric Brun46591952012-05-18 15:47:34 +02008001
Willy Tarreauef934602016-12-22 23:12:01 +01008002 if (global_ssl.listen_default_ciphers)
8003 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
8004 if (global_ssl.connect_default_ciphers)
8005 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05008006#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008007 if (global_ssl.listen_default_ciphersuites)
8008 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
8009 if (global_ssl.connect_default_ciphersuites)
8010 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
8011#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01008012
Willy Tarreau13e14102016-12-22 20:25:26 +01008013 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02008014#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02008015 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08008016#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008017#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02008018 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05008019 n = sk_SSL_COMP_num(cm);
8020 while (n--) {
8021 (void) sk_SSL_COMP_pop(cm);
8022 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008023#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05008024
Willy Tarreau5db847a2019-05-09 14:13:35 +02008025#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02008026 ssl_locking_init();
8027#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05008028#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01008029 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
8030#endif
William Lallemand76b4a122020-08-04 17:41:39 +02008031
8032#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
8033 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
8034#endif
8035
Thierry FOURNIER28962c92018-06-17 21:37:05 +02008036 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02008037 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01008038#ifdef USE_QUIC
8039 ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
8040#endif /* USE_QUIC */
William Lallemand722180a2021-06-09 16:46:12 +02008041#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02008042 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
8043#endif
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02008044 ssl_client_crt_ref_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_crt_free_func);
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01008045 ssl_client_sni_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_sni_free_func);
William Lallemandd7bfbe22022-04-11 18:41:24 +02008046#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Grant Zhang872f9c22017-01-21 01:10:18 +00008047 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008048 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02008049#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01008050#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
8051 hap_register_post_check(tlskeys_finalize_config);
8052#endif
Willy Tarreau80713382018-11-26 10:19:54 +01008053
8054 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
8055 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
8056
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01008057 hap_register_post_deinit(ssl_free_global_issuers);
8058
Willy Tarreau80713382018-11-26 10:19:54 +01008059#ifndef OPENSSL_NO_DH
8060 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
8061 hap_register_post_deinit(ssl_free_dh);
8062#endif
William Lallemandd7bfbe22022-04-11 18:41:24 +02008063#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Willy Tarreau80713382018-11-26 10:19:54 +01008064 hap_register_post_deinit(ssl_free_engines);
8065#endif
Remi Tricot-Le Breton1746a382022-05-16 16:24:33 +02008066#ifdef HAVE_SSL_PROVIDERS
8067 hap_register_post_deinit(ssl_unload_providers);
8068#endif
Remi Tricot-Le Breton78a36e32022-02-11 12:04:45 +01008069#if HA_OPENSSL_VERSION_NUMBER < 0x3000000fL
Willy Tarreau80713382018-11-26 10:19:54 +01008070 /* Load SSL string for the verbose & debug mode. */
8071 ERR_load_SSL_strings();
Remi Tricot-Le Breton78a36e32022-02-11 12:04:45 +01008072#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02008073 ha_meth = BIO_meth_new(0x666, "ha methods");
8074 BIO_meth_set_write(ha_meth, ha_ssl_write);
8075 BIO_meth_set_read(ha_meth, ha_ssl_read);
8076 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
8077 BIO_meth_set_create(ha_meth, ha_ssl_new);
8078 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
8079 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
8080 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02008081
8082 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02008083
Dragan Dosen9ac98092020-05-11 15:51:45 +02008084 /* Try to register dedicated SSL/TLS protocol message callbacks for
8085 * heartbleed attack (CVE-2014-0160) and clienthello.
8086 */
8087 hap_register_post_check(ssl_sock_register_msg_callbacks);
8088
Dragan Dosen1e7ed042020-05-08 18:30:00 +02008089 /* Try to free all callbacks that were registered by using
8090 * ssl_sock_register_msg_callback().
8091 */
8092 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01008093}
Willy Tarreau79367f92022-04-25 19:18:24 +02008094INITCALL0(STG_REGISTER, __ssl_sock_init);
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01008095
Willy Tarreau80713382018-11-26 10:19:54 +01008096/* Compute and register the version string */
8097static void ssl_register_build_options()
8098{
8099 char *ptr = NULL;
8100 int i;
8101
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008102 memprintf(&ptr, "Built with OpenSSL version : "
8103#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01008104 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008105#else /* OPENSSL_IS_BORINGSSL */
8106 OPENSSL_VERSION_TEXT
8107 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08008108 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02008109 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008110#endif
8111 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02008112#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008113 "no (library version too old)"
8114#elif defined(OPENSSL_NO_TLSEXT)
8115 "no (disabled via OPENSSL_NO_TLSEXT)"
8116#else
8117 "yes"
8118#endif
8119 "", ptr);
8120
8121 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
8122#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
8123 "yes"
8124#else
8125#ifdef OPENSSL_NO_TLSEXT
8126 "no (because of OPENSSL_NO_TLSEXT)"
8127#else
8128 "no (version might be too old, 0.9.8f min needed)"
8129#endif
8130#endif
8131 "", ptr);
8132
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02008133 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
8134 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
8135 if (methodVersions[i].option)
8136 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01008137
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02008138#ifdef HAVE_SSL_PROVIDERS
8139 {
8140 struct list provider_names;
8141 struct provider_name *name;
8142 LIST_INIT(&provider_names);
8143 ssl_provider_get_name_list(&provider_names);
8144
8145 memprintf(&ptr, "%s\nOpenSSL providers loaded :", ptr);
8146
8147 list_for_each_entry(name, &provider_names, list) {
8148 memprintf(&ptr, "%s %s", ptr, name->name);
8149 }
8150
8151 ssl_provider_clear_name_list(&provider_names);
8152 }
8153#endif
8154
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008155 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01008156}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008157
Willy Tarreau80713382018-11-26 10:19:54 +01008158INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02008159
William Lallemandd7bfbe22022-04-11 18:41:24 +02008160#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Grant Zhang872f9c22017-01-21 01:10:18 +00008161void ssl_free_engines(void) {
8162 struct ssl_engine_list *wl, *wlb;
8163 /* free up engine list */
8164 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
8165 ENGINE_finish(wl->e);
8166 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02008167 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00008168 free(wl);
8169 }
8170}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02008171#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02008172
Remi Tricot-Le Breton1746a382022-05-16 16:24:33 +02008173#ifdef HAVE_SSL_PROVIDERS
8174void ssl_unload_providers(void) {
8175 struct ssl_provider_list *prov, *provb;
8176 list_for_each_entry_safe(prov, provb, &openssl_providers, list) {
8177 OSSL_PROVIDER_unload(prov->provider);
8178 LIST_DELETE(&prov->list);
8179 free(prov);
8180 }
8181}
8182#endif
8183
Remi Gacogned3a23c32015-05-28 16:39:47 +02008184#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00008185void ssl_free_dh(void) {
8186 if (local_dh_1024) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008187 HASSL_DH_free(local_dh_1024);
Grant Zhang872f9c22017-01-21 01:10:18 +00008188 local_dh_1024 = NULL;
8189 }
8190 if (local_dh_2048) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008191 HASSL_DH_free(local_dh_2048);
Grant Zhang872f9c22017-01-21 01:10:18 +00008192 local_dh_2048 = NULL;
8193 }
8194 if (local_dh_4096) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008195 HASSL_DH_free(local_dh_4096);
Grant Zhang872f9c22017-01-21 01:10:18 +00008196 local_dh_4096 = NULL;
8197 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02008198 if (global_dh) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008199 HASSL_DH_free(global_dh);
Remi Gacogne47783ef2015-05-29 15:53:22 +02008200 global_dh = NULL;
8201 }
Grant Zhang872f9c22017-01-21 01:10:18 +00008202}
8203#endif
8204
Grant Zhang872f9c22017-01-21 01:10:18 +00008205static void __ssl_sock_deinit(void)
8206{
8207#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02008208 if (ssl_ctx_lru_tree) {
8209 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01008210 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02008211 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02008212#endif
8213
Willy Tarreau5db847a2019-05-09 14:13:35 +02008214#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02008215 ERR_remove_state(0);
8216 ERR_free_strings();
8217
8218 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08008219#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02008220
Willy Tarreau5db847a2019-05-09 14:13:35 +02008221#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02008222 CRYPTO_cleanup_all_ex_data();
8223#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02008224 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02008225}
Willy Tarreau79367f92022-04-25 19:18:24 +02008226REGISTER_POST_DEINIT(__ssl_sock_deinit);
Remi Gacogned3a23c32015-05-28 16:39:47 +02008227
William Dauchyf6370442020-11-14 19:25:33 +01008228
Emeric Brun46591952012-05-18 15:47:34 +02008229/*
8230 * Local variables:
8231 * c-indent-level: 8
8232 * c-basic-offset: 8
8233 * End:
8234 */