blob: cb363cf55368cc06095fa3d64eb5330af850ff2d [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>
31#include <fcntl.h>
32#include <stdio.h>
33#include <stdlib.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020034#include <string.h>
35#include <unistd.h>
Emeric Brun46591952012-05-18 15:47:34 +020036
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020040#include <netdb.h>
Emeric Brun46591952012-05-18 15:47:34 +020041#include <netinet/tcp.h>
42
Willy Tarreaub2551052020-06-09 09:07:15 +020043#include <import/ebpttree.h>
44#include <import/ebsttree.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020045#include <import/lru.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020046
Willy Tarreaub2551052020-06-09 09:07:15 +020047#include <haproxy/api.h>
48#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 Tarreau1e56f922020-06-04 23:20:13 +020066#include <haproxy/server.h>
Willy Tarreau334099c2020-06-03 18:38:48 +020067#include <haproxy/shctx.h>
Willy Tarreau47d7f902020-06-04 14:25:47 +020068#include <haproxy/ssl_ckch.h>
Willy Tarreau52d88722020-06-04 14:29:23 +020069#include <haproxy/ssl_crtlist.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020070#include <haproxy/ssl_sock.h>
Willy Tarreaub2bd8652020-06-04 14:21:22 +020071#include <haproxy/ssl_utils.h>
Amaury Denoyelle9963fa72020-11-03 17:10:00 +010072#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020073#include <haproxy/stream-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020074#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020075#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020076#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020077#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020078#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020079#include <haproxy/vars.h>
Frédéric Lécailleec216522020-11-23 14:33:30 +010080#include <haproxy/xprt_quic.h>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020081#include <haproxy/xxhash.h>
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +010082#include <haproxy/istbuf.h>
Emeric Brun46591952012-05-18 15:47:34 +020083
Emeric Brun46591952012-05-18 15:47:34 +020084
Willy Tarreau9356dac2019-05-10 09:22:53 +020085/* ***** READ THIS before adding code here! *****
86 *
87 * Due to API incompatibilities between multiple OpenSSL versions and their
88 * derivatives, it's often tempting to add macros to (re-)define certain
89 * symbols. Please do not do this here, and do it in common/openssl-compat.h
90 * exclusively so that the whole code consistently uses the same macros.
91 *
92 * Whenever possible if a macro is missing in certain versions, it's better
93 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
94 */
95
Emeric Brunece0c332017-12-06 13:51:49 +010096int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +020097
William Lallemande0f3fd52020-02-25 14:53:06 +010098static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
99
William Lallemand7fd8b452020-05-07 15:20:43 +0200100struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100101#ifdef LISTEN_DEFAULT_CIPHERS
102 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
103#endif
104#ifdef CONNECT_DEFAULT_CIPHERS
105 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
106#endif
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +0500107#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200108 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200109 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
110#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100111 .listen_default_ssloptions = BC_SSL_O_NONE,
112 .connect_default_ssloptions = SRV_SSL_O_NONE,
113
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200114 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
115 .listen_default_sslmethods.min = CONF_TLSV_NONE,
116 .listen_default_sslmethods.max = CONF_TLSV_NONE,
117 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
118 .connect_default_sslmethods.min = CONF_TLSV_NONE,
119 .connect_default_sslmethods.max = CONF_TLSV_NONE,
120
Willy Tarreauef934602016-12-22 23:12:01 +0100121#ifdef DEFAULT_SSL_MAX_RECORD
122 .max_record = DEFAULT_SSL_MAX_RECORD,
123#endif
124 .default_dh_param = SSL_DEFAULT_DH_PARAM,
125 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Marcin Deranek310a2602021-07-13 19:04:24 +0200126 .capture_buffer_size = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100127 .extra_files = SSL_GF_ALL,
William Lallemand8e8581e2020-10-20 17:36:46 +0200128 .extra_files_noext = 0,
William Lallemand722180a2021-06-09 16:46:12 +0200129#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200130 .keylog = 0
131#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100132};
133
Olivier Houcharda8955d52019-04-07 22:00:38 +0200134static BIO_METHOD *ha_meth;
135
Olivier Houchard66ab4982019-02-26 18:37:15 +0100136DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
137
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +0100138DECLARE_STATIC_POOL(ssl_sock_client_sni_pool, "ssl_sock_client_sni_pool", TLSEXT_MAXLEN_host_name + 1);
139
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100140/* ssl stats module */
141enum {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100142 SSL_ST_SESS,
143 SSL_ST_REUSED_SESS,
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100144 SSL_ST_FAILED_HANDSHAKE,
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100145
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100146 SSL_ST_STATS_COUNT /* must be the last member of the enum */
147};
148
149static struct name_desc ssl_stats[] = {
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100150 [SSL_ST_SESS] = { .name = "ssl_sess",
151 .desc = "Total number of ssl sessions established" },
152 [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess",
153 .desc = "Total number of ssl sessions reused" },
154 [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake",
155 .desc = "Total number of failed handshake" },
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100156};
157
158static struct ssl_counters {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100159 long long sess;
160 long long reused_sess;
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100161 long long failed_handshake;
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100162} ssl_counters;
163
164static void ssl_fill_stats(void *data, struct field *stats)
165{
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100166 struct ssl_counters *counters = data;
167
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100168 stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess);
169 stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess);
170 stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake);
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100171}
172
173static struct stats_module ssl_stats_module = {
174 .name = "ssl",
175 .fill_stats = ssl_fill_stats,
176 .stats = ssl_stats,
177 .stats_count = SSL_ST_STATS_COUNT,
178 .counters = &ssl_counters,
179 .counters_size = sizeof(ssl_counters),
180 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV),
181 .clearable = 1,
182};
183
184INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module);
185
Willy Tarreau691d5032021-01-20 14:55:01 +0100186/* ssl_sock_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100187struct task *ssl_sock_io_cb(struct task *, void *, unsigned int);
Olivier Houchard000694c2019-05-23 14:45:12 +0200188static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200189
Olivier Houcharda8955d52019-04-07 22:00:38 +0200190/* Methods to implement OpenSSL BIO */
191static int ha_ssl_write(BIO *h, const char *buf, int num)
192{
193 struct buffer tmpbuf;
194 struct ssl_sock_ctx *ctx;
195 int ret;
196
197 ctx = BIO_get_data(h);
198 tmpbuf.size = num;
199 tmpbuf.area = (void *)(uintptr_t)buf;
200 tmpbuf.data = num;
201 tmpbuf.head = 0;
202 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200203 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200204 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200205 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200206 } else if (ret == 0)
207 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200208 return ret;
209}
210
211static int ha_ssl_gets(BIO *h, char *buf, int size)
212{
213
214 return 0;
215}
216
217static int ha_ssl_puts(BIO *h, const char *str)
218{
219
220 return ha_ssl_write(h, str, strlen(str));
221}
222
223static int ha_ssl_read(BIO *h, char *buf, int size)
224{
225 struct buffer tmpbuf;
226 struct ssl_sock_ctx *ctx;
227 int ret;
228
229 ctx = BIO_get_data(h);
230 tmpbuf.size = size;
231 tmpbuf.area = buf;
232 tmpbuf.data = 0;
233 tmpbuf.head = 0;
234 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200235 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200236 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200237 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200238 } else if (ret == 0)
239 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200240
241 return ret;
242}
243
244static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
245{
246 int ret = 0;
247 switch (cmd) {
248 case BIO_CTRL_DUP:
249 case BIO_CTRL_FLUSH:
250 ret = 1;
251 break;
252 }
253 return ret;
254}
255
256static int ha_ssl_new(BIO *h)
257{
258 BIO_set_init(h, 1);
259 BIO_set_data(h, NULL);
260 BIO_clear_flags(h, ~0);
261 return 1;
262}
263
264static int ha_ssl_free(BIO *data)
265{
266
267 return 1;
268}
269
270
Willy Tarreau5db847a2019-05-09 14:13:35 +0200271#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100272
Emeric Brun821bb9b2017-06-15 16:37:39 +0200273static HA_RWLOCK_T *ssl_rwlocks;
274
275
276unsigned long ssl_id_function(void)
277{
278 return (unsigned long)tid;
279}
280
281void ssl_locking_function(int mode, int n, const char * file, int line)
282{
283 if (mode & CRYPTO_LOCK) {
284 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100285 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200286 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100287 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200288 }
289 else {
290 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100291 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200292 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100293 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200294 }
295}
296
297static int ssl_locking_init(void)
298{
299 int i;
300
301 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
302 if (!ssl_rwlocks)
303 return -1;
304
305 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100306 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200307
308 CRYPTO_set_id_callback(ssl_id_function);
309 CRYPTO_set_locking_callback(ssl_locking_function);
310
311 return 0;
312}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100313
Emeric Brun821bb9b2017-06-15 16:37:39 +0200314#endif
315
Willy Tarreauaf613e82020-06-05 08:40:51 +0200316__decl_thread(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200317
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100318
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200319
320/* mimic what X509_STORE_load_locations do with store_ctx */
321static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
322{
Remi Tricot-Le Bretond75b99e2021-05-17 11:45:55 +0200323 X509_STORE *store = NULL;
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +0100324 struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0);
325 if (ca_e)
326 store = ca_e->ca_store;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200327 if (store_ctx && store) {
328 int i;
329 X509_OBJECT *obj;
330 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
331 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
332 obj = sk_X509_OBJECT_value(objs, i);
333 switch (X509_OBJECT_get_type(obj)) {
334 case X509_LU_X509:
335 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
336 break;
337 case X509_LU_CRL:
338 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
339 break;
340 default:
341 break;
342 }
343 }
344 return 1;
345 }
346 return 0;
347}
348
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500349/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200350static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
351{
352 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
353 return ssl_set_cert_crl_file(store_ctx, path);
354}
355
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200356/*
357 Extract CA_list from CA_file already in tree.
358 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
359 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
360*/
361static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
362{
363 struct ebmb_node *eb;
364 struct cafile_entry *ca_e;
365
366 eb = ebst_lookup(&cafile_tree, path);
367 if (!eb)
368 return NULL;
369 ca_e = ebmb_entry(eb, struct cafile_entry, node);
370
371 if (ca_e->ca_list == NULL) {
372 int i;
373 unsigned long key;
374 struct eb_root ca_name_tree = EB_ROOT;
375 struct eb64_node *node, *back;
376 struct {
377 struct eb64_node node;
378 X509_NAME *xname;
379 } *ca_name;
380 STACK_OF(X509_OBJECT) *objs;
381 STACK_OF(X509_NAME) *skn;
382 X509 *x;
383 X509_NAME *xn;
384
385 skn = sk_X509_NAME_new_null();
386 /* take x509 from cafile_tree */
387 objs = X509_STORE_get0_objects(ca_e->ca_store);
388 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
389 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
390 if (!x)
391 continue;
392 xn = X509_get_subject_name(x);
393 if (!xn)
394 continue;
395 /* Check for duplicates. */
396 key = X509_NAME_hash(xn);
397 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
398 node && ca_name == NULL;
399 node = eb64_next(node)) {
400 ca_name = container_of(node, typeof(*ca_name), node);
401 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
402 ca_name = NULL;
403 }
404 /* find a duplicate */
405 if (ca_name)
406 continue;
407 ca_name = calloc(1, sizeof *ca_name);
408 xn = X509_NAME_dup(xn);
409 if (!ca_name ||
410 !xn ||
411 !sk_X509_NAME_push(skn, xn)) {
412 free(ca_name);
413 X509_NAME_free(xn);
414 sk_X509_NAME_pop_free(skn, X509_NAME_free);
415 sk_X509_NAME_free(skn);
416 skn = NULL;
417 break;
418 }
419 ca_name->node.key = key;
420 ca_name->xname = xn;
421 eb64_insert(&ca_name_tree, &ca_name->node);
422 }
423 ca_e->ca_list = skn;
424 /* remove temporary ca_name tree */
425 node = eb64_first(&ca_name_tree);
426 while (node) {
427 ca_name = container_of(node, typeof(*ca_name), node);
428 back = eb64_next(node);
429 eb64_delete(node);
430 free(ca_name);
431 node = back;
432 }
433 }
434 return ca_e->ca_list;
435}
436
Willy Tarreauff882702021-04-10 17:23:00 +0200437struct pool_head *pool_head_ssl_capture __read_mostly = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200438int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100439int ssl_app_data_index = -1;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +0100440#ifdef USE_QUIC
441int ssl_qc_app_data_index = -1;
442#endif /* USE_QUIC */
Willy Tarreauef934602016-12-22 23:12:01 +0100443
William Lallemand722180a2021-06-09 16:46:12 +0200444#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200445int ssl_keylog_index = -1;
Willy Tarreauff882702021-04-10 17:23:00 +0200446struct pool_head *pool_head_ssl_keylog __read_mostly = NULL;
447struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL;
William Lallemand7d42ef52020-07-06 11:41:30 +0200448#endif
449
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +0200450int ssl_client_crt_ref_index = -1;
451
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +0100452/* Used to store the client's SNI in case of ClientHello callback error */
453int ssl_client_sni_index = -1;
454
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200455#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
456struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
457#endif
458
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200459#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200460unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000461struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
462struct ssl_engine_list {
463 struct list list;
464 ENGINE *e;
465};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200466#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000467
Remi Gacogne8de54152014-07-15 11:36:40 +0200468#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200469static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200470static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200471static DH *local_dh_1024 = NULL;
472static DH *local_dh_2048 = NULL;
473static DH *local_dh_4096 = NULL;
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +0100474static DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200475#endif /* OPENSSL_NO_DH */
476
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100477#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200478/* X509V3 Extensions that will be added on generated certificates */
479#define X509V3_EXT_SIZE 5
480static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
481 "basicConstraints",
482 "nsComment",
483 "subjectKeyIdentifier",
484 "authorityKeyIdentifier",
485 "keyUsage",
486};
487static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
488 "CA:FALSE",
489 "\"OpenSSL Generated Certificate\"",
490 "hash",
491 "keyid,issuer:always",
492 "nonRepudiation,digitalSignature,keyEncipherment"
493};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200494/* LRU cache to store generated certificate */
495static struct lru64_head *ssl_ctx_lru_tree = NULL;
496static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200497static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100498__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200499
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200500#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
501
yanbzhube2774d2015-12-10 15:07:30 -0500502/* The order here matters for picking a default context,
503 * keep the most common keytype at the bottom of the list
504 */
505const char *SSL_SOCK_KEYTYPE_NAMES[] = {
506 "dsa",
507 "ecdsa",
508 "rsa"
509};
yanbzhube2774d2015-12-10 15:07:30 -0500510
William Lallemandc3cd35f2017-11-28 11:04:43 +0100511static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100512static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
513
Dragan Dosen9ac98092020-05-11 15:51:45 +0200514/* Dedicated callback functions for heartbeat and clienthello.
515 */
516#ifdef TLS1_RT_HEARTBEAT
517static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
518 int content_type, const void *buf, size_t len,
519 SSL *ssl);
520#endif
521static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
522 int content_type, const void *buf, size_t len,
523 SSL *ssl);
524
William Lallemand722180a2021-06-09 16:46:12 +0200525#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200526static void ssl_init_keylog(struct connection *conn, int write_p, int version,
527 int content_type, const void *buf, size_t len,
528 SSL *ssl);
529#endif
530
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200531/* List head of all registered SSL/TLS protocol message callbacks. */
532struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
533
534/* Registers the function <func> in order to be called on SSL/TLS protocol
535 * message processing. It will return 0 if the function <func> is not set
536 * or if it fails to allocate memory.
537 */
538int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
539{
540 struct ssl_sock_msg_callback *cbk;
541
542 if (!func)
543 return 0;
544
545 cbk = calloc(1, sizeof(*cbk));
546 if (!cbk) {
547 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
548 return 0;
549 }
550
551 cbk->func = func;
552
Willy Tarreau2b718102021-04-21 07:32:39 +0200553 LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200554
555 return 1;
556}
557
Dragan Dosen9ac98092020-05-11 15:51:45 +0200558/* Used to register dedicated SSL/TLS protocol message callbacks.
559 */
560static int ssl_sock_register_msg_callbacks(void)
561{
562#ifdef TLS1_RT_HEARTBEAT
563 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
564 return ERR_ABORT;
565#endif
Marcin Deranek310a2602021-07-13 19:04:24 +0200566 if (global_ssl.capture_buffer_size > 0) {
Dragan Dosen9ac98092020-05-11 15:51:45 +0200567 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
568 return ERR_ABORT;
569 }
William Lallemand722180a2021-06-09 16:46:12 +0200570#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200571 if (global_ssl.keylog > 0) {
572 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
573 return ERR_ABORT;
574 }
575#endif
576
Christopher Fauletfc633b62020-11-06 15:24:23 +0100577 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200578}
579
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200580/* Used to free all SSL/TLS protocol message callbacks that were
581 * registered by using ssl_sock_register_msg_callback().
582 */
583static void ssl_sock_unregister_msg_callbacks(void)
584{
585 struct ssl_sock_msg_callback *cbk, *cbkback;
586
587 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200588 LIST_DELETE(&cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200589 free(cbk);
590 }
591}
592
Dragan Doseneb607fe2020-05-11 17:17:06 +0200593SSL *ssl_sock_get_ssl_object(struct connection *conn)
594{
Willy Tarreau1057bee2021-10-06 11:38:44 +0200595 if (!conn_is_ssl(conn))
Dragan Doseneb607fe2020-05-11 17:17:06 +0200596 return NULL;
597
598 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
599}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100600/*
601 * This function gives the detail of the SSL error. It is used only
602 * if the debug mode and the verbose mode are activated. It dump all
603 * the SSL error until the stack was empty.
604 */
605static forceinline void ssl_sock_dump_errors(struct connection *conn)
606{
607 unsigned long ret;
608
609 if (unlikely(global.mode & MODE_DEBUG)) {
610 while(1) {
Remi Tricot-Le Breton1effd9a2022-02-11 12:04:44 +0100611 const char *func = NULL;
612 ERR_peek_error_func(&func);
613
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100614 ret = ERR_get_error();
615 if (ret == 0)
616 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100617 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
618 conn->handle.fd, ret,
Remi Tricot-Le Breton1effd9a2022-02-11 12:04:44 +0100619 func, ERR_reason_error_string(ret));
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100620 }
621 }
622}
623
yanbzhube2774d2015-12-10 15:07:30 -0500624
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200625#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200626int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000627{
628 int err_code = ERR_ABORT;
629 ENGINE *engine;
630 struct ssl_engine_list *el;
631
632 /* grab the structural reference to the engine */
633 engine = ENGINE_by_id(engine_id);
634 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100635 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000636 goto fail_get;
637 }
638
639 if (!ENGINE_init(engine)) {
640 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100641 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000642 goto fail_init;
643 }
644
645 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100646 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000647 goto fail_set_method;
648 }
649
650 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200651 if (!el)
652 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000653 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200654 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100655 nb_engines++;
656 if (global_ssl.async)
657 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000658 return 0;
659
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200660fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000661fail_set_method:
662 /* release the functional reference from ENGINE_init() */
663 ENGINE_finish(engine);
664
665fail_init:
666 /* release the structural reference from ENGINE_by_id() */
667 ENGINE_free(engine);
668
669fail_get:
670 return err_code;
671}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200672#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000673
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500674#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200675/*
676 * openssl async fd handler
677 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200678void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000679{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200680 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000681
Emeric Brun3854e012017-05-17 20:42:48 +0200682 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000683 * to poll this fd until it is requested
684 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000685 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000686 fd_cant_recv(fd);
687
688 /* crypto engine is available, let's notify the associated
689 * connection that it can pursue its processing.
690 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200691 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000692}
693
Emeric Brun3854e012017-05-17 20:42:48 +0200694/*
695 * openssl async delayed SSL_free handler
696 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200697void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000698{
699 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200700 OSSL_ASYNC_FD all_fd[32];
701 size_t num_all_fds = 0;
702 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000703
Emeric Brun3854e012017-05-17 20:42:48 +0200704 /* We suppose that the async job for a same SSL *
705 * are serialized. So if we are awake it is
706 * because the running job has just finished
707 * and we can remove all async fds safely
708 */
709 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
710 if (num_all_fds > 32) {
711 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
712 return;
713 }
714
715 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
716 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200717 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200718
719 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000720 SSL_free(ssl);
Willy Tarreau82531f62021-10-06 12:15:18 +0200721 _HA_ATOMIC_DEC(&global.sslconns);
Willy Tarreau4781b152021-04-06 13:53:36 +0200722 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000723}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000724/*
Emeric Brun3854e012017-05-17 20:42:48 +0200725 * function used to manage a returned SSL_ERROR_WANT_ASYNC
726 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000727 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200728static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000729{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100730 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200731 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200732 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000733 size_t num_add_fds = 0;
734 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200735 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000736
737 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
738 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200739 if (num_add_fds > 32 || num_del_fds > 32) {
740 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 +0000741 return;
742 }
743
Emeric Brun3854e012017-05-17 20:42:48 +0200744 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000745
Emeric Brun3854e012017-05-17 20:42:48 +0200746 /* We remove unused fds from the fdtab */
747 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200748 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000749
Emeric Brun3854e012017-05-17 20:42:48 +0200750 /* We add new fds to the fdtab */
751 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200752 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000753 }
754
Emeric Brun3854e012017-05-17 20:42:48 +0200755 num_add_fds = 0;
756 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
757 if (num_add_fds > 32) {
758 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
759 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000760 }
Emeric Brun3854e012017-05-17 20:42:48 +0200761
762 /* We activate the polling for all known async fds */
763 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000764 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200765 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000766 /* To ensure that the fd cache won't be used
767 * We'll prefer to catch a real RD event
768 * because handling an EAGAIN on this fd will
769 * result in a context switch and also
770 * some engines uses a fd in blocking mode.
771 */
772 fd_cant_recv(add_fd[i]);
773 }
Emeric Brun3854e012017-05-17 20:42:48 +0200774
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000775}
776#endif
777
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200778#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 +0200779/*
780 * This function returns the number of seconds elapsed
781 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
782 * date presented un ASN1_GENERALIZEDTIME.
783 *
784 * In parsing error case, it returns -1.
785 */
786static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
787{
788 long epoch;
789 char *p, *end;
790 const unsigned short month_offset[12] = {
791 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
792 };
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +0200793 unsigned long year, month;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200794
795 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
796
797 p = (char *)d->data;
798 end = p + d->length;
799
800 if (end - p < 4) return -1;
801 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
802 p += 4;
803 if (end - p < 2) return -1;
804 month = 10 * (p[0] - '0') + p[1] - '0';
805 if (month < 1 || month > 12) return -1;
806 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
807 We consider leap years and the current month (<marsh or not) */
808 epoch = ( ((year - 1970) * 365)
809 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
810 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
811 + month_offset[month-1]
812 ) * 24 * 60 * 60;
813 p += 2;
814 if (end - p < 2) return -1;
815 /* Add the number of seconds of completed days of current month */
816 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
817 p += 2;
818 if (end - p < 2) return -1;
819 /* Add the completed hours of the current day */
820 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
821 p += 2;
822 if (end - p < 2) return -1;
823 /* Add the completed minutes of the current hour */
824 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
825 p += 2;
826 if (p == end) return -1;
827 /* Test if there is available seconds */
828 if (p[0] < '0' || p[0] > '9')
829 goto nosec;
830 if (end - p < 2) return -1;
831 /* Add the seconds of the current minute */
832 epoch += 10 * (p[0] - '0') + p[1] - '0';
833 p += 2;
834 if (p == end) return -1;
835 /* Ignore seconds float part if present */
836 if (p[0] == '.') {
837 do {
838 if (++p == end) return -1;
839 } while (p[0] >= '0' && p[0] <= '9');
840 }
841
842nosec:
843 if (p[0] == 'Z') {
844 if (end - p != 1) return -1;
845 return epoch;
846 }
847 else if (p[0] == '+') {
848 if (end - p != 5) return -1;
849 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700850 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 +0200851 }
852 else if (p[0] == '-') {
853 if (end - p != 5) return -1;
854 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700855 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 +0200856 }
857
858 return -1;
859}
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200860#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200861
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200862#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
William Lallemand104a7a62019-10-14 14:14:59 +0200863/*
864 * struct alignment works here such that the key.key is the same as key_data
865 * Do not change the placement of key_data
866 */
867struct certificate_ocsp {
868 struct ebmb_node key;
869 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +0200870 unsigned int key_length;
William Lallemand104a7a62019-10-14 14:14:59 +0200871 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200872 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200873 long expire;
874};
875
876struct ocsp_cbk_arg {
877 int is_single;
878 int single_kt;
879 union {
880 struct certificate_ocsp *s_ocsp;
881 /*
882 * m_ocsp will have multiple entries dependent on key type
883 * Entry 0 - DSA
884 * Entry 1 - ECDSA
885 * Entry 2 - RSA
886 */
887 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
888 };
889};
890
Emeric Brun1d3865b2014-06-20 15:37:32 +0200891static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200892
893/* This function starts to check if the OCSP response (in DER format) contained
894 * in chunk 'ocsp_response' is valid (else exits on error).
895 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
896 * contained in the OCSP Response and exits on error if no match.
897 * If it's a valid OCSP Response:
898 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
899 * pointed by 'ocsp'.
900 * If 'ocsp' is NULL, the function looks up into the OCSP response's
901 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
902 * from the response) and exits on error if not found. Finally, If an OCSP response is
903 * already present in the container, it will be overwritten.
904 *
905 * Note: OCSP response containing more than one OCSP Single response is not
906 * considered valid.
907 *
908 * Returns 0 on success, 1 in error case.
909 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200910static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
911 struct certificate_ocsp *ocsp,
912 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200913{
914 OCSP_RESPONSE *resp;
915 OCSP_BASICRESP *bs = NULL;
916 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200917 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200918 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200919 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200920 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200921 int reason;
922 int ret = 1;
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200923#ifdef HAVE_ASN1_TIME_TO_TM
924 struct tm nextupd_tm = {0};
925#endif
Emeric Brun4147b2e2014-06-16 18:36:30 +0200926
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200927 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
928 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200929 if (!resp) {
930 memprintf(err, "Unable to parse OCSP response");
931 goto out;
932 }
933
934 rc = OCSP_response_status(resp);
935 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
936 memprintf(err, "OCSP response status not successful");
937 goto out;
938 }
939
940 bs = OCSP_response_get1_basic(resp);
941 if (!bs) {
942 memprintf(err, "Failed to get basic response from OCSP Response");
943 goto out;
944 }
945
946 count_sr = OCSP_resp_count(bs);
947 if (count_sr > 1) {
948 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
949 goto out;
950 }
951
952 sr = OCSP_resp_get0(bs, 0);
953 if (!sr) {
954 memprintf(err, "Failed to get OCSP single response");
955 goto out;
956 }
957
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200958 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
959
Emeric Brun4147b2e2014-06-16 18:36:30 +0200960 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200961 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200962 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200963 goto out;
964 }
965
Emeric Brun13a6b482014-06-20 15:44:34 +0200966 if (!nextupd) {
967 memprintf(err, "OCSP single response: missing nextupdate");
968 goto out;
969 }
970
Emeric Brunc8b27b62014-06-19 14:16:17 +0200971 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200972 if (!rc) {
973 memprintf(err, "OCSP single response: no longer valid.");
974 goto out;
975 }
976
977 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200978 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200979 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
980 goto out;
981 }
982 }
983
984 if (!ocsp) {
985 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
986 unsigned char *p;
987
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200988 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200989 if (!rc) {
990 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
991 goto out;
992 }
993
994 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
995 memprintf(err, "OCSP single response: Certificate ID too long");
996 goto out;
997 }
998
999 p = key;
1000 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001001 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001002 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
1003 if (!ocsp) {
1004 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
1005 goto out;
1006 }
1007 }
1008
1009 /* According to comments on "chunk_dup", the
1010 previous chunk buffer will be freed */
1011 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1012 memprintf(err, "OCSP response: Memory allocation error");
1013 goto out;
1014 }
1015
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001016#ifdef HAVE_ASN1_TIME_TO_TM
1017 if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) {
1018 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1019 goto out;
1020 }
1021 ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW;
1022#else
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001023 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +02001024 if (ocsp->expire < 0) {
1025 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1026 goto out;
1027 }
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001028#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001029
Emeric Brun4147b2e2014-06-16 18:36:30 +02001030 ret = 0;
1031out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001032 ERR_clear_error();
1033
Emeric Brun4147b2e2014-06-16 18:36:30 +02001034 if (bs)
1035 OCSP_BASICRESP_free(bs);
1036
1037 if (resp)
1038 OCSP_RESPONSE_free(resp);
1039
1040 return ret;
1041}
1042/*
1043 * External function use to update the OCSP response in the OCSP response's
1044 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1045 * to update in DER format.
1046 *
1047 * Returns 0 on success, 1 in error case.
1048 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001049int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001050{
1051 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1052}
1053
William Lallemand4a660132019-10-14 14:51:41 +02001054#endif
1055
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001056
1057/*
1058 * Initialize an HMAC context <hctx> using the <key> and <md> parameters.
1059 * Returns -1 in case of error, 1 otherwise.
1060 */
1061static int ssl_hmac_init(MAC_CTX *hctx, unsigned char *key, int key_len, const EVP_MD *md)
1062{
1063#ifdef HAVE_OSSL_PARAM
1064 OSSL_PARAM params[3];
1065
1066 params[0] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, key, key_len);
1067 params[1] = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, (char*)EVP_MD_name(md), 0);
1068 params[2] = OSSL_PARAM_construct_end();
1069 if (EVP_MAC_CTX_set_params(hctx, params) == 0)
1070 return -1; /* error in mac initialisation */
1071
1072#else
1073 HMAC_Init_ex(hctx, key, key_len, md, NULL);
1074#endif
1075 return 1;
1076}
1077
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001078#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01001079
1080static 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 +01001081{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001082 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001083 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001084 struct connection *conn;
1085 int head;
1086 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001087 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001088
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001089 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001090 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001091 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1092
1093 keys = ref->tlskeys;
1094 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001095
1096 if (enc) {
1097 memcpy(key_name, keys[head].name, 16);
1098
1099 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001100 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001101
Emeric Brun9e754772019-01-10 17:51:55 +01001102 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001103
Emeric Brun9e754772019-01-10 17:51:55 +01001104 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1105 goto end;
1106
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001107 if (ssl_hmac_init(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0)
1108 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001109 ret = 1;
1110 }
1111 else if (ref->key_size_bits == 256 ) {
1112
1113 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1114 goto end;
1115
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001116 if (ssl_hmac_init(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0)
1117 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001118 ret = 1;
1119 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001120 } else {
1121 for (i = 0; i < TLS_TICKETS_NO; i++) {
1122 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1123 goto found;
1124 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001125 ret = 0;
1126 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001127
Christopher Faulet16f45c82018-02-16 11:23:49 +01001128 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001129 if (ref->key_size_bits == 128) {
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001130 if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0)
1131 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001132 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1133 goto end;
1134 /* 2 for key renewal, 1 if current key is still valid */
1135 ret = i ? 2 : 1;
1136 }
1137 else if (ref->key_size_bits == 256) {
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001138 if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0)
1139 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001140 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1141 goto end;
1142 /* 2 for key renewal, 1 if current key is still valid */
1143 ret = i ? 2 : 1;
1144 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001145 }
Emeric Brun9e754772019-01-10 17:51:55 +01001146
Christopher Faulet16f45c82018-02-16 11:23:49 +01001147 end:
1148 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1149 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001150}
1151
1152struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1153{
1154 struct tls_keys_ref *ref;
1155
1156 list_for_each_entry(ref, &tlskeys_reference, list)
1157 if (ref->filename && strcmp(filename, ref->filename) == 0)
1158 return ref;
1159 return NULL;
1160}
1161
1162struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1163{
1164 struct tls_keys_ref *ref;
1165
1166 list_for_each_entry(ref, &tlskeys_reference, list)
1167 if (ref->unique_id == unique_id)
1168 return ref;
1169 return NULL;
1170}
1171
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001172/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001173 * match existing ones, this function returns -1
1174 * else it returns 0 on success.
1175 */
1176int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001177 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001178{
Emeric Brun9e754772019-01-10 17:51:55 +01001179 if (ref->key_size_bits == 128) {
1180 if (tlskey->data != sizeof(struct tls_sess_key_128))
1181 return -1;
1182 }
1183 else if (ref->key_size_bits == 256) {
1184 if (tlskey->data != sizeof(struct tls_sess_key_256))
1185 return -1;
1186 }
1187 else
1188 return -1;
1189
Christopher Faulet16f45c82018-02-16 11:23:49 +01001190 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001191 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1192 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001193 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1194 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001195
1196 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001197}
1198
Willy Tarreau83061a82018-07-13 11:56:34 +02001199int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001200{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001201 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1202
1203 if(!ref) {
1204 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1205 return 1;
1206 }
Emeric Brun9e754772019-01-10 17:51:55 +01001207 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1208 memprintf(err, "Invalid key size");
1209 return 1;
1210 }
1211
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001212 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001213}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001214
1215/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001216 * automatic ids. It's called just after the basic checks. It returns
1217 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001218 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001219static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001220{
1221 int i = 0;
1222 struct tls_keys_ref *ref, *ref2, *ref3;
1223 struct list tkr = LIST_HEAD_INIT(tkr);
1224
1225 list_for_each_entry(ref, &tlskeys_reference, list) {
1226 if (ref->unique_id == -1) {
1227 /* Look for the first free id. */
1228 while (1) {
1229 list_for_each_entry(ref2, &tlskeys_reference, list) {
1230 if (ref2->unique_id == i) {
1231 i++;
1232 break;
1233 }
1234 }
1235 if (&ref2->list == &tlskeys_reference)
1236 break;
1237 }
1238
1239 /* Uses the unique id and increment it for the next entry. */
1240 ref->unique_id = i;
1241 i++;
1242 }
1243 }
1244
1245 /* This sort the reference list by id. */
1246 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001247 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001248 list_for_each_entry(ref3, &tkr, list) {
1249 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001250 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001251 break;
1252 }
1253 }
1254 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001255 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001256 }
1257
1258 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001259 LIST_INSERT(&tkr, &tlskeys_reference);
1260 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001261 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001262}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001263#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1264
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001265#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001266int ocsp_ex_index = -1;
1267
yanbzhube2774d2015-12-10 15:07:30 -05001268int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1269{
1270 switch (evp_keytype) {
1271 case EVP_PKEY_RSA:
1272 return 2;
1273 case EVP_PKEY_DSA:
1274 return 0;
1275 case EVP_PKEY_EC:
1276 return 1;
1277 }
1278
1279 return -1;
1280}
1281
Emeric Brun4147b2e2014-06-16 18:36:30 +02001282/*
1283 * Callback used to set OCSP status extension content in server hello.
1284 */
1285int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1286{
yanbzhube2774d2015-12-10 15:07:30 -05001287 struct certificate_ocsp *ocsp;
1288 struct ocsp_cbk_arg *ocsp_arg;
1289 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001290 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001291 EVP_PKEY *ssl_pkey;
1292 int key_type;
1293 int index;
1294
William Lallemand76b4a122020-08-04 17:41:39 +02001295 ctx = SSL_get_SSL_CTX(ssl);
1296 if (!ctx)
1297 return SSL_TLSEXT_ERR_NOACK;
1298
1299 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1300 if (!ocsp_arg)
1301 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001302
1303 ssl_pkey = SSL_get_privatekey(ssl);
1304 if (!ssl_pkey)
1305 return SSL_TLSEXT_ERR_NOACK;
1306
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001307 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001308
1309 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1310 ocsp = ocsp_arg->s_ocsp;
1311 else {
1312 /* For multiple certs per context, we have to find the correct OCSP response based on
1313 * the certificate type
1314 */
1315 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1316
1317 if (index < 0)
1318 return SSL_TLSEXT_ERR_NOACK;
1319
1320 ocsp = ocsp_arg->m_ocsp[index];
1321
1322 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001323
1324 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001325 !ocsp->response.area ||
1326 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001327 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001328 return SSL_TLSEXT_ERR_NOACK;
1329
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001330 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001331 if (!ssl_buf)
1332 return SSL_TLSEXT_ERR_NOACK;
1333
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001334 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1335 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001336
1337 return SSL_TLSEXT_ERR_OK;
1338}
1339
William Lallemand4a660132019-10-14 14:51:41 +02001340#endif
1341
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001342#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001343
1344
1345/*
1346 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1347 * used anymore. Also removes it from the tree if free'd.
1348 */
1349static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1350{
1351 if (!ocsp)
1352 return;
1353
1354 ocsp->refcount--;
1355 if (ocsp->refcount <= 0) {
1356 ebmb_delete(&ocsp->key);
1357 chunk_destroy(&ocsp->response);
1358 free(ocsp);
1359 }
1360}
1361
1362
Emeric Brun4147b2e2014-06-16 18:36:30 +02001363/*
1364 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001365 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1366 * status extension, the issuer's certificate is mandatory. It should be
1367 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001368 *
William Lallemand246c0242019-10-11 08:59:13 +02001369 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1370 * OCSP response. If file is empty or content is not a valid OCSP response,
1371 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1372 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001373 *
1374 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001375 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001376 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001377static 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 +02001378{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001379 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001380 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001381 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001382 struct certificate_ocsp *ocsp = NULL, *iocsp;
1383 char *warn = NULL;
1384 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001385 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001386
Emeric Brun4147b2e2014-06-16 18:36:30 +02001387
William Lallemand246c0242019-10-11 08:59:13 +02001388 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001389 if (!x)
1390 goto out;
1391
William Lallemand246c0242019-10-11 08:59:13 +02001392 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001393 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1394 if (chain) {
1395 /* check if one of the certificate of the chain is the issuer */
1396 for (i = 0; i < sk_X509_num(chain); i++) {
1397 X509 *ti = sk_X509_value(chain, i);
1398 if (X509_check_issued(ti, x) == X509_V_OK) {
1399 issuer = ti;
1400 break;
1401 }
1402 }
1403 }
William Lallemand246c0242019-10-11 08:59:13 +02001404 if (!issuer)
1405 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001406
1407 cid = OCSP_cert_to_id(0, x, issuer);
1408 if (!cid)
1409 goto out;
1410
1411 i = i2d_OCSP_CERTID(cid, NULL);
1412 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1413 goto out;
1414
Vincent Bernat02779b62016-04-03 13:48:43 +02001415 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001416 if (!ocsp)
1417 goto out;
1418
1419 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001420 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001421
1422 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1423 if (iocsp == ocsp)
1424 ocsp = NULL;
1425
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001426#ifndef SSL_CTX_get_tlsext_status_cb
1427# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1428 *cb = (void (*) (void))ctx->tlsext_status_cb;
1429#endif
1430 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1431
1432 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001433 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001434 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001435
William Lallemanda560c062020-07-31 11:43:20 +02001436 cb_arg = calloc(1, sizeof(*cb_arg));
1437 if (!cb_arg)
1438 goto out;
1439
yanbzhube2774d2015-12-10 15:07:30 -05001440 cb_arg->is_single = 1;
1441 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001442 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001443
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001444 pkey = X509_get_pubkey(x);
1445 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1446 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001447
1448 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001449 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 */
1450
yanbzhube2774d2015-12-10 15:07:30 -05001451 } else {
1452 /*
1453 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1454 * Update that cb_arg with the new cert's staple
1455 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001456 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001457 struct certificate_ocsp *tmp_ocsp;
1458 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001459 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001460 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001461
William Lallemand76b4a122020-08-04 17:41:39 +02001462 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001463
1464 /*
1465 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1466 * the order of operations below matter, take care when changing it
1467 */
1468 tmp_ocsp = cb_arg->s_ocsp;
1469 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1470 cb_arg->s_ocsp = NULL;
1471 cb_arg->m_ocsp[index] = tmp_ocsp;
1472 cb_arg->is_single = 0;
1473 cb_arg->single_kt = 0;
1474
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001475 pkey = X509_get_pubkey(x);
1476 key_type = EVP_PKEY_base_id(pkey);
1477 EVP_PKEY_free(pkey);
1478
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001479 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001480 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001481 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001482 iocsp->refcount++;
1483 }
yanbzhube2774d2015-12-10 15:07:30 -05001484 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001485
1486 ret = 0;
1487
1488 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001489 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001490 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001491 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001492 }
1493
1494out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001495 if (cid)
1496 OCSP_CERTID_free(cid);
1497
1498 if (ocsp)
1499 free(ocsp);
1500
1501 if (warn)
1502 free(warn);
1503
Emeric Brun4147b2e2014-06-16 18:36:30 +02001504 return ret;
1505}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001506#endif
1507
1508#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001509static 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 +02001510{
William Lallemand4a660132019-10-14 14:51:41 +02001511 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 +02001512}
1513#endif
1514
William Lallemand4a660132019-10-14 14:51:41 +02001515
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001516#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001517
1518#define CT_EXTENSION_TYPE 18
1519
William Lallemand03c331c2020-05-13 10:10:01 +02001520int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001521
1522int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1523{
Willy Tarreau83061a82018-07-13 11:56:34 +02001524 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001525
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001526 *out = (unsigned char *) sctl->area;
1527 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001528
1529 return 1;
1530}
1531
1532int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1533{
1534 return 1;
1535}
1536
William Lallemanda17f4112019-10-10 15:16:44 +02001537static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001538{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001539 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001540
William Lallemanda17f4112019-10-10 15:16:44 +02001541 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 +01001542 goto out;
1543
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001544 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1545
1546 ret = 0;
1547
1548out:
1549 return ret;
1550}
1551
1552#endif
1553
Emeric Brune1f38db2012-09-03 20:36:47 +02001554void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1555{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001556 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001557#ifdef USE_QUIC
1558 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1559#endif /* USE_QUIC */
1560 struct ssl_sock_ctx *ctx = NULL;
1561
Emeric Brund8b2bb52014-01-28 15:43:53 +01001562 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001563 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001564
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001565 if (conn)
1566 ctx = conn->xprt_ctx;
1567#ifdef USE_QUIC
1568 else if (qc)
1569 ctx = qc->xprt_ctx;
1570#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01001571
1572 if (!ctx) {
1573 /* must never happen */
1574 ABORT_NOW();
1575 return;
1576 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001577
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001578#ifndef SSL_OP_NO_RENEGOTIATION
1579 /* Please note that BoringSSL defines this macro to zero so don't
1580 * change this to #if and do not assign a default value to this macro!
1581 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001582 if (where & SSL_CB_HANDSHAKE_START) {
1583 /* Disable renegotiation (CVE-2009-3555) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001584 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 +02001585 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001586 conn->err_code = CO_ER_SSL_RENEG;
1587 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001588 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001589#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001590
1591 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001592 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001593 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001594 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001595 consider that the buffering was activated,
1596 so we rise the output buffer size from 4k
1597 to 16k */
1598 write_bio = SSL_get_wbio(ssl);
1599 if (write_bio != SSL_get_rbio(ssl)) {
1600 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001601 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001602 }
1603 }
1604 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001605}
1606
Emeric Brune64aef12012-09-21 13:15:06 +02001607/* Callback is called for each certificate of the chain during a verify
1608 ok is set to 1 if preverify detect no error on current certificate.
1609 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001610int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001611{
1612 SSL *ssl;
1613 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001614 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001615 int err, depth;
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001616 X509 *client_crt;
1617 STACK_OF(X509) *certs;
Emeric Brune64aef12012-09-21 13:15:06 +02001618
1619 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001620 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001621 client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001622
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001623 ctx = conn->xprt_ctx;
1624
1625 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001626
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001627 depth = X509_STORE_CTX_get_error_depth(x_store);
1628 err = X509_STORE_CTX_get_error(x_store);
1629
Emeric Brun81c00f02012-09-21 14:31:21 +02001630 if (ok) /* no errors */
1631 return ok;
1632
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001633 /* Keep a reference to the client's certificate in order to be able to
1634 * dump some fetches values in a log even when the verification process
1635 * fails. */
1636 if (depth == 0) {
1637 X509_free(client_crt);
1638 client_crt = X509_STORE_CTX_get0_cert(x_store);
1639 if (client_crt) {
1640 X509_up_ref(client_crt);
1641 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
1642 }
1643 }
1644 else {
1645 /* An error occurred on a CA certificate of the certificate
1646 * chain, we might never call this verify callback on the client
1647 * certificate's depth (which is 0) so we try to store the
1648 * reference right now. */
Remi Tricot-Le Bretonf95c2952021-08-20 09:51:23 +02001649 certs = X509_STORE_CTX_get1_chain(x_store);
1650 if (certs) {
1651 client_crt = sk_X509_value(certs, 0);
1652 if (client_crt) {
1653 X509_up_ref(client_crt);
1654 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001655 }
1656 sk_X509_pop_free(certs, X509_free);
1657 }
1658 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001659
1660 /* check if CA error needs to be ignored */
1661 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001662 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1663 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1664 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001665 }
1666
Willy Tarreau731248f2020-02-04 14:02:02 +01001667 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001668 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001669 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001670 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001671 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001672
Willy Tarreau20879a02012-12-03 16:32:10 +01001673 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001674 return 0;
1675 }
1676
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001677 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1678 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001679
Emeric Brun81c00f02012-09-21 14:31:21 +02001680 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001681 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001682 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001683 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001684 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001685 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001686
Willy Tarreau20879a02012-12-03 16:32:10 +01001687 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001688 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001689}
1690
Dragan Dosen9ac98092020-05-11 15:51:45 +02001691#ifdef TLS1_RT_HEARTBEAT
1692static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1693 int content_type, const void *buf, size_t len,
1694 SSL *ssl)
1695{
1696 /* test heartbeat received (write_p is set to 0
1697 for a received record) */
1698 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1699 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1700 const unsigned char *p = buf;
1701 unsigned int payload;
1702
1703 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1704
1705 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1706 if (*p != TLS1_HB_REQUEST)
1707 return;
1708
1709 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1710 goto kill_it;
1711
1712 payload = (p[1] * 256) + p[2];
1713 if (3 + payload + 16 <= len)
1714 return; /* OK no problem */
1715 kill_it:
1716 /* We have a clear heartbleed attack (CVE-2014-0160), the
1717 * advertised payload is larger than the advertised packet
1718 * length, so we have garbage in the buffer between the
1719 * payload and the end of the buffer (p+len). We can't know
1720 * if the SSL stack is patched, and we don't know if we can
1721 * safely wipe out the area between p+3+len and payload.
1722 * So instead, we prevent the response from being sent by
1723 * setting the max_send_fragment to 0 and we report an SSL
1724 * error, which will kill this connection. It will be reported
1725 * above as SSL_ERROR_SSL while an other handshake failure with
1726 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1727 */
1728 ssl->max_send_fragment = 0;
1729 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1730 }
1731}
1732#endif
1733
1734static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1735 int content_type, const void *buf, size_t len,
1736 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001737{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001738 struct ssl_capture *capture;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001739 uchar *msg;
1740 uchar *end;
1741 uchar *extensions_end;
1742 uchar *ec_start = NULL;
1743 uchar *ec_formats_start = NULL;
1744 uchar *list_end;
1745 ushort protocol_version;
1746 ushort extension_id;
1747 ushort ec_len = 0;
1748 uchar ec_formats_len = 0;
1749 int offset = 0;
1750 int rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001751
1752 /* This function is called for "from client" and "to server"
1753 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001754 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001755 */
1756
1757 /* "write_p" is set to 0 is the bytes are received messages,
1758 * otherwise it is set to 1.
1759 */
1760 if (write_p != 0)
1761 return;
1762
1763 /* content_type contains the type of message received or sent
1764 * according with the SSL/TLS protocol spec. This message is
1765 * encoded with one byte. The value 256 (two bytes) is used
1766 * for designing the SSL/TLS record layer. According with the
1767 * rfc6101, the expected message (other than 256) are:
1768 * - change_cipher_spec(20)
1769 * - alert(21)
1770 * - handshake(22)
1771 * - application_data(23)
1772 * - (255)
1773 * We are interessed by the handshake and specially the client
1774 * hello.
1775 */
1776 if (content_type != 22)
1777 return;
1778
1779 /* The message length is at least 4 bytes, containing the
1780 * message type and the message length.
1781 */
1782 if (len < 4)
1783 return;
1784
1785 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001786 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001787 * - hello_request(0)
1788 * - client_hello(1)
1789 * - server_hello(2)
1790 * - certificate(11)
1791 * - server_key_exchange (12)
1792 * - certificate_request(13)
1793 * - server_hello_done(14)
1794 * We are interested by the client hello.
1795 */
1796 msg = (unsigned char *)buf;
1797 if (msg[0] != 1)
1798 return;
1799
1800 /* Next three bytes are the length of the message. The total length
1801 * must be this decoded length + 4. If the length given as argument
1802 * is not the same, we abort the protocol dissector.
1803 */
1804 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1805 if (len < rec_len + 4)
1806 return;
1807 msg += 4;
1808 end = msg + rec_len;
1809 if (end < msg)
1810 return;
1811
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001812 /* Expect 2 bytes for protocol version
1813 * (1 byte for major and 1 byte for minor)
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001814 */
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001815 if (msg + 2 > end)
1816 return;
1817 protocol_version = (msg[0] << 8) + msg[1];
1818 msg += 2;
1819
1820 /* Expect the random, composed by 4 bytes for the unix time and
1821 * 28 bytes for unix payload. So we jump 4 + 28.
1822 */
1823 msg += 4 + 28;
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001824 if (msg > end)
1825 return;
1826
1827 /* Next, is session id:
1828 * if present, we have to jump by length + 1 for the size information
1829 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001830 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001831 if (msg[0] > 0)
1832 msg += msg[0];
1833 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001834 if (msg > end)
1835 return;
1836
1837 /* Next two bytes are the ciphersuite length. */
1838 if (msg + 2 > end)
1839 return;
1840 rec_len = (msg[0] << 8) + msg[1];
1841 msg += 2;
1842 if (msg + rec_len > end || msg + rec_len < msg)
1843 return;
1844
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001845 capture = pool_zalloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001846 if (!capture)
1847 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001848 /* Compute the xxh64 of the ciphersuite. */
1849 capture->xxh64 = XXH64(msg, rec_len, 0);
1850
1851 /* Capture the ciphersuite. */
Marcin Deranek310a2602021-07-13 19:04:24 +02001852 capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len);
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001853 capture->ciphersuite_offset = 0;
1854 memcpy(capture->data, msg, capture->ciphersuite_len);
1855 msg += rec_len;
1856 offset += capture->ciphersuite_len;
1857
1858 /* Initialize other data */
1859 capture->protocol_version = protocol_version;
1860
1861 /* Next, compression methods:
1862 * if present, we have to jump by length + 1 for the size information
1863 * if not present, we have to jump by 1 only
1864 */
1865 if (msg[0] > 0)
1866 msg += msg[0];
1867 msg += 1;
1868 if (msg > end)
1869 goto store_capture;
1870
1871 /* We reached extensions */
1872 if (msg + 2 > end)
1873 goto store_capture;
1874 rec_len = (msg[0] << 8) + msg[1];
1875 msg += 2;
1876 if (msg + rec_len > end || msg + rec_len < msg)
1877 goto store_capture;
1878 extensions_end = msg + rec_len;
1879 capture->extensions_offset = offset;
1880
1881 /* Parse each extension */
1882 while (msg + 4 < extensions_end) {
1883 /* Add 2 bytes of extension_id */
Marcin Deranek310a2602021-07-13 19:04:24 +02001884 if (global_ssl.capture_buffer_size >= offset + 2) {
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001885 capture->data[offset++] = msg[0];
1886 capture->data[offset++] = msg[1];
1887 capture->extensions_len += 2;
1888 }
1889 else
1890 break;
1891 extension_id = (msg[0] << 8) + msg[1];
1892 /* Length of the extension */
1893 rec_len = (msg[2] << 8) + msg[3];
1894
1895 /* Expect 2 bytes extension id + 2 bytes extension size */
1896 msg += 2 + 2;
1897 if (msg + rec_len > extensions_end || msg + rec_len < msg)
1898 goto store_capture;
1899 /* TLS Extensions
1900 * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1901 if (extension_id == 0x000a) {
1902 /* Elliptic Curves:
1903 * https://www.rfc-editor.org/rfc/rfc8422.html
1904 * https://www.rfc-editor.org/rfc/rfc7919.html */
1905 list_end = msg + rec_len;
1906 if (msg + 2 > list_end)
1907 goto store_capture;
1908 rec_len = (msg[0] << 8) + msg[1];
1909 msg += 2;
1910
1911 if (msg + rec_len > list_end || msg + rec_len < msg)
1912 goto store_capture;
1913 /* Store location/size of the list */
1914 ec_start = msg;
1915 ec_len = rec_len;
1916 }
1917 else if (extension_id == 0x000b) {
1918 /* Elliptic Curves Point Formats:
1919 * https://www.rfc-editor.org/rfc/rfc8422.html */
1920 list_end = msg + rec_len;
1921 if (msg + 1 > list_end)
1922 goto store_capture;
1923 rec_len = msg[0];
1924 msg += 1;
1925
1926 if (msg + rec_len > list_end || msg + rec_len < msg)
1927 goto store_capture;
1928 /* Store location/size of the list */
1929 ec_formats_start = msg;
1930 ec_formats_len = rec_len;
1931 }
1932 msg += rec_len;
1933 }
1934
1935 if (ec_start) {
1936 rec_len = ec_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02001937 if (offset + rec_len > global_ssl.capture_buffer_size)
1938 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001939 memcpy(capture->data + offset, ec_start, rec_len);
1940 capture->ec_offset = offset;
1941 capture->ec_len = rec_len;
1942 offset += rec_len;
1943 }
1944 if (ec_formats_start) {
1945 rec_len = ec_formats_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02001946 if (offset + rec_len > global_ssl.capture_buffer_size)
1947 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001948 memcpy(capture->data + offset, ec_formats_start, rec_len);
1949 capture->ec_formats_offset = offset;
1950 capture->ec_formats_len = rec_len;
1951 offset += rec_len;
1952 }
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001953
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001954 store_capture:
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001955 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001956}
William Lallemand7d42ef52020-07-06 11:41:30 +02001957
1958
William Lallemand722180a2021-06-09 16:46:12 +02001959#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001960static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1961 int content_type, const void *buf, size_t len,
1962 SSL *ssl)
1963{
1964 struct ssl_keylog *keylog;
1965
1966 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1967 return;
1968
Willy Tarreauf208ac02021-03-22 21:10:12 +01001969 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001970 if (!keylog)
1971 return;
1972
William Lallemand7d42ef52020-07-06 11:41:30 +02001973 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1974 pool_free(pool_head_ssl_keylog, keylog);
1975 return;
1976 }
1977}
1978#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001979
Emeric Brun29f037d2014-04-25 19:05:36 +02001980/* Callback is called for ssl protocol analyse */
1981void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1982{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001983 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1984 struct ssl_sock_msg_callback *cbk;
1985
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001986 /* Try to call all callback functions that were registered by using
1987 * ssl_sock_register_msg_callback().
1988 */
1989 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1990 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1991 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001992}
1993
Bernard Spil13c53f82018-02-15 13:34:58 +01001994#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001995static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1996 const unsigned char *in, unsigned int inlen,
1997 void *arg)
1998{
1999 struct server *srv = arg;
2000
2001 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
2002 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
2003 return SSL_TLSEXT_ERR_OK;
2004 return SSL_TLSEXT_ERR_NOACK;
2005}
2006#endif
2007
2008#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002009/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002010 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002011 */
2012static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
2013 unsigned int *len, void *arg)
2014{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002015 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002016
2017 *data = (const unsigned char *)conf->npn_str;
2018 *len = conf->npn_len;
2019 return SSL_TLSEXT_ERR_OK;
2020}
2021#endif
2022
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002023#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02002024/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002025 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02002026 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002027static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
2028 unsigned char *outlen,
2029 const unsigned char *server,
2030 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02002031{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002032 struct ssl_bind_conf *conf = arg;
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002033#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002034 struct quic_conn *qc = SSL_get_ex_data(s, ssl_qc_app_data_index);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002035#endif
Willy Tarreauab861d32013-04-02 02:30:41 +02002036
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002037 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
2038 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002039#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002040 if (qc)
2041 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002042#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002043 return SSL_TLSEXT_ERR_NOACK;
2044 }
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002045
2046#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002047 if (qc && !quic_set_app_ops(qc, *out, *outlen)) {
2048 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002049 return SSL_TLSEXT_ERR_NOACK;
2050 }
2051#endif
2052
Willy Tarreauab861d32013-04-02 02:30:41 +02002053 return SSL_TLSEXT_ERR_OK;
2054}
2055#endif
2056
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02002057#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002058#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002059
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002060/* Configure a DNS SAN extenion on a certificate. */
2061int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
2062 int failure = 0;
2063 X509_EXTENSION *san_ext = NULL;
2064 CONF *conf = NULL;
2065 struct buffer *san_name = get_trash_chunk();
2066
2067 conf = NCONF_new(NULL);
2068 if (!conf) {
2069 failure = 1;
2070 goto cleanup;
2071 }
2072
2073 /* Build an extension based on the DNS entry above */
2074 chunk_appendf(san_name, "DNS:%s", servername);
2075 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
2076 if (!san_ext) {
2077 failure = 1;
2078 goto cleanup;
2079 }
2080
2081 /* Add the extension */
2082 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
2083 failure = 1;
2084 goto cleanup;
2085 }
2086
2087 /* Success */
2088 failure = 0;
2089
2090cleanup:
2091 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
2092 if (NULL != conf) NCONF_free(conf);
2093
2094 return failure;
2095}
2096
Christopher Faulet30548802015-06-11 13:39:32 +02002097/* Create a X509 certificate with the specified servername and serial. This
2098 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02002099static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002100ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002101{
Shimi Gersner5846c492020-08-23 13:58:12 +03002102 X509 *cacert = bind_conf->ca_sign_ckch->cert;
2103 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002104 SSL_CTX *ssl_ctx = NULL;
2105 X509 *newcrt = NULL;
2106 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002107 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002108 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002109 X509_NAME *name;
2110 const EVP_MD *digest;
2111 X509V3_CTX ctx;
2112 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002113 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002114
Christopher Faulet48a83322017-07-28 16:56:09 +02002115 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05002116#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002117 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
2118#else
2119 tmp_ssl = SSL_new(bind_conf->default_ctx);
2120 if (tmp_ssl)
2121 pkey = SSL_get_privatekey(tmp_ssl);
2122#endif
2123 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002124 goto mkcert_error;
2125
2126 /* Create the certificate */
2127 if (!(newcrt = X509_new()))
2128 goto mkcert_error;
2129
2130 /* Set version number for the certificate (X509v3) and the serial
2131 * number */
2132 if (X509_set_version(newcrt, 2L) != 1)
2133 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02002134 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002135
2136 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08002137 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
2138 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002139 goto mkcert_error;
2140
2141 /* set public key in the certificate */
2142 if (X509_set_pubkey(newcrt, pkey) != 1)
2143 goto mkcert_error;
2144
2145 /* Set issuer name from the CA */
2146 if (!(name = X509_get_subject_name(cacert)))
2147 goto mkcert_error;
2148 if (X509_set_issuer_name(newcrt, name) != 1)
2149 goto mkcert_error;
2150
2151 /* Set the subject name using the same, but the CN */
2152 name = X509_NAME_dup(name);
2153 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
2154 (const unsigned char *)servername,
2155 -1, -1, 0) != 1) {
2156 X509_NAME_free(name);
2157 goto mkcert_error;
2158 }
2159 if (X509_set_subject_name(newcrt, name) != 1) {
2160 X509_NAME_free(name);
2161 goto mkcert_error;
2162 }
2163 X509_NAME_free(name);
2164
2165 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002166 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002167 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
2168 for (i = 0; i < X509V3_EXT_SIZE; i++) {
2169 X509_EXTENSION *ext;
2170
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002171 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002172 goto mkcert_error;
2173 if (!X509_add_ext(newcrt, ext, -1)) {
2174 X509_EXTENSION_free(ext);
2175 goto mkcert_error;
2176 }
2177 X509_EXTENSION_free(ext);
2178 }
2179
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002180 /* Add SAN extension */
2181 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
2182 goto mkcert_error;
2183 }
2184
Christopher Faulet31af49d2015-06-09 17:29:50 +02002185 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002186
2187 key_type = EVP_PKEY_base_id(capkey);
2188
2189 if (key_type == EVP_PKEY_DSA)
2190 digest = EVP_sha1();
2191 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002192 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002193 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002194 digest = EVP_sha256();
2195 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002196#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002197 int nid;
2198
2199 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2200 goto mkcert_error;
2201 if (!(digest = EVP_get_digestbynid(nid)))
2202 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002203#else
2204 goto mkcert_error;
2205#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002206 }
2207
Christopher Faulet31af49d2015-06-09 17:29:50 +02002208 if (!(X509_sign(newcrt, capkey, digest)))
2209 goto mkcert_error;
2210
2211 /* Create and set the new SSL_CTX */
2212 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2213 goto mkcert_error;
2214 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2215 goto mkcert_error;
2216 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2217 goto mkcert_error;
2218 if (!SSL_CTX_check_private_key(ssl_ctx))
2219 goto mkcert_error;
2220
Shimi Gersner5846c492020-08-23 13:58:12 +03002221 /* Build chaining the CA cert and the rest of the chain, keep these order */
2222#if defined(SSL_CTX_add1_chain_cert)
2223 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2224 goto mkcert_error;
2225 }
2226
2227 if (bind_conf->ca_sign_ckch->chain) {
2228 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2229 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2230 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2231 goto mkcert_error;
2232 }
2233 }
2234 }
2235#endif
2236
Christopher Faulet31af49d2015-06-09 17:29:50 +02002237 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002238
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002239#ifndef OPENSSL_NO_DH
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01002240 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh_cbk);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002241#endif
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002242
2243#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
2244#if defined(SSL_CTX_set1_curves_list)
2245 {
2246 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
2247 if (!SSL_CTX_set1_curves_list(ssl_ctx, ecdhe))
2248 goto end;
2249 }
2250#endif
2251#else
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002252#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2253 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002254 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002255 EC_KEY *ecc;
2256 int nid;
2257
2258 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2259 goto end;
2260 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2261 goto end;
2262 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2263 EC_KEY_free(ecc);
2264 }
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002265#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
2266#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002267 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002268 return ssl_ctx;
2269
2270 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002271 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002272 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002273 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2274 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002275 return NULL;
2276}
2277
Christopher Faulet7969a332015-10-09 11:15:03 +02002278
Christopher Faulet30548802015-06-11 13:39:32 +02002279/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002280 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002281SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002282ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002283{
2284 struct lru64 *lru = NULL;
2285
2286 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002287 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002288 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002289 if (lru && lru->domain) {
2290 if (ssl)
2291 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002292 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002293 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002294 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002295 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002296 }
2297 return NULL;
2298}
2299
Emeric Brun821bb9b2017-06-15 16:37:39 +02002300/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2301 * function is not thread-safe, it should only be used to check if a certificate
2302 * exists in the lru cache (with no warranty it will not be removed by another
2303 * thread). It is kept for backward compatibility. */
2304SSL_CTX *
2305ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2306{
2307 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2308}
2309
Christopher Fauletd2cab922015-07-28 16:03:47 +02002310/* Set a certificate int the LRU cache used to store generated
2311 * certificate. Return 0 on success, otherwise -1 */
2312int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002313ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002314{
2315 struct lru64 *lru = NULL;
2316
2317 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002318 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002319 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002320 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002321 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002322 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002323 }
Christopher Faulet30548802015-06-11 13:39:32 +02002324 if (lru->domain && lru->data)
2325 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002326 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002327 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002328 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002329 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002330 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002331}
2332
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002333/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002334unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002335ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002336{
2337 return XXH32(data, len, ssl_ctx_lru_seed);
2338}
2339
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002340/* Generate a cert and immediately assign it to the SSL session so that the cert's
2341 * refcount is maintained regardless of the cert's presence in the LRU cache.
2342 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002343static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002344ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002345{
Shimi Gersner5846c492020-08-23 13:58:12 +03002346 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002347 SSL_CTX *ssl_ctx = NULL;
2348 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002349 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002350
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002351 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002352 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002353 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002354 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002355 if (lru && lru->domain)
2356 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002357 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002358 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002359 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002360 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002361 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002362 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002363 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002364 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002365 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002366 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002367 SSL_set_SSL_CTX(ssl, ssl_ctx);
2368 /* No LRU cache, this CTX will be released as soon as the session dies */
2369 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002370 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002371 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002372 return 0;
2373}
2374static int
2375ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2376{
2377 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002378 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002379
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002380 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002381 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002382 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002383 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002384 }
2385 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002386}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002387#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002388
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002389#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002390
2391static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002392{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002393#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002394 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002395 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2396#endif
2397}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002398static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2399 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002400 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2401}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002402static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002403#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002404 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002405 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2406#endif
2407}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002408static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002409#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002410 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002411 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2412#endif
2413}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002414/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002415static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2416/* Unusable in this context. */
2417static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2418static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2419static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2420static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2421static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002422#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002423
2424static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2425 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002426 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2427}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002428static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2429 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2430 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2431}
2432static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2433 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002434 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2435}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002436static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2437 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2438 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2439}
2440static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2441 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002442 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2443}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002444static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2445 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2446 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2447}
2448static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2449 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002450 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2451}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002452static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2453 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2454 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2455}
2456static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002457#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002458 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002459 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2460#endif
2461}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002462static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002463#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002464 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2465 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002466#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002467}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002468#endif
2469static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2470static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002471
William Lallemand7fd8b452020-05-07 15:20:43 +02002472struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002473 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2474 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2475 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2476 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2477 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2478 {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 +02002479};
2480
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002481static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2482{
2483 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2484 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2485 SSL_set_SSL_CTX(ssl, ctx);
2486}
2487
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002488#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002489
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002490int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002491{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002492 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002493 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002494
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002495 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2496 return SSL_TLSEXT_ERR_OK;
2497 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002498}
2499
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002500#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002501int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002502{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002503 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002504#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002505int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002506{
2507#endif
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002508 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
2509#ifdef USE_QUIC
2510 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
2511#endif /* USE_QUIC */
2512 struct bind_conf *s = NULL;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002513 const uint8_t *extension_data;
2514 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002515 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002516
2517 char *wildp = NULL;
2518 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002519 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002520 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002521 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002522 int i;
2523
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002524 if (conn)
2525 s = __objt_listener(conn->target)->bind_conf;
2526#ifdef USE_QUIC
2527 else if (qc)
2528 s = qc->li->bind_conf;
2529#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01002530
2531 if (!s) {
2532 /* must never happen */
2533 ABORT_NOW();
2534 return 0;
2535 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002536
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002537#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002538 if (qc) {
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002539 /* Look for the QUIC transport parameters. */
2540#ifdef OPENSSL_IS_BORINGSSL
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002541 if (!SSL_early_callback_ctx_extension_get(ctx, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002542 &extension_data, &extension_len))
2543#else
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002544 if (!SSL_client_hello_get0_ext(ssl, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002545 &extension_data, &extension_len))
2546#endif
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002547 {
2548 /* This is not redundant. It we only return 0 without setting
2549 * <*al>, this has as side effect to generate another TLS alert
2550 * which would be set after calling quic_set_tls_alert().
2551 */
2552 *al = SSL_AD_MISSING_EXTENSION;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002553 quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION);
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002554 return 0;
2555 }
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002556
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002557 if (!quic_transport_params_store(qc, 0, extension_data,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002558 extension_data + extension_len))
2559 goto abort;
2560 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002561#endif /* USE_QUIC */
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002562
Olivier Houchard9679ac92017-10-27 14:58:08 +02002563 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002564 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002565#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002566 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2567 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002568#else
2569 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2570#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002571 /*
2572 * The server_name extension was given too much extensibility when it
2573 * was written, so parsing the normal case is a bit complex.
2574 */
2575 size_t len;
2576 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002577 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002578 /* Extract the length of the supplied list of names. */
2579 len = (*extension_data++) << 8;
2580 len |= *extension_data++;
2581 if (len + 2 != extension_len)
2582 goto abort;
2583 /*
2584 * The list in practice only has a single element, so we only consider
2585 * the first one.
2586 */
2587 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2588 goto abort;
2589 extension_len = len - 1;
2590 /* Now we can finally pull out the byte array with the actual hostname. */
2591 if (extension_len <= 2)
2592 goto abort;
2593 len = (*extension_data++) << 8;
2594 len |= *extension_data++;
2595 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2596 || memchr(extension_data, 0, len) != NULL)
2597 goto abort;
2598 servername = extension_data;
2599 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002600 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002601#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2602 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002603 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002604 }
2605#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002606 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002607 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002608 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002609 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002610 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002611 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002612 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002613 goto abort;
2614 }
2615
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002616 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002617#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002618 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002619#else
2620 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2621#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002622 uint8_t sign;
2623 size_t len;
2624 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002625 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002626 len = (*extension_data++) << 8;
2627 len |= *extension_data++;
2628 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002629 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002630 if (len % 2 != 0)
2631 goto abort;
2632 for (; len > 0; len -= 2) {
2633 extension_data++; /* hash */
2634 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002635 switch (sign) {
2636 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002637 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002638 break;
2639 case TLSEXT_signature_ecdsa:
2640 has_ecdsa_sig = 1;
2641 break;
2642 default:
2643 continue;
2644 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002645 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002646 break;
2647 }
2648 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002649 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002650 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002651 }
2652 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002653 const SSL_CIPHER *cipher;
2654 size_t len;
2655 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002656 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002657#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002658 len = ctx->cipher_suites_len;
2659 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002660#else
2661 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2662#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002663 if (len % 2 != 0)
2664 goto abort;
2665 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002666#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002667 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002668 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002669#else
2670 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2671#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002672 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002673 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002674 break;
2675 }
2676 }
2677 }
2678
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002679 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002680 trash.area[i] = tolower(servername[i]);
2681 if (!wildp && (trash.area[i] == '.'))
2682 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002683 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002684 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002685
William Lallemand150bfa82019-09-19 17:12:49 +02002686 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002687
William Lallemand94bd3192020-08-14 14:43:35 +02002688 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2689 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002690 for (i = 0; i < 2; i++) {
2691 if (i == 0) /* lookup in full qualified names */
2692 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002693 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002694 node = ebst_lookup(&s->sni_w_ctx, wildp);
2695 else
2696 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002697
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002698 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002699
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002700 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002701 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002702 struct sni_ctx *sni, *sni_tmp;
2703 int skip = 0;
2704
2705 if (i == 1 && wildp) { /* wildcard */
2706 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2707 sni = container_of(n, struct sni_ctx, name);
2708 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002709 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002710 skip = 1;
2711 break;
2712 }
2713 }
2714 if (skip)
2715 continue;
2716 }
2717
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002718 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002719 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002720 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002721 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002722 break;
2723 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002724 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002725 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002726 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002727 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002728 if (!node_anonymous)
2729 node_anonymous = n;
2730 break;
2731 }
2732 }
2733 }
William Lallemand94bd3192020-08-14 14:43:35 +02002734 }
2735 /* Once the certificates are found, select them depending on what is
2736 * supported in the client and by key_signature priority order: EDSA >
2737 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002738 if (has_ecdsa_sig && node_ecdsa)
2739 node = node_ecdsa;
2740 else if (has_rsa_sig && node_rsa)
2741 node = node_rsa;
2742 else if (node_anonymous)
2743 node = node_anonymous;
2744 else if (node_ecdsa)
2745 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2746 else
2747 node = node_rsa; /* no rsa signature case (far far away) */
2748
William Lallemand94bd3192020-08-14 14:43:35 +02002749 if (node) {
2750 /* switch ctx */
2751 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2752 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2753 if (conf) {
2754 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2755 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2756 if (conf->early_data)
2757 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002758 }
William Lallemand94bd3192020-08-14 14:43:35 +02002759 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2760 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002761 }
William Lallemand150bfa82019-09-19 17:12:49 +02002762
William Lallemand02010472019-10-18 11:02:19 +02002763 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002764#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002765 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002766 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002767 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002768 }
2769#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002770 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002771 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002772 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002773 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002774 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
William Lallemand7980dff2021-11-18 17:46:26 +01002775 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002776 }
William Lallemand7980dff2021-11-18 17:46:26 +01002777
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01002778 /* We are about to raise an handshake error so the servername extension
2779 * callback will never be called and the SNI will never be stored in the
2780 * SSL context. In order for the ssl_fc_sni sample fetch to still work
2781 * in such a case, we store the SNI ourselves as an ex_data information
2782 * in the SSL context.
2783 */
2784 {
2785 char *client_sni = pool_alloc(ssl_sock_client_sni_pool);
2786 if (client_sni) {
2787 strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name);
2788 client_sni[TLSEXT_MAXLEN_host_name] = '\0';
2789 SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni);
2790 }
2791 }
2792
William Lallemand7980dff2021-11-18 17:46:26 +01002793 /* other cases fallback on abort, if strict-sni is set but no node was found */
2794
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002795 abort:
2796 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002797 if (conn)
2798 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002799#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002800 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002801#else
2802 *al = SSL_AD_UNRECOGNIZED_NAME;
2803 return 0;
2804#endif
William Lallemand7980dff2021-11-18 17:46:26 +01002805
2806allow_early:
2807#ifdef OPENSSL_IS_BORINGSSL
2808 if (allow_early)
2809 SSL_set_early_data_enabled(ssl, 1);
2810#else
2811 if (!allow_early)
2812 SSL_set_max_early_data(ssl, 0);
2813#endif
2814 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002815}
2816
William Lallemand002e2062021-11-18 15:25:16 +01002817#else /* ! HAVE_SSL_CLIENT_HELLO_CB */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002818
Emeric Brunfc0421f2012-09-07 17:30:07 +02002819/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2820 * warning when no match is found, which implies the default (first) cert
2821 * will keep being used.
2822 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002823static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002824{
2825 const char *servername;
2826 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002827 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002828 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002829 int i;
2830 (void)al; /* shut gcc stupid warning */
2831
2832 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002833 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002834#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002835 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2836 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002837#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002838 if (s->strict_sni)
2839 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002840 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002841 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002842 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002843 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002844 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002845
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002846 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002847 if (!servername[i])
2848 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002849 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002850 if (!wildp && (trash.area[i] == '.'))
2851 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002852 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002853 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002854
William Lallemand150bfa82019-09-19 17:12:49 +02002855 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002856 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002857 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002858 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2859 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002860 if (!container_of(n, struct sni_ctx, name)->neg) {
2861 node = n;
2862 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002863 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002864 }
2865 if (!node && wildp) {
2866 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002867 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2868 /* lookup a not neg filter */
2869 if (!container_of(n, struct sni_ctx, name)->neg) {
2870 node = n;
2871 break;
2872 }
2873 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002874 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002875 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002876#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002877 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2878 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002879 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002880 return SSL_TLSEXT_ERR_OK;
2881 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002882#endif
William Lallemand21724f02019-11-04 17:56:13 +01002883 if (s->strict_sni) {
2884 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002885 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002886 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002887 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002888 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002889 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002890 }
2891
2892 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002893 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002894 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002895 return SSL_TLSEXT_ERR_OK;
2896}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002897#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002898#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2899
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002900#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002901
2902static DH * ssl_get_dh_1024(void)
2903{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002904 static unsigned char dh1024_p[]={
2905 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2906 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2907 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2908 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2909 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2910 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2911 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2912 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2913 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2914 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2915 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2916 };
2917 static unsigned char dh1024_g[]={
2918 0x02,
2919 };
2920
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002921 BIGNUM *p;
2922 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002923 DH *dh = DH_new();
2924 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002925 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2926 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002927
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002928 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002929 DH_free(dh);
2930 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002931 } else {
2932 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002933 }
2934 }
2935 return dh;
2936}
2937
2938static DH *ssl_get_dh_2048(void)
2939{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002940 static unsigned char dh2048_p[]={
2941 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2942 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2943 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2944 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2945 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2946 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2947 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2948 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2949 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2950 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2951 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2952 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2953 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2954 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2955 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2956 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2957 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2958 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2959 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2960 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2961 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2962 0xB7,0x1F,0x77,0xF3,
2963 };
2964 static unsigned char dh2048_g[]={
2965 0x02,
2966 };
2967
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002968 BIGNUM *p;
2969 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002970 DH *dh = DH_new();
2971 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002972 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2973 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002974
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002975 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002976 DH_free(dh);
2977 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002978 } else {
2979 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002980 }
2981 }
2982 return dh;
2983}
2984
2985static DH *ssl_get_dh_4096(void)
2986{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002987 static unsigned char dh4096_p[]={
2988 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2989 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2990 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2991 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2992 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2993 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2994 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2995 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2996 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2997 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2998 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2999 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
3000 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
3001 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
3002 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
3003 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
3004 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
3005 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
3006 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
3007 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
3008 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
3009 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
3010 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
3011 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
3012 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
3013 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
3014 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
3015 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
3016 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
3017 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
3018 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
3019 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
3020 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
3021 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
3022 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
3023 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
3024 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
3025 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
3026 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
3027 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
3028 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
3029 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
3030 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003031 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02003032 static unsigned char dh4096_g[]={
3033 0x02,
3034 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003035
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003036 BIGNUM *p;
3037 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003038 DH *dh = DH_new();
3039 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003040 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
3041 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02003042
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003043 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003044 DH_free(dh);
3045 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003046 } else {
3047 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003048 }
3049 }
3050 return dh;
3051}
3052
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003053static DH *ssl_get_tmp_dh(EVP_PKEY *pkey)
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003054{
3055 DH *dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003056 int type;
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003057 int keylen = 0;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003058
3059 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003060
3061 /* The keylen supplied by OpenSSL can only be 512 or 1024.
3062 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
3063 */
3064 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
3065 keylen = EVP_PKEY_bits(pkey);
3066 }
3067
Willy Tarreauef934602016-12-22 23:12:01 +01003068 if (keylen > global_ssl.default_dh_param) {
3069 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003070 }
3071
Remi Gacogned3a341a2015-05-29 16:26:17 +02003072 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02003073 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003074 }
3075 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02003076 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003077 }
3078 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02003079 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003080 }
3081
3082 return dh;
3083}
3084
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003085/* Returns Diffie-Hellman parameters matching the private key length
3086 but not exceeding global_ssl.default_dh_param */
3087static DH *ssl_get_tmp_dh_cbk(SSL *ssl, int export, int keylen)
3088{
3089 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
3090
3091 return ssl_get_tmp_dh(pkey);
3092}
3093
Remi Tricot-Le Breton846eda92022-02-11 12:04:50 +01003094static int ssl_sock_set_tmp_dh(SSL_CTX *ctx, HASSL_DH *dh)
3095{
3096#if (HA_OPENSSL_VERSION_NUMBER < 0x3000000fL)
3097 return SSL_CTX_set_tmp_dh(ctx, dh);
3098#else
3099 int retval = 0;
3100 HASSL_DH_up_ref(dh);
3101
3102 retval = SSL_CTX_set0_tmp_dh_pkey(ctx, dh);
3103
3104 if (!retval)
3105 HASSL_DH_free(dh);
3106
3107 return retval;
3108#endif
3109}
3110
Remi Tricot-Le Breton5f179302022-02-11 12:04:51 +01003111#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3112static void ssl_sock_set_tmp_dh_from_pkey(SSL_CTX *ctx, EVP_PKEY *pkey)
3113{
3114 HASSL_DH *dh = NULL;
3115 if (pkey && (dh = ssl_get_tmp_dh(pkey))) {
3116 HASSL_DH_up_ref(dh);
3117 if (!SSL_CTX_set0_tmp_dh_pkey(ctx, dh))
3118 HASSL_DH_free(dh);
3119 }
3120 else
3121 SSL_CTX_set_dh_auto(ctx, 1);
3122}
3123#endif
3124
Remi Tricot-Le Breton09ebb332022-02-11 12:04:48 +01003125HASSL_DH *ssl_sock_get_dh_from_bio(BIO *bio)
3126{
3127#if (HA_OPENSSL_VERSION_NUMBER >= 0x3000000fL)
3128 HASSL_DH *dh = NULL;
3129 OSSL_DECODER_CTX *dctx = NULL;
3130 const char *format = "PEM";
3131 const char *keytype = "DH";
3132
3133 dctx = OSSL_DECODER_CTX_new_for_pkey(&dh, format, NULL, keytype,
3134 OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS,
3135 NULL, NULL);
3136
3137 if (dctx == NULL || OSSL_DECODER_CTX_get_num_decoders(dctx) == 0)
3138 goto end;
3139
3140 /* The DH parameters might not be the first section found in the PEM
3141 * file so we need to iterate over all of them until we find the right
3142 * one.
3143 */
3144 while (!BIO_eof(bio) && !dh)
3145 OSSL_DECODER_from_bio(dctx, bio);
3146
3147end:
3148 OSSL_DECODER_CTX_free(dctx);
3149 return dh;
3150#else
3151 HASSL_DH *dh = NULL;
3152
3153 dh = PEM_read_bio_DHparams(bio, NULL, NULL, NULL);
3154
3155 return dh;
3156#endif
3157}
3158
Remi Gacogne47783ef2015-05-29 15:53:22 +02003159static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003160{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003161 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02003162 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003163
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003164 if (in == NULL)
3165 goto end;
3166
Remi Gacogne47783ef2015-05-29 15:53:22 +02003167 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003168 goto end;
3169
Remi Gacogne47783ef2015-05-29 15:53:22 +02003170 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
3171
3172end:
3173 if (in)
3174 BIO_free(in);
3175
Emeric Brune1b4ed42018-08-16 15:14:12 +02003176 ERR_clear_error();
3177
Remi Gacogne47783ef2015-05-29 15:53:22 +02003178 return dh;
3179}
3180
3181int ssl_sock_load_global_dh_param_from_file(const char *filename)
3182{
3183 global_dh = ssl_sock_get_dh_from_file(filename);
3184
3185 if (global_dh) {
3186 return 0;
3187 }
3188
3189 return -1;
3190}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003191#endif
3192
William Lallemand9117de92019-10-04 00:29:42 +02003193/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02003194static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02003195 struct bind_conf *s, struct ssl_bind_conf *conf,
3196 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003197{
3198 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003199 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003200
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003201 if (*name == '!') {
3202 neg = 1;
3203 name++;
3204 }
3205 if (*name == '*') {
3206 wild = 1;
3207 name++;
3208 }
3209 /* !* filter is a nop */
3210 if (neg && wild)
3211 return order;
3212 if (*name) {
3213 int j, len;
3214 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003215 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02003216 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003217 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02003218 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003219 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003220
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003221 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02003222 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02003223 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003224 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02003225 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003226 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003227 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003228 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003229 sc->order = order++;
3230 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02003231 sc->wild = wild;
3232 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01003233 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02003234 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003235 }
3236 return order;
3237}
3238
William Lallemand6af03992019-07-23 15:00:54 +02003239/*
William Lallemand1d29c742019-10-04 00:53:29 +02003240 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
3241 * This function can't return an error.
3242 *
3243 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
3244 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003245void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02003246{
3247
3248 struct sni_ctx *sc0, *sc0b, *sc1;
3249 struct ebmb_node *node;
3250
3251 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
3252
3253 /* ignore if sc0 was already inserted in a tree */
3254 if (sc0->name.node.leaf_p)
3255 continue;
3256
3257 /* Check for duplicates. */
3258 if (sc0->wild)
3259 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
3260 else
3261 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
3262
3263 for (; node; node = ebmb_next_dup(node)) {
3264 sc1 = ebmb_entry(node, struct sni_ctx, name);
3265 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
3266 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
3267 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02003268 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02003269 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003270 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02003271 break;
William Lallemand1d29c742019-10-04 00:53:29 +02003272 }
3273 }
3274
3275 /* if duplicate, ignore the insertion */
3276 if (!sc0)
3277 continue;
3278
3279 if (sc0->wild)
3280 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
3281 else
3282 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003283 }
William Lallemand21724f02019-11-04 17:56:13 +01003284
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003285 /* replace the default_ctx if required with the instance's ctx. */
3286 if (ckch_inst->is_default) {
3287 SSL_CTX_free(bind_conf->default_ctx);
3288 SSL_CTX_up_ref(ckch_inst->ctx);
3289 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003290 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02003291 }
3292}
3293
3294/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003295 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02003296 */
William Lallemande3af8fb2019-10-08 11:36:53 +02003297struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02003298
William Lallemand2954c472020-03-06 21:54:13 +01003299/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02003300struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02003301
Emeric Brun7a883362019-10-17 13:27:40 +02003302/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003303 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003304 * DH parameter is loaded into the SSL_CTX and if there is no
3305 * DH parameter available in ckchs nor in global, the default
3306 * DH parameters are applied on the SSL_CTX.
3307 * Returns a bitfield containing the flags:
3308 * ERR_FATAL in any fatal error case
3309 * ERR_ALERT if a reason of the error is availabine in err
3310 * ERR_WARN if a warning is available into err
3311 * The value 0 means there is no error nor warning and
3312 * the operation succeed.
3313 */
William Lallemandfa892222019-07-23 16:06:08 +02003314#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003315static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3316 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003317{
Emeric Brun7a883362019-10-17 13:27:40 +02003318 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02003319 DH *dh = NULL;
3320
William Lallemanda8c73742019-07-31 18:31:34 +02003321 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003322 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02003323 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
3324 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3325 err && *err ? *err : "", path);
3326#if defined(SSL_CTX_set_dh_auto)
3327 SSL_CTX_set_dh_auto(ctx, 1);
3328 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3329 err && *err ? *err : "");
3330#else
3331 memprintf(err, "%s, DH ciphers won't be available.\n",
3332 err && *err ? *err : "");
3333#endif
3334 ret |= ERR_WARN;
3335 goto end;
3336 }
William Lallemandfa892222019-07-23 16:06:08 +02003337
3338 if (ssl_dh_ptr_index >= 0) {
3339 /* store a pointer to the DH params to avoid complaining about
3340 ssl-default-dh-param not being set for this SSL_CTX */
3341 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3342 }
3343 }
3344 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003345 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3346 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3347 err && *err ? *err : "", path);
3348#if defined(SSL_CTX_set_dh_auto)
3349 SSL_CTX_set_dh_auto(ctx, 1);
3350 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3351 err && *err ? *err : "");
3352#else
3353 memprintf(err, "%s, DH ciphers won't be available.\n",
3354 err && *err ? *err : "");
3355#endif
3356 ret |= ERR_WARN;
3357 goto end;
3358 }
William Lallemandfa892222019-07-23 16:06:08 +02003359 }
3360 else {
3361 /* Clear openssl global errors stack */
3362 ERR_clear_error();
3363
Willy Tarreau6d27a922020-11-05 19:38:05 +01003364 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003365 /* we are limited to DH parameter of 1024 bits anyway */
3366 if (local_dh_1024 == NULL)
3367 local_dh_1024 = ssl_get_dh_1024();
3368
Emeric Brun7a883362019-10-17 13:27:40 +02003369 if (local_dh_1024 == NULL) {
3370 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3371 err && *err ? *err : "", path);
3372 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003373 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003374 }
William Lallemandfa892222019-07-23 16:06:08 +02003375
Emeric Bruna9363eb2019-10-17 14:53:03 +02003376 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3377 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3378 err && *err ? *err : "", path);
3379#if defined(SSL_CTX_set_dh_auto)
3380 SSL_CTX_set_dh_auto(ctx, 1);
3381 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3382 err && *err ? *err : "");
3383#else
3384 memprintf(err, "%s, DH ciphers won't be available.\n",
3385 err && *err ? *err : "");
3386#endif
3387 ret |= ERR_WARN;
3388 goto end;
3389 }
William Lallemandfa892222019-07-23 16:06:08 +02003390 }
3391 else {
Remi Tricot-Le Breton292a88c2022-02-11 12:04:49 +01003392 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh_cbk);
William Lallemandfa892222019-07-23 16:06:08 +02003393 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003394 }
3395
William Lallemandf9568fc2019-10-16 18:27:58 +02003396end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003397 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003398 return ret;
3399}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003400#endif
William Lallemandfa892222019-07-23 16:06:08 +02003401
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003402
3403/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003404 * Returns a bitfield containing the flags:
3405 * ERR_FATAL in any fatal error case
3406 * ERR_ALERT if the reason of the error is available in err
3407 * ERR_WARN if a warning is available into err
3408 * The value 0 means there is no error nor warning and
3409 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003410 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003411static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3412 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003413{
Emeric Bruna96b5822019-10-17 13:25:14 +02003414 int errcode = 0;
3415
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003416 if (find_chain == NULL) {
3417 errcode |= ERR_FATAL;
3418 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003419 }
3420
3421 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3422 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3423 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003424 errcode |= ERR_ALERT | ERR_FATAL;
3425 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003426 }
3427
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003428 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003429 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003430 } else {
3431 /* Find Certificate Chain in global */
3432 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003433 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003434 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003435 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003436 }
William Lallemand85888572020-02-27 14:48:35 +01003437
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003438 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003439 /* always put a null chain stack in the SSL_CTX so it does not
3440 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003441 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003442 }
3443
William Lallemandf187ce62020-06-02 18:27:20 +02003444 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003445#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003446 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003447 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3448 err && *err ? *err : "", path);
3449 errcode |= ERR_ALERT | ERR_FATAL;
3450 goto end;
3451 }
William Lallemandf187ce62020-06-02 18:27:20 +02003452#else
3453 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003454 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003455 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003456 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003457 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003458 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003459 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3460 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003461 X509_free(ca);
3462 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003463 errcode |= ERR_ALERT | ERR_FATAL;
3464 goto end;
3465 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003466 }
William Lallemandf187ce62020-06-02 18:27:20 +02003467#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003468
William Lallemand9a1d8392020-08-10 17:28:23 +02003469#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003470 /* remove the Root CA from the SSL_CTX if the option is activated */
3471 if (global_ssl.skip_self_issued_ca) {
3472 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3473 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3474 err && *err ? *err : "", path);
3475 errcode |= ERR_ALERT | ERR_FATAL;
3476 goto end;
3477 }
3478 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003479#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003480
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003481end:
3482 return errcode;
3483}
3484
3485
3486/* Loads the info in ckch into ctx
3487 * Returns a bitfield containing the flags:
3488 * ERR_FATAL in any fatal error case
3489 * ERR_ALERT if the reason of the error is available in err
3490 * ERR_WARN if a warning is available into err
3491 * The value 0 means there is no error nor warning and
3492 * the operation succeed.
3493 */
3494static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3495{
3496 int errcode = 0;
3497 STACK_OF(X509) *find_chain = NULL;
3498
3499 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3500 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3501 err && *err ? *err : "", path);
3502 errcode |= ERR_ALERT | ERR_FATAL;
3503 return errcode;
3504 }
3505
3506 /* Load certificate chain */
3507 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3508 if (errcode & ERR_CODE)
3509 goto end;
3510
William Lallemandfa892222019-07-23 16:06:08 +02003511#ifndef OPENSSL_NO_DH
3512 /* store a NULL pointer to indicate we have not yet loaded
3513 a custom DH param file */
3514 if (ssl_dh_ptr_index >= 0) {
3515 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3516 }
3517
Emeric Brun7a883362019-10-17 13:27:40 +02003518 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3519 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003520 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3521 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003522 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003523 }
3524#endif
3525
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003526#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003527 if (sctl_ex_index >= 0 && ckch->sctl) {
3528 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3529 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003530 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003531 errcode |= ERR_ALERT | ERR_FATAL;
3532 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003533 }
3534 }
3535#endif
3536
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003537#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003538 /* Load OCSP Info into context */
3539 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003540 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003541 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",
3542 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003543 errcode |= ERR_ALERT | ERR_FATAL;
3544 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003545 }
3546 }
William Lallemand246c0242019-10-11 08:59:13 +02003547#endif
3548
Emeric Bruna96b5822019-10-17 13:25:14 +02003549 end:
3550 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003551}
3552
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003553
3554/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3555 * Returns a bitfield containing the flags:
3556 * ERR_FATAL in any fatal error case
3557 * ERR_ALERT if the reason of the error is available in err
3558 * ERR_WARN if a warning is available into err
3559 * The value 0 means there is no error nor warning and
3560 * the operation succeed.
3561 */
3562static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3563 SSL_CTX *ctx, char **err)
3564{
3565 int errcode = 0;
3566 STACK_OF(X509) *find_chain = NULL;
3567
3568 /* Load the private key */
3569 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3570 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3571 err && *err ? *err : "", path);
3572 errcode |= ERR_ALERT | ERR_FATAL;
3573 }
3574
3575 /* Load certificate chain */
3576 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3577 if (errcode & ERR_CODE)
3578 goto end;
3579
3580 if (SSL_CTX_check_private_key(ctx) <= 0) {
3581 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3582 err && *err ? *err : "", path);
3583 errcode |= ERR_ALERT | ERR_FATAL;
3584 }
3585
3586end:
3587 return errcode;
3588}
3589
3590
William Lallemand614ca0d2019-10-07 13:52:11 +02003591/*
3592 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003593 *
3594 * Returns a bitfield containing the flags:
3595 * ERR_FATAL in any fatal error case
3596 * ERR_ALERT if the reason of the error is available in err
3597 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003598 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003599int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003600 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003601{
William Lallemandc9402072019-05-15 15:33:54 +02003602 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003603 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003604 int order = 0;
3605 X509_NAME *xname;
3606 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003607 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003608 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003609#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3610 STACK_OF(GENERAL_NAME) *names;
3611#endif
William Lallemand36b84632019-07-18 19:28:17 +02003612 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003613 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003614 int errcode = 0;
3615
3616 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003617
William Lallemande3af8fb2019-10-08 11:36:53 +02003618 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003619 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003620
William Lallemande3af8fb2019-10-08 11:36:53 +02003621 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003622
William Lallemandc9402072019-05-15 15:33:54 +02003623 ctx = SSL_CTX_new(SSLv23_server_method());
3624 if (!ctx) {
3625 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3626 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003627 errcode |= ERR_ALERT | ERR_FATAL;
3628 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003629 }
3630
Emeric Bruna96b5822019-10-17 13:25:14 +02003631 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3632 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003633 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003634
3635 ckch_inst = ckch_inst_new();
3636 if (!ckch_inst) {
3637 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3638 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003639 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003640 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003641 }
3642
William Lallemand36b84632019-07-18 19:28:17 +02003643 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003644 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003645 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003646 switch(EVP_PKEY_base_id(pkey)) {
3647 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003648 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003649 break;
3650 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003651 kinfo.sig = TLSEXT_signature_ecdsa;
3652 break;
3653 case EVP_PKEY_DSA:
3654 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003655 break;
3656 }
3657 EVP_PKEY_free(pkey);
3658 }
3659
Emeric Brun50bcecc2013-04-22 13:05:23 +02003660 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003661 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003662 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 +02003663 if (order < 0) {
3664 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003665 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003666 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003667 }
3668 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003669 }
3670 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003671#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003672 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003673 if (names) {
3674 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3675 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3676 if (name->type == GEN_DNS) {
3677 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003678 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003679 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003680 if (order < 0) {
3681 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003682 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003683 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003684 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003685 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003686 }
3687 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003688 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003689 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003690#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003691 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003692 i = -1;
3693 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3694 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003695 ASN1_STRING *value;
3696
3697 value = X509_NAME_ENTRY_get_data(entry);
3698 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003699 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003700 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003701 if (order < 0) {
3702 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003703 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003704 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003705 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003706 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003707 }
3708 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003709 /* we must not free the SSL_CTX anymore below, since it's already in
3710 * the tree, so it will be discovered and cleaned in time.
3711 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003712
Emeric Brunfc0421f2012-09-07 17:30:07 +02003713#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003714 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003715 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3716 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003717 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003718 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003719 }
3720#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003721 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003722 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003723 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003724 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003725 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003726 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003727 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003728
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003729 /* Always keep a reference to the newly constructed SSL_CTX in the
3730 * instance. This way if the instance has no SNIs, the SSL_CTX will
3731 * still be linked. */
3732 SSL_CTX_up_ref(ctx);
3733 ckch_inst->ctx = ctx;
3734
William Lallemand9117de92019-10-04 00:29:42 +02003735 /* everything succeed, the ckch instance can be used */
3736 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003737 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003738 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003739
William Lallemand02e19a52020-04-08 16:11:26 +02003740 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3741
Emeric Brun054563d2019-10-17 13:16:58 +02003742 *ckchi = ckch_inst;
3743 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003744
3745error:
3746 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003747 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003748 if (ckch_inst->is_default)
3749 SSL_CTX_free(ctx);
3750
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003751 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003752 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003753 }
William Lallemandd9199372019-10-04 15:37:05 +02003754 SSL_CTX_free(ctx);
3755
Emeric Brun054563d2019-10-17 13:16:58 +02003756 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003757}
3758
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003759
3760/*
3761 * This function allocate a ckch_inst that will be used on the backend side
3762 * (server line)
3763 *
3764 * Returns a bitfield containing the flags:
3765 * ERR_FATAL in any fatal error case
3766 * ERR_ALERT if the reason of the error is available in err
3767 * ERR_WARN if a warning is available into err
3768 */
3769int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003770 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003771{
3772 SSL_CTX *ctx;
3773 struct cert_key_and_chain *ckch;
3774 struct ckch_inst *ckch_inst = NULL;
3775 int errcode = 0;
3776
3777 *ckchi = NULL;
3778
3779 if (!ckchs || !ckchs->ckch)
3780 return ERR_FATAL;
3781
3782 ckch = ckchs->ckch;
3783
3784 ctx = SSL_CTX_new(SSLv23_client_method());
3785 if (!ctx) {
3786 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3787 err && *err ? *err : "", path);
3788 errcode |= ERR_ALERT | ERR_FATAL;
3789 goto error;
3790 }
3791
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003792 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3793 if (errcode & ERR_CODE)
3794 goto error;
3795
3796 ckch_inst = ckch_inst_new();
3797 if (!ckch_inst) {
3798 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3799 err && *err ? *err : "", path);
3800 errcode |= ERR_ALERT | ERR_FATAL;
3801 goto error;
3802 }
3803
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003804 /* everything succeed, the ckch instance can be used */
3805 ckch_inst->bind_conf = NULL;
3806 ckch_inst->ssl_conf = NULL;
3807 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003808 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003809 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003810
3811 *ckchi = ckch_inst;
3812 return errcode;
3813
3814error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003815 SSL_CTX_free(ctx);
3816
3817 return errcode;
3818}
3819
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003820/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003821static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3822 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003823 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003824{
Emeric Brun054563d2019-10-17 13:16:58 +02003825 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003826
3827 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003828 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 +02003829
Emeric Brun054563d2019-10-17 13:16:58 +02003830 if (errcode & ERR_CODE)
3831 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003832
William Lallemand24bde432020-03-09 16:48:43 +01003833 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003834
3835 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003836 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003837 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003838}
3839
William Lallemanddb26e2b2021-01-26 12:01:46 +01003840/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3841 * fill the SSL_CTX of the server.
3842 *
3843 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003844static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003845 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003846{
3847 int errcode = 0;
3848
3849 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003850 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003851
3852 if (errcode & ERR_CODE)
3853 return errcode;
3854
William Lallemanddb26e2b2021-01-26 12:01:46 +01003855 (*ckch_inst)->server = server;
3856 /* Keep the reference to the SSL_CTX in the server. */
3857 SSL_CTX_up_ref((*ckch_inst)->ctx);
3858 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003859 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003860 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003861 return errcode;
3862}
3863
William Lallemand6be66ec2020-03-06 22:26:32 +01003864
William Lallemand4c68bba2020-03-30 18:45:10 +02003865
3866
3867/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3868 * done once. Zero is returned if the operation fails. No error is returned
3869 * if the random is said as not implemented, because we expect that openssl
3870 * will use another method once needed.
3871 */
Amaury Denoyellec593bcd2021-05-19 15:35:29 +02003872int ssl_initialize_random(void)
William Lallemand4c68bba2020-03-30 18:45:10 +02003873{
3874 unsigned char random;
3875 static int random_initialized = 0;
3876
3877 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3878 random_initialized = 1;
3879
3880 return random_initialized;
3881}
3882
William Lallemand2954c472020-03-06 21:54:13 +01003883/* Load a crt-list file, this is done in 2 parts:
3884 * - store the content of the file in a crtlist structure with crtlist_entry structures
3885 * - generate the instances by iterating on entries in the crtlist struct
3886 *
3887 * Nothing is locked there, this function is used in the configuration parser.
3888 *
3889 * Returns a set of ERR_* flags possibly with an error in <err>.
3890 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003891int 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 +01003892{
3893 struct crtlist *crtlist = NULL;
3894 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003895 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003896 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003897 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003898 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003899
William Lallemand79d31ec2020-03-25 15:10:49 +01003900 bind_conf_node = malloc(sizeof(*bind_conf_node));
3901 if (!bind_conf_node) {
3902 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3903 cfgerr |= ERR_FATAL | ERR_ALERT;
3904 goto error;
3905 }
3906 bind_conf_node->next = NULL;
3907 bind_conf_node->bind_conf = bind_conf;
3908
William Lallemand41ca9302020-04-08 13:15:18 +02003909 /* strip trailing slashes, including first one */
3910 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3911 *end = 0;
3912
William Lallemand2954c472020-03-06 21:54:13 +01003913 /* look for an existing crtlist or create one */
3914 eb = ebst_lookup(&crtlists_tree, file);
3915 if (eb) {
3916 crtlist = ebmb_entry(eb, struct crtlist, node);
3917 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003918 /* load a crt-list OR a directory */
3919 if (dir)
3920 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3921 else
3922 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3923
William Lallemand2954c472020-03-06 21:54:13 +01003924 if (!(cfgerr & ERR_CODE))
3925 ebst_insert(&crtlists_tree, &crtlist->node);
3926 }
3927
3928 if (cfgerr & ERR_CODE) {
3929 cfgerr |= ERR_FATAL | ERR_ALERT;
3930 goto error;
3931 }
3932
3933 /* generates ckch instance from the crtlist_entry */
3934 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3935 struct ckch_store *store;
3936 struct ckch_inst *ckch_inst = NULL;
3937
3938 store = entry->node.key;
3939 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3940 if (cfgerr & ERR_CODE) {
3941 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3942 goto error;
3943 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003944 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003945 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003946 }
William Lallemand2954c472020-03-06 21:54:13 +01003947
William Lallemand79d31ec2020-03-25 15:10:49 +01003948 /* add the bind_conf to the list */
3949 bind_conf_node->next = crtlist->bind_conf;
3950 crtlist->bind_conf = bind_conf_node;
3951
William Lallemand2954c472020-03-06 21:54:13 +01003952 return cfgerr;
3953error:
3954 {
William Lallemand49398312020-03-30 17:01:33 +02003955 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003956 struct ckch_inst *inst, *s_inst;
3957
William Lallemand49398312020-03-30 17:01:33 +02003958 lastentry = entry; /* which entry we tried to generate last */
3959 if (lastentry) {
3960 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3961 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3962 break;
3963
3964 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003965
William Lallemand49398312020-03-30 17:01:33 +02003966 /* this was not generated for this bind_conf, skip */
3967 if (inst->bind_conf != bind_conf)
3968 continue;
3969
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003970 /* free the sni_ctx and instance */
3971 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003972 }
William Lallemand2954c472020-03-06 21:54:13 +01003973 }
William Lallemand2954c472020-03-06 21:54:13 +01003974 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003975 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003976 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003977 return cfgerr;
3978}
3979
William Lallemand06b22a82020-03-16 14:45:55 +01003980/* Returns a set of ERR_* flags possibly with an error in <err>. */
3981int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3982{
3983 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003984 int cfgerr = 0;
3985 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003986 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003987 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003988
3989 if ((ckchs = ckchs_lookup(path))) {
3990 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003991 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3992 found++;
3993 } else if (stat(path, &buf) == 0) {
3994 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003995 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003996 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003997 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003998 cfgerr |= ERR_ALERT | ERR_FATAL;
3999 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004000 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01004001 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01004002 }
4003 } else {
4004 /* stat failed, could be a bundle */
4005 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02004006 char fp[MAXPATHLEN+1] = {0};
4007 int n = 0;
4008
4009 /* Load all possible certs and keys in separate ckch_store */
4010 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
4011 struct stat buf;
4012 int ret;
4013
4014 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
4015 if (ret > sizeof(fp))
4016 continue;
4017
4018 if ((ckchs = ckchs_lookup(fp))) {
4019 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01004020 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02004021 } else {
4022 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01004023 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02004024 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02004025 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01004026 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02004027 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
4028 }
4029 }
4030 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01004031#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
4032 if (found) {
4033 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
4034 err && *err ? *err : "", path);
4035 cfgerr |= ERR_ALERT | ERR_FATAL;
4036 }
4037#endif
William Lallemand06b22a82020-03-16 14:45:55 +01004038 }
4039 }
William Lallemand06ce84a2020-11-20 15:36:13 +01004040 if (!found) {
4041 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4042 err && *err ? *err : "", path, strerror(errno));
4043 cfgerr |= ERR_ALERT | ERR_FATAL;
4044 }
William Lallemand06b22a82020-03-16 14:45:55 +01004045
4046 return cfgerr;
4047}
4048
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004049
4050/* Create a full ssl context and ckch instance that will be used for a specific
4051 * backend server (server configuration line).
4052 * Returns a set of ERR_* flags possibly with an error in <err>.
4053 */
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004054int 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 +01004055{
4056 struct stat buf;
4057 int cfgerr = 0;
4058 struct ckch_store *ckchs;
4059 int found = 0; /* did we found a file to load ? */
4060
4061 if ((ckchs = ckchs_lookup(path))) {
4062 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01004063 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004064 found++;
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004065 } else {
4066 if (!create_if_none) {
4067 memprintf(err, "%sunable to stat SSL certificate '%s'.\n",
4068 err && *err ? *err : "", path);
4069 cfgerr |= ERR_ALERT | ERR_FATAL;
4070 goto out;
4071 }
4072
4073 if (stat(path, &buf) == 0) {
4074 /* We do not manage directories on backend side. */
4075 if (S_ISDIR(buf.st_mode) == 0) {
4076 ++found;
4077 ckchs = ckchs_load_cert_file(path, err);
4078 if (!ckchs)
4079 cfgerr |= ERR_ALERT | ERR_FATAL;
4080 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
4081 }
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004082 }
4083 }
4084 if (!found) {
4085 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4086 err && *err ? *err : "", path, strerror(errno));
4087 cfgerr |= ERR_ALERT | ERR_FATAL;
4088 }
4089
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004090out:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004091 return cfgerr;
4092}
4093
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004094/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004095static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004096ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004097{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004098 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004099 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004100 SSL_OP_ALL | /* all known workarounds for bugs */
4101 SSL_OP_NO_SSLv2 |
4102 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02004103 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02004104 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004105 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02004106 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004107 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004108 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004109 SSL_MODE_ENABLE_PARTIAL_WRITE |
4110 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004111 SSL_MODE_RELEASE_BUFFERS |
4112 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004113 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004114 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004115 int flags = MC_SSL_O_ALL;
4116 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02004117 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004118
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004119 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004120 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004121
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004122 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004123 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
4124 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4125 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004126 else
4127 flags = conf_ssl_methods->flags;
4128
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004129 min = conf_ssl_methods->min;
4130 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02004131
4132 /* default minimum is TLSV12, */
4133 if (!min) {
4134 if (!max || (max >= default_min_ver)) {
4135 min = default_min_ver;
4136 } else {
4137 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). "
4138 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
4139 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
4140 min = max;
4141 }
4142 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004143 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004144 if (min)
4145 flags |= (methodVersions[min].flag - 1);
4146 if (max)
4147 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004148 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004149 min = max = CONF_TLSV_NONE;
4150 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004151 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004152 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004153 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004154 if (min) {
4155 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004156 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
4157 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4158 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4159 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004160 hole = 0;
4161 }
4162 max = i;
4163 }
4164 else {
4165 min = max = i;
4166 }
4167 }
4168 else {
4169 if (min)
4170 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004171 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004172 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004173 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4174 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004175 cfgerr += 1;
4176 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004177 /* save real min/max in bind_conf */
4178 conf_ssl_methods->min = min;
4179 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004180
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004181#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004182 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004183 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004184 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004185 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004186 else
William Lallemandd0712f32020-06-11 17:34:00 +02004187 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
4188 /* clear every version flags in case SSL_CTX_new()
4189 * returns an SSL_CTX with disabled versions */
4190 SSL_CTX_clear_options(ctx, methodVersions[i].option);
4191
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004192 if (flags & methodVersions[i].flag)
4193 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02004194
4195 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004196#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004197 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004198 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4199 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02004200#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004201
4202 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
4203 options |= SSL_OP_NO_TICKET;
4204 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
4205 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08004206
4207#ifdef SSL_OP_NO_RENEGOTIATION
4208 options |= SSL_OP_NO_RENEGOTIATION;
4209#endif
4210
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004211 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004212
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004213#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004214 if (global_ssl.async)
4215 mode |= SSL_MODE_ASYNC;
4216#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004217 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004218 if (global_ssl.life_time)
4219 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004220
4221#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
4222#ifdef OPENSSL_IS_BORINGSSL
4223 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
4224 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05004225#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01004226 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01004227 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02004228 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
4229 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004230#else
4231 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004232#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02004233 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004234#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004235 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004236}
4237
William Lallemand4f45bb92017-10-30 20:08:51 +01004238
4239static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
4240{
4241 if (first == block) {
4242 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4243 if (first->len > 0)
4244 sh_ssl_sess_tree_delete(sh_ssl_sess);
4245 }
4246}
4247
4248/* return first block from sh_ssl_sess */
4249static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
4250{
4251 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
4252
4253}
4254
4255/* store a session into the cache
4256 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
4257 * data: asn1 encoded session
4258 * data_len: asn1 encoded session length
4259 * Returns 1 id session was stored (else 0)
4260 */
4261static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
4262{
4263 struct shared_block *first;
4264 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
4265
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004266 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01004267 if (!first) {
4268 /* Could not retrieve enough free blocks to store that session */
4269 return 0;
4270 }
4271
4272 /* STORE the key in the first elem */
4273 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4274 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
4275 first->len = sizeof(struct sh_ssl_sess_hdr);
4276
4277 /* it returns the already existing node
4278 or current node if none, never returns null */
4279 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4280 if (oldsh_ssl_sess != sh_ssl_sess) {
4281 /* NOTE: Row couldn't be in use because we lock read & write function */
4282 /* release the reserved row */
4283 shctx_row_dec_hot(ssl_shctx, first);
4284 /* replace the previous session already in the tree */
4285 sh_ssl_sess = oldsh_ssl_sess;
4286 /* ignore the previous session data, only use the header */
4287 first = sh_ssl_sess_first_block(sh_ssl_sess);
4288 shctx_row_inc_hot(ssl_shctx, first);
4289 first->len = sizeof(struct sh_ssl_sess_hdr);
4290 }
4291
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004292 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004293 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004294 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004295 }
4296
4297 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004298
4299 return 1;
4300}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004301
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004302/* SSL callback used when a new session is created while connecting to a server */
4303static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4304{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004305 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004306 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004307
Willy Tarreau07d94e42018-09-20 10:57:52 +02004308 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004309
William Lallemand3ce6eed2021-02-08 10:43:44 +01004310 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
4311 * one cache per thread, it only prevents to flush it from the CLI in
4312 * another thread */
4313
Olivier Houcharde6060c52017-11-16 17:42:52 +01004314 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4315 int len;
4316 unsigned char *ptr;
William Lallemande18d4e82021-11-17 02:59:21 +01004317 const char *sni;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004318
Olivier Houcharde6060c52017-11-16 17:42:52 +01004319 len = i2d_SSL_SESSION(sess, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01004320 sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004321 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004322 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4323 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4324 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004325 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4326 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004327 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4328 }
4329 if (s->ssl_ctx.reused_sess[tid].ptr) {
4330 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4331 &ptr);
4332 }
William Lallemande18d4e82021-11-17 02:59:21 +01004333
4334 if (s->ssl_ctx.reused_sess[tid].sni) {
4335 /* if the new sni is empty or isn' t the same as the old one */
4336 if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) {
4337 ha_free(&s->ssl_ctx.reused_sess[tid].sni);
4338 if (sni)
4339 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4340 }
4341 } else if (sni) {
4342 /* if there wasn't an old sni but there is a new one */
4343 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4344 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004345 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004346 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004347 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004348 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004349 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004350 }
4351
4352 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004353}
4354
Olivier Houcharde6060c52017-11-16 17:42:52 +01004355
William Lallemanded0b5ad2017-10-30 19:36:36 +01004356/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004357int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004358{
4359 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4360 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4361 unsigned char *p;
4362 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004363 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004364 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004365
4366 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004367 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004368 * note: SSL_SESSION_set1_id is using
4369 * a memcpy so we need to use a different pointer
4370 * than sid_data or sid_ctx_data to avoid valgrind
4371 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004372 */
4373
4374 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004375
4376 /* copy value in an other buffer */
4377 memcpy(encid, sid_data, sid_length);
4378
4379 /* pad with 0 */
4380 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4381 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4382
4383 /* force length to zero to avoid ASN1 encoding */
4384 SSL_SESSION_set1_id(sess, encid, 0);
4385
4386 /* force length to zero to avoid ASN1 encoding */
4387 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004388
4389 /* check if buffer is large enough for the ASN1 encoded session */
4390 data_len = i2d_SSL_SESSION(sess, NULL);
4391 if (data_len > SHSESS_MAX_DATA_LEN)
4392 goto err;
4393
4394 p = encsess;
4395
4396 /* process ASN1 session encoding before the lock */
4397 i2d_SSL_SESSION(sess, &p);
4398
William Lallemanded0b5ad2017-10-30 19:36:36 +01004399
William Lallemanda3c77cf2017-10-30 23:44:40 +01004400 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004401 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004402 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004403 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004404err:
4405 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004406 SSL_SESSION_set1_id(sess, encid, sid_length);
4407 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004408
4409 return 0; /* do not increment session reference count */
4410}
4411
4412/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004413SSL_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 +01004414{
William Lallemand4f45bb92017-10-30 20:08:51 +01004415 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004416 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4417 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004418 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004419 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004420
Willy Tarreau4c19e992021-06-15 16:39:22 +02004421 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004422
4423 /* allow the session to be freed automatically by openssl */
4424 *do_copy = 0;
4425
4426 /* tree key is zeros padded sessionid */
4427 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4428 memcpy(tmpkey, key, key_len);
4429 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4430 key = tmpkey;
4431 }
4432
4433 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004434 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004435
4436 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004437 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4438 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004439 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004440 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004441 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004442 return NULL;
4443 }
4444
William Lallemand4f45bb92017-10-30 20:08:51 +01004445 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4446 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004447
William Lallemand4f45bb92017-10-30 20:08:51 +01004448 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 +01004449
William Lallemanda3c77cf2017-10-30 23:44:40 +01004450 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004451
4452 /* decode ASN1 session */
4453 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004454 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004455 /* Reset session id and session id contenxt */
4456 if (sess) {
4457 SSL_SESSION_set1_id(sess, key, key_len);
4458 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4459 }
4460
4461 return sess;
4462}
4463
William Lallemand4f45bb92017-10-30 20:08:51 +01004464
William Lallemanded0b5ad2017-10-30 19:36:36 +01004465/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004466void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004467{
William Lallemand4f45bb92017-10-30 20:08:51 +01004468 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004469 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4470 unsigned int sid_length;
4471 const unsigned char *sid_data;
4472 (void)ctx;
4473
4474 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4475 /* tree key is zeros padded sessionid */
4476 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4477 memcpy(tmpkey, sid_data, sid_length);
4478 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4479 sid_data = tmpkey;
4480 }
4481
William Lallemanda3c77cf2017-10-30 23:44:40 +01004482 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004483
4484 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004485 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4486 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004487 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004488 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004489 }
4490
4491 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004492 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004493}
4494
4495/* Set session cache mode to server and disable openssl internal cache.
4496 * Set shared cache callbacks on an ssl context.
4497 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004498void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004499{
4500 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4501
4502 if (!ssl_shctx) {
4503 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4504 return;
4505 }
4506
4507 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4508 SSL_SESS_CACHE_NO_INTERNAL |
4509 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4510
4511 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004512 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4513 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4514 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004515}
William Lallemand7d42ef52020-07-06 11:41:30 +02004516
4517/*
4518 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4519 *
4520 * The format is:
4521 * * <Label> <space> <ClientRandom> <space> <Secret>
4522 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4523 */
4524
William Lallemand722180a2021-06-09 16:46:12 +02004525#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004526void SSL_CTX_keylog(const SSL *ssl, const char *line)
4527{
4528 struct ssl_keylog *keylog;
4529 char *lastarg = NULL;
4530 char *dst = NULL;
4531
4532 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4533 if (!keylog)
4534 return;
4535
4536 lastarg = strrchr(line, ' ');
4537 if (lastarg == NULL || ++lastarg == NULL)
4538 return;
4539
4540 dst = pool_alloc(pool_head_ssl_keylog_str);
4541 if (!dst)
4542 return;
4543
4544 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4545 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4546
4547 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4548 if (keylog->client_random)
4549 goto error;
4550 keylog->client_random = dst;
4551
4552 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4553 if (keylog->client_early_traffic_secret)
4554 goto error;
4555 keylog->client_early_traffic_secret = dst;
4556
4557 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4558 if(keylog->client_handshake_traffic_secret)
4559 goto error;
4560 keylog->client_handshake_traffic_secret = dst;
4561
4562 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4563 if (keylog->server_handshake_traffic_secret)
4564 goto error;
4565 keylog->server_handshake_traffic_secret = dst;
4566
4567 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4568 if (keylog->client_traffic_secret_0)
4569 goto error;
4570 keylog->client_traffic_secret_0 = dst;
4571
4572 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4573 if (keylog->server_traffic_secret_0)
4574 goto error;
4575 keylog->server_traffic_secret_0 = dst;
4576
4577 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4578 if (keylog->early_exporter_secret)
4579 goto error;
4580 keylog->early_exporter_secret = dst;
4581
4582 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4583 if (keylog->exporter_secret)
4584 goto error;
4585 keylog->exporter_secret = dst;
4586 } else {
4587 goto error;
4588 }
4589
4590 return;
4591
4592error:
4593 pool_free(pool_head_ssl_keylog_str, dst);
4594
4595 return;
4596}
4597#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004598
William Lallemand8b453912019-11-21 15:48:10 +01004599/*
4600 * This function applies the SSL configuration on a SSL_CTX
4601 * It returns an error code and fills the <err> buffer
4602 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004603static 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 +01004604{
4605 struct proxy *curproxy = bind_conf->frontend;
4606 int cfgerr = 0;
4607 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004608 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004609 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004610#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004611 const char *conf_ciphersuites;
4612#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004613 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004614
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004615 if (ssl_conf) {
4616 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4617 int i, min, max;
4618 int flags = MC_SSL_O_ALL;
4619
4620 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004621 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4622 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004623 if (min)
4624 flags |= (methodVersions[min].flag - 1);
4625 if (max)
4626 flags |= ~((methodVersions[max].flag << 1) - 1);
4627 min = max = CONF_TLSV_NONE;
4628 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4629 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4630 if (min)
4631 max = i;
4632 else
4633 min = max = i;
4634 }
4635 /* save real min/max */
4636 conf_ssl_methods->min = min;
4637 conf_ssl_methods->max = max;
4638 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004639 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4640 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004641 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004642 }
4643 }
4644
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004645 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004646 case SSL_SOCK_VERIFY_NONE:
4647 verify = SSL_VERIFY_NONE;
4648 break;
4649 case SSL_SOCK_VERIFY_OPTIONAL:
4650 verify = SSL_VERIFY_PEER;
4651 break;
4652 case SSL_SOCK_VERIFY_REQUIRED:
4653 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4654 break;
4655 }
4656 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4657 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004658 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 +01004659 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 +01004660 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 +01004661 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004662 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004663 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004664 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004665 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004666 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004667 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004668 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4669 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4670 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4671 cfgerr |= ERR_ALERT | ERR_FATAL;
4672 }
4673 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004674 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004675 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 +02004676 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004677 }
Emeric Brun850efd52014-01-29 12:24:34 +01004678 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004679 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4680 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004681 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004682 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004683#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004684 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004685 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4686
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004687 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004688 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4689 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004690 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004691 }
Emeric Brun561e5742012-10-02 15:20:55 +02004692 else {
4693 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4694 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004695 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004696#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004697 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004698 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004699#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004700 if(bind_conf->keys_ref) {
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01004701 if (!SSL_CTX_set_tlsext_ticket_key_evp_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004702 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4703 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004704 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004705 }
4706 }
4707#endif
4708
William Lallemand4f45bb92017-10-30 20:08:51 +01004709 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004710 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4711 if (conf_ciphers &&
4712 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004713 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4714 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004715 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004716 }
4717
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004718#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004719 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4720 if (conf_ciphersuites &&
4721 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004722 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4723 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004724 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004725 }
4726#endif
4727
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004728#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004729 /* If tune.ssl.default-dh-param has not been set,
4730 neither has ssl-default-dh-file and no static DH
4731 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004732 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004733 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004734 (ssl_dh_ptr_index == -1 ||
4735 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004736 /* default to dh-param 2048 */
4737 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004738 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004739
Willy Tarreauef934602016-12-22 23:12:01 +01004740 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004741 if (local_dh_1024 == NULL) {
4742 local_dh_1024 = ssl_get_dh_1024();
4743 }
Willy Tarreauef934602016-12-22 23:12:01 +01004744 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004745 if (local_dh_2048 == NULL) {
4746 local_dh_2048 = ssl_get_dh_2048();
4747 }
Willy Tarreauef934602016-12-22 23:12:01 +01004748 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004749 if (local_dh_4096 == NULL) {
4750 local_dh_4096 = ssl_get_dh_4096();
4751 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004752 }
4753 }
4754 }
4755#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004756
Emeric Brunfc0421f2012-09-07 17:30:07 +02004757 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004758#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004759 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004760#endif
William Lallemand722180a2021-06-09 16:46:12 +02004761#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004762 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4763#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004764
Bernard Spil13c53f82018-02-15 13:34:58 +01004765#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004766 ssl_conf_cur = NULL;
4767 if (ssl_conf && ssl_conf->npn_str)
4768 ssl_conf_cur = ssl_conf;
4769 else if (bind_conf->ssl_conf.npn_str)
4770 ssl_conf_cur = &bind_conf->ssl_conf;
4771 if (ssl_conf_cur)
4772 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004773#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004774#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004775 ssl_conf_cur = NULL;
4776 if (ssl_conf && ssl_conf->alpn_str)
4777 ssl_conf_cur = ssl_conf;
4778 else if (bind_conf->ssl_conf.alpn_str)
4779 ssl_conf_cur = &bind_conf->ssl_conf;
4780 if (ssl_conf_cur)
4781 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004782#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004783#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004784 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4785 if (conf_curves) {
4786 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004787 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4788 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004789 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004790 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004791 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004792 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004793#endif /* defined(SSL_CTX_set1_curves_list) */
4794
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004795 if (!conf_curves) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004796#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004797#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004798 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004799 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4800 NULL);
4801
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004802 if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) {
4803 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4804 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
4805 cfgerr |= ERR_ALERT | ERR_FATAL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02004806 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004807#endif /* defined(SSL_CTX_set1_curves_list) */
Olivier Houchardc2aae742017-09-22 18:26:28 +02004808#else
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004809#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
4810 int i;
4811 EC_KEY *ecdh;
4812
Olivier Houchardc2aae742017-09-22 18:26:28 +02004813 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4814 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4815 ECDHE_DEFAULT_CURVE);
Emeric Brun2b58d042012-09-20 17:10:03 +02004816
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004817 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004818 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004819 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 +01004820 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004821 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004822 }
4823 else {
4824 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4825 EC_KEY_free(ecdh);
4826 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004827#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
4828#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Emeric Brun2b58d042012-09-20 17:10:03 +02004829 }
Emeric Brun2b58d042012-09-20 17:10:03 +02004830
Emeric Brunfc0421f2012-09-07 17:30:07 +02004831 return cfgerr;
4832}
4833
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004834
4835/*
4836 * Prepare the SSL_CTX based on the bind line configuration.
4837 * Since the CA file loading is made depending on the verify option of the bind
4838 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4839 * If we want to create a link between the CA file entry and the corresponding
4840 * ckch instance (for CA file hot update), it needs to be done after
4841 * ssl_sock_prepare_ctx.
4842 * Returns 0 in case of success.
4843 */
4844int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4845 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4846{
4847 int errcode = 0;
4848
4849 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4850 if (!errcode && ckch_inst)
4851 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4852
4853 return errcode;
4854}
4855
Evan Broderbe554312013-06-27 00:05:25 -07004856static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4857{
4858 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4859 size_t prefixlen, suffixlen;
4860
4861 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004862 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004863 return 1;
4864
Evan Broderbe554312013-06-27 00:05:25 -07004865 /* The rest of this logic is based on RFC 6125, section 6.4.3
4866 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4867
Emeric Bruna848dae2013-10-08 11:27:28 +02004868 pattern_wildcard = NULL;
4869 pattern_left_label_end = pattern;
4870 while (*pattern_left_label_end != '.') {
4871 switch (*pattern_left_label_end) {
4872 case 0:
4873 /* End of label not found */
4874 return 0;
4875 case '*':
4876 /* If there is more than one wildcards */
4877 if (pattern_wildcard)
4878 return 0;
4879 pattern_wildcard = pattern_left_label_end;
4880 break;
4881 }
4882 pattern_left_label_end++;
4883 }
4884
4885 /* If it's not trivial and there is no wildcard, it can't
4886 * match */
4887 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004888 return 0;
4889
4890 /* Make sure all labels match except the leftmost */
4891 hostname_left_label_end = strchr(hostname, '.');
4892 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004893 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004894 return 0;
4895
4896 /* Make sure the leftmost label of the hostname is long enough
4897 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004898 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004899 return 0;
4900
4901 /* Finally compare the string on either side of the
4902 * wildcard */
4903 prefixlen = pattern_wildcard - pattern;
4904 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004905 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4906 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004907 return 0;
4908
4909 return 1;
4910}
4911
4912static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4913{
4914 SSL *ssl;
4915 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004916 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004917 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004918 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004919
4920 int depth;
4921 X509 *cert;
4922 STACK_OF(GENERAL_NAME) *alt_names;
4923 int i;
4924 X509_NAME *cert_subject;
4925 char *str;
4926
4927 if (ok == 0)
4928 return ok;
4929
4930 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004931 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004932 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004933
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004934 /* We're checking if the provided hostnames match the desired one. The
4935 * desired hostname comes from the SNI we presented if any, or if not
4936 * provided then it may have been explicitly stated using a "verifyhost"
4937 * directive. If neither is set, we don't care about the name so the
4938 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004939 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004940 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004941 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004942 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004943 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004944 if (!servername)
4945 return ok;
4946 }
Evan Broderbe554312013-06-27 00:05:25 -07004947
4948 /* We only need to verify the CN on the actual server cert,
4949 * not the indirect CAs */
4950 depth = X509_STORE_CTX_get_error_depth(ctx);
4951 if (depth != 0)
4952 return ok;
4953
4954 /* At this point, the cert is *not* OK unless we can find a
4955 * hostname match */
4956 ok = 0;
4957
4958 cert = X509_STORE_CTX_get_current_cert(ctx);
4959 /* It seems like this might happen if verify peer isn't set */
4960 if (!cert)
4961 return ok;
4962
4963 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4964 if (alt_names) {
4965 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4966 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4967 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004968#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004969 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4970#else
Evan Broderbe554312013-06-27 00:05:25 -07004971 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004972#endif
Evan Broderbe554312013-06-27 00:05:25 -07004973 ok = ssl_sock_srv_hostcheck(str, servername);
4974 OPENSSL_free(str);
4975 }
4976 }
4977 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004978 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004979 }
4980
4981 cert_subject = X509_get_subject_name(cert);
4982 i = -1;
4983 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4984 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004985 ASN1_STRING *value;
4986 value = X509_NAME_ENTRY_get_data(entry);
4987 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004988 ok = ssl_sock_srv_hostcheck(str, servername);
4989 OPENSSL_free(str);
4990 }
4991 }
4992
Willy Tarreau71d058c2017-07-26 20:09:56 +02004993 /* report the mismatch and indicate if SNI was used or not */
4994 if (!ok && !conn->err_code)
4995 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004996 return ok;
4997}
4998
Emeric Brun94324a42012-10-11 14:00:19 +02004999/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01005000int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02005001{
5002 int cfgerr = 0;
William Lallemand2c776f12021-12-28 18:47:17 +01005003 SSL_CTX *ctx;
Willy Tarreaufce03112015-01-15 21:32:40 +01005004 /* Automatic memory computations need to know we use SSL there */
5005 global.ssl_used_backend = 1;
5006
5007 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02005008 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005009 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005010 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02005011 cfgerr++;
5012 return cfgerr;
5013 }
5014 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01005015 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02005016 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02005017
William Lallemand2c776f12021-12-28 18:47:17 +01005018 if (srv->ssl_ctx.client_crt) {
5019 const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1;
5020 char *err = NULL;
5021 int err_code = 0;
5022
5023 /* If there is a crt keyword there, the SSL_CTX will be created here. */
5024 err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err);
5025 if (err_code != ERR_NONE) {
5026 if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT))
5027 ha_warning("%s", err);
5028 else
5029 ha_alert("%s", err);
5030
5031 if (err_code & (ERR_FATAL|ERR_ABORT))
5032 cfgerr++;
5033 }
5034 ha_free(&err);
5035 }
5036
5037 ctx = srv->ssl_ctx.ctx;
5038
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005039 /* The context will be uninitialized if there wasn't any "cert" option
5040 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005041 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005042 ctx = SSL_CTX_new(SSLv23_client_method());
5043 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005044 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005045 cfgerr++;
5046 return cfgerr;
5047 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005048
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01005049 srv->ssl_ctx.ctx = ctx;
5050 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005051
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005052 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 +01005053
5054 return cfgerr;
5055}
5056
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005057/* Initialize an SSL context that will be used on the backend side.
5058 * Returns an error count.
5059 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005060static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005061{
5062 struct proxy *curproxy = srv->proxy;
5063 int cfgerr = 0;
5064 long options =
5065 SSL_OP_ALL | /* all known workarounds for bugs */
5066 SSL_OP_NO_SSLv2 |
5067 SSL_OP_NO_COMPRESSION;
5068 long mode =
5069 SSL_MODE_ENABLE_PARTIAL_WRITE |
5070 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
5071 SSL_MODE_RELEASE_BUFFERS |
5072 SSL_MODE_SMALL_BUFFERS;
5073 int verify = SSL_VERIFY_NONE;
5074 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
5075 int i, min, max, hole;
5076 int flags = MC_SSL_O_ALL;
5077
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005078 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005079 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
5080 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005081 else
5082 flags = conf_ssl_methods->flags;
5083
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005084 /* Real min and max should be determinate with configuration and openssl's capabilities */
5085 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005086 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005087 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005088 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005089
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005090 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005091 min = max = CONF_TLSV_NONE;
5092 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005093 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005094 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005095 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005096 if (min) {
5097 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005098 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01005099 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
5100 proxy_type_str(curproxy), curproxy->id, srv->id,
5101 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005102 hole = 0;
5103 }
5104 max = i;
5105 }
5106 else {
5107 min = max = i;
5108 }
5109 }
5110 else {
5111 if (min)
5112 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005113 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005114 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005115 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01005116 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005117 cfgerr += 1;
5118 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005119
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005120#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005121 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08005122 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005123 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005124 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005125 else
5126 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
5127 if (flags & methodVersions[i].flag)
5128 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005129#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005130 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005131 methodVersions[min].ctx_set_version(ctx, SET_MIN);
5132 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005133#endif
5134
5135 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
5136 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005137 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005138
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005139#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005140 if (global_ssl.async)
5141 mode |= SSL_MODE_ASYNC;
5142#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005143 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005144
Emeric Brun850efd52014-01-29 12:24:34 +01005145 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
5146 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01005147 switch (srv->ssl_ctx.verify) {
5148 case SSL_SOCK_VERIFY_NONE:
5149 verify = SSL_VERIFY_NONE;
5150 break;
5151 case SSL_SOCK_VERIFY_REQUIRED:
5152 verify = SSL_VERIFY_PEER;
5153 break;
5154 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005155 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02005156 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01005157 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02005158 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02005159 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005160 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005161 ha_alert("unable to set CA file '%s'.\n",
5162 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005163 cfgerr++;
5164 }
5165 }
Emeric Brun850efd52014-01-29 12:24:34 +01005166 else {
5167 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005168 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 +01005169 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005170 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01005171 cfgerr++;
5172 }
Emeric Brunef42d922012-10-11 16:11:36 +02005173#ifdef X509_V_FLAG_CRL_CHECK
5174 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005175 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02005176
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01005177 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005178 ha_alert("unable to configure CRL file '%s'.\n",
5179 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005180 cfgerr++;
5181 }
5182 else {
5183 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
5184 }
5185 }
5186#endif
5187 }
5188
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005189 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
5190 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02005191 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005192 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005193 ha_alert("unable to set SSL cipher list to '%s'.\n",
5194 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02005195 cfgerr++;
5196 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005197
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05005198#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005199 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005200 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005201 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
5202 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005203 cfgerr++;
5204 }
5205#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01005206#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
5207 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005208 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01005209#endif
5210#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5211 if (srv->ssl_ctx.alpn_str)
5212 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
5213#endif
5214
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005215
5216 return cfgerr;
5217}
5218
5219/*
5220 * Prepare the frontend's SSL_CTX based on the server line configuration.
5221 * Since the CA file loading is made depending on the verify option of the
5222 * server line, the link between the SSL_CTX and the CA file tree entry is
5223 * made here.
5224 * If we want to create a link between the CA file entry and the corresponding
5225 * ckch instance (for CA file hot update), it needs to be done after
5226 * ssl_sock_prepare_srv_ssl_ctx.
5227 * Returns an error count.
5228 */
5229int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
5230 struct ckch_inst *ckch_inst)
5231{
5232 int cfgerr = 0;
5233
5234 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
5235 if (!cfgerr && ckch_inst)
5236 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02005237
5238 return cfgerr;
5239}
5240
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005241
Frédéric Lécailleec216522020-11-23 14:33:30 +01005242/*
5243 * Create an initial CTX used to start the SSL connections.
5244 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
5245 * Returns 0 if succeeded, or something >0 if not.
5246 */
5247#ifdef USE_QUIC
5248static int ssl_initial_ctx(struct bind_conf *bind_conf)
5249{
5250 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
5251 return ssl_quic_initial_ctx(bind_conf);
5252 else
5253 return ssl_sock_initial_ctx(bind_conf);
5254}
5255#else
5256static int ssl_initial_ctx(struct bind_conf *bind_conf)
5257{
5258 return ssl_sock_initial_ctx(bind_conf);
5259}
5260#endif
5261
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005262/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005263 * be NULL, in which case nothing is done. Returns the number of errors
5264 * encountered.
5265 */
Willy Tarreau03209342016-12-22 17:08:28 +01005266int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005267{
5268 struct ebmb_node *node;
5269 struct sni_ctx *sni;
5270 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01005271 int errcode = 0;
5272 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02005273
Willy Tarreaufce03112015-01-15 21:32:40 +01005274 /* Automatic memory computations need to know we use SSL there */
5275 global.ssl_used_frontend = 1;
5276
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005277 /* Create initial_ctx used to start the ssl connection before do switchctx */
5278 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01005279 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005280 /* It should not be necessary to call this function, but it's
5281 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01005282 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005283 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
5284 }
5285 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005286 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 +01005287 }
Emeric Brun0bed9942014-10-30 19:25:24 +01005288
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005289 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005290 while (node) {
5291 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005292 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005293 /* only initialize the CTX on its first occurrence and
5294 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005295 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
5296 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005297 node = ebmb_next(node);
5298 }
5299
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005300 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005301 while (node) {
5302 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01005303 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005304 /* only initialize the CTX on its first occurrence and
5305 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005306 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005307 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005308 node = ebmb_next(node);
5309 }
William Lallemand8b453912019-11-21 15:48:10 +01005310
5311 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005312 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005313 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005314 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005315 err++;
5316 }
5317
5318 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005319 return err;
5320}
5321
Willy Tarreau55d37912016-12-21 23:38:39 +01005322/* Prepares all the contexts for a bind_conf and allocates the shared SSL
5323 * context if needed. Returns < 0 on error, 0 on success. The warnings and
5324 * alerts are directly emitted since the rest of the stack does it below.
5325 */
5326int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
5327{
5328 struct proxy *px = bind_conf->frontend;
5329 int alloc_ctx;
5330 int err;
5331
5332 if (!bind_conf->is_ssl) {
5333 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005334 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
5335 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01005336 }
5337 return 0;
5338 }
5339 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005340 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005341 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
5342 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005343 }
5344 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005345 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
5346 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005347 return -1;
5348 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005349 }
William Lallemandc61c0b32017-12-04 18:46:39 +01005350 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005351 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02005352 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
Willy Tarreau91358592021-06-15 08:08:04 +02005353 sizeof(*sh_ssl_sess_tree), (global.nbthread > 1));
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02005354 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005355 if (alloc_ctx == SHCTX_E_INIT_LOCK)
5356 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");
5357 else
5358 ha_alert("Unable to allocate SSL session cache.\n");
5359 return -1;
5360 }
5361 /* free block callback */
5362 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
5363 /* init the root tree within the extra space */
5364 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
5365 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01005366 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005367 err = 0;
5368 /* initialize all certificate contexts */
5369 err += ssl_sock_prepare_all_ctx(bind_conf);
5370
5371 /* initialize CA variables if the certificates generation is enabled */
5372 err += ssl_sock_load_ca(bind_conf);
5373
5374 return -err;
5375}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005376
William Lallemand231610a2021-12-30 11:25:43 +01005377/* release ssl context allocated for servers. Most of the field free here
5378 * must also be allocated in srv_ssl_settings_cpy() */
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005379void ssl_sock_free_srv_ctx(struct server *srv)
5380{
Olivier Houchardc7566002018-11-20 23:33:50 +01005381#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
William Lallemand231610a2021-12-30 11:25:43 +01005382 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005383#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005384#ifdef OPENSSL_NPN_NEGOTIATED
William Lallemand231610a2021-12-30 11:25:43 +01005385 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005386#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005387 if (srv->ssl_ctx.reused_sess) {
5388 int i;
5389
William Lallemande18d4e82021-11-17 02:59:21 +01005390 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaue709e822021-02-26 21:06:32 +01005391 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
William Lallemande18d4e82021-11-17 02:59:21 +01005392 ha_free(&srv->ssl_ctx.reused_sess[i].sni);
5393 }
Willy Tarreaue709e822021-02-26 21:06:32 +01005394 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005395 }
5396
Willy Tarreaue709e822021-02-26 21:06:32 +01005397 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005398 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005399 srv->ssl_ctx.ctx = NULL;
5400 }
William Lallemand231610a2021-12-30 11:25:43 +01005401
5402 ha_free(&srv->ssl_ctx.ca_file);
5403 ha_free(&srv->ssl_ctx.crl_file);
5404 ha_free(&srv->ssl_ctx.client_crt);
5405 ha_free(&srv->ssl_ctx.verify_host);
5406#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
5407 ha_free(&srv->sni_expr);
5408#endif
5409 ha_free(&srv->ssl_ctx.ciphers);
5410#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
5411 ha_free(&srv->ssl_ctx.ciphersuites);
5412#endif
William Lallemande69563f2021-12-30 14:45:19 +01005413 /* If there is a certificate we must unlink the ckch instance */
5414 ckch_inst_free(srv->ssl_ctx.inst);
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005415}
5416
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005417/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005418 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5419 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005420void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005421{
5422 struct ebmb_node *node, *back;
5423 struct sni_ctx *sni;
5424
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005425 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005426 while (node) {
5427 sni = ebmb_entry(node, struct sni_ctx, name);
5428 back = ebmb_next(node);
5429 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005430 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005431 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005432 free(sni);
5433 node = back;
5434 }
5435
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005436 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005437 while (node) {
5438 sni = ebmb_entry(node, struct sni_ctx, name);
5439 back = ebmb_next(node);
5440 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005441 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005442 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005443 free(sni);
5444 node = back;
5445 }
William Lallemandb2408692020-06-24 09:54:29 +02005446
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005447 SSL_CTX_free(bind_conf->initial_ctx);
5448 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005449 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005450 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005451 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005452 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005453}
William Lallemandb2408692020-06-24 09:54:29 +02005454
5455
5456void ssl_sock_deinit()
5457{
5458 crtlist_deinit(); /* must be free'd before the ckchs */
5459 ckch_deinit();
5460}
5461REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005462
Willy Tarreau795cdab2016-12-22 17:30:54 +01005463/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5464void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5465{
5466 ssl_sock_free_ca(bind_conf);
5467 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005468 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005469 free(bind_conf->ca_sign_file);
5470 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005471 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005472 free(bind_conf->keys_ref->filename);
5473 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005474 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005475 free(bind_conf->keys_ref);
5476 }
5477 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005478 bind_conf->ca_sign_pass = NULL;
5479 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005480}
5481
Christopher Faulet31af49d2015-06-09 17:29:50 +02005482/* Load CA cert file and private key used to generate certificates */
5483int
Willy Tarreau03209342016-12-22 17:08:28 +01005484ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005485{
Willy Tarreau03209342016-12-22 17:08:28 +01005486 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005487 struct cert_key_and_chain *ckch = NULL;
5488 int ret = 0;
5489 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005490
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005491 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005492 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005493
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005494#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005495 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005496 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005497 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005498 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005499 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005500#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005501
Christopher Faulet31af49d2015-06-09 17:29:50 +02005502 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005503 ha_alert("Proxy '%s': cannot enable certificate generation, "
5504 "no CA certificate File configured at [%s:%d].\n",
5505 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005506 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005507 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005508
Shimi Gersner5846c492020-08-23 13:58:12 +03005509 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005510 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005511 if (!ckch) {
5512 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5513 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5514 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005515 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005516
5517 /* Try to parse file */
5518 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5519 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5520 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005521 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005522 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005523 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005524
5525 /* Fail if missing cert or pkey */
5526 if ((!ckch->cert) || (!ckch->key)) {
5527 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5528 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5529 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005530 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005531
Shimi Gersner5846c492020-08-23 13:58:12 +03005532 /* Final assignment to bind */
5533 bind_conf->ca_sign_ckch = ckch;
5534 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005535
Shimi Gersner5846c492020-08-23 13:58:12 +03005536 failed:
5537 if (ckch) {
5538 ssl_sock_free_cert_key_and_chain_contents(ckch);
5539 free(ckch);
5540 }
5541
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005542 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005543 ret++;
5544 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005545}
5546
5547/* Release CA cert and private key used to generate certificated */
5548void
5549ssl_sock_free_ca(struct bind_conf *bind_conf)
5550{
Shimi Gersner5846c492020-08-23 13:58:12 +03005551 if (bind_conf->ca_sign_ckch) {
5552 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005553 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005554 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005555}
5556
Emeric Brun46591952012-05-18 15:47:34 +02005557/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005558 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5559 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5560 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5561 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005562 * 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 +01005563 * as parameters to this function.
5564 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5565 * CO_ER_SSL_NO_MEM.
5566 */
5567int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5568 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5569{
5570 int retry = 1;
5571
5572 retry:
5573 /* Alloc a new SSL session. */
5574 *ssl = SSL_new(ssl_ctx);
5575 if (!*ssl) {
5576 if (!retry--)
5577 goto err;
5578
5579 pool_gc(NULL);
5580 goto retry;
5581 }
5582
5583 *bio = BIO_new(bio_meth);
5584 if (!*bio) {
5585 SSL_free(*ssl);
5586 *ssl = NULL;
5587 if (!retry--)
5588 goto err;
5589
5590 pool_gc(NULL);
5591 goto retry;
5592 }
5593
5594 BIO_set_data(*bio, ctx);
5595 SSL_set_bio(*ssl, *bio, *bio);
5596
5597 /* set connection pointer. */
5598 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5599 SSL_free(*ssl);
5600 *ssl = NULL;
5601 if (!retry--)
5602 goto err;
5603
5604 pool_gc(NULL);
5605 goto retry;
5606 }
5607
5608 return 0;
5609
5610 err:
5611 conn->err_code = CO_ER_SSL_NO_MEM;
5612 return -1;
5613}
5614
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005615/* This function is called when all the XPRT have been initialized. We can
5616 * now attempt to start the SSL handshake.
5617 */
5618static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5619{
5620 struct ssl_sock_ctx *ctx = xprt_ctx;
5621
5622 if (ctx->xprt->start) {
5623 int ret;
5624
5625 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5626 if (ret < 0)
5627 return ret;
5628 }
5629 tasklet_wakeup(ctx->wait_event.tasklet);
5630
5631 return 0;
5632}
5633
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005634/*
Emeric Brun46591952012-05-18 15:47:34 +02005635 * This function is called if SSL * context is not yet allocated. The function
5636 * is designed to be called before any other data-layer operation and sets the
5637 * handshake flag on the connection. It is safe to call it multiple times.
5638 * It returns 0 on success and -1 in error case.
5639 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005640static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005641{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005642 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005643 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005644 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005645 return 0;
5646
Olivier Houchard66ab4982019-02-26 18:37:15 +01005647 ctx = pool_alloc(ssl_sock_ctx_pool);
5648 if (!ctx) {
5649 conn->err_code = CO_ER_SSL_NO_MEM;
5650 return -1;
5651 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005652 ctx->wait_event.tasklet = tasklet_new();
5653 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005654 conn->err_code = CO_ER_SSL_NO_MEM;
5655 pool_free(ssl_sock_ctx_pool, ctx);
5656 return -1;
5657 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005658 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5659 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005660 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005661 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005662 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005663 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005664 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005665 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005666 ctx->xprt_st = 0;
5667 ctx->xprt_ctx = NULL;
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005668 ctx->error_code = 0;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005669
5670 /* Only work with sockets for now, this should be adapted when we'll
5671 * add QUIC support.
5672 */
5673 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005674 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005675 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5676 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005677 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005678
Willy Tarreau82531f62021-10-06 12:15:18 +02005679 if (global.maxsslconn && global.sslconns >= global.maxsslconn) {
Willy Tarreau20879a02012-12-03 16:32:10 +01005680 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005681 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005682 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005683
Emeric Brun46591952012-05-18 15:47:34 +02005684 /* If it is in client mode initiate SSL session
5685 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005686 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005687 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5688 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005689 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005690
Olivier Houchard66ab4982019-02-26 18:37:15 +01005691 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005692 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005693 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5694 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5695 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 +01005696 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005697 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005698 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005699 } else if (sess) {
5700 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005701 }
5702 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005703 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005704
Emeric Brun46591952012-05-18 15:47:34 +02005705 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005706 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005707
Willy Tarreau82531f62021-10-06 12:15:18 +02005708 _HA_ATOMIC_INC(&global.sslconns);
5709 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005710 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005711 return 0;
5712 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005713 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005714 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005715
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005716 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5717 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005718 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005719
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005720#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005721 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005722 b_alloc(&ctx->early_buf);
5723 SSL_set_max_early_data(ctx->ssl,
5724 /* Only allow early data if we managed to allocate
5725 * a buffer.
5726 */
5727 (!b_is_null(&ctx->early_buf)) ?
5728 global.tune.bufsize - global.tune.maxrewrite : 0);
5729 }
5730#endif
5731
Olivier Houchard66ab4982019-02-26 18:37:15 +01005732 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005733
Emeric Brun46591952012-05-18 15:47:34 +02005734 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005735 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005736#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005737 if (bc->ssl_conf.early_data)
5738 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005739#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005740
Willy Tarreau82531f62021-10-06 12:15:18 +02005741 _HA_ATOMIC_INC(&global.sslconns);
5742 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005743 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005744 return 0;
5745 }
5746 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005747 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005748err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005749 if (ctx && ctx->wait_event.tasklet)
5750 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005751 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005752 return -1;
5753}
5754
5755
5756/* This is the callback which is used when an SSL handshake is pending. It
5757 * updates the FD status if it wants some polling before being called again.
5758 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5759 * otherwise it returns non-zero and removes itself from the connection's
5760 * flags (the bit is provided in <flag> by the caller).
5761 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005762static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005763{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005764 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005765 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005766 struct ssl_counters *counters = NULL;
5767 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005768 struct listener *li;
5769 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005770 socklen_t lskerr;
5771 int skerr;
5772
Emeric Brun46591952012-05-18 15:47:34 +02005773
Willy Tarreau3c728722014-01-23 13:50:42 +01005774 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005775 return 0;
5776
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005777 /* get counters */
5778 switch (obj_type(conn->target)) {
5779 case OBJ_TYPE_LISTENER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005780 li = __objt_listener(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005781 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5782 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5783 &ssl_stats_module);
5784 break;
5785
5786 case OBJ_TYPE_SERVER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005787 srv = __objt_server(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005788 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5789 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5790 &ssl_stats_module);
5791 break;
5792
5793 default:
5794 break;
5795 }
5796
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005797 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005798 goto out_error;
5799
Willy Tarreau06300382021-02-02 15:42:25 +01005800 /* don't start calculating a handshake on a dead connection */
5801 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5802 goto out_error;
5803
5804 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5805 * status from the lower layers, so let's check the FD directly. Ideally
5806 * the xprt layers should provide some status indicating their knowledge
5807 * of shutdowns or error.
5808 */
5809 skerr = 0;
5810 lskerr = sizeof(skerr);
5811 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5812 skerr != 0)
5813 goto out_error;
5814
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005815#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005816 /*
5817 * Check if we have early data. If we do, we have to read them
5818 * before SSL_do_handshake() is called, And there's no way to
5819 * detect early data, except to try to read them
5820 */
5821 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005822 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005823
Olivier Houchard54907bb2019-12-19 15:02:39 +01005824 while (1) {
5825 ret = SSL_read_early_data(ctx->ssl,
5826 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5827 &read_data);
5828 if (ret == SSL_READ_EARLY_DATA_ERROR)
5829 goto check_error;
5830 if (read_data > 0) {
5831 conn->flags |= CO_FL_EARLY_DATA;
5832 b_add(&ctx->early_buf, read_data);
5833 }
5834 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5835 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5836 if (!b_data(&ctx->early_buf))
5837 b_free(&ctx->early_buf);
5838 break;
5839 }
5840 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005841 }
5842#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005843 /* If we use SSL_do_handshake to process a reneg initiated by
5844 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5845 * Usually SSL_write and SSL_read are used and process implicitly
5846 * the reneg handshake.
5847 * Here we use SSL_peek as a workaround for reneg.
5848 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005849 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005850 char c;
5851
Olivier Houchard66ab4982019-02-26 18:37:15 +01005852 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005853 if (ret <= 0) {
5854 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005855 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005856
Emeric Brun674b7432012-11-08 19:21:55 +01005857 if (ret == SSL_ERROR_WANT_WRITE) {
5858 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005859 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005860 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005861 return 0;
5862 }
5863 else if (ret == SSL_ERROR_WANT_READ) {
5864 /* handshake may have been completed but we have
5865 * no more data to read.
5866 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005867 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005868 ret = 1;
5869 goto reneg_ok;
5870 }
5871 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005872 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005873 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005874 return 0;
5875 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005876#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005877 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005878 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005879 return 0;
5880 }
5881#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005882 else if (ret == SSL_ERROR_SYSCALL) {
5883 /* if errno is null, then connection was successfully established */
5884 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5885 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005886 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005887#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5888 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005889 conn->err_code = CO_ER_SSL_HANDSHAKE;
5890#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005891 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005892#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005893 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005894 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005895 empty_handshake = state == TLS_ST_BEFORE;
5896#else
Lukas Tribus49799162019-07-08 14:29:15 +02005897 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5898 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005899#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005900 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005901 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005902 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005903 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5904 else
5905 conn->err_code = CO_ER_SSL_EMPTY;
5906 }
5907 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005908 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005909 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5910 else
5911 conn->err_code = CO_ER_SSL_ABORT;
5912 }
5913 }
5914 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005915 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005916 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005917 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005918 conn->err_code = CO_ER_SSL_HANDSHAKE;
5919 }
Lukas Tribus49799162019-07-08 14:29:15 +02005920#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005921 }
Emeric Brun674b7432012-11-08 19:21:55 +01005922 goto out_error;
5923 }
5924 else {
5925 /* Fail on all other handshake errors */
5926 /* Note: OpenSSL may leave unread bytes in the socket's
5927 * buffer, causing an RST to be emitted upon close() on
5928 * TCP sockets. We first try to drain possibly pending
5929 * data to avoid this as much as possible.
5930 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005931 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005932 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005933 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005934 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005935 goto out_error;
5936 }
5937 }
5938 /* read some data: consider handshake completed */
5939 goto reneg_ok;
5940 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005941 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005942check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005943 if (ret != 1) {
5944 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005945 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005946
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005947 if (!ctx->error_code)
5948 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02005949
Emeric Brun46591952012-05-18 15:47:34 +02005950 if (ret == SSL_ERROR_WANT_WRITE) {
5951 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005952 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005953 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005954 return 0;
5955 }
5956 else if (ret == SSL_ERROR_WANT_READ) {
5957 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005958 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005959 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5960 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005961 return 0;
5962 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005963#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005964 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005965 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005966 return 0;
5967 }
5968#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005969 else if (ret == SSL_ERROR_SYSCALL) {
5970 /* if errno is null, then connection was successfully established */
5971 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5972 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005973 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005974#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5975 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005976 conn->err_code = CO_ER_SSL_HANDSHAKE;
5977#else
5978 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005979#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005980 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005981 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005982 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005983#else
Lukas Tribus49799162019-07-08 14:29:15 +02005984 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5985 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005986#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005987 if (empty_handshake) {
5988 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005989 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005990 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5991 else
5992 conn->err_code = CO_ER_SSL_EMPTY;
5993 }
5994 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005995 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005996 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5997 else
5998 conn->err_code = CO_ER_SSL_ABORT;
5999 }
Emeric Brun29f037d2014-04-25 19:05:36 +02006000 }
6001 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006002 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02006003 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
6004 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006005 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02006006 }
Lukas Tribus49799162019-07-08 14:29:15 +02006007#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02006008 }
Willy Tarreau89230192012-09-28 20:22:13 +02006009 goto out_error;
6010 }
Emeric Brun46591952012-05-18 15:47:34 +02006011 else {
6012 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02006013 /* Note: OpenSSL may leave unread bytes in the socket's
6014 * buffer, causing an RST to be emitted upon close() on
6015 * TCP sockets. We first try to drain possibly pending
6016 * data to avoid this as much as possible.
6017 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01006018 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01006019 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006020 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02006021 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006022 goto out_error;
6023 }
6024 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006025#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01006026 else {
6027 /*
6028 * If the server refused the early data, we have to send a
6029 * 425 to the client, as we no longer have the data to sent
6030 * them again.
6031 */
6032 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006033 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006034 conn->err_code = CO_ER_SSL_EARLY_FAILED;
6035 goto out_error;
6036 }
6037 }
6038 }
6039#endif
6040
Emeric Brun46591952012-05-18 15:47:34 +02006041
Emeric Brun674b7432012-11-08 19:21:55 +01006042reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00006043
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006044#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006045 /* ASYNC engine API doesn't support moving read/write
6046 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006047 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00006048 */
6049 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006050 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006051#endif
Emeric Brun46591952012-05-18 15:47:34 +02006052 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006053 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02006054 if (objt_server(conn->target)) {
6055 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
6056 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
6057 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02006058 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02006059 else {
6060 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
6061 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
6062 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
6063 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01006064
Willy Tarreau42995282020-11-06 13:19:18 +01006065 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006066 HA_ATOMIC_INC(&counters->sess);
6067 HA_ATOMIC_INC(&counters_px->sess);
Willy Tarreau42995282020-11-06 13:19:18 +01006068 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01006069 }
Willy Tarreau42995282020-11-06 13:19:18 +01006070 else if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006071 HA_ATOMIC_INC(&counters->reused_sess);
6072 HA_ATOMIC_INC(&counters_px->reused_sess);
Emeric Brun46591952012-05-18 15:47:34 +02006073 }
6074
6075 /* The connection is now established at both layers, it's time to leave */
6076 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
6077 return 1;
6078
6079 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006080 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006081 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006082 ERR_clear_error();
6083
Emeric Brun9fa89732012-10-04 17:09:56 +02006084 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01006085 if (objt_server(conn->target)) {
6086 struct server *s = __objt_server(conn->target);
6087 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
6088 * one cache per thread, it only prevents to flush it from the CLI in
6089 * another thread */
6090
6091 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01006092 if (s->ssl_ctx.reused_sess[tid].ptr)
6093 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01006094 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02006095 }
6096
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006097 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006098 HA_ATOMIC_INC(&counters->failed_handshake);
6099 HA_ATOMIC_INC(&counters_px->failed_handshake);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006100 }
6101
Emeric Brun46591952012-05-18 15:47:34 +02006102 /* Fail on all other handshake errors */
6103 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01006104 if (!conn->err_code)
6105 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006106 return 0;
6107}
6108
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006109/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6110 * event subscriber <es> is not allowed to change from a previous call as long
6111 * as at least one event is still subscribed. The <event_type> must only be a
6112 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
6113 * unless the transport layer was already released.
6114 */
6115static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006116{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006117 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006118
Olivier Houchard0ff28652019-06-24 18:57:39 +02006119 if (!ctx)
6120 return -1;
6121
Willy Tarreau113d52b2020-01-10 09:20:26 +01006122 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006123 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006124
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006125 ctx->subs = es;
6126 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006127
6128 /* we may have to subscribe to lower layers for new events */
6129 event_type &= ~ctx->wait_event.events;
6130 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
6131 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006132 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006133}
6134
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006135/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6136 * The <es> pointer is not allowed to differ from the one passed to the
6137 * subscribe() call. It always returns zero.
6138 */
6139static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006140{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006141 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006142
Willy Tarreau113d52b2020-01-10 09:20:26 +01006143 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006144 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006145
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006146 es->events &= ~event_type;
6147 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01006148 ctx->subs = NULL;
6149
6150 /* If we subscribed, and we're not doing the handshake,
6151 * then we subscribed because the upper layer asked for it,
6152 * as the upper layer is no longer interested, we can
6153 * unsubscribe too.
6154 */
6155 event_type &= ctx->wait_event.events;
6156 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
6157 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006158
6159 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006160}
6161
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006162/* The connection has been taken over, so destroy the old tasklet and create
6163 * a new one. The original thread ID must be passed into orig_tid
6164 * It should be called with the takeover lock for the old thread held.
6165 * Returns 0 on success, and -1 on failure
6166 */
6167static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
6168{
6169 struct ssl_sock_ctx *ctx = xprt_ctx;
6170 struct tasklet *tl = tasklet_new();
6171
6172 if (!tl)
6173 return -1;
6174
6175 ctx->wait_event.tasklet->context = NULL;
6176 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
6177 ctx->wait_event.tasklet = tl;
6178 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
6179 ctx->wait_event.tasklet->context = ctx;
6180 return 0;
6181}
6182
Willy Tarreau41491682021-03-02 17:29:56 +01006183/* notify the next xprt that the connection is about to become idle and that it
6184 * may be stolen at any time after the function returns and that any tasklet in
6185 * the chain must be careful before dereferencing its context.
6186 */
6187static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
6188{
6189 struct ssl_sock_ctx *ctx = xprt_ctx;
6190
6191 if (!ctx || !ctx->wait_event.tasklet)
6192 return;
6193
6194 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6195 if (ctx->xprt)
6196 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
6197}
6198
6199/* notify the next xprt that the connection is not idle anymore and that it may
6200 * not be stolen before the next xprt_set_idle().
6201 */
6202static void ssl_set_used(struct connection *conn, void *xprt_ctx)
6203{
6204 struct ssl_sock_ctx *ctx = xprt_ctx;
6205
6206 if (!ctx || !ctx->wait_event.tasklet)
6207 return;
6208
6209 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6210 if (ctx->xprt)
6211 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
6212}
6213
Olivier Houchard2e055482019-05-27 19:50:12 +02006214/* Use the provided XPRT as an underlying XPRT, and provide the old one.
6215 * Returns 0 on success, and non-zero on failure.
6216 */
6217static 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)
6218{
6219 struct ssl_sock_ctx *ctx = xprt_ctx;
6220
6221 if (oldxprt_ops != NULL)
6222 *oldxprt_ops = ctx->xprt;
6223 if (oldxprt_ctx != NULL)
6224 *oldxprt_ctx = ctx->xprt_ctx;
6225 ctx->xprt = toadd_ops;
6226 ctx->xprt_ctx = toadd_ctx;
6227 return 0;
6228}
6229
Olivier Houchard5149b592019-05-23 17:47:36 +02006230/* Remove the specified xprt. If if it our underlying XPRT, remove it and
6231 * return 0, otherwise just call the remove_xprt method from the underlying
6232 * XPRT.
6233 */
6234static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
6235{
6236 struct ssl_sock_ctx *ctx = xprt_ctx;
6237
6238 if (ctx->xprt_ctx == toremove_ctx) {
6239 ctx->xprt_ctx = newctx;
6240 ctx->xprt = newops;
6241 return 0;
6242 }
6243 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
6244}
6245
Willy Tarreau144f84a2021-03-02 16:09:26 +01006246struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02006247{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006248 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006249 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006250 struct connection *conn;
6251 int conn_in_list;
6252 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006253
Willy Tarreau41491682021-03-02 17:29:56 +01006254 if (state & TASK_F_USR1) {
6255 /* the tasklet was idling on an idle connection, it might have
6256 * been stolen, let's be careful!
6257 */
6258 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6259 if (tl->context == NULL) {
6260 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6261 tasklet_free(tl);
6262 return NULL;
6263 }
6264 conn = ctx->conn;
6265 conn_in_list = conn->flags & CO_FL_LIST_MASK;
6266 if (conn_in_list)
6267 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006268 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01006269 } else {
6270 conn = ctx->conn;
6271 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006272 }
Willy Tarreau41491682021-03-02 17:29:56 +01006273
Olivier Houchardea8dd942019-05-20 14:02:16 +02006274 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01006275 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006276 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006277 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
6278 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01006279 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006280 }
6281 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006282 /* If we had an error, or the handshake is done and I/O is available,
6283 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01006284 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02006285 * we can't be sure conn_fd_handler() will be called again.
6286 */
6287 if ((ctx->conn->flags & CO_FL_ERROR) ||
6288 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006289 int woke = 0;
6290
6291 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006292 if (ctx->subs) {
6293 tasklet_wakeup(ctx->subs->tasklet);
6294 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006295 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006296 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006297 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006298
Olivier Houchardea8dd942019-05-20 14:02:16 +02006299 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01006300 * upper layers know. If we have no mux, create it,
6301 * and once we have a mux, call its wake method if we didn't
6302 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02006303 */
6304 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01006305 if (!ctx->conn->mux)
6306 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006307 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006308 ret = ctx->conn->mux->wake(ctx->conn);
6309 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006310 }
6311 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006312#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006313 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006314 else if (b_data(&ctx->early_buf) && ctx->subs &&
6315 ctx->subs->events & SUB_RETRY_RECV) {
6316 tasklet_wakeup(ctx->subs->tasklet);
6317 ctx->subs->events &= ~SUB_RETRY_RECV;
6318 if (!ctx->subs->events)
6319 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01006320 }
6321#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006322leave:
6323 if (!ret && conn_in_list) {
6324 struct server *srv = objt_server(conn->target);
6325
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006326 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006327 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006328 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006329 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006330 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006331 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006332 }
Willy Tarreau74163142021-03-13 11:30:19 +01006333 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006334}
6335
Emeric Brun46591952012-05-18 15:47:34 +02006336/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01006337 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02006338 * buffer wraps, in which case a second call may be performed. The connection's
6339 * flags are updated with whatever special event is detected (error, read0,
6340 * empty). The caller is responsible for taking care of those events and
6341 * avoiding the call if inappropriate. The function does not call the
6342 * connection's polling update function, so the caller is responsible for this.
6343 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006344static 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 +02006345{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006346 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02006347 ssize_t ret;
6348 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02006349
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006350 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006351 goto out_error;
6352
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006353#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006354 if (b_data(&ctx->early_buf)) {
6355 try = b_contig_space(buf);
6356 if (try > b_data(&ctx->early_buf))
6357 try = b_data(&ctx->early_buf);
6358 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
6359 b_add(buf, try);
6360 b_del(&ctx->early_buf, try);
6361 if (b_data(&ctx->early_buf) == 0)
6362 b_free(&ctx->early_buf);
6363 return try;
6364 }
6365#endif
6366
Willy Tarreau911db9b2020-01-23 16:27:54 +01006367 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006368 /* a handshake was requested */
6369 return 0;
6370
Emeric Brun46591952012-05-18 15:47:34 +02006371 /* read the largest possible block. For this, we perform only one call
6372 * to recv() unless the buffer wraps and we exactly fill the first hunk,
6373 * in which case we accept to do it once again. A new attempt is made on
6374 * EINTR too.
6375 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01006376 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006377
Willy Tarreau591d4452018-06-15 17:21:00 +02006378 try = b_contig_space(buf);
6379 if (!try)
6380 break;
6381
Willy Tarreauabf08d92014-01-14 11:31:27 +01006382 if (try > count)
6383 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02006384
Olivier Houchard66ab4982019-02-26 18:37:15 +01006385 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02006386
Emeric Brune1f38db2012-09-03 20:36:47 +02006387 if (conn->flags & CO_FL_ERROR) {
6388 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006389 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006390 }
Emeric Brun46591952012-05-18 15:47:34 +02006391 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006392 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006393 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006394 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006395 }
Emeric Brun46591952012-05-18 15:47:34 +02006396 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006397 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006398 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006399 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006400 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006401 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006402#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006403 /* Async mode can be re-enabled, because we're leaving data state.*/
6404 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006405 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006406#endif
Emeric Brun46591952012-05-18 15:47:34 +02006407 break;
6408 }
6409 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006410 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006411 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6412 SUB_RETRY_RECV,
6413 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006414 /* handshake is running, and it may need to re-enable read */
6415 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006416#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006417 /* Async mode can be re-enabled, because we're leaving data state.*/
6418 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006419 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006420#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006421 break;
6422 }
Emeric Brun46591952012-05-18 15:47:34 +02006423 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006424 } else if (ret == SSL_ERROR_ZERO_RETURN)
6425 goto read0;
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006426 else if (ret == SSL_ERROR_SSL) {
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006427 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6428 if (!ctx->error_code)
6429 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006430 conn->err_code = CO_ERR_SSL_FATAL;
6431 }
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006432 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6433 * stack before shutting down the connection for
6434 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006435 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6436 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006437 /* otherwise it's a real error */
6438 goto out_error;
6439 }
6440 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006441 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006442 return done;
6443
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006444 clear_ssl_error:
6445 /* Clear openssl global errors stack */
6446 ssl_sock_dump_errors(conn);
6447 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006448 read0:
6449 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006450 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006451
Emeric Brun46591952012-05-18 15:47:34 +02006452 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006453 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006454 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006455 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006456 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006457 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006458}
6459
6460
Willy Tarreau787db9a2018-06-14 18:31:46 +02006461/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6462 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6463 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006464 * Only one call to send() is performed, unless the buffer wraps, in which case
6465 * a second call may be performed. The connection's flags are updated with
6466 * whatever special event is detected (error, empty). The caller is responsible
6467 * for taking care of those events and avoiding the call if inappropriate. The
6468 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006469 * is responsible for this. The buffer's output is not adjusted, it's up to the
6470 * caller to take care of this. It's up to the caller to update the buffer's
6471 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006472 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006473static 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 +02006474{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006475 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006476 ssize_t ret;
6477 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006478
6479 done = 0;
6480
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006481 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006482 goto out_error;
6483
Willy Tarreau911db9b2020-01-23 16:27:54 +01006484 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006485 /* a handshake was requested */
6486 return 0;
6487
6488 /* send the largest possible block. For this we perform only one call
6489 * to send() unless the buffer wraps and we exactly fill the first hunk,
6490 * in which case we accept to do it once again.
6491 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006492 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006493#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006494 size_t written_data;
6495#endif
6496
Willy Tarreau787db9a2018-06-14 18:31:46 +02006497 try = b_contig_data(buf, done);
6498 if (try > count)
6499 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006500
Willy Tarreau7bed9452014-02-02 02:00:24 +01006501 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006502 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006503 global_ssl.max_record && try > global_ssl.max_record) {
6504 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006505 }
6506 else {
6507 /* we need to keep the information about the fact that
6508 * we're not limiting the upcoming send(), because if it
6509 * fails, we'll have to retry with at least as many data.
6510 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006511 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006512 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006513
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006514#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006515 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006516 unsigned int max_early;
6517
Olivier Houchard522eea72017-11-03 16:27:47 +01006518 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006519 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006520 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006521 if (SSL_get0_session(ctx->ssl))
6522 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006523 else
6524 max_early = 0;
6525 }
6526
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006527 if (try + ctx->sent_early_data > max_early) {
6528 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006529 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006530 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006531 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006532 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006533 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006534 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006535 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006536 if (ret == 1) {
6537 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006538 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006539 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006540 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006541 /* Initiate the handshake, now */
6542 tasklet_wakeup(ctx->wait_event.tasklet);
6543 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006544
Olivier Houchardc2aae742017-09-22 18:26:28 +02006545 }
6546
6547 } else
6548#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006549 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006550
Emeric Brune1f38db2012-09-03 20:36:47 +02006551 if (conn->flags & CO_FL_ERROR) {
6552 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006553 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006554 }
Emeric Brun46591952012-05-18 15:47:34 +02006555 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006556 /* A send succeeded, so we can consider ourself connected */
6557 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006558 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006559 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006560 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006561 }
6562 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006563 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006564
Emeric Brun46591952012-05-18 15:47:34 +02006565 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006566 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006567 /* handshake is running, and it may need to re-enable write */
6568 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006569 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006570#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006571 /* Async mode can be re-enabled, because we're leaving data state.*/
6572 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006573 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006574#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006575 break;
6576 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006577
Emeric Brun46591952012-05-18 15:47:34 +02006578 break;
6579 }
6580 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006581 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006582 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006583 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6584 SUB_RETRY_RECV,
6585 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006586#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006587 /* Async mode can be re-enabled, because we're leaving data state.*/
6588 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006589 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006590#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006591 break;
6592 }
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006593 else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) {
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006594 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6595 if (!ctx->error_code)
6596 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006597 conn->err_code = CO_ERR_SSL_FATAL;
6598 }
Emeric Brun46591952012-05-18 15:47:34 +02006599 goto out_error;
6600 }
6601 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006602 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006603 return done;
6604
6605 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006606 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006607 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006608 ERR_clear_error();
6609
Emeric Brun46591952012-05-18 15:47:34 +02006610 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006611 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006612}
6613
Willy Tarreau832e2422021-05-13 10:11:03 +02006614void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006615
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006616 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006617
Olivier Houchardea8dd942019-05-20 14:02:16 +02006618
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006619 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006620 if (ctx->wait_event.events != 0)
6621 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6622 ctx->wait_event.events,
6623 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006624 if (ctx->subs) {
6625 ctx->subs->events = 0;
6626 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006627 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006628
Olivier Houchard692c1d02019-05-23 18:41:47 +02006629 if (ctx->xprt->close)
6630 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006631#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006632 if (global_ssl.async) {
6633 OSSL_ASYNC_FD all_fd[32], afd;
6634 size_t num_all_fds = 0;
6635 int i;
6636
Olivier Houchard66ab4982019-02-26 18:37:15 +01006637 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006638 if (num_all_fds > 32) {
6639 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6640 return;
6641 }
6642
Olivier Houchard66ab4982019-02-26 18:37:15 +01006643 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006644
6645 /* If an async job is pending, we must try to
6646 to catch the end using polling before calling
6647 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006648 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006649 for (i=0 ; i < num_all_fds ; i++) {
6650 /* switch on an handler designed to
6651 * handle the SSL_free
6652 */
6653 afd = all_fd[i];
6654 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006655 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006656 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006657 /* To ensure that the fd cache won't be used
6658 * and we'll catch a real RD event.
6659 */
6660 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006661 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006662 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006663 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006664 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006665 return;
6666 }
Emeric Brun3854e012017-05-17 20:42:48 +02006667 /* Else we can remove the fds from the fdtab
6668 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006669 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006670 * because the fd is owned by the engine.
6671 * the engine is responsible to close
6672 */
6673 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006674 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006675 }
6676#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006677 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006678 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006679 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006680 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau82531f62021-10-06 12:15:18 +02006681 _HA_ATOMIC_DEC(&global.sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006682 }
Emeric Brun46591952012-05-18 15:47:34 +02006683}
6684
6685/* This function tries to perform a clean shutdown on an SSL connection, and in
6686 * any case, flags the connection as reusable if no handshake was in progress.
6687 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006688static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006689{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006690 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006691
Willy Tarreau911db9b2020-01-23 16:27:54 +01006692 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006693 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006694 if (!clean)
6695 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006696 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006697 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006698 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006699 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006700 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006701 ERR_clear_error();
6702 }
Emeric Brun46591952012-05-18 15:47:34 +02006703}
6704
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006705
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006706/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006707int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6708{
6709 struct ssl_sock_ctx *ctx;
6710 X509 *crt;
6711
Willy Tarreau1057bee2021-10-06 11:38:44 +02006712 if (!conn_is_ssl(conn))
William Lallemandd4f946c2019-12-05 10:26:40 +01006713 return 0;
6714
6715 ctx = conn->xprt_ctx;
6716
6717 crt = SSL_get_certificate(ctx->ssl);
6718 if (!crt)
6719 return 0;
6720
6721 return cert_get_pkey_algo(crt, out);
6722}
6723
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006724/* used for ppv2 cert signature (can be used for logging) */
6725const char *ssl_sock_get_cert_sig(struct connection *conn)
6726{
Christopher Faulet82004142019-09-10 10:12:03 +02006727 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006728
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006729 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6730 X509 *crt;
6731
Willy Tarreau1057bee2021-10-06 11:38:44 +02006732 if (!conn_is_ssl(conn))
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006733 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006734 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006735 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006736 if (!crt)
6737 return NULL;
6738 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6739 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6740}
6741
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006742/* used for ppv2 authority */
6743const char *ssl_sock_get_sni(struct connection *conn)
6744{
6745#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006746 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006747
Willy Tarreau1057bee2021-10-06 11:38:44 +02006748 if (!conn_is_ssl(conn))
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006749 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006750 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006751 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006752#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006753 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006754#endif
6755}
6756
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006757/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006758const char *ssl_sock_get_cipher_name(struct connection *conn)
6759{
Christopher Faulet82004142019-09-10 10:12:03 +02006760 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006761
Willy Tarreau1057bee2021-10-06 11:38:44 +02006762 if (!conn_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006763 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006764 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006765 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006766}
6767
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006768/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006769const char *ssl_sock_get_proto_version(struct connection *conn)
6770{
Christopher Faulet82004142019-09-10 10:12:03 +02006771 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006772
Willy Tarreau1057bee2021-10-06 11:38:44 +02006773 if (!conn_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006774 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006775 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006776 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006777}
6778
Olivier Houchardab28a322018-12-21 19:45:40 +01006779void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6780{
6781#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006782 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006783
Willy Tarreau1057bee2021-10-06 11:38:44 +02006784 if (!conn_is_ssl(conn))
Olivier Houcharde488ea82019-06-28 14:10:33 +02006785 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006786 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006787 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006788#endif
6789}
6790
Willy Tarreau119a4082016-12-22 21:58:38 +01006791/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6792 * to disable SNI.
6793 */
Willy Tarreau63076412015-07-10 11:33:32 +02006794void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6795{
6796#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006797 struct ssl_sock_ctx *ctx;
William Lallemande18d4e82021-11-17 02:59:21 +01006798 struct server *s;
Willy Tarreau119a4082016-12-22 21:58:38 +01006799 char *prev_name;
6800
Willy Tarreau1057bee2021-10-06 11:38:44 +02006801 if (!conn_is_ssl(conn))
Willy Tarreau63076412015-07-10 11:33:32 +02006802 return;
Willy Tarreau77bfa662021-12-23 11:12:13 +01006803
6804 BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN));
6805 BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS));
6806
Christopher Faulet82004142019-09-10 10:12:03 +02006807 ctx = conn->xprt_ctx;
William Lallemande18d4e82021-11-17 02:59:21 +01006808 s = __objt_server(conn->target);
Willy Tarreau63076412015-07-10 11:33:32 +02006809
Willy Tarreau119a4082016-12-22 21:58:38 +01006810 /* if the SNI changes, we must destroy the reusable context so that a
William Lallemande18d4e82021-11-17 02:59:21 +01006811 * new connection will present a new SNI. compare with the SNI
6812 * previously stored in the reused_sess */
6813 /* the RWLOCK is used to ensure that we are not trying to flush the
6814 * cache from the CLI */
6815
6816 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
6817 prev_name = s->ssl_ctx.reused_sess[tid].sni;
Willy Tarreau119a4082016-12-22 21:58:38 +01006818 if ((!prev_name && hostname) ||
6819 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006820 SSL_set_session(ctx->ssl, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01006821 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau119a4082016-12-22 21:58:38 +01006822
Olivier Houchard66ab4982019-02-26 18:37:15 +01006823 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006824#endif
6825}
6826
Emeric Brun0abf8362014-06-24 18:26:41 +02006827/* Extract peer certificate's common name into the chunk dest
6828 * Returns
6829 * the len of the extracted common name
6830 * or 0 if no CN found in DN
6831 * or -1 on error case (i.e. no peer certificate)
6832 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006833int ssl_sock_get_remote_common_name(struct connection *conn,
6834 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006835{
Christopher Faulet82004142019-09-10 10:12:03 +02006836 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006837 X509 *crt = NULL;
6838 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006839 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006840 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006841 .area = (char *)&find_cn,
6842 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006843 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006844 int result = -1;
David Safb76832014-05-08 23:42:08 -04006845
Willy Tarreau1057bee2021-10-06 11:38:44 +02006846 if (!conn_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006847 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006848 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006849
6850 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006851 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006852 if (!crt)
6853 goto out;
6854
6855 name = X509_get_subject_name(crt);
6856 if (!name)
6857 goto out;
David Safb76832014-05-08 23:42:08 -04006858
Emeric Brun0abf8362014-06-24 18:26:41 +02006859 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6860out:
David Safb76832014-05-08 23:42:08 -04006861 if (crt)
6862 X509_free(crt);
6863
6864 return result;
6865}
6866
Dave McCowan328fb582014-07-30 10:39:13 -04006867/* returns 1 if client passed a certificate for this session, 0 if not */
6868int ssl_sock_get_cert_used_sess(struct connection *conn)
6869{
Christopher Faulet82004142019-09-10 10:12:03 +02006870 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006871 X509 *crt = NULL;
6872
Willy Tarreau1057bee2021-10-06 11:38:44 +02006873 if (!conn_is_ssl(conn))
Dave McCowan328fb582014-07-30 10:39:13 -04006874 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006875 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006876
6877 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006878 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006879 if (!crt)
6880 return 0;
6881
6882 X509_free(crt);
6883 return 1;
6884}
6885
6886/* returns 1 if client passed a certificate for this connection, 0 if not */
6887int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006888{
Christopher Faulet82004142019-09-10 10:12:03 +02006889 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006890
Willy Tarreau1057bee2021-10-06 11:38:44 +02006891 if (!conn_is_ssl(conn))
David Safb76832014-05-08 23:42:08 -04006892 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006893 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006894 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006895}
6896
6897/* returns result from SSL verify */
6898unsigned int ssl_sock_get_verify_result(struct connection *conn)
6899{
Christopher Faulet82004142019-09-10 10:12:03 +02006900 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006901
Willy Tarreau1057bee2021-10-06 11:38:44 +02006902 if (!conn_is_ssl(conn))
David Safb76832014-05-08 23:42:08 -04006903 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006904 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006905 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006906}
6907
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006908/* Returns the application layer protocol name in <str> and <len> when known.
6909 * Zero is returned if the protocol name was not found, otherwise non-zero is
6910 * returned. The string is allocated in the SSL context and doesn't have to be
6911 * freed by the caller. NPN is also checked if available since older versions
6912 * of openssl (1.0.1) which are more common in field only support this one.
6913 */
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01006914int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006915{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006916#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6917 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006918 struct ssl_sock_ctx *ctx = xprt_ctx;
6919 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006920 return 0;
6921
6922 *str = NULL;
6923
6924#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006925 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006926 if (*str)
6927 return 1;
6928#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006929#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006930 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006931 if (*str)
6932 return 1;
6933#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006934#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006935 return 0;
6936}
6937
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006938/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006939int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006940{
6941 X509 *ca;
6942 X509_NAME *name = NULL;
6943 ASN1_OCTET_STRING *skid = NULL;
6944 STACK_OF(X509) *chain = NULL;
6945 struct issuer_chain *issuer;
6946 struct eb64_node *node;
6947 char *path;
6948 u64 key;
6949 int ret = 0;
6950
6951 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6952 if (chain == NULL) {
6953 chain = sk_X509_new_null();
6954 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6955 name = X509_get_subject_name(ca);
6956 }
6957 if (!sk_X509_push(chain, ca)) {
6958 X509_free(ca);
6959 goto end;
6960 }
6961 }
6962 if (!chain) {
6963 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6964 goto end;
6965 }
6966 if (!skid) {
6967 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6968 goto end;
6969 }
6970 if (!name) {
6971 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6972 goto end;
6973 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006974 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006975 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006976 issuer = container_of(node, typeof(*issuer), node);
6977 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6978 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6979 goto end;
6980 }
6981 }
6982 issuer = calloc(1, sizeof *issuer);
6983 path = strdup(fp);
6984 if (!issuer || !path) {
6985 free(issuer);
6986 free(path);
6987 goto end;
6988 }
6989 issuer->node.key = key;
6990 issuer->path = path;
6991 issuer->chain = chain;
6992 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006993 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006994 ret = 1;
6995 end:
6996 if (skid)
6997 ASN1_OCTET_STRING_free(skid);
6998 if (chain)
6999 sk_X509_pop_free(chain, X509_free);
7000 return ret;
7001}
7002
William Lallemandda8584c2020-05-14 10:14:37 +02007003 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007004{
7005 AUTHORITY_KEYID *akid;
7006 struct issuer_chain *issuer = NULL;
7007
7008 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01007009 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007010 struct eb64_node *node;
7011 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01007012 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01007013 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
7014 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
7015 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
7016 issuer = ti;
7017 break;
7018 }
7019 }
7020 AUTHORITY_KEYID_free(akid);
7021 }
7022 return issuer;
7023}
7024
William Lallemanddad31052020-05-14 17:47:32 +02007025void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007026{
7027 struct eb64_node *node, *back;
7028 struct issuer_chain *issuer;
7029
William Lallemande0f3fd52020-02-25 14:53:06 +01007030 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007031 while (node) {
7032 issuer = container_of(node, typeof(*issuer), node);
7033 back = eb64_next(node);
7034 eb64_delete(node);
7035 free(issuer->path);
7036 sk_X509_pop_free(issuer->chain, X509_free);
7037 free(issuer);
7038 node = back;
7039 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007040}
7041
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007042#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007043static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01007044 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007045
Emeric Brun3854e012017-05-17 20:42:48 +02007046 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01007047 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007048 err_code = ERR_ABORT;
7049 }
7050 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01007051}
Willy Tarreau9ceda382016-12-21 23:13:03 +01007052#endif
7053
Willy Tarreaude5675a2021-01-20 14:41:29 +01007054/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007055 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01007056 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01007057static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01007058{
7059 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007060 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007061
7062 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007063 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007064
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007065 if (sctx->conn != conn) {
7066 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
7067 ret = 1;
7068 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01007069 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
7070
7071 if (sctx->xprt) {
7072 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
7073 if (sctx->xprt_ctx)
7074 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
7075 }
7076
7077 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007078
7079 /* as soon as a shutdown is reported the lower layer unregisters its
7080 * subscriber, so the situations below are transient and rare enough to
7081 * be reported as suspicious. In any case they shouldn't last.
7082 */
7083 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
7084 ret = 1;
7085 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
7086 ret = 1;
7087
Willy Tarreaude5675a2021-01-20 14:41:29 +01007088 chunk_appendf(&trash, " .subs=%p", sctx->subs);
7089 if (sctx->subs) {
7090 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007091 if (sctx->subs->tasklet->calls >= 1000000)
7092 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007093 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
7094 sctx->subs->tasklet->calls,
7095 sctx->subs->tasklet->context);
7096 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
7097 chunk_appendf(&trash, ")");
7098 }
7099 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
7100 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007101 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007102}
7103
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007104#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02007105/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007106 * each reference. The variable <ref> must point to the current node's list
7107 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02007108 */
William Lallemand32af2032016-10-29 18:09:35 +02007109static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007110struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02007111{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007112 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007113 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02007114
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007115 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007116 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007117 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02007118
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007119 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02007120}
7121
7122static inline
7123struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
7124{
7125 int id;
7126 char *error;
7127
7128 /* If the reference starts by a '#', this is numeric id. */
7129 if (reference[0] == '#') {
7130 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
7131 id = strtol(reference + 1, &error, 10);
7132 if (*error != '\0')
7133 return NULL;
7134
7135 /* Perform the unique id lookup. */
7136 return tlskeys_ref_lookupid(id);
7137 }
7138
7139 /* Perform the string lookup. */
7140 return tlskeys_ref_lookup(reference);
7141}
7142#endif
7143
7144
7145#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7146
7147static int cli_io_handler_tlskeys_files(struct appctx *appctx);
7148
7149static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
7150 return cli_io_handler_tlskeys_files(appctx);
7151}
7152
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007153/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
7154 * (next index to be dumped), and cli.p0 (next key reference).
7155 */
William Lallemand32af2032016-10-29 18:09:35 +02007156static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
7157
7158 struct stream_interface *si = appctx->owner;
7159
7160 switch (appctx->st2) {
7161 case STAT_ST_INIT:
7162 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08007163 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02007164 * later and restart at the state "STAT_ST_INIT".
7165 */
7166 chunk_reset(&trash);
7167
7168 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
7169 chunk_appendf(&trash, "# id secret\n");
7170 else
7171 chunk_appendf(&trash, "# id (file)\n");
7172
Willy Tarreau06d80a92017-10-19 14:32:15 +02007173 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01007174 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007175 return 0;
7176 }
7177
William Lallemand32af2032016-10-29 18:09:35 +02007178 /* Now, we start the browsing of the references lists.
7179 * Note that the following call to LIST_ELEM return bad pointer. The only
7180 * available field of this pointer is <list>. It is used with the function
7181 * tlskeys_list_get_next() for retruning the first available entry
7182 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007183 if (appctx->ctx.cli.p0 == NULL)
7184 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007185
7186 appctx->st2 = STAT_ST_LIST;
7187 /* fall through */
7188
7189 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007190 while (appctx->ctx.cli.p0) {
7191 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02007192
7193 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007194 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02007195 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007196
7197 if (appctx->ctx.cli.i1 == 0)
7198 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
7199
William Lallemand32af2032016-10-29 18:09:35 +02007200 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01007201 int head;
7202
7203 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
7204 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007205 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02007206 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02007207
7208 chunk_reset(t2);
7209 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01007210 if (ref->key_size_bits == 128) {
7211 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
7212 sizeof(struct tls_sess_key_128),
7213 t2->area, t2->size);
7214 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
7215 t2->area);
7216 }
7217 else if (ref->key_size_bits == 256) {
7218 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
7219 sizeof(struct tls_sess_key_256),
7220 t2->area, t2->size);
7221 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
7222 t2->area);
7223 }
7224 else {
7225 /* This case should never happen */
7226 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
7227 }
William Lallemand32af2032016-10-29 18:09:35 +02007228
Willy Tarreau06d80a92017-10-19 14:32:15 +02007229 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007230 /* let's try again later from this stream. We add ourselves into
7231 * this stream's users so that it can remove us upon termination.
7232 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01007233 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01007234 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007235 return 0;
7236 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007237 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02007238 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01007239 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007240 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007241 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02007242 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007243 /* let's try again later from this stream. We add ourselves into
7244 * this stream's users so that it can remove us upon termination.
7245 */
Willy Tarreaudb398432018-11-15 11:08:52 +01007246 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007247 return 0;
7248 }
7249
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007250 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02007251 break;
7252
7253 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007254 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007255 }
7256
7257 appctx->st2 = STAT_ST_FIN;
7258 /* fall through */
7259
7260 default:
7261 appctx->st2 = STAT_ST_FIN;
7262 return 1;
7263 }
7264 return 0;
7265}
7266
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007267/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007268static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007269{
William Lallemand32af2032016-10-29 18:09:35 +02007270 /* no parameter, shows only file list */
7271 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007272 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007273 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007274 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007275 }
7276
7277 if (args[2][0] == '*') {
7278 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007279 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007280 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007281 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007282 if (!appctx->ctx.cli.p0)
7283 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007284 }
William Lallemand32af2032016-10-29 18:09:35 +02007285 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007286 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007287}
7288
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007289static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007290{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007291 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007292 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007293
William Lallemand32af2032016-10-29 18:09:35 +02007294 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007295 if (!*args[3] || !*args[4])
7296 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 +02007297
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007298 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007299 if (!ref)
7300 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007301
Willy Tarreau1c913e42018-08-22 05:26:57 +02007302 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007303 if (ret < 0)
7304 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01007305
Willy Tarreau1c913e42018-08-22 05:26:57 +02007306 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02007307 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
7308 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007309
Willy Tarreau9d008692019-08-09 11:21:01 +02007310 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007311}
William Lallemandd4f946c2019-12-05 10:26:40 +01007312#endif
William Lallemand419e6342020-04-08 12:05:39 +02007313
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007314static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007315{
7316#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
7317 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007318 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007319
7320 if (!payload)
7321 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02007322
7323 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007324 if (!*payload)
7325 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007326
7327 /* remove \r and \n from the payload */
7328 for (i = 0, j = 0; payload[i]; i++) {
7329 if (payload[i] == '\r' || payload[i] == '\n')
7330 continue;
7331 payload[j++] = payload[i];
7332 }
7333 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007334
Willy Tarreau1c913e42018-08-22 05:26:57 +02007335 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007336 if (ret < 0)
7337 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007338
Willy Tarreau1c913e42018-08-22 05:26:57 +02007339 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02007340 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02007341 if (err)
7342 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
7343 else
7344 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007345 }
Willy Tarreau9d008692019-08-09 11:21:01 +02007346
7347 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007348#else
Willy Tarreau9d008692019-08-09 11:21:01 +02007349 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 +02007350#endif
7351
Elliot Otchet71f82972020-01-15 08:12:14 -05007352}
7353
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007354
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007355#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 +02007356static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
7357#endif
7358
7359/* parsing function for 'show ssl ocsp-response [id]' */
7360static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
7361{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007362#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 +02007363 if (*args[3]) {
7364 struct certificate_ocsp *ocsp = NULL;
7365 char *key = NULL;
7366 int key_length = 0;
7367
7368 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
7369 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
7370 }
7371
7372 if (parse_binary(args[3], &key, &key_length, NULL)) {
7373
7374 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
7375 memcpy(full_key, key, key_length);
7376
7377 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
7378 }
7379 if (key)
7380 ha_free(&key);
7381
7382 if (!ocsp) {
7383 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
7384 }
7385
7386 appctx->ctx.cli.p0 = ocsp;
7387 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
7388 }
7389
7390 return 0;
7391
7392#else
7393 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7394#endif
7395}
7396
7397
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007398#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 +02007399/*
7400 * This function dumps the details of an OCSP_CERTID. It is based on
7401 * ocsp_certid_print in OpenSSL.
7402 */
7403static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
7404{
7405 ASN1_OCTET_STRING *piNameHash = NULL;
7406 ASN1_OCTET_STRING *piKeyHash = NULL;
7407 ASN1_INTEGER *pSerial = NULL;
7408
7409 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7410
7411 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7412 indent += 2;
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007413 BIO_printf(bp, "%*sIssuer Name Hash: ", indent, "");
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007414 i2a_ASN1_STRING(bp, piNameHash, 0);
7415 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7416 i2a_ASN1_STRING(bp, piKeyHash, 0);
7417 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7418 i2a_ASN1_INTEGER(bp, pSerial);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007419 }
7420 return 1;
7421}
7422#endif
7423
7424/*
7425 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7426 * is managed in cli_io_handler_show_ocspresponse_detail.
7427 */
7428static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7429{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007430#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 +02007431 struct buffer *trash = alloc_trash_chunk();
7432 struct buffer *tmp = NULL;
7433 struct ebmb_node *node;
7434 struct stream_interface *si = appctx->owner;
7435 struct certificate_ocsp *ocsp = NULL;
7436 BIO *bio = NULL;
7437 int write = -1;
7438
7439 if (trash == NULL)
7440 return 1;
7441
7442 tmp = alloc_trash_chunk();
7443 if (!tmp)
7444 goto end;
7445
7446 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7447 goto end;
7448
7449 if (!appctx->ctx.cli.p0) {
7450 chunk_appendf(trash, "# Certificate IDs\n");
7451 node = ebmb_first(&cert_ocsp_tree);
7452 } else {
7453 node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key;
7454 }
7455
7456 while (node) {
7457 OCSP_CERTID *certid = NULL;
7458 const unsigned char *p = NULL;
7459 int i;
7460
7461 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7462
7463 /* Dump the key in hexadecimal */
7464 chunk_appendf(trash, "Certificate ID key : ");
7465 for (i = 0; i < ocsp->key_length; ++i) {
7466 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7467 }
7468 chunk_appendf(trash, "\n");
7469
7470 p = ocsp->key_data;
7471
7472 /* Decode the certificate ID (serialized into the key). */
7473 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
7474
7475 /* Dump the CERTID info */
7476 ocsp_certid_print(bio, certid, 1);
7477 write = BIO_read(bio, tmp->area, tmp->size-1);
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007478 /* strip trailing LFs */
7479 while (write > 0 && tmp->area[write-1] == '\n')
7480 write--;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007481 tmp->area[write] = '\0';
7482
7483 chunk_appendf(trash, "%s\n", tmp->area);
7484
7485 node = ebmb_next(node);
7486 if (ci_putchk(si_ic(si), trash) == -1) {
7487 si_rx_room_blk(si);
7488 goto yield;
7489 }
7490 }
7491
7492end:
7493 appctx->ctx.cli.p0 = NULL;
7494 if (trash)
7495 free_trash_chunk(trash);
7496 if (tmp)
7497 free_trash_chunk(tmp);
7498 if (bio)
7499 BIO_free(bio);
7500 return 1;
7501
7502yield:
7503
7504 if (trash)
7505 free_trash_chunk(trash);
7506 if (tmp)
7507 free_trash_chunk(tmp);
7508 if (bio)
7509 BIO_free(bio);
7510 appctx->ctx.cli.p0 = ocsp;
7511 return 0;
7512#else
7513 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7514#endif
7515}
7516
7517
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007518#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 +02007519/*
7520 * Dump the details about an OCSP response in DER format stored in
7521 * <ocsp_response> into buffer <out>.
7522 * Returns 0 in case of success.
7523 */
7524int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7525{
7526 BIO *bio = NULL;
7527 int write = -1;
7528 OCSP_RESPONSE *resp;
7529 const unsigned char *p;
7530
7531 if (!ocsp_response)
7532 return -1;
7533
7534 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7535 return -1;
7536
7537 p = (const unsigned char*)ocsp_response->area;
7538
7539 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7540 if (!resp) {
7541 chunk_appendf(out, "Unable to parse OCSP response");
7542 return -1;
7543 }
7544
7545 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007546 struct buffer *trash = get_trash_chunk();
7547 struct ist ist_block = IST_NULL;
7548 struct ist ist_double_lf = IST_NULL;
7549 static struct ist double_lf = IST("\n\n");
7550
7551 write = BIO_read(bio, trash->area, trash->size - 1);
7552 trash->data = write;
7553
7554 /* Look for empty lines in the 'trash' buffer and add a space to
7555 * the beginning to avoid having empty lines in the output
7556 * (without changing the appearance of the information
7557 * displayed).
7558 */
7559 ist_block = ist2(b_orig(trash), b_data(trash));
7560
7561 ist_double_lf = istist(ist_block, double_lf);
7562
7563 while (istlen(ist_double_lf)) {
7564 /* istptr(ist_double_lf) points to the first \n of a
7565 * \n\n pattern.
7566 */
7567 uint empty_line_offset = istptr(ist_double_lf) + 1 - istptr(ist_block);
7568
7569 /* Write up to the first '\n' of the "\n\n" pattern into
7570 * the output buffer.
7571 */
7572 b_putblk(out, istptr(ist_block), empty_line_offset);
7573 /* Add an extra space. */
7574 b_putchr(out, ' ');
7575
7576 /* Keep looking for empty lines in the rest of the data. */
7577 ist_block = istadv(ist_block, empty_line_offset);
7578
7579 ist_double_lf = istist(ist_block, double_lf);
7580 }
7581
7582 b_istput(out, ist_block);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007583 }
7584
7585 if (bio)
7586 BIO_free(bio);
7587
7588 return 0;
7589}
7590
7591/*
7592 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7593 * Returns 0 in case of success.
7594 */
7595int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7596{
7597 struct certificate_ocsp *ocsp;
7598
7599 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7600 if (!ocsp)
7601 return -1;
7602
7603 return ssl_ocsp_response_print(&ocsp->response, out);
7604}
7605
7606
7607/* IO handler of details "show ssl ocsp-response <id>". */
7608static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7609{
7610 struct buffer *trash = alloc_trash_chunk();
7611 struct certificate_ocsp *ocsp = NULL;
7612 struct stream_interface *si = appctx->owner;
7613
7614 ocsp = appctx->ctx.cli.p0;
7615
7616 if (trash == NULL)
7617 return 1;
7618
7619 ssl_ocsp_response_print(&ocsp->response, trash);
7620
7621 if (ci_putchk(si_ic(si), trash) == -1) {
7622 si_rx_room_blk(si);
7623 goto yield;
7624 }
7625 appctx->ctx.cli.p0 = NULL;
7626 if (trash)
7627 free_trash_chunk(trash);
7628 return 1;
7629
7630yield:
7631 if (trash)
7632 free_trash_chunk(trash);
7633
7634 return 0;
7635}
7636#endif
7637
William Lallemand32af2032016-10-29 18:09:35 +02007638/* register cli keywords */
7639static struct cli_kw_list cli_kws = {{ },{
7640#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007641 { { "show", "tls-keys", NULL }, "show tls-keys [id|*] : show tls keys references or dump tls ticket keys when id specified", cli_parse_show_tlskeys, NULL },
7642 { { "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 +02007643#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007644 { { "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 +02007645
7646 { { "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 },
William Lallemand32af2032016-10-29 18:09:35 +02007647 { { NULL }, NULL, NULL, NULL }
7648}};
7649
Willy Tarreau0108d902018-11-25 19:14:37 +01007650INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007651
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007652/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007653struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007654 .snd_buf = ssl_sock_from_buf,
7655 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007656 .subscribe = ssl_subscribe,
7657 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007658 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007659 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007660 .rcv_pipe = NULL,
7661 .snd_pipe = NULL,
7662 .shutr = NULL,
7663 .shutw = ssl_sock_shutw,
7664 .close = ssl_sock_close,
7665 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007666 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007667 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007668 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007669 .prepare_srv = ssl_sock_prepare_srv_ctx,
7670 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007671 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007672 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007673 .set_idle = ssl_set_idle,
7674 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007675 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007676 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007677};
7678
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007679enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7680 struct session *sess, struct stream *s, int flags)
7681{
7682 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007683 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007684
7685 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007686 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007687
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007688 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007689 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007690 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007691 s->req.flags |= CF_READ_NULL;
7692 return ACT_RET_YIELD;
7693 }
7694 }
7695 return (ACT_RET_CONT);
7696}
7697
7698static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7699{
7700 rule->action_ptr = ssl_action_wait_for_hs;
7701
7702 return ACT_RET_PRS_OK;
7703}
7704
7705static struct action_kw_list http_req_actions = {ILH, {
7706 { "wait-for-handshake", ssl_parse_wait_for_hs },
7707 { /* END */ }
7708}};
7709
Willy Tarreau0108d902018-11-25 19:14:37 +01007710INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7711
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007712#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007713
7714static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7715{
7716 if (ptr) {
7717 chunk_destroy(ptr);
7718 free(ptr);
7719 }
7720}
7721
7722#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007723
7724#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7725static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7726{
7727 struct ocsp_cbk_arg *ocsp_arg;
7728
7729 if (ptr) {
7730 ocsp_arg = ptr;
7731
7732 if (ocsp_arg->is_single) {
7733 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7734 ocsp_arg->s_ocsp = NULL;
7735 } else {
7736 int i;
7737
7738 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7739 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7740 ocsp_arg->m_ocsp[i] = NULL;
7741 }
7742 }
7743 free(ocsp_arg);
7744 }
7745}
7746#endif
7747
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007748static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7749{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007750 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007751}
William Lallemand7d42ef52020-07-06 11:41:30 +02007752
William Lallemand722180a2021-06-09 16:46:12 +02007753#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007754static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7755{
7756 struct ssl_keylog *keylog;
7757
7758 if (!ptr)
7759 return;
7760
7761 keylog = ptr;
7762
7763 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7764 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7765 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7766 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7767 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7768 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7769 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7770 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7771
7772 pool_free(pool_head_ssl_keylog, ptr);
7773}
7774#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007775
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007776static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7777{
7778 if (!ptr)
7779 return;
7780
7781 X509_free((X509*)ptr);
7782}
7783
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01007784static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7785{
7786 pool_free(ssl_sock_client_sni_pool, ptr);
7787}
7788
Emeric Brun46591952012-05-18 15:47:34 +02007789__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007790static void __ssl_sock_init(void)
7791{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007792#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007793 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007794 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007795#endif
Emeric Brun46591952012-05-18 15:47:34 +02007796
Willy Tarreauef934602016-12-22 23:12:01 +01007797 if (global_ssl.listen_default_ciphers)
7798 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7799 if (global_ssl.connect_default_ciphers)
7800 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007801#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007802 if (global_ssl.listen_default_ciphersuites)
7803 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7804 if (global_ssl.connect_default_ciphersuites)
7805 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7806#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007807
Willy Tarreau13e14102016-12-22 20:25:26 +01007808 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007809#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007810 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007811#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007812#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007813 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007814 n = sk_SSL_COMP_num(cm);
7815 while (n--) {
7816 (void) sk_SSL_COMP_pop(cm);
7817 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007818#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007819
Willy Tarreau5db847a2019-05-09 14:13:35 +02007820#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007821 ssl_locking_init();
7822#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007823#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007824 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7825#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007826
7827#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7828 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7829#endif
7830
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007831 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007832 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 +01007833#ifdef USE_QUIC
7834 ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7835#endif /* USE_QUIC */
William Lallemand722180a2021-06-09 16:46:12 +02007836#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007837 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7838#endif
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007839 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 +01007840 ssl_client_sni_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_sni_free_func);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007841#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007842 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007843 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007844#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007845#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7846 hap_register_post_check(tlskeys_finalize_config);
7847#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007848
7849 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7850 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7851
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007852 hap_register_post_deinit(ssl_free_global_issuers);
7853
Willy Tarreau80713382018-11-26 10:19:54 +01007854#ifndef OPENSSL_NO_DH
7855 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7856 hap_register_post_deinit(ssl_free_dh);
7857#endif
7858#ifndef OPENSSL_NO_ENGINE
7859 hap_register_post_deinit(ssl_free_engines);
7860#endif
Remi Tricot-Le Breton78a36e32022-02-11 12:04:45 +01007861#if HA_OPENSSL_VERSION_NUMBER < 0x3000000fL
Willy Tarreau80713382018-11-26 10:19:54 +01007862 /* Load SSL string for the verbose & debug mode. */
7863 ERR_load_SSL_strings();
Remi Tricot-Le Breton78a36e32022-02-11 12:04:45 +01007864#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007865 ha_meth = BIO_meth_new(0x666, "ha methods");
7866 BIO_meth_set_write(ha_meth, ha_ssl_write);
7867 BIO_meth_set_read(ha_meth, ha_ssl_read);
7868 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7869 BIO_meth_set_create(ha_meth, ha_ssl_new);
7870 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7871 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7872 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007873
7874 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007875
Dragan Dosen9ac98092020-05-11 15:51:45 +02007876 /* Try to register dedicated SSL/TLS protocol message callbacks for
7877 * heartbleed attack (CVE-2014-0160) and clienthello.
7878 */
7879 hap_register_post_check(ssl_sock_register_msg_callbacks);
7880
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007881 /* Try to free all callbacks that were registered by using
7882 * ssl_sock_register_msg_callback().
7883 */
7884 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007885}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007886
Willy Tarreau80713382018-11-26 10:19:54 +01007887/* Compute and register the version string */
7888static void ssl_register_build_options()
7889{
7890 char *ptr = NULL;
7891 int i;
7892
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007893 memprintf(&ptr, "Built with OpenSSL version : "
7894#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007895 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007896#else /* OPENSSL_IS_BORINGSSL */
7897 OPENSSL_VERSION_TEXT
7898 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007899 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007900 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007901#endif
7902 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007903#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007904 "no (library version too old)"
7905#elif defined(OPENSSL_NO_TLSEXT)
7906 "no (disabled via OPENSSL_NO_TLSEXT)"
7907#else
7908 "yes"
7909#endif
7910 "", ptr);
7911
7912 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7913#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7914 "yes"
7915#else
7916#ifdef OPENSSL_NO_TLSEXT
7917 "no (because of OPENSSL_NO_TLSEXT)"
7918#else
7919 "no (version might be too old, 0.9.8f min needed)"
7920#endif
7921#endif
7922 "", ptr);
7923
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007924 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7925 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7926 if (methodVersions[i].option)
7927 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007928
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007929 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007930}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007931
Willy Tarreau80713382018-11-26 10:19:54 +01007932INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007933
Emeric Brun46591952012-05-18 15:47:34 +02007934
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007935#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007936void ssl_free_engines(void) {
7937 struct ssl_engine_list *wl, *wlb;
7938 /* free up engine list */
7939 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7940 ENGINE_finish(wl->e);
7941 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007942 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007943 free(wl);
7944 }
7945}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007946#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007947
Remi Gacogned3a23c32015-05-28 16:39:47 +02007948#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007949void ssl_free_dh(void) {
7950 if (local_dh_1024) {
7951 DH_free(local_dh_1024);
7952 local_dh_1024 = NULL;
7953 }
7954 if (local_dh_2048) {
7955 DH_free(local_dh_2048);
7956 local_dh_2048 = NULL;
7957 }
7958 if (local_dh_4096) {
7959 DH_free(local_dh_4096);
7960 local_dh_4096 = NULL;
7961 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007962 if (global_dh) {
7963 DH_free(global_dh);
7964 global_dh = NULL;
7965 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007966}
7967#endif
7968
7969__attribute__((destructor))
7970static void __ssl_sock_deinit(void)
7971{
7972#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007973 if (ssl_ctx_lru_tree) {
7974 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007975 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007976 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007977#endif
7978
Willy Tarreau5db847a2019-05-09 14:13:35 +02007979#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007980 ERR_remove_state(0);
7981 ERR_free_strings();
7982
7983 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007984#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007985
Willy Tarreau5db847a2019-05-09 14:13:35 +02007986#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007987 CRYPTO_cleanup_all_ex_data();
7988#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007989 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007990}
7991
William Dauchyf6370442020-11-14 19:25:33 +01007992
Emeric Brun46591952012-05-18 15:47:34 +02007993/*
7994 * Local variables:
7995 * c-indent-level: 8
7996 * c-basic-offset: 8
7997 * End:
7998 */