blob: 02b369a7902121a783370740e1b3fc64e3449b2a [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++) {
Willy Tarreau27a32452022-07-07 08:29:00 +0200827 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tgid, ti->ltid_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
Ilya Shipitsin52f2ff52022-07-23 23:55:19 +05003214 if (type == EVP_PKEY_EC) {
3215 keylen = global_ssl.default_dh_param;
3216 }
3217
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003218 /* The keylen supplied by OpenSSL can only be 512 or 1024.
3219 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
3220 */
3221 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
3222 keylen = EVP_PKEY_bits(pkey);
3223 }
3224
Willy Tarreauef934602016-12-22 23:12:01 +01003225 if (keylen > global_ssl.default_dh_param) {
3226 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003227 }
3228
Remi Gacogned3a341a2015-05-29 16:26:17 +02003229 if (keylen >= 4096) {
Remi Tricot-Le Bretonbed72632022-02-11 12:04:53 +01003230 if (!local_dh_4096)
3231 local_dh_4096 = ssl_get_dh_4096();
Remi Gacogne8de54152014-07-15 11:36:40 +02003232 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003233 }
3234 else if (keylen >= 2048) {
Remi Tricot-Le Bretonbed72632022-02-11 12:04:53 +01003235 if (!local_dh_2048)
3236 local_dh_2048 = ssl_get_dh_2048();
Remi Gacogne8de54152014-07-15 11:36:40 +02003237 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003238 }
3239 else {
Remi Tricot-Le Bretonbed72632022-02-11 12:04:53 +01003240 if (!local_dh_1024)
3241 local_dh_1024 = ssl_get_dh_1024();
Remi Gacogne8de54152014-07-15 11:36:40 +02003242 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003243 }
3244
3245 return dh;
3246}
3247
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003248#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003249/* Returns Diffie-Hellman parameters matching the private key length
3250 but not exceeding global_ssl.default_dh_param */
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003251static HASSL_DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen)
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003252{
3253 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
3254
3255 return ssl_get_tmp_dh(pkey);
3256}
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003257#endif
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003258
Remi Tricot-Le Breton846eda92022-02-11 12:04:50 +01003259static int ssl_sock_set_tmp_dh(SSL_CTX *ctx, HASSL_DH *dh)
3260{
3261#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
3262 return SSL_CTX_set_tmp_dh(ctx, dh);
3263#else
3264 int retval = 0;
3265 HASSL_DH_up_ref(dh);
3266
3267 retval = SSL_CTX_set0_tmp_dh_pkey(ctx, dh);
3268
3269 if (!retval)
3270 HASSL_DH_free(dh);
3271
3272 return retval;
3273#endif
3274}
3275
Remi Tricot-Le Breton5f179302022-02-11 12:04:51 +01003276#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3277static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey)
3278{
3279 HASSL_DH *dh = NULL;
3280 if (pkey && (dh = ssl_get_tmp_dh(pkey))) {
3281 HASSL_DH_up_ref(dh);
3282 if (!SSL_CTX_set0_tmp_dh_pkey(ctx, dh))
3283 HASSL_DH_free(dh);
3284 }
Remi Tricot-Le Breton5f179302022-02-11 12:04:51 +01003285}
3286#endif
3287
Remi Tricot-Le Breton09ebb332022-02-11 12:04:48 +01003288HASSL_DH *ssl_sock_get_dh_from_bio(BIO *bio)
3289{
3290#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3291 HASSL_DH *dh = NULL;
3292 OSSL_DECODER_CTX *dctx = NULL;
3293 const char *format = "PEM";
3294 const char *keytype = "DH";
3295
3296 dctx = OSSL_DECODER_CTX_new_for_pkey(&dh, format, NULL, keytype,
3297 OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
3298 NULL, NULL);
3299
3300 if (dctx == NULL || OSSL_DECODER_CTX_get_num_decoders(dctx) == 0)
3301 goto end;
3302
3303 /* The DH parameters might not be the first section found in the PEM
3304 * file so we need to iterate over all of them until we find the right
3305 * one.
3306 */
3307 while (!BIO_eof(bio) && !dh)
3308 OSSL_DECODER_from_bio(dctx, bio);
3309
3310end:
3311 OSSL_DECODER_CTX_free(dctx);
3312 return dh;
3313#else
3314 HASSL_DH *dh = NULL;
3315
3316 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
3317
3318 return dh;
3319#endif
3320}
3321
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003322static HASSL_DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003323{
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003324 HASSL_DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02003325 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003326
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003327 if (in == NULL)
3328 goto end;
3329
Remi Gacogne47783ef2015-05-29 15:53:22 +02003330 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003331 goto end;
3332
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003333 dh = ssl_sock_get_dh_from_bio(in);
Remi Gacogne47783ef2015-05-29 15:53:22 +02003334
3335end:
3336 if (in)
3337 BIO_free(in);
3338
Emeric Brune1b4ed42018-08-16 15:14:12 +02003339 ERR_clear_error();
3340
Remi Gacogne47783ef2015-05-29 15:53:22 +02003341 return dh;
3342}
3343
3344int ssl_sock_load_global_dh_param_from_file(const char *filename)
3345{
3346 global_dh = ssl_sock_get_dh_from_file(filename);
3347
3348 if (global_dh) {
3349 return 0;
3350 }
3351
3352 return -1;
3353}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003354#endif
3355
William Lallemand9117de92019-10-04 00:29:42 +02003356/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02003357static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02003358 struct bind_conf *s, struct ssl_bind_conf *conf,
3359 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003360{
3361 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003362 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003363
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003364 if (*name == '!') {
3365 neg = 1;
3366 name++;
3367 }
3368 if (*name == '*') {
3369 wild = 1;
3370 name++;
3371 }
3372 /* !* filter is a nop */
3373 if (neg && wild)
3374 return order;
3375 if (*name) {
3376 int j, len;
3377 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003378 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02003379 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003380 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02003381 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003382 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003383
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003384 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02003385 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02003386 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003387 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02003388 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003389 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003390 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003391 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003392 sc->order = order++;
3393 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02003394 sc->wild = wild;
3395 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01003396 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02003397 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003398 }
3399 return order;
3400}
3401
William Lallemand6af03992019-07-23 15:00:54 +02003402/*
William Lallemand1d29c742019-10-04 00:53:29 +02003403 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
3404 * This function can't return an error.
3405 *
3406 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
3407 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003408void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02003409{
3410
3411 struct sni_ctx *sc0, *sc0b, *sc1;
3412 struct ebmb_node *node;
3413
3414 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
3415
3416 /* ignore if sc0 was already inserted in a tree */
3417 if (sc0->name.node.leaf_p)
3418 continue;
3419
3420 /* Check for duplicates. */
3421 if (sc0->wild)
3422 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
3423 else
3424 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
3425
3426 for (; node; node = ebmb_next_dup(node)) {
3427 sc1 = ebmb_entry(node, struct sni_ctx, name);
3428 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
3429 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
3430 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02003431 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02003432 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003433 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02003434 break;
William Lallemand1d29c742019-10-04 00:53:29 +02003435 }
3436 }
3437
3438 /* if duplicate, ignore the insertion */
3439 if (!sc0)
3440 continue;
3441
3442 if (sc0->wild)
3443 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
3444 else
3445 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003446 }
William Lallemand21724f02019-11-04 17:56:13 +01003447
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003448 /* replace the default_ctx if required with the instance's ctx. */
3449 if (ckch_inst->is_default) {
3450 SSL_CTX_free(bind_conf->default_ctx);
3451 SSL_CTX_up_ref(ckch_inst->ctx);
3452 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003453 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02003454 }
3455}
3456
3457/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003458 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02003459 */
William Lallemande3af8fb2019-10-08 11:36:53 +02003460struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02003461
William Lallemand2954c472020-03-06 21:54:13 +01003462/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02003463struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02003464
Emeric Brun7a883362019-10-17 13:27:40 +02003465/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003466 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003467 * DH parameter is loaded into the SSL_CTX and if there is no
3468 * DH parameter available in ckchs nor in global, the default
3469 * DH parameters are applied on the SSL_CTX.
3470 * Returns a bitfield containing the flags:
3471 * ERR_FATAL in any fatal error case
3472 * ERR_ALERT if a reason of the error is availabine in err
3473 * ERR_WARN if a warning is available into err
3474 * The value 0 means there is no error nor warning and
3475 * the operation succeed.
3476 */
William Lallemandfa892222019-07-23 16:06:08 +02003477#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003478static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3479 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003480{
Emeric Brun7a883362019-10-17 13:27:40 +02003481 int ret = 0;
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003482 HASSL_DH *dh = NULL;
William Lallemandfa892222019-07-23 16:06:08 +02003483
William Lallemanda8c73742019-07-31 18:31:34 +02003484 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003485 dh = ckch->dh;
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003486 if (!ssl_sock_set_tmp_dh(ctx, dh)) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003487 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3488 err && *err ? *err : "", path);
Emeric Bruna9363eb2019-10-17 14:53:03 +02003489 memprintf(err, "%s, DH ciphers won't be available.\n",
3490 err && *err ? *err : "");
Emeric Bruna9363eb2019-10-17 14:53:03 +02003491 ret |= ERR_WARN;
3492 goto end;
3493 }
William Lallemandfa892222019-07-23 16:06:08 +02003494
3495 if (ssl_dh_ptr_index >= 0) {
3496 /* store a pointer to the DH params to avoid complaining about
3497 ssl-default-dh-param not being set for this SSL_CTX */
3498 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3499 }
3500 }
3501 else if (global_dh) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01003502 if (!ssl_sock_set_tmp_dh(ctx, global_dh)) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003503 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3504 err && *err ? *err : "", path);
Emeric Bruna9363eb2019-10-17 14:53:03 +02003505 memprintf(err, "%s, DH ciphers won't be available.\n",
3506 err && *err ? *err : "");
Emeric Bruna9363eb2019-10-17 14:53:03 +02003507 ret |= ERR_WARN;
3508 goto end;
3509 }
William Lallemandfa892222019-07-23 16:06:08 +02003510 }
3511 else {
3512 /* Clear openssl global errors stack */
3513 ERR_clear_error();
3514
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003515 /* We do not want DHE ciphers to be added to the cipher list
3516 * unless there is an explicit global dh option in the conf.
3517 */
3518 if (global_ssl.default_dh_param) {
3519 if (global_ssl.default_dh_param <= 1024) {
3520 /* we are limited to DH parameter of 1024 bits anyway */
3521 if (local_dh_1024 == NULL)
3522 local_dh_1024 = ssl_get_dh_1024();
William Lallemandfa892222019-07-23 16:06:08 +02003523
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003524 if (local_dh_1024 == NULL) {
3525 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3526 err && *err ? *err : "", path);
3527 ret |= ERR_ALERT | ERR_FATAL;
3528 goto end;
3529 }
William Lallemandfa892222019-07-23 16:06:08 +02003530
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003531 if (!ssl_sock_set_tmp_dh(ctx, local_dh_1024)) {
3532 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3533 err && *err ? *err : "", path);
3534 memprintf(err, "%s, DH ciphers won't be available.\n",
3535 err && *err ? *err : "");
3536 ret |= ERR_WARN;
3537 goto end;
3538 }
Emeric Bruna9363eb2019-10-17 14:53:03 +02003539 }
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003540 else {
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003541#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003542 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh_cbk);
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003543#else
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003544 ssl_sock_set_tmp_dh_from_pkey(ctx, ckch ? ckch->key : NULL);
Remi Tricot-Le Breton88c56952022-02-11 12:04:56 +01003545#endif
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02003546 }
William Lallemandfa892222019-07-23 16:06:08 +02003547 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003548 }
3549
William Lallemandf9568fc2019-10-16 18:27:58 +02003550end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003551 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003552 return ret;
3553}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003554#endif
William Lallemandfa892222019-07-23 16:06:08 +02003555
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003556
3557/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003558 * Returns a bitfield containing the flags:
3559 * ERR_FATAL in any fatal error case
3560 * ERR_ALERT if the reason of the error is available in err
3561 * ERR_WARN if a warning is available into err
3562 * The value 0 means there is no error nor warning and
3563 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003564 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003565static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3566 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003567{
Emeric Bruna96b5822019-10-17 13:25:14 +02003568 int errcode = 0;
3569
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003570 if (find_chain == NULL) {
3571 errcode |= ERR_FATAL;
3572 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003573 }
3574
3575 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3576 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3577 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003578 errcode |= ERR_ALERT | ERR_FATAL;
3579 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003580 }
3581
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003582 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003583 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003584 } else {
3585 /* Find Certificate Chain in global */
3586 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003587 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003588 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003589 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003590 }
William Lallemand85888572020-02-27 14:48:35 +01003591
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003592 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003593 /* always put a null chain stack in the SSL_CTX so it does not
3594 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003595 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003596 }
3597
William Lallemandf187ce62020-06-02 18:27:20 +02003598 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003599#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003600 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003601 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3602 err && *err ? *err : "", path);
3603 errcode |= ERR_ALERT | ERR_FATAL;
3604 goto end;
3605 }
William Lallemandf187ce62020-06-02 18:27:20 +02003606#else
3607 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003608 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003609 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003610 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003611 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003612 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003613 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3614 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003615 X509_free(ca);
3616 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003617 errcode |= ERR_ALERT | ERR_FATAL;
3618 goto end;
3619 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003620 }
William Lallemandf187ce62020-06-02 18:27:20 +02003621#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003622
William Lallemand9a1d8392020-08-10 17:28:23 +02003623#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003624 /* remove the Root CA from the SSL_CTX if the option is activated */
3625 if (global_ssl.skip_self_issued_ca) {
3626 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3627 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3628 err && *err ? *err : "", path);
3629 errcode |= ERR_ALERT | ERR_FATAL;
3630 goto end;
3631 }
3632 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003633#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003634
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003635end:
3636 return errcode;
3637}
3638
3639
3640/* Loads the info in ckch into ctx
3641 * Returns a bitfield containing the flags:
3642 * ERR_FATAL in any fatal error case
3643 * ERR_ALERT if the reason of the error is available in err
3644 * ERR_WARN if a warning is available into err
3645 * The value 0 means there is no error nor warning and
3646 * the operation succeed.
3647 */
3648static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3649{
3650 int errcode = 0;
3651 STACK_OF(X509) *find_chain = NULL;
3652
3653 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3654 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3655 err && *err ? *err : "", path);
3656 errcode |= ERR_ALERT | ERR_FATAL;
3657 return errcode;
3658 }
3659
3660 /* Load certificate chain */
3661 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3662 if (errcode & ERR_CODE)
3663 goto end;
3664
William Lallemandfa892222019-07-23 16:06:08 +02003665#ifndef OPENSSL_NO_DH
3666 /* store a NULL pointer to indicate we have not yet loaded
3667 a custom DH param file */
3668 if (ssl_dh_ptr_index >= 0) {
3669 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3670 }
3671
Emeric Brun7a883362019-10-17 13:27:40 +02003672 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3673 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003674 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3675 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003676 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003677 }
3678#endif
3679
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003680#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003681 if (sctl_ex_index >= 0 && ckch->sctl) {
3682 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3683 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003684 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003685 errcode |= ERR_ALERT | ERR_FATAL;
3686 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003687 }
3688 }
3689#endif
3690
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003691#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003692 /* Load OCSP Info into context */
3693 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003694 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003695 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",
3696 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003697 errcode |= ERR_ALERT | ERR_FATAL;
3698 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003699 }
3700 }
William Lallemand246c0242019-10-11 08:59:13 +02003701#endif
3702
Emeric Bruna96b5822019-10-17 13:25:14 +02003703 end:
3704 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003705}
3706
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003707
3708/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3709 * Returns a bitfield containing the flags:
3710 * ERR_FATAL in any fatal error case
3711 * ERR_ALERT if the reason of the error is available in err
3712 * ERR_WARN if a warning is available into err
3713 * The value 0 means there is no error nor warning and
3714 * the operation succeed.
3715 */
3716static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3717 SSL_CTX *ctx, char **err)
3718{
3719 int errcode = 0;
3720 STACK_OF(X509) *find_chain = NULL;
3721
3722 /* Load the private key */
3723 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3724 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3725 err && *err ? *err : "", path);
3726 errcode |= ERR_ALERT | ERR_FATAL;
3727 }
3728
3729 /* Load certificate chain */
3730 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3731 if (errcode & ERR_CODE)
3732 goto end;
3733
3734 if (SSL_CTX_check_private_key(ctx) <= 0) {
3735 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3736 err && *err ? *err : "", path);
3737 errcode |= ERR_ALERT | ERR_FATAL;
3738 }
3739
3740end:
3741 return errcode;
3742}
3743
3744
William Lallemand614ca0d2019-10-07 13:52:11 +02003745/*
3746 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003747 *
3748 * Returns a bitfield containing the flags:
3749 * ERR_FATAL in any fatal error case
3750 * ERR_ALERT if the reason of the error is available in err
3751 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003752 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003753int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003754 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003755{
William Lallemandc9402072019-05-15 15:33:54 +02003756 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003757 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003758 int order = 0;
3759 X509_NAME *xname;
3760 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003761 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003762 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003763#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3764 STACK_OF(GENERAL_NAME) *names;
3765#endif
William Lallemand36b84632019-07-18 19:28:17 +02003766 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003767 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003768 int errcode = 0;
3769
3770 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003771
William Lallemande3af8fb2019-10-08 11:36:53 +02003772 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003773 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003774
William Lallemande3af8fb2019-10-08 11:36:53 +02003775 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003776
William Lallemandc9402072019-05-15 15:33:54 +02003777 ctx = SSL_CTX_new(SSLv23_server_method());
3778 if (!ctx) {
3779 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3780 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003781 errcode |= ERR_ALERT | ERR_FATAL;
3782 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003783 }
3784
Emeric Bruna96b5822019-10-17 13:25:14 +02003785 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3786 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003787 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003788
3789 ckch_inst = ckch_inst_new();
3790 if (!ckch_inst) {
3791 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3792 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003793 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003794 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003795 }
3796
William Lallemand36b84632019-07-18 19:28:17 +02003797 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003798 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003799 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003800 switch(EVP_PKEY_base_id(pkey)) {
3801 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003802 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003803 break;
3804 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003805 kinfo.sig = TLSEXT_signature_ecdsa;
3806 break;
3807 case EVP_PKEY_DSA:
3808 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003809 break;
3810 }
3811 EVP_PKEY_free(pkey);
3812 }
3813
Emeric Brun50bcecc2013-04-22 13:05:23 +02003814 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003815 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003816 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 +02003817 if (order < 0) {
3818 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003819 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003820 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003821 }
3822 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003823 }
3824 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003825#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003826 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003827 if (names) {
3828 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3829 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3830 if (name->type == GEN_DNS) {
3831 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003832 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003833 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003834 if (order < 0) {
3835 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003836 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003837 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003838 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003839 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003840 }
3841 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003842 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003843 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003844#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003845 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003846 i = -1;
3847 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3848 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003849 ASN1_STRING *value;
3850
3851 value = X509_NAME_ENTRY_get_data(entry);
3852 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003853 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003854 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003855 if (order < 0) {
3856 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003857 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003858 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003859 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003860 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003861 }
3862 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003863 /* we must not free the SSL_CTX anymore below, since it's already in
3864 * the tree, so it will be discovered and cleaned in time.
3865 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003866
Emeric Brunfc0421f2012-09-07 17:30:07 +02003867#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003868 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003869 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3870 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003871 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003872 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003873 }
3874#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003875 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003876 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003877 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003878 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003879 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003880 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003881 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003882
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003883 /* Always keep a reference to the newly constructed SSL_CTX in the
3884 * instance. This way if the instance has no SNIs, the SSL_CTX will
3885 * still be linked. */
3886 SSL_CTX_up_ref(ctx);
3887 ckch_inst->ctx = ctx;
3888
William Lallemand9117de92019-10-04 00:29:42 +02003889 /* everything succeed, the ckch instance can be used */
3890 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003891 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003892 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003893
William Lallemand02e19a52020-04-08 16:11:26 +02003894 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3895
Emeric Brun054563d2019-10-17 13:16:58 +02003896 *ckchi = ckch_inst;
3897 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003898
3899error:
3900 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003901 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003902 if (ckch_inst->is_default)
3903 SSL_CTX_free(ctx);
3904
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003905 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003906 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003907 }
William Lallemandd9199372019-10-04 15:37:05 +02003908 SSL_CTX_free(ctx);
3909
Emeric Brun054563d2019-10-17 13:16:58 +02003910 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003911}
3912
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003913
3914/*
3915 * This function allocate a ckch_inst that will be used on the backend side
3916 * (server line)
3917 *
3918 * Returns a bitfield containing the flags:
3919 * ERR_FATAL in any fatal error case
3920 * ERR_ALERT if the reason of the error is available in err
3921 * ERR_WARN if a warning is available into err
3922 */
3923int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003924 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003925{
3926 SSL_CTX *ctx;
3927 struct cert_key_and_chain *ckch;
3928 struct ckch_inst *ckch_inst = NULL;
3929 int errcode = 0;
3930
3931 *ckchi = NULL;
3932
3933 if (!ckchs || !ckchs->ckch)
3934 return ERR_FATAL;
3935
3936 ckch = ckchs->ckch;
3937
3938 ctx = SSL_CTX_new(SSLv23_client_method());
3939 if (!ctx) {
3940 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3941 err && *err ? *err : "", path);
3942 errcode |= ERR_ALERT | ERR_FATAL;
3943 goto error;
3944 }
3945
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003946 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3947 if (errcode & ERR_CODE)
3948 goto error;
3949
3950 ckch_inst = ckch_inst_new();
3951 if (!ckch_inst) {
3952 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3953 err && *err ? *err : "", path);
3954 errcode |= ERR_ALERT | ERR_FATAL;
3955 goto error;
3956 }
3957
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003958 /* everything succeed, the ckch instance can be used */
3959 ckch_inst->bind_conf = NULL;
3960 ckch_inst->ssl_conf = NULL;
3961 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003962 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003963 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003964
3965 *ckchi = ckch_inst;
3966 return errcode;
3967
3968error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003969 SSL_CTX_free(ctx);
3970
3971 return errcode;
3972}
3973
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003974/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003975static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3976 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003977 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003978{
Emeric Brun054563d2019-10-17 13:16:58 +02003979 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003980
3981 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003982 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 +02003983
Emeric Brun054563d2019-10-17 13:16:58 +02003984 if (errcode & ERR_CODE)
3985 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003986
William Lallemand24bde432020-03-09 16:48:43 +01003987 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003988
3989 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003990 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003991 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003992}
3993
William Lallemanddb26e2b2021-01-26 12:01:46 +01003994/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3995 * fill the SSL_CTX of the server.
3996 *
3997 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003998static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003999 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004000{
4001 int errcode = 0;
4002
4003 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01004004 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004005
4006 if (errcode & ERR_CODE)
4007 return errcode;
4008
William Lallemanddb26e2b2021-01-26 12:01:46 +01004009 (*ckch_inst)->server = server;
4010 /* Keep the reference to the SSL_CTX in the server. */
4011 SSL_CTX_up_ref((*ckch_inst)->ctx);
4012 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004013 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02004014 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004015 return errcode;
4016}
4017
William Lallemand6be66ec2020-03-06 22:26:32 +01004018
William Lallemand4c68bba2020-03-30 18:45:10 +02004019
4020
4021/* Make sure openssl opens /dev/urandom before the chroot. The work is only
4022 * done once. Zero is returned if the operation fails. No error is returned
4023 * if the random is said as not implemented, because we expect that openssl
4024 * will use another method once needed.
4025 */
Amaury Denoyellec593bcd2021-05-19 15:35:29 +02004026int ssl_initialize_random(void)
William Lallemand4c68bba2020-03-30 18:45:10 +02004027{
4028 unsigned char random;
4029 static int random_initialized = 0;
4030
4031 if (!random_initialized && RAND_bytes(&random, 1) != 0)
4032 random_initialized = 1;
4033
4034 return random_initialized;
4035}
4036
William Lallemand2954c472020-03-06 21:54:13 +01004037/* Load a crt-list file, this is done in 2 parts:
4038 * - store the content of the file in a crtlist structure with crtlist_entry structures
4039 * - generate the instances by iterating on entries in the crtlist struct
4040 *
4041 * Nothing is locked there, this function is used in the configuration parser.
4042 *
4043 * Returns a set of ERR_* flags possibly with an error in <err>.
4044 */
William Lallemand6be66ec2020-03-06 22:26:32 +01004045int 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 +01004046{
4047 struct crtlist *crtlist = NULL;
4048 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02004049 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01004050 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01004051 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02004052 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01004053
William Lallemand79d31ec2020-03-25 15:10:49 +01004054 bind_conf_node = malloc(sizeof(*bind_conf_node));
4055 if (!bind_conf_node) {
4056 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
4057 cfgerr |= ERR_FATAL | ERR_ALERT;
4058 goto error;
4059 }
4060 bind_conf_node->next = NULL;
4061 bind_conf_node->bind_conf = bind_conf;
4062
William Lallemand41ca9302020-04-08 13:15:18 +02004063 /* strip trailing slashes, including first one */
4064 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
4065 *end = 0;
4066
William Lallemand2954c472020-03-06 21:54:13 +01004067 /* look for an existing crtlist or create one */
4068 eb = ebst_lookup(&crtlists_tree, file);
4069 if (eb) {
4070 crtlist = ebmb_entry(eb, struct crtlist, node);
4071 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01004072 /* load a crt-list OR a directory */
4073 if (dir)
4074 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
4075 else
4076 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
4077
William Lallemand2954c472020-03-06 21:54:13 +01004078 if (!(cfgerr & ERR_CODE))
4079 ebst_insert(&crtlists_tree, &crtlist->node);
4080 }
4081
4082 if (cfgerr & ERR_CODE) {
4083 cfgerr |= ERR_FATAL | ERR_ALERT;
4084 goto error;
4085 }
4086
4087 /* generates ckch instance from the crtlist_entry */
4088 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
4089 struct ckch_store *store;
4090 struct ckch_inst *ckch_inst = NULL;
4091
4092 store = entry->node.key;
4093 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
4094 if (cfgerr & ERR_CODE) {
4095 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
4096 goto error;
4097 }
Willy Tarreau2b718102021-04-21 07:32:39 +02004098 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02004099 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01004100 }
William Lallemand2954c472020-03-06 21:54:13 +01004101
William Lallemand79d31ec2020-03-25 15:10:49 +01004102 /* add the bind_conf to the list */
4103 bind_conf_node->next = crtlist->bind_conf;
4104 crtlist->bind_conf = bind_conf_node;
4105
William Lallemand2954c472020-03-06 21:54:13 +01004106 return cfgerr;
4107error:
4108 {
William Lallemand49398312020-03-30 17:01:33 +02004109 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01004110 struct ckch_inst *inst, *s_inst;
4111
William Lallemand49398312020-03-30 17:01:33 +02004112 lastentry = entry; /* which entry we tried to generate last */
4113 if (lastentry) {
4114 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
4115 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
4116 break;
4117
4118 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01004119
William Lallemand49398312020-03-30 17:01:33 +02004120 /* this was not generated for this bind_conf, skip */
4121 if (inst->bind_conf != bind_conf)
4122 continue;
4123
William Lallemandd9d5d1b2020-04-09 16:31:05 +02004124 /* free the sni_ctx and instance */
4125 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02004126 }
William Lallemand2954c472020-03-06 21:54:13 +01004127 }
William Lallemand2954c472020-03-06 21:54:13 +01004128 }
William Lallemand79d31ec2020-03-25 15:10:49 +01004129 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01004130 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01004131 return cfgerr;
4132}
4133
William Lallemand06b22a82020-03-16 14:45:55 +01004134/* Returns a set of ERR_* flags possibly with an error in <err>. */
4135int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
4136{
4137 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01004138 int cfgerr = 0;
4139 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01004140 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01004141 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01004142
4143 if ((ckchs = ckchs_lookup(path))) {
4144 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01004145 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
4146 found++;
4147 } else if (stat(path, &buf) == 0) {
4148 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01004149 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02004150 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004151 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01004152 cfgerr |= ERR_ALERT | ERR_FATAL;
4153 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004154 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01004155 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004156 }
4157 } else {
4158 /* stat failed, could be a bundle */
4159 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02004160 char fp[MAXPATHLEN+1] = {0};
4161 int n = 0;
4162
4163 /* Load all possible certs and keys in separate ckch_store */
4164 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
4165 struct stat buf;
4166 int ret;
4167
4168 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
4169 if (ret > sizeof(fp))
4170 continue;
4171
4172 if ((ckchs = ckchs_lookup(fp))) {
4173 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01004174 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02004175 } else {
4176 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01004177 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02004178 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02004179 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01004180 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02004181 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
4182 }
4183 }
4184 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01004185#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
4186 if (found) {
4187 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
4188 err && *err ? *err : "", path);
4189 cfgerr |= ERR_ALERT | ERR_FATAL;
4190 }
4191#endif
William Lallemand06b22a82020-03-16 14:45:55 +01004192 }
4193 }
William Lallemand06ce84a2020-11-20 15:36:13 +01004194 if (!found) {
4195 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4196 err && *err ? *err : "", path, strerror(errno));
4197 cfgerr |= ERR_ALERT | ERR_FATAL;
4198 }
William Lallemand06b22a82020-03-16 14:45:55 +01004199
4200 return cfgerr;
4201}
4202
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004203
4204/* Create a full ssl context and ckch instance that will be used for a specific
4205 * backend server (server configuration line).
4206 * Returns a set of ERR_* flags possibly with an error in <err>.
4207 */
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004208int 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 +01004209{
4210 struct stat buf;
4211 int cfgerr = 0;
4212 struct ckch_store *ckchs;
4213 int found = 0; /* did we found a file to load ? */
4214
4215 if ((ckchs = ckchs_lookup(path))) {
4216 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01004217 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004218 found++;
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004219 } else {
4220 if (!create_if_none) {
4221 memprintf(err, "%sunable to stat SSL certificate '%s'.\n",
4222 err && *err ? *err : "", path);
4223 cfgerr |= ERR_ALERT | ERR_FATAL;
4224 goto out;
4225 }
4226
4227 if (stat(path, &buf) == 0) {
4228 /* We do not manage directories on backend side. */
4229 if (S_ISDIR(buf.st_mode) == 0) {
4230 ++found;
4231 ckchs = ckchs_load_cert_file(path, err);
4232 if (!ckchs)
4233 cfgerr |= ERR_ALERT | ERR_FATAL;
4234 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
4235 }
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004236 }
4237 }
4238 if (!found) {
4239 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4240 err && *err ? *err : "", path, strerror(errno));
4241 cfgerr |= ERR_ALERT | ERR_FATAL;
4242 }
4243
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004244out:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004245 return cfgerr;
4246}
4247
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004248/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004249static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004250ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004251{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004252 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004253 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004254 SSL_OP_ALL | /* all known workarounds for bugs */
4255 SSL_OP_NO_SSLv2 |
4256 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02004257 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02004258 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004259 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02004260 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004261 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004262 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004263 SSL_MODE_ENABLE_PARTIAL_WRITE |
4264 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004265 SSL_MODE_RELEASE_BUFFERS |
4266 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004267 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004268 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004269 int flags = MC_SSL_O_ALL;
4270 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02004271 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004272
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004273 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004274 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004275
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004276 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004277 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
4278 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4279 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004280 else
4281 flags = conf_ssl_methods->flags;
4282
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004283 min = conf_ssl_methods->min;
4284 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02004285
4286 /* default minimum is TLSV12, */
4287 if (!min) {
4288 if (!max || (max >= default_min_ver)) {
4289 min = default_min_ver;
4290 } else {
4291 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). "
4292 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
4293 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
4294 min = max;
4295 }
4296 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004297 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004298 if (min)
4299 flags |= (methodVersions[min].flag - 1);
4300 if (max)
4301 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004302 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004303 min = max = CONF_TLSV_NONE;
4304 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004305 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004306 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004307 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004308 if (min) {
4309 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004310 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
4311 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4312 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4313 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004314 hole = 0;
4315 }
4316 max = i;
4317 }
4318 else {
4319 min = max = i;
4320 }
4321 }
4322 else {
4323 if (min)
4324 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004325 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004326 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004327 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4328 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004329 cfgerr += 1;
4330 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004331 /* save real min/max in bind_conf */
4332 conf_ssl_methods->min = min;
4333 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004334
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004335#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004336 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004337 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004338 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004339 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004340 else
William Lallemandd0712f32020-06-11 17:34:00 +02004341 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
4342 /* clear every version flags in case SSL_CTX_new()
4343 * returns an SSL_CTX with disabled versions */
4344 SSL_CTX_clear_options(ctx, methodVersions[i].option);
4345
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004346 if (flags & methodVersions[i].flag)
4347 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02004348
4349 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004350#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004351 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004352 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4353 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02004354#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004355
4356 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
4357 options |= SSL_OP_NO_TICKET;
4358 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
4359 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08004360
4361#ifdef SSL_OP_NO_RENEGOTIATION
4362 options |= SSL_OP_NO_RENEGOTIATION;
4363#endif
4364
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004365 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004366
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004367#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004368 if (global_ssl.async)
4369 mode |= SSL_MODE_ASYNC;
4370#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004371 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004372 if (global_ssl.life_time)
4373 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004374
4375#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
4376#ifdef OPENSSL_IS_BORINGSSL
4377 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
4378 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05004379#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01004380 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01004381 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02004382 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
4383 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004384#else
4385 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004386#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02004387 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004388#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004389 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004390}
4391
William Lallemand4f45bb92017-10-30 20:08:51 +01004392
4393static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
4394{
4395 if (first == block) {
4396 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4397 if (first->len > 0)
4398 sh_ssl_sess_tree_delete(sh_ssl_sess);
4399 }
4400}
4401
4402/* return first block from sh_ssl_sess */
4403static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
4404{
4405 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
4406
4407}
4408
4409/* store a session into the cache
4410 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
4411 * data: asn1 encoded session
4412 * data_len: asn1 encoded session length
4413 * Returns 1 id session was stored (else 0)
4414 */
4415static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
4416{
4417 struct shared_block *first;
4418 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
4419
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004420 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01004421 if (!first) {
4422 /* Could not retrieve enough free blocks to store that session */
4423 return 0;
4424 }
4425
4426 /* STORE the key in the first elem */
4427 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4428 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
4429 first->len = sizeof(struct sh_ssl_sess_hdr);
4430
4431 /* it returns the already existing node
4432 or current node if none, never returns null */
4433 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4434 if (oldsh_ssl_sess != sh_ssl_sess) {
4435 /* NOTE: Row couldn't be in use because we lock read & write function */
4436 /* release the reserved row */
4437 shctx_row_dec_hot(ssl_shctx, first);
4438 /* replace the previous session already in the tree */
4439 sh_ssl_sess = oldsh_ssl_sess;
4440 /* ignore the previous session data, only use the header */
4441 first = sh_ssl_sess_first_block(sh_ssl_sess);
4442 shctx_row_inc_hot(ssl_shctx, first);
4443 first->len = sizeof(struct sh_ssl_sess_hdr);
4444 }
4445
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004446 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004447 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004448 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004449 }
4450
4451 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004452
4453 return 1;
4454}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004455
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004456/* SSL callback used when a new session is created while connecting to a server */
4457static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4458{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004459 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004460 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004461
Willy Tarreau07d94e42018-09-20 10:57:52 +02004462 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004463
William Lallemand3ce6eed2021-02-08 10:43:44 +01004464 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
4465 * one cache per thread, it only prevents to flush it from the CLI in
4466 * another thread */
4467
Olivier Houcharde6060c52017-11-16 17:42:52 +01004468 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4469 int len;
4470 unsigned char *ptr;
William Lallemande18d4e82021-11-17 02:59:21 +01004471 const char *sni;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004472
Olivier Houcharde6060c52017-11-16 17:42:52 +01004473 len = i2d_SSL_SESSION(sess, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01004474 sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004475 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004476 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4477 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4478 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004479 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4480 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004481 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4482 }
4483 if (s->ssl_ctx.reused_sess[tid].ptr) {
4484 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4485 &ptr);
4486 }
William Lallemande18d4e82021-11-17 02:59:21 +01004487
4488 if (s->ssl_ctx.reused_sess[tid].sni) {
4489 /* if the new sni is empty or isn' t the same as the old one */
4490 if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) {
4491 ha_free(&s->ssl_ctx.reused_sess[tid].sni);
4492 if (sni)
4493 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4494 }
4495 } else if (sni) {
4496 /* if there wasn't an old sni but there is a new one */
4497 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4498 }
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 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004501 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004502 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004503 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004504 }
4505
4506 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004507}
4508
Olivier Houcharde6060c52017-11-16 17:42:52 +01004509
William Lallemanded0b5ad2017-10-30 19:36:36 +01004510/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004511int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004512{
4513 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4514 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4515 unsigned char *p;
4516 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004517 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004518 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004519
4520 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004521 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004522 * note: SSL_SESSION_set1_id is using
4523 * a memcpy so we need to use a different pointer
4524 * than sid_data or sid_ctx_data to avoid valgrind
4525 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004526 */
4527
4528 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004529
4530 /* copy value in an other buffer */
4531 memcpy(encid, sid_data, sid_length);
4532
4533 /* pad with 0 */
4534 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4535 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4536
4537 /* force length to zero to avoid ASN1 encoding */
4538 SSL_SESSION_set1_id(sess, encid, 0);
4539
4540 /* force length to zero to avoid ASN1 encoding */
4541 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004542
4543 /* check if buffer is large enough for the ASN1 encoded session */
4544 data_len = i2d_SSL_SESSION(sess, NULL);
4545 if (data_len > SHSESS_MAX_DATA_LEN)
4546 goto err;
4547
4548 p = encsess;
4549
4550 /* process ASN1 session encoding before the lock */
4551 i2d_SSL_SESSION(sess, &p);
4552
William Lallemanded0b5ad2017-10-30 19:36:36 +01004553
William Lallemanda3c77cf2017-10-30 23:44:40 +01004554 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004555 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004556 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004557 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004558err:
4559 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004560 SSL_SESSION_set1_id(sess, encid, sid_length);
4561 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004562
4563 return 0; /* do not increment session reference count */
4564}
4565
4566/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004567SSL_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 +01004568{
William Lallemand4f45bb92017-10-30 20:08:51 +01004569 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004570 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4571 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004572 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004573 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004574
Willy Tarreau4c19e992021-06-15 16:39:22 +02004575 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004576
4577 /* allow the session to be freed automatically by openssl */
4578 *do_copy = 0;
4579
4580 /* tree key is zeros padded sessionid */
4581 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4582 memcpy(tmpkey, key, key_len);
4583 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4584 key = tmpkey;
4585 }
4586
4587 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004588 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004589
4590 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004591 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4592 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004593 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004594 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004595 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004596 return NULL;
4597 }
4598
William Lallemand4f45bb92017-10-30 20:08:51 +01004599 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4600 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004601
William Lallemand4f45bb92017-10-30 20:08:51 +01004602 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 +01004603
William Lallemanda3c77cf2017-10-30 23:44:40 +01004604 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004605
4606 /* decode ASN1 session */
4607 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004608 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004609 /* Reset session id and session id contenxt */
4610 if (sess) {
4611 SSL_SESSION_set1_id(sess, key, key_len);
4612 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4613 }
4614
4615 return sess;
4616}
4617
William Lallemand4f45bb92017-10-30 20:08:51 +01004618
William Lallemanded0b5ad2017-10-30 19:36:36 +01004619/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004620void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004621{
William Lallemand4f45bb92017-10-30 20:08:51 +01004622 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004623 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4624 unsigned int sid_length;
4625 const unsigned char *sid_data;
4626 (void)ctx;
4627
4628 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4629 /* tree key is zeros padded sessionid */
4630 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4631 memcpy(tmpkey, sid_data, sid_length);
4632 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4633 sid_data = tmpkey;
4634 }
4635
William Lallemanda3c77cf2017-10-30 23:44:40 +01004636 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004637
4638 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004639 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4640 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004641 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004642 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004643 }
4644
4645 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004646 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004647}
4648
4649/* Set session cache mode to server and disable openssl internal cache.
4650 * Set shared cache callbacks on an ssl context.
4651 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004652void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004653{
4654 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4655
4656 if (!ssl_shctx) {
4657 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4658 return;
4659 }
4660
4661 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4662 SSL_SESS_CACHE_NO_INTERNAL |
4663 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4664
4665 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004666 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4667 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4668 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004669}
William Lallemand7d42ef52020-07-06 11:41:30 +02004670
4671/*
4672 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4673 *
4674 * The format is:
4675 * * <Label> <space> <ClientRandom> <space> <Secret>
4676 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4677 */
4678
William Lallemand722180a2021-06-09 16:46:12 +02004679#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004680void SSL_CTX_keylog(const SSL *ssl, const char *line)
4681{
4682 struct ssl_keylog *keylog;
4683 char *lastarg = NULL;
4684 char *dst = NULL;
4685
4686 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4687 if (!keylog)
4688 return;
4689
4690 lastarg = strrchr(line, ' ');
4691 if (lastarg == NULL || ++lastarg == NULL)
4692 return;
4693
4694 dst = pool_alloc(pool_head_ssl_keylog_str);
4695 if (!dst)
4696 return;
4697
4698 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4699 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4700
4701 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4702 if (keylog->client_random)
4703 goto error;
4704 keylog->client_random = dst;
4705
4706 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4707 if (keylog->client_early_traffic_secret)
4708 goto error;
4709 keylog->client_early_traffic_secret = dst;
4710
4711 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4712 if(keylog->client_handshake_traffic_secret)
4713 goto error;
4714 keylog->client_handshake_traffic_secret = dst;
4715
4716 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4717 if (keylog->server_handshake_traffic_secret)
4718 goto error;
4719 keylog->server_handshake_traffic_secret = dst;
4720
4721 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4722 if (keylog->client_traffic_secret_0)
4723 goto error;
4724 keylog->client_traffic_secret_0 = dst;
4725
4726 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4727 if (keylog->server_traffic_secret_0)
4728 goto error;
4729 keylog->server_traffic_secret_0 = dst;
4730
4731 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4732 if (keylog->early_exporter_secret)
4733 goto error;
4734 keylog->early_exporter_secret = dst;
4735
4736 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4737 if (keylog->exporter_secret)
4738 goto error;
4739 keylog->exporter_secret = dst;
4740 } else {
4741 goto error;
4742 }
4743
4744 return;
4745
4746error:
4747 pool_free(pool_head_ssl_keylog_str, dst);
4748
4749 return;
4750}
4751#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004752
William Lallemand8b453912019-11-21 15:48:10 +01004753/*
4754 * This function applies the SSL configuration on a SSL_CTX
4755 * It returns an error code and fills the <err> buffer
4756 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004757static 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 +01004758{
4759 struct proxy *curproxy = bind_conf->frontend;
4760 int cfgerr = 0;
4761 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004762 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004763 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004764#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004765 const char *conf_ciphersuites;
4766#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004767 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004768
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004769 if (ssl_conf) {
4770 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4771 int i, min, max;
4772 int flags = MC_SSL_O_ALL;
4773
4774 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004775 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4776 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004777 if (min)
4778 flags |= (methodVersions[min].flag - 1);
4779 if (max)
4780 flags |= ~((methodVersions[max].flag << 1) - 1);
4781 min = max = CONF_TLSV_NONE;
4782 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4783 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4784 if (min)
4785 max = i;
4786 else
4787 min = max = i;
4788 }
4789 /* save real min/max */
4790 conf_ssl_methods->min = min;
4791 conf_ssl_methods->max = max;
4792 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004793 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4794 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004795 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004796 }
4797 }
4798
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004799 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004800 case SSL_SOCK_VERIFY_NONE:
4801 verify = SSL_VERIFY_NONE;
4802 break;
4803 case SSL_SOCK_VERIFY_OPTIONAL:
4804 verify = SSL_VERIFY_PEER;
4805 break;
4806 case SSL_SOCK_VERIFY_REQUIRED:
4807 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4808 break;
4809 }
4810 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4811 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004812 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 +01004813 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 +01004814 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 +01004815 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004816 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004817 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004818 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004819 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004820 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004821 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004822 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4823 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4824 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4825 cfgerr |= ERR_ALERT | ERR_FATAL;
4826 }
4827 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004828 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004829 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 +02004830 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004831 }
Emeric Brun850efd52014-01-29 12:24:34 +01004832 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004833 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4834 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004835 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004836 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004837#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004838 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004839 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4840
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004841 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004842 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4843 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004844 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004845 }
Emeric Brun561e5742012-10-02 15:20:55 +02004846 else {
4847 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4848 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004849 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004850#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004851 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004852 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004853#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004854 if(bind_conf->keys_ref) {
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01004855 if (!SSL_CTX_set_tlsext_ticket_key_evp_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004856 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4857 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004858 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004859 }
4860 }
4861#endif
4862
William Lallemand4f45bb92017-10-30 20:08:51 +01004863 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004864 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4865 if (conf_ciphers &&
4866 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004867 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4868 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004869 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004870 }
4871
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004872#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004873 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4874 if (conf_ciphersuites &&
4875 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004876 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4877 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004878 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004879 }
4880#endif
4881
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004882#ifndef OPENSSL_NO_DH
Remi Tricot-Le Breton1d6338e2022-04-12 11:31:55 +02004883 if (!local_dh_1024)
4884 local_dh_1024 = ssl_get_dh_1024();
4885 if (!local_dh_2048)
4886 local_dh_2048 = ssl_get_dh_2048();
4887 if (!local_dh_4096)
4888 local_dh_4096 = ssl_get_dh_4096();
Remi Gacogne8de54152014-07-15 11:36:40 +02004889#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004890
Emeric Brunfc0421f2012-09-07 17:30:07 +02004891 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004892#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004893 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004894#endif
William Lallemand722180a2021-06-09 16:46:12 +02004895#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004896 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4897#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004898
Bernard Spil13c53f82018-02-15 13:34:58 +01004899#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004900 ssl_conf_cur = NULL;
4901 if (ssl_conf && ssl_conf->npn_str)
4902 ssl_conf_cur = ssl_conf;
4903 else if (bind_conf->ssl_conf.npn_str)
4904 ssl_conf_cur = &bind_conf->ssl_conf;
4905 if (ssl_conf_cur)
4906 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004907#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004908#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004909 ssl_conf_cur = NULL;
4910 if (ssl_conf && ssl_conf->alpn_str)
4911 ssl_conf_cur = ssl_conf;
4912 else if (bind_conf->ssl_conf.alpn_str)
4913 ssl_conf_cur = &bind_conf->ssl_conf;
4914 if (ssl_conf_cur)
4915 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004916#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004917#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004918 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4919 if (conf_curves) {
4920 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004921 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4922 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004923 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004924 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004925 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004926 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004927#endif /* defined(SSL_CTX_set1_curves_list) */
4928
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004929 if (!conf_curves) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004930#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004931#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004932 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004933 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4934 NULL);
4935
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004936 if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) {
4937 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4938 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
4939 cfgerr |= ERR_ALERT | ERR_FATAL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02004940 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004941#endif /* defined(SSL_CTX_set1_curves_list) */
Olivier Houchardc2aae742017-09-22 18:26:28 +02004942#else
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004943#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
4944 int i;
4945 EC_KEY *ecdh;
4946
Olivier Houchardc2aae742017-09-22 18:26:28 +02004947 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4948 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4949 ECDHE_DEFAULT_CURVE);
Emeric Brun2b58d042012-09-20 17:10:03 +02004950
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004951 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004952 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004953 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 +01004954 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004955 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004956 }
4957 else {
4958 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4959 EC_KEY_free(ecdh);
4960 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004961#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
4962#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Emeric Brun2b58d042012-09-20 17:10:03 +02004963 }
Emeric Brun2b58d042012-09-20 17:10:03 +02004964
Emeric Brunfc0421f2012-09-07 17:30:07 +02004965 return cfgerr;
4966}
4967
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004968
4969/*
4970 * Prepare the SSL_CTX based on the bind line configuration.
4971 * Since the CA file loading is made depending on the verify option of the bind
4972 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4973 * If we want to create a link between the CA file entry and the corresponding
4974 * ckch instance (for CA file hot update), it needs to be done after
4975 * ssl_sock_prepare_ctx.
4976 * Returns 0 in case of success.
4977 */
4978int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4979 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4980{
4981 int errcode = 0;
4982
4983 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4984 if (!errcode && ckch_inst)
4985 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4986
4987 return errcode;
4988}
4989
Evan Broderbe554312013-06-27 00:05:25 -07004990static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4991{
4992 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4993 size_t prefixlen, suffixlen;
4994
4995 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004996 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004997 return 1;
4998
Evan Broderbe554312013-06-27 00:05:25 -07004999 /* The rest of this logic is based on RFC 6125, section 6.4.3
5000 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
5001
Emeric Bruna848dae2013-10-08 11:27:28 +02005002 pattern_wildcard = NULL;
5003 pattern_left_label_end = pattern;
5004 while (*pattern_left_label_end != '.') {
5005 switch (*pattern_left_label_end) {
5006 case 0:
5007 /* End of label not found */
5008 return 0;
5009 case '*':
5010 /* If there is more than one wildcards */
5011 if (pattern_wildcard)
5012 return 0;
5013 pattern_wildcard = pattern_left_label_end;
5014 break;
5015 }
5016 pattern_left_label_end++;
5017 }
5018
5019 /* If it's not trivial and there is no wildcard, it can't
5020 * match */
5021 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07005022 return 0;
5023
5024 /* Make sure all labels match except the leftmost */
5025 hostname_left_label_end = strchr(hostname, '.');
5026 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02005027 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07005028 return 0;
5029
5030 /* Make sure the leftmost label of the hostname is long enough
5031 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02005032 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07005033 return 0;
5034
5035 /* Finally compare the string on either side of the
5036 * wildcard */
5037 prefixlen = pattern_wildcard - pattern;
5038 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02005039 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
5040 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07005041 return 0;
5042
5043 return 1;
5044}
5045
5046static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
5047{
5048 SSL *ssl;
5049 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005050 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02005051 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02005052 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07005053
5054 int depth;
5055 X509 *cert;
5056 STACK_OF(GENERAL_NAME) *alt_names;
5057 int i;
5058 X509_NAME *cert_subject;
5059 char *str;
5060
5061 if (ok == 0)
5062 return ok;
5063
5064 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02005065 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreau3a0a0d62022-04-12 07:31:06 +02005066 ssl_ctx = __conn_get_ssl_sock_ctx(conn);
Evan Broderbe554312013-06-27 00:05:25 -07005067
Willy Tarreauad92a9a2017-07-28 11:38:41 +02005068 /* We're checking if the provided hostnames match the desired one. The
5069 * desired hostname comes from the SNI we presented if any, or if not
5070 * provided then it may have been explicitly stated using a "verifyhost"
5071 * directive. If neither is set, we don't care about the name so the
5072 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02005073 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005074 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02005075 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02005076 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02005077 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02005078 if (!servername)
5079 return ok;
5080 }
Evan Broderbe554312013-06-27 00:05:25 -07005081
5082 /* We only need to verify the CN on the actual server cert,
5083 * not the indirect CAs */
5084 depth = X509_STORE_CTX_get_error_depth(ctx);
5085 if (depth != 0)
5086 return ok;
5087
5088 /* At this point, the cert is *not* OK unless we can find a
5089 * hostname match */
5090 ok = 0;
5091
5092 cert = X509_STORE_CTX_get_current_cert(ctx);
5093 /* It seems like this might happen if verify peer isn't set */
5094 if (!cert)
5095 return ok;
5096
5097 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
5098 if (alt_names) {
5099 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
5100 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
5101 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005102#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02005103 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
5104#else
Evan Broderbe554312013-06-27 00:05:25 -07005105 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02005106#endif
Evan Broderbe554312013-06-27 00:05:25 -07005107 ok = ssl_sock_srv_hostcheck(str, servername);
5108 OPENSSL_free(str);
5109 }
5110 }
5111 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02005112 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07005113 }
5114
5115 cert_subject = X509_get_subject_name(cert);
5116 i = -1;
5117 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
5118 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005119 ASN1_STRING *value;
5120 value = X509_NAME_ENTRY_get_data(entry);
5121 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07005122 ok = ssl_sock_srv_hostcheck(str, servername);
5123 OPENSSL_free(str);
5124 }
5125 }
5126
Willy Tarreau71d058c2017-07-26 20:09:56 +02005127 /* report the mismatch and indicate if SNI was used or not */
5128 if (!ok && !conn->err_code)
5129 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07005130 return ok;
5131}
5132
Emeric Brun94324a42012-10-11 14:00:19 +02005133/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01005134int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02005135{
5136 int cfgerr = 0;
William Lallemand2c776f12021-12-28 18:47:17 +01005137 SSL_CTX *ctx;
Willy Tarreaufce03112015-01-15 21:32:40 +01005138 /* Automatic memory computations need to know we use SSL there */
5139 global.ssl_used_backend = 1;
5140
5141 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02005142 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005143 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005144 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02005145 cfgerr++;
5146 return cfgerr;
5147 }
5148 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01005149 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02005150 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02005151
William Lallemand2c776f12021-12-28 18:47:17 +01005152 if (srv->ssl_ctx.client_crt) {
5153 const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1;
5154 char *err = NULL;
5155 int err_code = 0;
5156
5157 /* If there is a crt keyword there, the SSL_CTX will be created here. */
5158 err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err);
5159 if (err_code != ERR_NONE) {
5160 if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT))
5161 ha_warning("%s", err);
5162 else
5163 ha_alert("%s", err);
5164
5165 if (err_code & (ERR_FATAL|ERR_ABORT))
5166 cfgerr++;
5167 }
5168 ha_free(&err);
5169 }
5170
5171 ctx = srv->ssl_ctx.ctx;
5172
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005173 /* The context will be uninitialized if there wasn't any "cert" option
5174 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005175 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005176 ctx = SSL_CTX_new(SSLv23_client_method());
5177 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005178 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005179 cfgerr++;
5180 return cfgerr;
5181 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005182
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005183 srv->ssl_ctx.ctx = ctx;
5184 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005185
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005186 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 +01005187
5188 return cfgerr;
5189}
5190
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005191/* Initialize an SSL context that will be used on the backend side.
5192 * Returns an error count.
5193 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005194static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005195{
5196 struct proxy *curproxy = srv->proxy;
5197 int cfgerr = 0;
5198 long options =
5199 SSL_OP_ALL | /* all known workarounds for bugs */
5200 SSL_OP_NO_SSLv2 |
5201 SSL_OP_NO_COMPRESSION;
5202 long mode =
5203 SSL_MODE_ENABLE_PARTIAL_WRITE |
5204 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
5205 SSL_MODE_RELEASE_BUFFERS |
5206 SSL_MODE_SMALL_BUFFERS;
5207 int verify = SSL_VERIFY_NONE;
5208 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
5209 int i, min, max, hole;
5210 int flags = MC_SSL_O_ALL;
5211
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005212 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005213 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
5214 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005215 else
5216 flags = conf_ssl_methods->flags;
5217
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005218 /* Real min and max should be determinate with configuration and openssl's capabilities */
5219 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005220 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005221 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005222 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005223
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005224 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005225 min = max = CONF_TLSV_NONE;
5226 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005227 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005228 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005229 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005230 if (min) {
5231 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005232 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01005233 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
5234 proxy_type_str(curproxy), curproxy->id, srv->id,
5235 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005236 hole = 0;
5237 }
5238 max = i;
5239 }
5240 else {
5241 min = max = i;
5242 }
5243 }
5244 else {
5245 if (min)
5246 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005247 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005248 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005249 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01005250 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005251 cfgerr += 1;
5252 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005253
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005254#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005255 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08005256 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005257 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005258 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005259 else
5260 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
5261 if (flags & methodVersions[i].flag)
5262 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005263#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005264 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005265 methodVersions[min].ctx_set_version(ctx, SET_MIN);
5266 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005267#endif
5268
5269 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
5270 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005271 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005272
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005273#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005274 if (global_ssl.async)
5275 mode |= SSL_MODE_ASYNC;
5276#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005277 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005278
Emeric Brun850efd52014-01-29 12:24:34 +01005279 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
5280 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01005281 switch (srv->ssl_ctx.verify) {
5282 case SSL_SOCK_VERIFY_NONE:
5283 verify = SSL_VERIFY_NONE;
5284 break;
5285 case SSL_SOCK_VERIFY_REQUIRED:
5286 verify = SSL_VERIFY_PEER;
5287 break;
5288 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005289 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02005290 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01005291 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02005292 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02005293 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005294 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005295 ha_alert("unable to set CA file '%s'.\n",
5296 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005297 cfgerr++;
5298 }
5299 }
Emeric Brun850efd52014-01-29 12:24:34 +01005300 else {
5301 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005302 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 +01005303 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005304 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01005305 cfgerr++;
5306 }
Emeric Brunef42d922012-10-11 16:11:36 +02005307#ifdef X509_V_FLAG_CRL_CHECK
5308 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005309 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02005310
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01005311 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005312 ha_alert("unable to configure CRL file '%s'.\n",
5313 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005314 cfgerr++;
5315 }
5316 else {
5317 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
5318 }
5319 }
5320#endif
5321 }
5322
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005323 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
5324 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02005325 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005326 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005327 ha_alert("unable to set SSL cipher list to '%s'.\n",
5328 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02005329 cfgerr++;
5330 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005331
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05005332#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005333 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005334 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005335 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
5336 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005337 cfgerr++;
5338 }
5339#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01005340#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
5341 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005342 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01005343#endif
5344#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5345 if (srv->ssl_ctx.alpn_str)
5346 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
5347#endif
5348
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005349
5350 return cfgerr;
5351}
5352
5353/*
5354 * Prepare the frontend's SSL_CTX based on the server line configuration.
5355 * Since the CA file loading is made depending on the verify option of the
5356 * server line, the link between the SSL_CTX and the CA file tree entry is
5357 * made here.
5358 * If we want to create a link between the CA file entry and the corresponding
5359 * ckch instance (for CA file hot update), it needs to be done after
5360 * ssl_sock_prepare_srv_ssl_ctx.
5361 * Returns an error count.
5362 */
5363int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
5364 struct ckch_inst *ckch_inst)
5365{
5366 int cfgerr = 0;
5367
5368 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
5369 if (!cfgerr && ckch_inst)
5370 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02005371
5372 return cfgerr;
5373}
5374
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005375
Frédéric Lécailleec216522020-11-23 14:33:30 +01005376/*
5377 * Create an initial CTX used to start the SSL connections.
5378 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
5379 * Returns 0 if succeeded, or something >0 if not.
5380 */
5381#ifdef USE_QUIC
5382static int ssl_initial_ctx(struct bind_conf *bind_conf)
5383{
5384 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
5385 return ssl_quic_initial_ctx(bind_conf);
5386 else
5387 return ssl_sock_initial_ctx(bind_conf);
5388}
5389#else
5390static int ssl_initial_ctx(struct bind_conf *bind_conf)
5391{
5392 return ssl_sock_initial_ctx(bind_conf);
5393}
5394#endif
5395
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005396/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005397 * be NULL, in which case nothing is done. Returns the number of errors
5398 * encountered.
5399 */
Willy Tarreau03209342016-12-22 17:08:28 +01005400int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005401{
5402 struct ebmb_node *node;
5403 struct sni_ctx *sni;
5404 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01005405 int errcode = 0;
5406 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02005407
Willy Tarreaufce03112015-01-15 21:32:40 +01005408 /* Automatic memory computations need to know we use SSL there */
5409 global.ssl_used_frontend = 1;
5410
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005411 /* Create initial_ctx used to start the ssl connection before do switchctx */
5412 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01005413 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005414 /* It should not be necessary to call this function, but it's
5415 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01005416 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005417 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
5418 }
5419 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005420 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 +01005421 }
Emeric Brun0bed9942014-10-30 19:25:24 +01005422
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005423 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005424 while (node) {
5425 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005426 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005427 /* only initialize the CTX on its first occurrence and
5428 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005429 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
5430 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005431 node = ebmb_next(node);
5432 }
5433
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005434 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005435 while (node) {
5436 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01005437 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005438 /* only initialize the CTX on its first occurrence and
5439 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005440 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005441 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005442 node = ebmb_next(node);
5443 }
William Lallemand8b453912019-11-21 15:48:10 +01005444
5445 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005446 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005447 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005448 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005449 err++;
5450 }
5451
5452 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005453 return err;
5454}
5455
Willy Tarreau55d37912016-12-21 23:38:39 +01005456/* Prepares all the contexts for a bind_conf and allocates the shared SSL
5457 * context if needed. Returns < 0 on error, 0 on success. The warnings and
5458 * alerts are directly emitted since the rest of the stack does it below.
5459 */
5460int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
5461{
5462 struct proxy *px = bind_conf->frontend;
5463 int alloc_ctx;
5464 int err;
5465
Willy Tarreau11ba4042022-05-20 15:56:32 +02005466 if (!(bind_conf->options & BC_O_USE_SSL)) {
Willy Tarreau55d37912016-12-21 23:38:39 +01005467 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005468 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
5469 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01005470 }
5471 return 0;
5472 }
5473 if (!bind_conf->default_ctx) {
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02005474 if (bind_conf->strict_sni && !(bind_conf->options & BC_O_GENERATE_CERTS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005475 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
5476 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005477 }
5478 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005479 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
5480 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005481 return -1;
5482 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005483 }
William Lallemandc61c0b32017-12-04 18:46:39 +01005484 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005485 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02005486 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
Willy Tarreau91358592021-06-15 08:08:04 +02005487 sizeof(*sh_ssl_sess_tree), (global.nbthread > 1));
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02005488 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005489 if (alloc_ctx == SHCTX_E_INIT_LOCK)
5490 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");
5491 else
5492 ha_alert("Unable to allocate SSL session cache.\n");
5493 return -1;
5494 }
5495 /* free block callback */
5496 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
5497 /* init the root tree within the extra space */
5498 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
5499 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01005500 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005501 err = 0;
5502 /* initialize all certificate contexts */
5503 err += ssl_sock_prepare_all_ctx(bind_conf);
5504
5505 /* initialize CA variables if the certificates generation is enabled */
5506 err += ssl_sock_load_ca(bind_conf);
5507
5508 return -err;
5509}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005510
William Lallemand231610a2021-12-30 11:25:43 +01005511/* release ssl context allocated for servers. Most of the field free here
5512 * must also be allocated in srv_ssl_settings_cpy() */
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005513void ssl_sock_free_srv_ctx(struct server *srv)
5514{
Olivier Houchardc7566002018-11-20 23:33:50 +01005515#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
William Lallemand231610a2021-12-30 11:25:43 +01005516 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005517#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005518#ifdef OPENSSL_NPN_NEGOTIATED
William Lallemand231610a2021-12-30 11:25:43 +01005519 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005520#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005521 if (srv->ssl_ctx.reused_sess) {
5522 int i;
5523
William Lallemande18d4e82021-11-17 02:59:21 +01005524 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaue709e822021-02-26 21:06:32 +01005525 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
William Lallemande18d4e82021-11-17 02:59:21 +01005526 ha_free(&srv->ssl_ctx.reused_sess[i].sni);
5527 }
Willy Tarreaue709e822021-02-26 21:06:32 +01005528 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005529 }
5530
Willy Tarreaue709e822021-02-26 21:06:32 +01005531 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005532 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005533 srv->ssl_ctx.ctx = NULL;
5534 }
William Lallemand231610a2021-12-30 11:25:43 +01005535
5536 ha_free(&srv->ssl_ctx.ca_file);
5537 ha_free(&srv->ssl_ctx.crl_file);
5538 ha_free(&srv->ssl_ctx.client_crt);
5539 ha_free(&srv->ssl_ctx.verify_host);
5540#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
5541 ha_free(&srv->sni_expr);
William Lallemand43c2ce42022-03-16 17:48:19 +01005542 release_sample_expr(srv->ssl_ctx.sni);
5543 srv->ssl_ctx.sni = NULL;
William Lallemand231610a2021-12-30 11:25:43 +01005544#endif
5545 ha_free(&srv->ssl_ctx.ciphers);
5546#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
5547 ha_free(&srv->ssl_ctx.ciphersuites);
5548#endif
William Lallemande69563f2021-12-30 14:45:19 +01005549 /* If there is a certificate we must unlink the ckch instance */
5550 ckch_inst_free(srv->ssl_ctx.inst);
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005551}
5552
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005553/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005554 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5555 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005556void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005557{
5558 struct ebmb_node *node, *back;
5559 struct sni_ctx *sni;
5560
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005561 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005562 while (node) {
5563 sni = ebmb_entry(node, struct sni_ctx, name);
5564 back = ebmb_next(node);
5565 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005566 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005567 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005568 free(sni);
5569 node = back;
5570 }
5571
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005572 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005573 while (node) {
5574 sni = ebmb_entry(node, struct sni_ctx, name);
5575 back = ebmb_next(node);
5576 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005577 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005578 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005579 free(sni);
5580 node = back;
5581 }
William Lallemandb2408692020-06-24 09:54:29 +02005582
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005583 SSL_CTX_free(bind_conf->initial_ctx);
5584 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005585 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005586 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005587 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005588 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005589}
William Lallemandb2408692020-06-24 09:54:29 +02005590
5591
5592void ssl_sock_deinit()
5593{
5594 crtlist_deinit(); /* must be free'd before the ckchs */
5595 ckch_deinit();
5596}
5597REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005598
Willy Tarreau795cdab2016-12-22 17:30:54 +01005599/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5600void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5601{
5602 ssl_sock_free_ca(bind_conf);
5603 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005604 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005605 free(bind_conf->ca_sign_file);
5606 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005607 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005608 free(bind_conf->keys_ref->filename);
5609 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005610 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005611 free(bind_conf->keys_ref);
5612 }
5613 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005614 bind_conf->ca_sign_pass = NULL;
5615 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005616}
5617
Christopher Faulet31af49d2015-06-09 17:29:50 +02005618/* Load CA cert file and private key used to generate certificates */
5619int
Willy Tarreau03209342016-12-22 17:08:28 +01005620ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005621{
Willy Tarreau03209342016-12-22 17:08:28 +01005622 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005623 struct cert_key_and_chain *ckch = NULL;
5624 int ret = 0;
5625 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005626
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02005627 if (!(bind_conf->options & BC_O_GENERATE_CERTS))
Shimi Gersner5846c492020-08-23 13:58:12 +03005628 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005629
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005630#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005631 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005632 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005633 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005634 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005635 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005636#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005637
Christopher Faulet31af49d2015-06-09 17:29:50 +02005638 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005639 ha_alert("Proxy '%s': cannot enable certificate generation, "
5640 "no CA certificate File configured at [%s:%d].\n",
5641 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005642 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005643 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005644
Shimi Gersner5846c492020-08-23 13:58:12 +03005645 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005646 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005647 if (!ckch) {
5648 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5649 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5650 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005651 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005652
5653 /* Try to parse file */
5654 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5655 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5656 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005657 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005658 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005659 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005660
5661 /* Fail if missing cert or pkey */
5662 if ((!ckch->cert) || (!ckch->key)) {
5663 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5664 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5665 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005666 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005667
Shimi Gersner5846c492020-08-23 13:58:12 +03005668 /* Final assignment to bind */
5669 bind_conf->ca_sign_ckch = ckch;
5670 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005671
Shimi Gersner5846c492020-08-23 13:58:12 +03005672 failed:
5673 if (ckch) {
5674 ssl_sock_free_cert_key_and_chain_contents(ckch);
5675 free(ckch);
5676 }
5677
Willy Tarreau1ea6e6a2022-05-20 16:03:18 +02005678 bind_conf->options &= ~BC_O_GENERATE_CERTS;
Shimi Gersner5846c492020-08-23 13:58:12 +03005679 ret++;
5680 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005681}
5682
5683/* Release CA cert and private key used to generate certificated */
5684void
5685ssl_sock_free_ca(struct bind_conf *bind_conf)
5686{
Shimi Gersner5846c492020-08-23 13:58:12 +03005687 if (bind_conf->ca_sign_ckch) {
5688 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005689 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005690 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005691}
5692
Emeric Brun46591952012-05-18 15:47:34 +02005693/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005694 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5695 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5696 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5697 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005698 * 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 +01005699 * as parameters to this function.
5700 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5701 * CO_ER_SSL_NO_MEM.
5702 */
5703int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5704 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5705{
5706 int retry = 1;
5707
5708 retry:
5709 /* Alloc a new SSL session. */
5710 *ssl = SSL_new(ssl_ctx);
5711 if (!*ssl) {
5712 if (!retry--)
5713 goto err;
5714
5715 pool_gc(NULL);
5716 goto retry;
5717 }
5718
5719 *bio = BIO_new(bio_meth);
5720 if (!*bio) {
5721 SSL_free(*ssl);
5722 *ssl = NULL;
5723 if (!retry--)
5724 goto err;
5725
5726 pool_gc(NULL);
5727 goto retry;
5728 }
5729
5730 BIO_set_data(*bio, ctx);
5731 SSL_set_bio(*ssl, *bio, *bio);
5732
5733 /* set connection pointer. */
5734 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5735 SSL_free(*ssl);
5736 *ssl = NULL;
5737 if (!retry--)
5738 goto err;
5739
5740 pool_gc(NULL);
5741 goto retry;
5742 }
5743
5744 return 0;
5745
5746 err:
5747 conn->err_code = CO_ER_SSL_NO_MEM;
5748 return -1;
5749}
5750
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005751/* This function is called when all the XPRT have been initialized. We can
5752 * now attempt to start the SSL handshake.
5753 */
5754static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5755{
5756 struct ssl_sock_ctx *ctx = xprt_ctx;
5757
5758 if (ctx->xprt->start) {
5759 int ret;
5760
5761 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5762 if (ret < 0)
5763 return ret;
5764 }
5765 tasklet_wakeup(ctx->wait_event.tasklet);
5766
5767 return 0;
5768}
5769
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005770/*
Emeric Brun46591952012-05-18 15:47:34 +02005771 * This function is called if SSL * context is not yet allocated. The function
5772 * is designed to be called before any other data-layer operation and sets the
5773 * handshake flag on the connection. It is safe to call it multiple times.
5774 * It returns 0 on success and -1 in error case.
5775 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005776static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005777{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005778 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005779 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005780 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005781 return 0;
5782
Olivier Houchard66ab4982019-02-26 18:37:15 +01005783 ctx = pool_alloc(ssl_sock_ctx_pool);
5784 if (!ctx) {
5785 conn->err_code = CO_ER_SSL_NO_MEM;
5786 return -1;
5787 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005788 ctx->wait_event.tasklet = tasklet_new();
5789 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005790 conn->err_code = CO_ER_SSL_NO_MEM;
5791 pool_free(ssl_sock_ctx_pool, ctx);
5792 return -1;
5793 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005794 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5795 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005796 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005797 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005798 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005799 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005800 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005801 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005802 ctx->xprt_st = 0;
5803 ctx->xprt_ctx = NULL;
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005804 ctx->error_code = 0;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005805
5806 /* Only work with sockets for now, this should be adapted when we'll
5807 * add QUIC support.
5808 */
5809 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005810 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005811 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5812 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005813 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005814
Willy Tarreau82531f62021-10-06 12:15:18 +02005815 if (global.maxsslconn && global.sslconns >= global.maxsslconn) {
Willy Tarreau20879a02012-12-03 16:32:10 +01005816 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005817 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005818 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005819
Emeric Brun46591952012-05-18 15:47:34 +02005820 /* If it is in client mode initiate SSL session
5821 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005822 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005823 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5824 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005825 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005826
Olivier Houchard66ab4982019-02-26 18:37:15 +01005827 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005828 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005829 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5830 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5831 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 +01005832 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005833 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005834 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005835 } else if (sess) {
5836 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005837 }
5838 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005839 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005840
Emeric Brun46591952012-05-18 15:47:34 +02005841 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005842 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005843
Willy Tarreau82531f62021-10-06 12:15:18 +02005844 _HA_ATOMIC_INC(&global.sslconns);
5845 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005846 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005847 return 0;
5848 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005849 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005850 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005851
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005852 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5853 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005854 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005855
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005856#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005857 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005858 b_alloc(&ctx->early_buf);
5859 SSL_set_max_early_data(ctx->ssl,
5860 /* Only allow early data if we managed to allocate
5861 * a buffer.
5862 */
5863 (!b_is_null(&ctx->early_buf)) ?
5864 global.tune.bufsize - global.tune.maxrewrite : 0);
5865 }
5866#endif
5867
Olivier Houchard66ab4982019-02-26 18:37:15 +01005868 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005869
Emeric Brun46591952012-05-18 15:47:34 +02005870 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005871 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005872#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005873 if (bc->ssl_conf.early_data)
5874 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005875#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005876
Willy Tarreau82531f62021-10-06 12:15:18 +02005877 _HA_ATOMIC_INC(&global.sslconns);
5878 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005879 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005880 return 0;
5881 }
5882 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005883 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005884err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005885 if (ctx && ctx->wait_event.tasklet)
5886 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005887 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005888 return -1;
5889}
5890
5891
5892/* This is the callback which is used when an SSL handshake is pending. It
5893 * updates the FD status if it wants some polling before being called again.
5894 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5895 * otherwise it returns non-zero and removes itself from the connection's
5896 * flags (the bit is provided in <flag> by the caller).
5897 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005898static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005899{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02005900 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Emeric Brun46591952012-05-18 15:47:34 +02005901 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005902 struct ssl_counters *counters = NULL;
5903 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005904 struct listener *li;
5905 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005906 socklen_t lskerr;
5907 int skerr;
5908
Emeric Brun46591952012-05-18 15:47:34 +02005909
Willy Tarreau3c728722014-01-23 13:50:42 +01005910 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005911 return 0;
5912
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005913 /* get counters */
5914 switch (obj_type(conn->target)) {
5915 case OBJ_TYPE_LISTENER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005916 li = __objt_listener(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005917 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5918 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5919 &ssl_stats_module);
5920 break;
5921
5922 case OBJ_TYPE_SERVER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005923 srv = __objt_server(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005924 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5925 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5926 &ssl_stats_module);
5927 break;
5928
5929 default:
5930 break;
5931 }
5932
Willy Tarreau939b0bf2022-04-11 11:29:11 +02005933 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005934 goto out_error;
5935
Willy Tarreau06300382021-02-02 15:42:25 +01005936 /* don't start calculating a handshake on a dead connection */
5937 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5938 goto out_error;
5939
5940 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5941 * status from the lower layers, so let's check the FD directly. Ideally
5942 * the xprt layers should provide some status indicating their knowledge
5943 * of shutdowns or error.
5944 */
Willy Tarreau07ecfc52022-04-11 18:07:03 +02005945 BUG_ON(conn->flags & CO_FL_FDLESS);
5946
Willy Tarreau06300382021-02-02 15:42:25 +01005947 skerr = 0;
5948 lskerr = sizeof(skerr);
5949 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5950 skerr != 0)
5951 goto out_error;
5952
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005953#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005954 /*
5955 * Check if we have early data. If we do, we have to read them
5956 * before SSL_do_handshake() is called, And there's no way to
5957 * detect early data, except to try to read them
5958 */
5959 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005960 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005961
Olivier Houchard54907bb2019-12-19 15:02:39 +01005962 while (1) {
5963 ret = SSL_read_early_data(ctx->ssl,
5964 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5965 &read_data);
5966 if (ret == SSL_READ_EARLY_DATA_ERROR)
5967 goto check_error;
5968 if (read_data > 0) {
5969 conn->flags |= CO_FL_EARLY_DATA;
5970 b_add(&ctx->early_buf, read_data);
5971 }
5972 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5973 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5974 if (!b_data(&ctx->early_buf))
5975 b_free(&ctx->early_buf);
5976 break;
5977 }
5978 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005979 }
5980#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005981 /* If we use SSL_do_handshake to process a reneg initiated by
5982 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5983 * Usually SSL_write and SSL_read are used and process implicitly
5984 * the reneg handshake.
5985 * Here we use SSL_peek as a workaround for reneg.
5986 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005987 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005988 char c;
5989
Olivier Houchard66ab4982019-02-26 18:37:15 +01005990 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005991 if (ret <= 0) {
5992 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005993 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005994
Emeric Brun674b7432012-11-08 19:21:55 +01005995 if (ret == SSL_ERROR_WANT_WRITE) {
5996 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005997 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005998 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005999 return 0;
6000 }
6001 else if (ret == SSL_ERROR_WANT_READ) {
6002 /* handshake may have been completed but we have
6003 * no more data to read.
6004 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006005 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01006006 ret = 1;
6007 goto reneg_ok;
6008 }
6009 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02006010 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02006011 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01006012 return 0;
6013 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006014#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006015 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006016 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006017 return 0;
6018 }
6019#endif
Emeric Brun674b7432012-11-08 19:21:55 +01006020 else if (ret == SSL_ERROR_SYSCALL) {
6021 /* if errno is null, then connection was successfully established */
6022 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
6023 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01006024 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02006025#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
6026 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006027 conn->err_code = CO_ER_SSL_HANDSHAKE;
6028#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006029 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02006030#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02006031 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006032 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006033 empty_handshake = state == TLS_ST_BEFORE;
6034#else
Lukas Tribus49799162019-07-08 14:29:15 +02006035 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
6036 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006037#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006038 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02006039 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006040 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006041 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6042 else
6043 conn->err_code = CO_ER_SSL_EMPTY;
6044 }
6045 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006046 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006047 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6048 else
6049 conn->err_code = CO_ER_SSL_ABORT;
6050 }
6051 }
6052 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006053 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006054 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01006055 else
Emeric Brun29f037d2014-04-25 19:05:36 +02006056 conn->err_code = CO_ER_SSL_HANDSHAKE;
6057 }
Lukas Tribus49799162019-07-08 14:29:15 +02006058#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01006059 }
Emeric Brun674b7432012-11-08 19:21:55 +01006060 goto out_error;
6061 }
6062 else {
6063 /* Fail on all other handshake errors */
6064 /* Note: OpenSSL may leave unread bytes in the socket's
6065 * buffer, causing an RST to be emitted upon close() on
6066 * TCP sockets. We first try to drain possibly pending
6067 * data to avoid this as much as possible.
6068 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01006069 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01006070 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006071 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02006072 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01006073 goto out_error;
6074 }
6075 }
6076 /* read some data: consider handshake completed */
6077 goto reneg_ok;
6078 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006079 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006080check_error:
Emeric Brun46591952012-05-18 15:47:34 +02006081 if (ret != 1) {
6082 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006083 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006084
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02006085 if (!ctx->error_code)
6086 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02006087
Emeric Brun46591952012-05-18 15:47:34 +02006088 if (ret == SSL_ERROR_WANT_WRITE) {
6089 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02006090 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02006091 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02006092 return 0;
6093 }
6094 else if (ret == SSL_ERROR_WANT_READ) {
6095 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02006096 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02006097 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6098 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02006099 return 0;
6100 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006101#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006102 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006103 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006104 return 0;
6105 }
6106#endif
Willy Tarreau89230192012-09-28 20:22:13 +02006107 else if (ret == SSL_ERROR_SYSCALL) {
6108 /* if errno is null, then connection was successfully established */
6109 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
6110 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006111 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02006112#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
6113 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006114 conn->err_code = CO_ER_SSL_HANDSHAKE;
6115#else
6116 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02006117#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02006118 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006119 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006120 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006121#else
Lukas Tribus49799162019-07-08 14:29:15 +02006122 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
6123 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006124#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006125 if (empty_handshake) {
6126 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006127 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006128 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6129 else
6130 conn->err_code = CO_ER_SSL_EMPTY;
6131 }
6132 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006133 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006134 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6135 else
6136 conn->err_code = CO_ER_SSL_ABORT;
6137 }
Emeric Brun29f037d2014-04-25 19:05:36 +02006138 }
6139 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006140 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006141 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6142 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006143 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02006144 }
Lukas Tribus49799162019-07-08 14:29:15 +02006145#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02006146 }
Willy Tarreau89230192012-09-28 20:22:13 +02006147 goto out_error;
6148 }
Emeric Brun46591952012-05-18 15:47:34 +02006149 else {
6150 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02006151 /* Note: OpenSSL may leave unread bytes in the socket's
6152 * buffer, causing an RST to be emitted upon close() on
6153 * TCP sockets. We first try to drain possibly pending
6154 * data to avoid this as much as possible.
6155 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01006156 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01006157 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006158 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02006159 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006160 goto out_error;
6161 }
6162 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006163#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01006164 else {
6165 /*
6166 * If the server refused the early data, we have to send a
6167 * 425 to the client, as we no longer have the data to sent
6168 * them again.
6169 */
6170 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006171 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006172 conn->err_code = CO_ER_SSL_EARLY_FAILED;
6173 goto out_error;
6174 }
6175 }
6176 }
6177#endif
6178
Emeric Brun46591952012-05-18 15:47:34 +02006179
Emeric Brun674b7432012-11-08 19:21:55 +01006180reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00006181
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006182#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006183 /* ASYNC engine API doesn't support moving read/write
6184 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006185 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00006186 */
6187 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006188 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006189#endif
Emeric Brun46591952012-05-18 15:47:34 +02006190 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006191 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02006192 if (objt_server(conn->target)) {
6193 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
6194 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
6195 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02006196 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02006197 else {
6198 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
6199 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
6200 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
6201 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01006202
Willy Tarreau42995282020-11-06 13:19:18 +01006203 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006204 HA_ATOMIC_INC(&counters->sess);
6205 HA_ATOMIC_INC(&counters_px->sess);
Willy Tarreau42995282020-11-06 13:19:18 +01006206 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01006207 }
Willy Tarreau42995282020-11-06 13:19:18 +01006208 else if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006209 HA_ATOMIC_INC(&counters->reused_sess);
6210 HA_ATOMIC_INC(&counters_px->reused_sess);
Emeric Brun46591952012-05-18 15:47:34 +02006211 }
6212
6213 /* The connection is now established at both layers, it's time to leave */
6214 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
6215 return 1;
6216
6217 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006218 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006219 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006220 ERR_clear_error();
6221
Emeric Brun9fa89732012-10-04 17:09:56 +02006222 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01006223 if (objt_server(conn->target)) {
6224 struct server *s = __objt_server(conn->target);
6225 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
6226 * one cache per thread, it only prevents to flush it from the CLI in
6227 * another thread */
6228
6229 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01006230 if (s->ssl_ctx.reused_sess[tid].ptr)
6231 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01006232 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02006233 }
6234
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006235 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006236 HA_ATOMIC_INC(&counters->failed_handshake);
6237 HA_ATOMIC_INC(&counters_px->failed_handshake);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006238 }
6239
Emeric Brun46591952012-05-18 15:47:34 +02006240 /* Fail on all other handshake errors */
6241 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01006242 if (!conn->err_code)
6243 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006244 return 0;
6245}
6246
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006247/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6248 * event subscriber <es> is not allowed to change from a previous call as long
6249 * as at least one event is still subscribed. The <event_type> must only be a
6250 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
6251 * unless the transport layer was already released.
6252 */
6253static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006254{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006255 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006256
Olivier Houchard0ff28652019-06-24 18:57:39 +02006257 if (!ctx)
6258 return -1;
6259
Willy Tarreau113d52b2020-01-10 09:20:26 +01006260 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006261 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006262
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006263 ctx->subs = es;
6264 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006265
6266 /* we may have to subscribe to lower layers for new events */
6267 event_type &= ~ctx->wait_event.events;
6268 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
6269 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006270 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006271}
6272
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006273/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6274 * The <es> pointer is not allowed to differ from the one passed to the
6275 * subscribe() call. It always returns zero.
6276 */
6277static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006278{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006279 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006280
Willy Tarreau113d52b2020-01-10 09:20:26 +01006281 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006282 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006283
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006284 es->events &= ~event_type;
6285 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01006286 ctx->subs = NULL;
6287
6288 /* If we subscribed, and we're not doing the handshake,
6289 * then we subscribed because the upper layer asked for it,
6290 * as the upper layer is no longer interested, we can
6291 * unsubscribe too.
6292 */
6293 event_type &= ctx->wait_event.events;
6294 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
6295 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006296
6297 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006298}
6299
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006300/* The connection has been taken over, so destroy the old tasklet and create
6301 * a new one. The original thread ID must be passed into orig_tid
6302 * It should be called with the takeover lock for the old thread held.
6303 * Returns 0 on success, and -1 on failure
6304 */
6305static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
6306{
6307 struct ssl_sock_ctx *ctx = xprt_ctx;
6308 struct tasklet *tl = tasklet_new();
6309
6310 if (!tl)
6311 return -1;
6312
6313 ctx->wait_event.tasklet->context = NULL;
6314 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
6315 ctx->wait_event.tasklet = tl;
6316 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
6317 ctx->wait_event.tasklet->context = ctx;
6318 return 0;
6319}
6320
Willy Tarreau41491682021-03-02 17:29:56 +01006321/* notify the next xprt that the connection is about to become idle and that it
6322 * may be stolen at any time after the function returns and that any tasklet in
6323 * the chain must be careful before dereferencing its context.
6324 */
6325static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
6326{
6327 struct ssl_sock_ctx *ctx = xprt_ctx;
6328
6329 if (!ctx || !ctx->wait_event.tasklet)
6330 return;
6331
6332 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6333 if (ctx->xprt)
6334 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
6335}
6336
6337/* notify the next xprt that the connection is not idle anymore and that it may
6338 * not be stolen before the next xprt_set_idle().
6339 */
6340static void ssl_set_used(struct connection *conn, void *xprt_ctx)
6341{
6342 struct ssl_sock_ctx *ctx = xprt_ctx;
6343
6344 if (!ctx || !ctx->wait_event.tasklet)
6345 return;
6346
6347 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6348 if (ctx->xprt)
6349 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
6350}
6351
Olivier Houchard2e055482019-05-27 19:50:12 +02006352/* Use the provided XPRT as an underlying XPRT, and provide the old one.
6353 * Returns 0 on success, and non-zero on failure.
6354 */
6355static 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)
6356{
6357 struct ssl_sock_ctx *ctx = xprt_ctx;
6358
6359 if (oldxprt_ops != NULL)
6360 *oldxprt_ops = ctx->xprt;
6361 if (oldxprt_ctx != NULL)
6362 *oldxprt_ctx = ctx->xprt_ctx;
6363 ctx->xprt = toadd_ops;
6364 ctx->xprt_ctx = toadd_ctx;
6365 return 0;
6366}
6367
Olivier Houchard5149b592019-05-23 17:47:36 +02006368/* Remove the specified xprt. If if it our underlying XPRT, remove it and
6369 * return 0, otherwise just call the remove_xprt method from the underlying
6370 * XPRT.
6371 */
6372static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
6373{
6374 struct ssl_sock_ctx *ctx = xprt_ctx;
6375
6376 if (ctx->xprt_ctx == toremove_ctx) {
6377 ctx->xprt_ctx = newctx;
6378 ctx->xprt = newops;
6379 return 0;
6380 }
6381 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
6382}
6383
Willy Tarreau144f84a2021-03-02 16:09:26 +01006384struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02006385{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006386 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006387 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006388 struct connection *conn;
6389 int conn_in_list;
6390 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006391
Willy Tarreau41491682021-03-02 17:29:56 +01006392 if (state & TASK_F_USR1) {
6393 /* the tasklet was idling on an idle connection, it might have
6394 * been stolen, let's be careful!
6395 */
6396 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6397 if (tl->context == NULL) {
6398 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6399 tasklet_free(tl);
6400 return NULL;
6401 }
6402 conn = ctx->conn;
6403 conn_in_list = conn->flags & CO_FL_LIST_MASK;
6404 if (conn_in_list)
6405 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006406 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01006407 } else {
6408 conn = ctx->conn;
6409 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006410 }
Willy Tarreau41491682021-03-02 17:29:56 +01006411
Olivier Houchardea8dd942019-05-20 14:02:16 +02006412 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01006413 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006414 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006415 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
6416 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01006417 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006418 }
6419 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006420 /* If we had an error, or the handshake is done and I/O is available,
6421 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01006422 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02006423 * we can't be sure conn_fd_handler() will be called again.
6424 */
6425 if ((ctx->conn->flags & CO_FL_ERROR) ||
6426 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006427 int woke = 0;
6428
6429 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006430 if (ctx->subs) {
6431 tasklet_wakeup(ctx->subs->tasklet);
6432 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006433 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006434 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006435 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006436
Olivier Houchardea8dd942019-05-20 14:02:16 +02006437 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01006438 * upper layers know. If we have no mux, create it,
6439 * and once we have a mux, call its wake method if we didn't
6440 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02006441 */
6442 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01006443 if (!ctx->conn->mux)
6444 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006445 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006446 ret = ctx->conn->mux->wake(ctx->conn);
6447 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006448 }
6449 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006450#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006451 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006452 else if (b_data(&ctx->early_buf) && ctx->subs &&
6453 ctx->subs->events & SUB_RETRY_RECV) {
6454 tasklet_wakeup(ctx->subs->tasklet);
6455 ctx->subs->events &= ~SUB_RETRY_RECV;
6456 if (!ctx->subs->events)
6457 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01006458 }
6459#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006460leave:
6461 if (!ret && conn_in_list) {
6462 struct server *srv = objt_server(conn->target);
6463
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006464 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006465 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006466 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006467 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006468 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006469 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006470 }
Willy Tarreau74163142021-03-13 11:30:19 +01006471 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006472}
6473
Emeric Brun46591952012-05-18 15:47:34 +02006474/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01006475 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02006476 * buffer wraps, in which case a second call may be performed. The connection's
6477 * flags are updated with whatever special event is detected (error, read0,
6478 * empty). The caller is responsible for taking care of those events and
6479 * avoiding the call if inappropriate. The function does not call the
6480 * connection's polling update function, so the caller is responsible for this.
6481 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006482static 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 +02006483{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006484 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02006485 ssize_t ret;
6486 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02006487
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006488 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006489 goto out_error;
6490
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006491#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006492 if (b_data(&ctx->early_buf)) {
6493 try = b_contig_space(buf);
6494 if (try > b_data(&ctx->early_buf))
6495 try = b_data(&ctx->early_buf);
6496 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
6497 b_add(buf, try);
6498 b_del(&ctx->early_buf, try);
6499 if (b_data(&ctx->early_buf) == 0)
6500 b_free(&ctx->early_buf);
6501 return try;
6502 }
6503#endif
6504
Willy Tarreau911db9b2020-01-23 16:27:54 +01006505 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006506 /* a handshake was requested */
6507 return 0;
6508
Emeric Brun46591952012-05-18 15:47:34 +02006509 /* read the largest possible block. For this, we perform only one call
6510 * to recv() unless the buffer wraps and we exactly fill the first hunk,
6511 * in which case we accept to do it once again. A new attempt is made on
6512 * EINTR too.
6513 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01006514 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006515
Willy Tarreau591d4452018-06-15 17:21:00 +02006516 try = b_contig_space(buf);
6517 if (!try)
6518 break;
6519
Willy Tarreauabf08d92014-01-14 11:31:27 +01006520 if (try > count)
6521 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02006522
Olivier Houchard66ab4982019-02-26 18:37:15 +01006523 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02006524
Emeric Brune1f38db2012-09-03 20:36:47 +02006525 if (conn->flags & CO_FL_ERROR) {
6526 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006527 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006528 }
Emeric Brun46591952012-05-18 15:47:34 +02006529 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006530 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006531 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006532 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006533 }
Emeric Brun46591952012-05-18 15:47:34 +02006534 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006535 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006536 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006537 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006538 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006539 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006540#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006541 /* Async mode can be re-enabled, because we're leaving data state.*/
6542 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006543 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006544#endif
Emeric Brun46591952012-05-18 15:47:34 +02006545 break;
6546 }
6547 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006548 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006549 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6550 SUB_RETRY_RECV,
6551 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006552 /* handshake is running, and it may need to re-enable read */
6553 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006554#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006555 /* Async mode can be re-enabled, because we're leaving data state.*/
6556 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006557 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006558#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006559 break;
6560 }
Emeric Brun46591952012-05-18 15:47:34 +02006561 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006562 } else if (ret == SSL_ERROR_ZERO_RETURN)
6563 goto read0;
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006564 else if (ret == SSL_ERROR_SSL) {
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006565 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
6566 if (ctx && !ctx->error_code)
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006567 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006568 conn->err_code = CO_ERR_SSL_FATAL;
6569 }
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006570 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6571 * stack before shutting down the connection for
6572 * reading. */
Willy Tarreauacef5e22022-04-25 20:32:15 +02006573 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN || errno == EWOULDBLOCK))
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006574 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006575 /* otherwise it's a real error */
6576 goto out_error;
6577 }
6578 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006579 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006580 return done;
6581
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006582 clear_ssl_error:
6583 /* Clear openssl global errors stack */
6584 ssl_sock_dump_errors(conn);
6585 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006586 read0:
6587 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006588 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006589
Emeric Brun46591952012-05-18 15:47:34 +02006590 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006591 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006592 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006593 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006594 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006595 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006596}
6597
6598
Willy Tarreau787db9a2018-06-14 18:31:46 +02006599/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6600 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6601 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006602 * Only one call to send() is performed, unless the buffer wraps, in which case
6603 * a second call may be performed. The connection's flags are updated with
6604 * whatever special event is detected (error, empty). The caller is responsible
6605 * for taking care of those events and avoiding the call if inappropriate. The
6606 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006607 * is responsible for this. The buffer's output is not adjusted, it's up to the
6608 * caller to take care of this. It's up to the caller to update the buffer's
6609 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006610 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006611static 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 +02006612{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006613 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006614 ssize_t ret;
6615 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006616
6617 done = 0;
6618
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006619 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006620 goto out_error;
6621
Willy Tarreau911db9b2020-01-23 16:27:54 +01006622 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006623 /* a handshake was requested */
6624 return 0;
6625
6626 /* send the largest possible block. For this we perform only one call
6627 * to send() unless the buffer wraps and we exactly fill the first hunk,
6628 * in which case we accept to do it once again.
6629 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006630 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006631#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006632 size_t written_data;
6633#endif
6634
Willy Tarreau787db9a2018-06-14 18:31:46 +02006635 try = b_contig_data(buf, done);
6636 if (try > count)
6637 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006638
Thomas Prückl10243932022-04-27 13:04:54 +02006639 if (global_ssl.hard_max_record && try > global_ssl.hard_max_record)
6640 try = global_ssl.hard_max_record;
6641
Willy Tarreau7bed9452014-02-02 02:00:24 +01006642 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006643 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006644 global_ssl.max_record && try > global_ssl.max_record) {
6645 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006646 }
6647 else {
6648 /* we need to keep the information about the fact that
6649 * we're not limiting the upcoming send(), because if it
6650 * fails, we'll have to retry with at least as many data.
6651 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006652 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006653 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006654
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006655#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006656 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006657 unsigned int max_early;
6658
Olivier Houchard522eea72017-11-03 16:27:47 +01006659 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006660 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006661 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006662 if (SSL_get0_session(ctx->ssl))
6663 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006664 else
6665 max_early = 0;
6666 }
6667
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006668 if (try + ctx->sent_early_data > max_early) {
6669 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006670 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006671 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006672 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006673 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006674 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006675 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006676 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006677 if (ret == 1) {
6678 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006679 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006680 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006681 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006682 /* Initiate the handshake, now */
6683 tasklet_wakeup(ctx->wait_event.tasklet);
6684 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006685
Olivier Houchardc2aae742017-09-22 18:26:28 +02006686 }
6687
6688 } else
6689#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006690 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006691
Emeric Brune1f38db2012-09-03 20:36:47 +02006692 if (conn->flags & CO_FL_ERROR) {
6693 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006694 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006695 }
Emeric Brun46591952012-05-18 15:47:34 +02006696 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006697 /* A send succeeded, so we can consider ourself connected */
6698 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006699 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006700 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006701 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006702 }
6703 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006704 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006705
Emeric Brun46591952012-05-18 15:47:34 +02006706 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006707 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006708 /* handshake is running, and it may need to re-enable write */
6709 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006710 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006711#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006712 /* Async mode can be re-enabled, because we're leaving data state.*/
6713 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006714 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006715#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006716 break;
6717 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006718
Emeric Brun46591952012-05-18 15:47:34 +02006719 break;
6720 }
6721 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006722 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006723 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006724 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6725 SUB_RETRY_RECV,
6726 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006727#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006728 /* Async mode can be re-enabled, because we're leaving data state.*/
6729 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006730 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006731#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006732 break;
6733 }
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006734 else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) {
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006735 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
6736
Willy Tarreau3a0a0d62022-04-12 07:31:06 +02006737 if (ctx && !ctx->error_code)
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006738 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006739 conn->err_code = CO_ERR_SSL_FATAL;
6740 }
Emeric Brun46591952012-05-18 15:47:34 +02006741 goto out_error;
6742 }
6743 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006744 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006745 return done;
6746
6747 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006748 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006749 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006750 ERR_clear_error();
6751
Emeric Brun46591952012-05-18 15:47:34 +02006752 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006753 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006754}
6755
Willy Tarreau832e2422021-05-13 10:11:03 +02006756void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006757
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006758 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006759
Olivier Houchardea8dd942019-05-20 14:02:16 +02006760
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006761 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006762 if (ctx->wait_event.events != 0)
6763 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6764 ctx->wait_event.events,
6765 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006766 if (ctx->subs) {
6767 ctx->subs->events = 0;
6768 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006769 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006770
Olivier Houchard692c1d02019-05-23 18:41:47 +02006771 if (ctx->xprt->close)
6772 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006773#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006774 if (global_ssl.async) {
6775 OSSL_ASYNC_FD all_fd[32], afd;
6776 size_t num_all_fds = 0;
6777 int i;
6778
Olivier Houchard66ab4982019-02-26 18:37:15 +01006779 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006780 if (num_all_fds > 32) {
6781 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6782 return;
6783 }
6784
Olivier Houchard66ab4982019-02-26 18:37:15 +01006785 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006786
6787 /* If an async job is pending, we must try to
6788 to catch the end using polling before calling
6789 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006790 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006791 for (i=0 ; i < num_all_fds ; i++) {
6792 /* switch on an handler designed to
6793 * handle the SSL_free
6794 */
6795 afd = all_fd[i];
6796 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006797 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006798 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006799 /* To ensure that the fd cache won't be used
6800 * and we'll catch a real RD event.
6801 */
6802 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006803 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006804 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006805 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006806 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006807 return;
6808 }
Emeric Brun3854e012017-05-17 20:42:48 +02006809 /* Else we can remove the fds from the fdtab
6810 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006811 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006812 * because the fd is owned by the engine.
6813 * the engine is responsible to close
6814 */
Emeric Brun7d392a52022-07-01 17:36:50 +02006815 for (i=0 ; i < num_all_fds ; i++) {
6816 /* We want to remove the fd from the fdtab
6817 * but we flag it to disown because the
6818 * close is performed by the engine itself
6819 */
6820 fdtab[all_fd[i]].state |= FD_DISOWN;
6821 fd_delete(all_fd[i]);
6822 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006823 }
6824#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006825 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006826 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006827 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006828 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau82531f62021-10-06 12:15:18 +02006829 _HA_ATOMIC_DEC(&global.sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006830 }
Emeric Brun46591952012-05-18 15:47:34 +02006831}
6832
6833/* This function tries to perform a clean shutdown on an SSL connection, and in
6834 * any case, flags the connection as reusable if no handshake was in progress.
6835 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006836static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006837{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006838 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006839
Willy Tarreau911db9b2020-01-23 16:27:54 +01006840 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006841 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006842 if (!clean)
6843 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006844 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006845 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006846 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006847 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006848 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006849 ERR_clear_error();
6850 }
Emeric Brun46591952012-05-18 15:47:34 +02006851}
6852
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006853
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006854/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006855int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6856{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006857 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
William Lallemandd4f946c2019-12-05 10:26:40 +01006858 X509 *crt;
6859
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006860 if (!ctx)
William Lallemandd4f946c2019-12-05 10:26:40 +01006861 return 0;
William Lallemandd4f946c2019-12-05 10:26:40 +01006862 crt = SSL_get_certificate(ctx->ssl);
6863 if (!crt)
6864 return 0;
6865
6866 return cert_get_pkey_algo(crt, out);
6867}
6868
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006869/* used for ppv2 cert signature (can be used for logging) */
6870const char *ssl_sock_get_cert_sig(struct connection *conn)
6871{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006872 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006873
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006874 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6875 X509 *crt;
6876
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006877 if (!ctx)
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006878 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006879 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006880 if (!crt)
6881 return NULL;
6882 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6883 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6884}
6885
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006886/* used for ppv2 authority */
6887const char *ssl_sock_get_sni(struct connection *conn)
6888{
6889#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006890 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006891
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006892 if (!ctx)
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006893 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006894 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006895#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006896 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006897#endif
6898}
6899
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006900/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006901const char *ssl_sock_get_cipher_name(struct connection *conn)
6902{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006903 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006904
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006905 if (!ctx)
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006906 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006907 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006908}
6909
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006910/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006911const char *ssl_sock_get_proto_version(struct connection *conn)
6912{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006913 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006914
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006915 if (!ctx)
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006916 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006917 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006918}
6919
Olivier Houchardab28a322018-12-21 19:45:40 +01006920void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6921{
6922#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006923 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006924
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006925 if (!ctx)
Olivier Houcharde488ea82019-06-28 14:10:33 +02006926 return;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006927 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006928#endif
6929}
6930
Willy Tarreau119a4082016-12-22 21:58:38 +01006931/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6932 * to disable SNI.
6933 */
Willy Tarreau63076412015-07-10 11:33:32 +02006934void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6935{
6936#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006937 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
William Lallemande18d4e82021-11-17 02:59:21 +01006938 struct server *s;
Willy Tarreau119a4082016-12-22 21:58:38 +01006939 char *prev_name;
6940
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006941 if (!ctx)
Willy Tarreau63076412015-07-10 11:33:32 +02006942 return;
Willy Tarreau77bfa662021-12-23 11:12:13 +01006943
6944 BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN));
6945 BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS));
6946
William Lallemande18d4e82021-11-17 02:59:21 +01006947 s = __objt_server(conn->target);
Willy Tarreau63076412015-07-10 11:33:32 +02006948
Willy Tarreau119a4082016-12-22 21:58:38 +01006949 /* if the SNI changes, we must destroy the reusable context so that a
William Lallemande18d4e82021-11-17 02:59:21 +01006950 * new connection will present a new SNI. compare with the SNI
6951 * previously stored in the reused_sess */
6952 /* the RWLOCK is used to ensure that we are not trying to flush the
6953 * cache from the CLI */
6954
6955 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
6956 prev_name = s->ssl_ctx.reused_sess[tid].sni;
Willy Tarreau119a4082016-12-22 21:58:38 +01006957 if ((!prev_name && hostname) ||
6958 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006959 SSL_set_session(ctx->ssl, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01006960 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau119a4082016-12-22 21:58:38 +01006961
Olivier Houchard66ab4982019-02-26 18:37:15 +01006962 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006963#endif
6964}
6965
Emeric Brun0abf8362014-06-24 18:26:41 +02006966/* Extract peer certificate's common name into the chunk dest
6967 * Returns
6968 * the len of the extracted common name
6969 * or 0 if no CN found in DN
6970 * or -1 on error case (i.e. no peer certificate)
6971 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006972int ssl_sock_get_remote_common_name(struct connection *conn,
6973 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006974{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006975 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
David Safb76832014-05-08 23:42:08 -04006976 X509 *crt = NULL;
6977 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006978 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006979 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006980 .area = (char *)&find_cn,
6981 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006982 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006983 int result = -1;
David Safb76832014-05-08 23:42:08 -04006984
Willy Tarreau939b0bf2022-04-11 11:29:11 +02006985 if (!ctx)
Emeric Brun0abf8362014-06-24 18:26:41 +02006986 goto out;
David Safb76832014-05-08 23:42:08 -04006987
6988 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006989 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006990 if (!crt)
6991 goto out;
6992
6993 name = X509_get_subject_name(crt);
6994 if (!name)
6995 goto out;
David Safb76832014-05-08 23:42:08 -04006996
Emeric Brun0abf8362014-06-24 18:26:41 +02006997 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6998out:
David Safb76832014-05-08 23:42:08 -04006999 if (crt)
7000 X509_free(crt);
7001
7002 return result;
7003}
7004
Dave McCowan328fb582014-07-30 10:39:13 -04007005/* returns 1 if client passed a certificate for this session, 0 if not */
7006int ssl_sock_get_cert_used_sess(struct connection *conn)
7007{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007008 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Dave McCowan328fb582014-07-30 10:39:13 -04007009 X509 *crt = NULL;
7010
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007011 if (!ctx)
Dave McCowan328fb582014-07-30 10:39:13 -04007012 return 0;
7013
7014 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01007015 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04007016 if (!crt)
7017 return 0;
7018
7019 X509_free(crt);
7020 return 1;
7021}
7022
7023/* returns 1 if client passed a certificate for this connection, 0 if not */
7024int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04007025{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007026 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007027
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007028 if (!ctx)
David Safb76832014-05-08 23:42:08 -04007029 return 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007030 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04007031}
7032
7033/* returns result from SSL verify */
7034unsigned int ssl_sock_get_verify_result(struct connection *conn)
7035{
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007036 struct ssl_sock_ctx *ctx = conn_get_ssl_sock_ctx(conn);
Olivier Houchard66ab4982019-02-26 18:37:15 +01007037
Willy Tarreau939b0bf2022-04-11 11:29:11 +02007038 if (!ctx)
David Safb76832014-05-08 23:42:08 -04007039 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007040 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04007041}
7042
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007043/* Returns the application layer protocol name in <str> and <len> when known.
7044 * Zero is returned if the protocol name was not found, otherwise non-zero is
7045 * returned. The string is allocated in the SSL context and doesn't have to be
7046 * freed by the caller. NPN is also checked if available since older versions
7047 * of openssl (1.0.1) which are more common in field only support this one.
7048 */
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01007049int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007050{
Olivier Houchard66ab4982019-02-26 18:37:15 +01007051#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
7052 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01007053 struct ssl_sock_ctx *ctx = xprt_ctx;
7054 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007055 return 0;
7056
7057 *str = NULL;
7058
7059#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01007060 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007061 if (*str)
7062 return 1;
7063#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01007064#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01007065 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007066 if (*str)
7067 return 1;
7068#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01007069#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007070 return 0;
7071}
7072
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007073/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02007074int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007075{
7076 X509 *ca;
7077 X509_NAME *name = NULL;
7078 ASN1_OCTET_STRING *skid = NULL;
7079 STACK_OF(X509) *chain = NULL;
7080 struct issuer_chain *issuer;
7081 struct eb64_node *node;
7082 char *path;
7083 u64 key;
7084 int ret = 0;
7085
7086 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
7087 if (chain == NULL) {
7088 chain = sk_X509_new_null();
7089 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
7090 name = X509_get_subject_name(ca);
7091 }
7092 if (!sk_X509_push(chain, ca)) {
7093 X509_free(ca);
7094 goto end;
7095 }
7096 }
7097 if (!chain) {
7098 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
7099 goto end;
7100 }
7101 if (!skid) {
7102 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
7103 goto end;
7104 }
7105 if (!name) {
7106 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
7107 goto end;
7108 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01007109 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01007110 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007111 issuer = container_of(node, typeof(*issuer), node);
7112 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
7113 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
7114 goto end;
7115 }
7116 }
7117 issuer = calloc(1, sizeof *issuer);
7118 path = strdup(fp);
7119 if (!issuer || !path) {
7120 free(issuer);
7121 free(path);
7122 goto end;
7123 }
7124 issuer->node.key = key;
7125 issuer->path = path;
7126 issuer->chain = chain;
7127 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01007128 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007129 ret = 1;
7130 end:
7131 if (skid)
7132 ASN1_OCTET_STRING_free(skid);
7133 if (chain)
7134 sk_X509_pop_free(chain, X509_free);
7135 return ret;
7136}
7137
William Lallemandda8584c2020-05-14 10:14:37 +02007138 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007139{
7140 AUTHORITY_KEYID *akid;
7141 struct issuer_chain *issuer = NULL;
7142
7143 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01007144 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007145 struct eb64_node *node;
7146 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01007147 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007148 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
7149 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
7150 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
7151 issuer = ti;
7152 break;
7153 }
7154 }
7155 AUTHORITY_KEYID_free(akid);
7156 }
7157 return issuer;
7158}
7159
William Lallemanddad31052020-05-14 17:47:32 +02007160void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007161{
7162 struct eb64_node *node, *back;
7163 struct issuer_chain *issuer;
7164
William Lallemande0f3fd52020-02-25 14:53:06 +01007165 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007166 while (node) {
7167 issuer = container_of(node, typeof(*issuer), node);
7168 back = eb64_next(node);
7169 eb64_delete(node);
7170 free(issuer->path);
7171 sk_X509_pop_free(issuer->chain, X509_free);
7172 free(issuer);
7173 node = back;
7174 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007175}
7176
William Lallemandd7bfbe22022-04-11 18:41:24 +02007177#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007178static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01007179 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007180
Emeric Brun3854e012017-05-17 20:42:48 +02007181 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01007182 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007183 err_code = ERR_ABORT;
7184 }
7185 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01007186}
Willy Tarreau9ceda382016-12-21 23:13:03 +01007187#endif
7188
Willy Tarreaude5675a2021-01-20 14:41:29 +01007189/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007190 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01007191 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01007192static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01007193{
7194 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007195 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007196
7197 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007198 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007199
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007200 if (sctx->conn != conn) {
7201 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
7202 ret = 1;
7203 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01007204 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
7205
7206 if (sctx->xprt) {
7207 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
7208 if (sctx->xprt_ctx)
7209 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
7210 }
7211
7212 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007213
7214 /* as soon as a shutdown is reported the lower layer unregisters its
7215 * subscriber, so the situations below are transient and rare enough to
7216 * be reported as suspicious. In any case they shouldn't last.
7217 */
7218 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
7219 ret = 1;
7220 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
7221 ret = 1;
7222
Willy Tarreaude5675a2021-01-20 14:41:29 +01007223 chunk_appendf(&trash, " .subs=%p", sctx->subs);
7224 if (sctx->subs) {
7225 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007226 if (sctx->subs->tasklet->calls >= 1000000)
7227 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007228 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
7229 sctx->subs->tasklet->calls,
7230 sctx->subs->tasklet->context);
7231 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
7232 chunk_appendf(&trash, ")");
7233 }
7234 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
7235 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007236 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007237}
7238
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007239#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02007240/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007241 * each reference. The variable <ref> must point to the current node's list
7242 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02007243 */
William Lallemand32af2032016-10-29 18:09:35 +02007244static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007245struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02007246{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007247 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007248 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02007249
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007250 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007251 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007252 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02007253
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007254 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02007255}
7256
7257static inline
7258struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
7259{
7260 int id;
7261 char *error;
7262
7263 /* If the reference starts by a '#', this is numeric id. */
7264 if (reference[0] == '#') {
7265 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
7266 id = strtol(reference + 1, &error, 10);
7267 if (*error != '\0')
7268 return NULL;
7269
7270 /* Perform the unique id lookup. */
7271 return tlskeys_ref_lookupid(id);
7272 }
7273
7274 /* Perform the string lookup. */
7275 return tlskeys_ref_lookup(reference);
7276}
7277#endif
7278
7279
7280#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7281
Willy Tarreaua9380522022-05-05 08:50:17 +02007282/* dumps all tls keys. Relies on the show_keys_ctx context from the appctx. */
Willy Tarreaubd338642022-05-05 08:59:17 +02007283static int cli_io_handler_tlskeys_files(struct appctx *appctx)
7284{
Willy Tarreaua9380522022-05-05 08:50:17 +02007285 struct show_keys_ctx *ctx = appctx->svcctx;
William Lallemand32af2032016-10-29 18:09:35 +02007286
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007287 switch (ctx->state) {
7288 case SHOW_KEYS_INIT:
William Lallemand32af2032016-10-29 18:09:35 +02007289 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08007290 * quit the function with returning 0. The function is called
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007291 * later and restart at the state "SHOW_KEYS_INIT".
William Lallemand32af2032016-10-29 18:09:35 +02007292 */
7293 chunk_reset(&trash);
7294
Willy Tarreaubd338642022-05-05 08:59:17 +02007295 if (ctx->dump_entries)
William Lallemand32af2032016-10-29 18:09:35 +02007296 chunk_appendf(&trash, "# id secret\n");
7297 else
7298 chunk_appendf(&trash, "# id (file)\n");
7299
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007300 if (applet_putchk(appctx, &trash) == -1)
William Lallemand32af2032016-10-29 18:09:35 +02007301 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007302
William Lallemand32af2032016-10-29 18:09:35 +02007303 /* Now, we start the browsing of the references lists.
7304 * Note that the following call to LIST_ELEM return bad pointer. The only
7305 * available field of this pointer is <list>. It is used with the function
7306 * tlskeys_list_get_next() for retruning the first available entry
7307 */
Willy Tarreaua9380522022-05-05 08:50:17 +02007308 if (ctx->next_ref == NULL)
7309 ctx->next_ref = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007310
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007311 ctx->state = SHOW_KEYS_LIST;
William Lallemand32af2032016-10-29 18:09:35 +02007312 /* fall through */
7313
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007314 case SHOW_KEYS_LIST:
Willy Tarreaua9380522022-05-05 08:50:17 +02007315 while (ctx->next_ref) {
7316 struct tls_keys_ref *ref = ctx->next_ref;
William Lallemand32af2032016-10-29 18:09:35 +02007317
7318 chunk_reset(&trash);
Willy Tarreaubd338642022-05-05 08:59:17 +02007319 if (ctx->dump_entries && ctx->next_index == 0)
William Lallemand32af2032016-10-29 18:09:35 +02007320 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007321
Willy Tarreaua9380522022-05-05 08:50:17 +02007322 if (ctx->next_index == 0)
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007323 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
7324
Willy Tarreaubd338642022-05-05 08:59:17 +02007325 if (ctx->dump_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01007326 int head;
7327
7328 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
7329 head = ref->tls_ticket_enc_index;
Willy Tarreaua9380522022-05-05 08:50:17 +02007330 while (ctx->next_index < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02007331 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02007332
7333 chunk_reset(t2);
7334 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01007335 if (ref->key_size_bits == 128) {
Willy Tarreaua9380522022-05-05 08:50:17 +02007336 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + ctx->next_index) % TLS_TICKETS_NO),
Emeric Brun9e754772019-01-10 17:51:55 +01007337 sizeof(struct tls_sess_key_128),
7338 t2->area, t2->size);
Willy Tarreaua9380522022-05-05 08:50:17 +02007339 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, ctx->next_index,
Emeric Brun9e754772019-01-10 17:51:55 +01007340 t2->area);
7341 }
7342 else if (ref->key_size_bits == 256) {
Willy Tarreaua9380522022-05-05 08:50:17 +02007343 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + ctx->next_index) % TLS_TICKETS_NO),
Emeric Brun9e754772019-01-10 17:51:55 +01007344 sizeof(struct tls_sess_key_256),
7345 t2->area, t2->size);
Willy Tarreaua9380522022-05-05 08:50:17 +02007346 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, ctx->next_index,
Emeric Brun9e754772019-01-10 17:51:55 +01007347 t2->area);
7348 }
7349 else {
7350 /* This case should never happen */
Willy Tarreaua9380522022-05-05 08:50:17 +02007351 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, ctx->next_index);
Emeric Brun9e754772019-01-10 17:51:55 +01007352 }
William Lallemand32af2032016-10-29 18:09:35 +02007353
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007354 if (applet_putchk(appctx, &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007355 /* let's try again later from this stream. We add ourselves into
7356 * this stream's users so that it can remove us upon termination.
7357 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01007358 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
William Lallemand32af2032016-10-29 18:09:35 +02007359 return 0;
7360 }
Willy Tarreaua9380522022-05-05 08:50:17 +02007361 ctx->next_index++;
William Lallemand32af2032016-10-29 18:09:35 +02007362 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01007363 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaua9380522022-05-05 08:50:17 +02007364 ctx->next_index = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007365 }
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007366 if (applet_putchk(appctx, &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007367 /* let's try again later from this stream. We add ourselves into
7368 * this stream's users so that it can remove us upon termination.
7369 */
William Lallemand32af2032016-10-29 18:09:35 +02007370 return 0;
7371 }
7372
Willy Tarreaua9380522022-05-05 08:50:17 +02007373 if (ctx->names_only == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02007374 break;
7375
7376 /* get next list entry and check the end of the list */
Willy Tarreaua9380522022-05-05 08:50:17 +02007377 ctx->next_ref = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007378 }
Willy Tarreau9c5a38c2022-05-05 09:03:44 +02007379 ctx->state = SHOW_KEYS_DONE;
William Lallemand32af2032016-10-29 18:09:35 +02007380 /* fall through */
7381
7382 default:
William Lallemand32af2032016-10-29 18:09:35 +02007383 return 1;
7384 }
7385 return 0;
7386}
7387
Willy Tarreaua9380522022-05-05 08:50:17 +02007388/* Prepares a "show_keys_ctx" and sets the appropriate io_handler if needed */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007389static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007390{
Willy Tarreaua9380522022-05-05 08:50:17 +02007391 struct show_keys_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
7392
William Lallemand32af2032016-10-29 18:09:35 +02007393 /* no parameter, shows only file list */
7394 if (!*args[2]) {
Willy Tarreaua9380522022-05-05 08:50:17 +02007395 ctx->names_only = 1;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007396 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007397 }
7398
7399 if (args[2][0] == '*') {
7400 /* list every TLS ticket keys */
Willy Tarreaua9380522022-05-05 08:50:17 +02007401 ctx->names_only = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007402 } else {
Willy Tarreaua9380522022-05-05 08:50:17 +02007403 ctx->next_ref = tlskeys_ref_lookup_ref(args[2]);
7404 if (!ctx->next_ref)
Willy Tarreau9d008692019-08-09 11:21:01 +02007405 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007406 }
Willy Tarreaubd338642022-05-05 08:59:17 +02007407
7408 ctx->dump_entries = 1;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007409 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007410}
7411
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007412static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007413{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007414 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007415 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007416
William Lallemand32af2032016-10-29 18:09:35 +02007417 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007418 if (!*args[3] || !*args[4])
7419 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 +02007420
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007421 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007422 if (!ref)
7423 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007424
Willy Tarreau1c913e42018-08-22 05:26:57 +02007425 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007426 if (ret < 0)
7427 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01007428
Willy Tarreau1c913e42018-08-22 05:26:57 +02007429 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02007430 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
7431 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007432
Willy Tarreau9d008692019-08-09 11:21:01 +02007433 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007434}
William Lallemandd4f946c2019-12-05 10:26:40 +01007435#endif
William Lallemand419e6342020-04-08 12:05:39 +02007436
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007437static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007438{
7439#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
7440 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007441 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007442
7443 if (!payload)
7444 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02007445
7446 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007447 if (!*payload)
7448 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007449
7450 /* remove \r and \n from the payload */
7451 for (i = 0, j = 0; payload[i]; i++) {
7452 if (payload[i] == '\r' || payload[i] == '\n')
7453 continue;
7454 payload[j++] = payload[i];
7455 }
7456 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007457
Willy Tarreau1c913e42018-08-22 05:26:57 +02007458 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007459 if (ret < 0)
7460 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007461
Willy Tarreau1c913e42018-08-22 05:26:57 +02007462 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02007463 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02007464 if (err)
7465 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
7466 else
7467 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007468 }
Willy Tarreau9d008692019-08-09 11:21:01 +02007469
7470 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007471#else
Willy Tarreau9d008692019-08-09 11:21:01 +02007472 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 +02007473#endif
7474
Elliot Otchet71f82972020-01-15 08:12:14 -05007475}
7476
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007477
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007478#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 +02007479static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
7480#endif
7481
Willy Tarreau170b35b2022-05-05 09:09:15 +02007482/* parsing function for 'show ssl ocsp-response [id]'. If an entry is forced,
7483 * it's set into appctx->svcctx.
7484 */
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007485static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
7486{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007487#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 +02007488 if (*args[3]) {
7489 struct certificate_ocsp *ocsp = NULL;
7490 char *key = NULL;
7491 int key_length = 0;
7492
7493 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
7494 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
7495 }
7496
7497 if (parse_binary(args[3], &key, &key_length, NULL)) {
7498
7499 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
7500 memcpy(full_key, key, key_length);
7501
7502 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
7503 }
7504 if (key)
7505 ha_free(&key);
7506
7507 if (!ocsp) {
7508 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
7509 }
7510
Willy Tarreau170b35b2022-05-05 09:09:15 +02007511 appctx->svcctx = ocsp;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007512 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
7513 }
7514
7515 return 0;
7516
7517#else
7518 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7519#endif
7520}
7521
7522
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007523#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 +02007524/*
7525 * This function dumps the details of an OCSP_CERTID. It is based on
7526 * ocsp_certid_print in OpenSSL.
7527 */
7528static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
7529{
7530 ASN1_OCTET_STRING *piNameHash = NULL;
7531 ASN1_OCTET_STRING *piKeyHash = NULL;
7532 ASN1_INTEGER *pSerial = NULL;
7533
7534 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7535
7536 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7537 indent += 2;
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007538 BIO_printf(bp, "%*sIssuer Name Hash: ", indent, "");
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007539 i2a_ASN1_STRING(bp, piNameHash, 0);
7540 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7541 i2a_ASN1_STRING(bp, piKeyHash, 0);
7542 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7543 i2a_ASN1_INTEGER(bp, pSerial);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007544 }
7545 return 1;
7546}
7547#endif
7548
7549/*
7550 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7551 * is managed in cli_io_handler_show_ocspresponse_detail.
Willy Tarreau170b35b2022-05-05 09:09:15 +02007552 * The current entry is taken from appctx->svcctx.
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007553 */
7554static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7555{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007556#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 +02007557 struct buffer *trash = alloc_trash_chunk();
7558 struct buffer *tmp = NULL;
7559 struct ebmb_node *node;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007560 struct certificate_ocsp *ocsp = NULL;
7561 BIO *bio = NULL;
7562 int write = -1;
7563
7564 if (trash == NULL)
7565 return 1;
7566
7567 tmp = alloc_trash_chunk();
7568 if (!tmp)
7569 goto end;
7570
7571 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7572 goto end;
7573
Willy Tarreau170b35b2022-05-05 09:09:15 +02007574 if (!appctx->svcctx) {
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007575 chunk_appendf(trash, "# Certificate IDs\n");
7576 node = ebmb_first(&cert_ocsp_tree);
7577 } else {
Willy Tarreau170b35b2022-05-05 09:09:15 +02007578 node = &((struct certificate_ocsp *)appctx->svcctx)->key;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007579 }
7580
7581 while (node) {
7582 OCSP_CERTID *certid = NULL;
7583 const unsigned char *p = NULL;
7584 int i;
7585
7586 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7587
7588 /* Dump the key in hexadecimal */
7589 chunk_appendf(trash, "Certificate ID key : ");
7590 for (i = 0; i < ocsp->key_length; ++i) {
7591 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7592 }
7593 chunk_appendf(trash, "\n");
7594
7595 p = ocsp->key_data;
7596
7597 /* Decode the certificate ID (serialized into the key). */
7598 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007599 if (!certid)
7600 goto end;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007601
7602 /* Dump the CERTID info */
7603 ocsp_certid_print(bio, certid, 1);
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007604 OCSP_CERTID_free(certid);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007605 write = BIO_read(bio, tmp->area, tmp->size-1);
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007606 /* strip trailing LFs */
7607 while (write > 0 && tmp->area[write-1] == '\n')
7608 write--;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007609 tmp->area[write] = '\0';
7610
7611 chunk_appendf(trash, "%s\n", tmp->area);
7612
7613 node = ebmb_next(node);
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007614 if (applet_putchk(appctx, trash) == -1)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007615 goto yield;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007616 }
7617
7618end:
Willy Tarreau170b35b2022-05-05 09:09:15 +02007619 appctx->svcctx = NULL;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007620 if (trash)
7621 free_trash_chunk(trash);
7622 if (tmp)
7623 free_trash_chunk(tmp);
7624 if (bio)
7625 BIO_free(bio);
7626 return 1;
7627
7628yield:
7629
7630 if (trash)
7631 free_trash_chunk(trash);
7632 if (tmp)
7633 free_trash_chunk(tmp);
7634 if (bio)
7635 BIO_free(bio);
Willy Tarreau170b35b2022-05-05 09:09:15 +02007636 appctx->svcctx = ocsp;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007637 return 0;
7638#else
7639 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7640#endif
7641}
7642
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007643#ifdef HAVE_SSL_PROVIDERS
7644struct provider_name {
7645 const char *name;
7646 struct list list;
7647};
7648
7649
7650static int ssl_provider_get_name_cb(OSSL_PROVIDER *provider, void *cbdata)
7651{
7652 struct list *provider_names = cbdata;
7653 struct provider_name *item = NULL;
7654 const char *name = OSSL_PROVIDER_get0_name(provider);
7655
7656 if (!provider_names)
7657 return 0;
7658
7659 item = calloc(1, sizeof(*item));
7660
7661 if (!item)
7662 return 0;
7663
7664 item->name = name;
7665 LIST_APPEND(provider_names, &item->list);
7666
7667 return 1;
7668}
7669
7670static void ssl_provider_get_name_list(struct list *provider_names)
7671{
7672 if (!provider_names)
7673 return;
7674
7675 OSSL_PROVIDER_do_all(NULL, ssl_provider_get_name_cb, provider_names);
7676}
7677
7678static void ssl_provider_clear_name_list(struct list *provider_names)
7679{
7680 struct provider_name *item = NULL, *item_s = NULL;
7681
7682 if (provider_names) {
7683 list_for_each_entry_safe(item, item_s, provider_names, list) {
7684 LIST_DELETE(&item->list);
7685 free(item);
7686 }
7687 }
7688}
7689
7690static int cli_io_handler_show_providers(struct appctx *appctx)
7691{
7692 struct buffer *trash = get_trash_chunk();
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007693 struct list provider_names;
7694 struct provider_name *name;
7695
7696 LIST_INIT(&provider_names);
7697
7698 chunk_appendf(trash, "Loaded providers : \n");
7699
7700 ssl_provider_get_name_list(&provider_names);
7701
7702 list_for_each_entry(name, &provider_names, list) {
7703 chunk_appendf(trash, "\t- %s\n", name->name);
7704 }
7705
7706 ssl_provider_clear_name_list(&provider_names);
7707
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007708 if (applet_putchk(appctx, trash) == -1)
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007709 goto yield;
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02007710
7711 return 1;
7712
7713yield:
7714 return 0;
7715}
7716#endif
7717
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007718
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007719#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 +02007720/*
7721 * Dump the details about an OCSP response in DER format stored in
7722 * <ocsp_response> into buffer <out>.
7723 * Returns 0 in case of success.
7724 */
7725int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7726{
7727 BIO *bio = NULL;
7728 int write = -1;
7729 OCSP_RESPONSE *resp;
7730 const unsigned char *p;
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007731 int retval = -1;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007732
7733 if (!ocsp_response)
7734 return -1;
7735
7736 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7737 return -1;
7738
7739 p = (const unsigned char*)ocsp_response->area;
7740
7741 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7742 if (!resp) {
7743 chunk_appendf(out, "Unable to parse OCSP response");
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007744 goto end;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007745 }
7746
7747 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007748 struct buffer *trash = get_trash_chunk();
7749 struct ist ist_block = IST_NULL;
7750 struct ist ist_double_lf = IST_NULL;
7751 static struct ist double_lf = IST("\n\n");
7752
7753 write = BIO_read(bio, trash->area, trash->size - 1);
Remi Tricot-Le Breton1b01b7f2022-02-16 15:17:09 +01007754 if (write <= 0)
7755 goto end;
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007756 trash->data = write;
7757
7758 /* Look for empty lines in the 'trash' buffer and add a space to
7759 * the beginning to avoid having empty lines in the output
7760 * (without changing the appearance of the information
7761 * displayed).
7762 */
7763 ist_block = ist2(b_orig(trash), b_data(trash));
7764
7765 ist_double_lf = istist(ist_block, double_lf);
7766
7767 while (istlen(ist_double_lf)) {
7768 /* istptr(ist_double_lf) points to the first \n of a
7769 * \n\n pattern.
7770 */
7771 uint empty_line_offset = istptr(ist_double_lf) + 1 - istptr(ist_block);
7772
7773 /* Write up to the first '\n' of the "\n\n" pattern into
7774 * the output buffer.
7775 */
7776 b_putblk(out, istptr(ist_block), empty_line_offset);
7777 /* Add an extra space. */
7778 b_putchr(out, ' ');
7779
7780 /* Keep looking for empty lines in the rest of the data. */
7781 ist_block = istadv(ist_block, empty_line_offset);
7782
7783 ist_double_lf = istist(ist_block, double_lf);
7784 }
7785
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007786 retval = (b_istput(out, ist_block) <= 0);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007787 }
7788
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007789end:
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007790 if (bio)
7791 BIO_free(bio);
7792
Remi Tricot-Le Breton8081b672022-02-16 15:03:51 +01007793 OCSP_RESPONSE_free(resp);
7794
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007795 return retval;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007796}
7797
7798/*
7799 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7800 * Returns 0 in case of success.
7801 */
7802int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7803{
7804 struct certificate_ocsp *ocsp;
7805
7806 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7807 if (!ocsp)
7808 return -1;
7809
7810 return ssl_ocsp_response_print(&ocsp->response, out);
7811}
7812
7813
Willy Tarreau170b35b2022-05-05 09:09:15 +02007814/* IO handler of details "show ssl ocsp-response <id>".
7815 * The current entry is taken from appctx->svcctx.
7816 */
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007817static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7818{
7819 struct buffer *trash = alloc_trash_chunk();
Willy Tarreau170b35b2022-05-05 09:09:15 +02007820 struct certificate_ocsp *ocsp = appctx->svcctx;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007821
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007822 if (trash == NULL)
7823 return 1;
7824
Remi Tricot-Le Bretona9a591a2022-02-16 14:42:22 +01007825 if (ssl_ocsp_response_print(&ocsp->response, trash)) {
7826 free_trash_chunk(trash);
7827 return 1;
7828 }
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007829
Willy Tarreaud0a06d52022-05-18 15:07:19 +02007830 if (applet_putchk(appctx, trash) == -1)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007831 goto yield;
Willy Tarreau170b35b2022-05-05 09:09:15 +02007832
7833 appctx->svcctx = NULL;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007834 if (trash)
7835 free_trash_chunk(trash);
7836 return 1;
7837
7838yield:
7839 if (trash)
7840 free_trash_chunk(trash);
7841
7842 return 0;
7843}
7844#endif
7845
William Lallemand32af2032016-10-29 18:09:35 +02007846/* register cli keywords */
7847static struct cli_kw_list cli_kws = {{ },{
7848#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaubd338642022-05-05 08:59:17 +02007849 { { "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 +02007850 { { "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 +02007851#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007852 { { "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 +02007853
7854 { { "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 +02007855#ifdef HAVE_SSL_PROVIDERS
7856 { { "show", "ssl", "providers", NULL }, "show ssl providers : show loaded SSL providers", NULL, cli_io_handler_show_providers },
7857#endif
William Lallemand32af2032016-10-29 18:09:35 +02007858 { { NULL }, NULL, NULL, NULL }
7859}};
7860
Willy Tarreau0108d902018-11-25 19:14:37 +01007861INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007862
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007863/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007864struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007865 .snd_buf = ssl_sock_from_buf,
7866 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007867 .subscribe = ssl_subscribe,
7868 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007869 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007870 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007871 .rcv_pipe = NULL,
7872 .snd_pipe = NULL,
7873 .shutr = NULL,
7874 .shutw = ssl_sock_shutw,
7875 .close = ssl_sock_close,
7876 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007877 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007878 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007879 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007880 .prepare_srv = ssl_sock_prepare_srv_ctx,
7881 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007882 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007883 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007884 .set_idle = ssl_set_idle,
7885 .set_used = ssl_set_used,
Willy Tarreaude827952022-04-11 10:43:28 +02007886 .get_ssl_sock_ctx = ssl_sock_get_ctx,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007887 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007888 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007889};
7890
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007891enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7892 struct session *sess, struct stream *s, int flags)
7893{
7894 struct connection *conn;
7895
7896 conn = objt_conn(sess->origin);
7897
Willy Tarreaub52d4d22022-05-27 10:44:39 +02007898 if (conn) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007899 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Willy Tarreaub52d4d22022-05-27 10:44:39 +02007900 sc_ep_set(s->scf, SE_FL_WAIT_FOR_HS);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007901 s->req.flags |= CF_READ_NULL;
7902 return ACT_RET_YIELD;
7903 }
7904 }
7905 return (ACT_RET_CONT);
7906}
7907
7908static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7909{
7910 rule->action_ptr = ssl_action_wait_for_hs;
7911
7912 return ACT_RET_PRS_OK;
7913}
7914
7915static struct action_kw_list http_req_actions = {ILH, {
7916 { "wait-for-handshake", ssl_parse_wait_for_hs },
7917 { /* END */ }
7918}};
7919
Willy Tarreau0108d902018-11-25 19:14:37 +01007920INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7921
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007922#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007923
7924static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7925{
7926 if (ptr) {
7927 chunk_destroy(ptr);
7928 free(ptr);
7929 }
7930}
7931
7932#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007933
7934#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7935static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7936{
7937 struct ocsp_cbk_arg *ocsp_arg;
7938
7939 if (ptr) {
7940 ocsp_arg = ptr;
7941
7942 if (ocsp_arg->is_single) {
7943 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7944 ocsp_arg->s_ocsp = NULL;
7945 } else {
7946 int i;
7947
7948 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7949 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7950 ocsp_arg->m_ocsp[i] = NULL;
7951 }
7952 }
7953 free(ocsp_arg);
7954 }
7955}
7956#endif
7957
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007958static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7959{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007960 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007961}
William Lallemand7d42ef52020-07-06 11:41:30 +02007962
William Lallemand722180a2021-06-09 16:46:12 +02007963#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007964static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7965{
7966 struct ssl_keylog *keylog;
7967
7968 if (!ptr)
7969 return;
7970
7971 keylog = ptr;
7972
7973 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7974 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7975 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7976 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7977 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7978 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7979 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7980 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7981
7982 pool_free(pool_head_ssl_keylog, ptr);
7983}
7984#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007985
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007986static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7987{
7988 if (!ptr)
7989 return;
7990
7991 X509_free((X509*)ptr);
7992}
7993
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01007994static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7995{
7996 pool_free(ssl_sock_client_sni_pool, ptr);
7997}
7998
Willy Tarreau92faadf2012-10-10 23:04:25 +02007999static void __ssl_sock_init(void)
8000{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008001#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02008002 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05008003 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008004#endif
Emeric Brun46591952012-05-18 15:47:34 +02008005
Willy Tarreauef934602016-12-22 23:12:01 +01008006 if (global_ssl.listen_default_ciphers)
8007 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
8008 if (global_ssl.connect_default_ciphers)
8009 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05008010#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008011 if (global_ssl.listen_default_ciphersuites)
8012 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
8013 if (global_ssl.connect_default_ciphersuites)
8014 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
8015#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01008016
Willy Tarreau13e14102016-12-22 20:25:26 +01008017 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02008018#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02008019 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08008020#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008021#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02008022 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05008023 n = sk_SSL_COMP_num(cm);
8024 while (n--) {
8025 (void) sk_SSL_COMP_pop(cm);
8026 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05008027#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05008028
Willy Tarreau5db847a2019-05-09 14:13:35 +02008029#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02008030 ssl_locking_init();
8031#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05008032#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01008033 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
8034#endif
William Lallemand76b4a122020-08-04 17:41:39 +02008035
8036#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
8037 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
8038#endif
8039
Thierry FOURNIER28962c92018-06-17 21:37:05 +02008040 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02008041 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 +01008042#ifdef USE_QUIC
8043 ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
8044#endif /* USE_QUIC */
William Lallemand722180a2021-06-09 16:46:12 +02008045#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02008046 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
8047#endif
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02008048 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 +01008049 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 +02008050#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Grant Zhang872f9c22017-01-21 01:10:18 +00008051 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008052 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02008053#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01008054#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
8055 hap_register_post_check(tlskeys_finalize_config);
8056#endif
Willy Tarreau80713382018-11-26 10:19:54 +01008057
8058 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
8059 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
8060
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01008061 hap_register_post_deinit(ssl_free_global_issuers);
8062
Willy Tarreau80713382018-11-26 10:19:54 +01008063#ifndef OPENSSL_NO_DH
8064 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
8065 hap_register_post_deinit(ssl_free_dh);
8066#endif
William Lallemandd7bfbe22022-04-11 18:41:24 +02008067#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Willy Tarreau80713382018-11-26 10:19:54 +01008068 hap_register_post_deinit(ssl_free_engines);
8069#endif
Remi Tricot-Le Breton1746a382022-05-16 16:24:33 +02008070#ifdef HAVE_SSL_PROVIDERS
8071 hap_register_post_deinit(ssl_unload_providers);
8072#endif
Remi Tricot-Le Breton78a36e32022-02-11 12:04:45 +01008073#if HA_OPENSSL_VERSION_NUMBER < 0x3000000fL
Willy Tarreau80713382018-11-26 10:19:54 +01008074 /* Load SSL string for the verbose & debug mode. */
8075 ERR_load_SSL_strings();
Remi Tricot-Le Breton78a36e32022-02-11 12:04:45 +01008076#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02008077 ha_meth = BIO_meth_new(0x666, "ha methods");
8078 BIO_meth_set_write(ha_meth, ha_ssl_write);
8079 BIO_meth_set_read(ha_meth, ha_ssl_read);
8080 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
8081 BIO_meth_set_create(ha_meth, ha_ssl_new);
8082 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
8083 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
8084 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02008085
8086 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02008087
Dragan Dosen9ac98092020-05-11 15:51:45 +02008088 /* Try to register dedicated SSL/TLS protocol message callbacks for
8089 * heartbleed attack (CVE-2014-0160) and clienthello.
8090 */
8091 hap_register_post_check(ssl_sock_register_msg_callbacks);
8092
Dragan Dosen1e7ed042020-05-08 18:30:00 +02008093 /* Try to free all callbacks that were registered by using
8094 * ssl_sock_register_msg_callback().
8095 */
8096 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01008097}
Willy Tarreau79367f92022-04-25 19:18:24 +02008098INITCALL0(STG_REGISTER, __ssl_sock_init);
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01008099
Willy Tarreau80713382018-11-26 10:19:54 +01008100/* Compute and register the version string */
8101static void ssl_register_build_options()
8102{
8103 char *ptr = NULL;
8104 int i;
8105
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008106 memprintf(&ptr, "Built with OpenSSL version : "
8107#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01008108 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008109#else /* OPENSSL_IS_BORINGSSL */
8110 OPENSSL_VERSION_TEXT
8111 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08008112 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02008113 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008114#endif
8115 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02008116#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008117 "no (library version too old)"
8118#elif defined(OPENSSL_NO_TLSEXT)
8119 "no (disabled via OPENSSL_NO_TLSEXT)"
8120#else
8121 "yes"
8122#endif
8123 "", ptr);
8124
8125 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
8126#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
8127 "yes"
8128#else
8129#ifdef OPENSSL_NO_TLSEXT
8130 "no (because of OPENSSL_NO_TLSEXT)"
8131#else
8132 "no (version might be too old, 0.9.8f min needed)"
8133#endif
8134#endif
8135 "", ptr);
8136
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02008137 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
8138 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
8139 if (methodVersions[i].option)
8140 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01008141
Remi Tricot-Le Bretonf87c67e2022-04-21 12:06:41 +02008142#ifdef HAVE_SSL_PROVIDERS
8143 {
8144 struct list provider_names;
8145 struct provider_name *name;
8146 LIST_INIT(&provider_names);
8147 ssl_provider_get_name_list(&provider_names);
8148
8149 memprintf(&ptr, "%s\nOpenSSL providers loaded :", ptr);
8150
8151 list_for_each_entry(name, &provider_names, list) {
8152 memprintf(&ptr, "%s %s", ptr, name->name);
8153 }
8154
8155 ssl_provider_clear_name_list(&provider_names);
8156 }
8157#endif
8158
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008159 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01008160}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01008161
Willy Tarreau80713382018-11-26 10:19:54 +01008162INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02008163
William Lallemandd7bfbe22022-04-11 18:41:24 +02008164#if defined(USE_ENGINE) && !defined(OPENSSL_NO_ENGINE)
Grant Zhang872f9c22017-01-21 01:10:18 +00008165void ssl_free_engines(void) {
8166 struct ssl_engine_list *wl, *wlb;
8167 /* free up engine list */
8168 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
8169 ENGINE_finish(wl->e);
8170 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02008171 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00008172 free(wl);
8173 }
8174}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02008175#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02008176
Remi Tricot-Le Breton1746a382022-05-16 16:24:33 +02008177#ifdef HAVE_SSL_PROVIDERS
8178void ssl_unload_providers(void) {
8179 struct ssl_provider_list *prov, *provb;
8180 list_for_each_entry_safe(prov, provb, &openssl_providers, list) {
8181 OSSL_PROVIDER_unload(prov->provider);
8182 LIST_DELETE(&prov->list);
8183 free(prov);
8184 }
8185}
8186#endif
8187
Remi Gacogned3a23c32015-05-28 16:39:47 +02008188#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00008189void ssl_free_dh(void) {
8190 if (local_dh_1024) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008191 HASSL_DH_free(local_dh_1024);
Grant Zhang872f9c22017-01-21 01:10:18 +00008192 local_dh_1024 = NULL;
8193 }
8194 if (local_dh_2048) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008195 HASSL_DH_free(local_dh_2048);
Grant Zhang872f9c22017-01-21 01:10:18 +00008196 local_dh_2048 = NULL;
8197 }
8198 if (local_dh_4096) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008199 HASSL_DH_free(local_dh_4096);
Grant Zhang872f9c22017-01-21 01:10:18 +00008200 local_dh_4096 = NULL;
8201 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02008202 if (global_dh) {
Remi Tricot-Le Bretonc76c3c42022-02-11 12:04:55 +01008203 HASSL_DH_free(global_dh);
Remi Gacogne47783ef2015-05-29 15:53:22 +02008204 global_dh = NULL;
8205 }
Grant Zhang872f9c22017-01-21 01:10:18 +00008206}
8207#endif
8208
Grant Zhang872f9c22017-01-21 01:10:18 +00008209static void __ssl_sock_deinit(void)
8210{
8211#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02008212 if (ssl_ctx_lru_tree) {
8213 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01008214 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02008215 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02008216#endif
8217
Willy Tarreau5db847a2019-05-09 14:13:35 +02008218#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02008219 ERR_remove_state(0);
8220 ERR_free_strings();
8221
8222 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08008223#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02008224
Willy Tarreau5db847a2019-05-09 14:13:35 +02008225#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02008226 CRYPTO_cleanup_all_ex_data();
8227#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02008228 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02008229}
Willy Tarreau79367f92022-04-25 19:18:24 +02008230REGISTER_POST_DEINIT(__ssl_sock_deinit);
Remi Gacogned3a23c32015-05-28 16:39:47 +02008231
William Dauchyf6370442020-11-14 19:25:33 +01008232
Emeric Brun46591952012-05-18 15:47:34 +02008233/*
8234 * Local variables:
8235 * c-indent-level: 8
8236 * c-basic-offset: 8
8237 * End:
8238 */