blob: 1bfb18689886bbc4fd90064c7ad08f877ae9e2b8 [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;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100474static DH *ssl_get_tmp_dh(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) {
611 ret = ERR_get_error();
612 if (ret == 0)
613 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100614 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
615 conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100616 ERR_func_error_string(ret), ERR_reason_error_string(ret));
617 }
618 }
619}
620
yanbzhube2774d2015-12-10 15:07:30 -0500621
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200622#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200623int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000624{
625 int err_code = ERR_ABORT;
626 ENGINE *engine;
627 struct ssl_engine_list *el;
628
629 /* grab the structural reference to the engine */
630 engine = ENGINE_by_id(engine_id);
631 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100632 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000633 goto fail_get;
634 }
635
636 if (!ENGINE_init(engine)) {
637 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100638 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000639 goto fail_init;
640 }
641
642 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100643 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000644 goto fail_set_method;
645 }
646
647 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200648 if (!el)
649 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000650 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200651 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100652 nb_engines++;
653 if (global_ssl.async)
654 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000655 return 0;
656
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200657fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000658fail_set_method:
659 /* release the functional reference from ENGINE_init() */
660 ENGINE_finish(engine);
661
662fail_init:
663 /* release the structural reference from ENGINE_by_id() */
664 ENGINE_free(engine);
665
666fail_get:
667 return err_code;
668}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200669#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000670
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500671#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200672/*
673 * openssl async fd handler
674 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200675void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000676{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200677 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000678
Emeric Brun3854e012017-05-17 20:42:48 +0200679 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000680 * to poll this fd until it is requested
681 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000682 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000683 fd_cant_recv(fd);
684
685 /* crypto engine is available, let's notify the associated
686 * connection that it can pursue its processing.
687 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200688 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000689}
690
Emeric Brun3854e012017-05-17 20:42:48 +0200691/*
692 * openssl async delayed SSL_free handler
693 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200694void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000695{
696 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200697 OSSL_ASYNC_FD all_fd[32];
698 size_t num_all_fds = 0;
699 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000700
Emeric Brun3854e012017-05-17 20:42:48 +0200701 /* We suppose that the async job for a same SSL *
702 * are serialized. So if we are awake it is
703 * because the running job has just finished
704 * and we can remove all async fds safely
705 */
706 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
707 if (num_all_fds > 32) {
708 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
709 return;
710 }
711
712 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
713 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200714 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200715
716 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000717 SSL_free(ssl);
Willy Tarreau82531f62021-10-06 12:15:18 +0200718 _HA_ATOMIC_DEC(&global.sslconns);
Willy Tarreau4781b152021-04-06 13:53:36 +0200719 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000720}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000721/*
Emeric Brun3854e012017-05-17 20:42:48 +0200722 * function used to manage a returned SSL_ERROR_WANT_ASYNC
723 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000724 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200725static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000726{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100727 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200728 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200729 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000730 size_t num_add_fds = 0;
731 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200732 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000733
734 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
735 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200736 if (num_add_fds > 32 || num_del_fds > 32) {
737 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 +0000738 return;
739 }
740
Emeric Brun3854e012017-05-17 20:42:48 +0200741 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000742
Emeric Brun3854e012017-05-17 20:42:48 +0200743 /* We remove unused fds from the fdtab */
744 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200745 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000746
Emeric Brun3854e012017-05-17 20:42:48 +0200747 /* We add new fds to the fdtab */
748 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200749 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000750 }
751
Emeric Brun3854e012017-05-17 20:42:48 +0200752 num_add_fds = 0;
753 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
754 if (num_add_fds > 32) {
755 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
756 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000757 }
Emeric Brun3854e012017-05-17 20:42:48 +0200758
759 /* We activate the polling for all known async fds */
760 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000761 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200762 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000763 /* To ensure that the fd cache won't be used
764 * We'll prefer to catch a real RD event
765 * because handling an EAGAIN on this fd will
766 * result in a context switch and also
767 * some engines uses a fd in blocking mode.
768 */
769 fd_cant_recv(add_fd[i]);
770 }
Emeric Brun3854e012017-05-17 20:42:48 +0200771
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000772}
773#endif
774
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200775#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 +0200776/*
777 * This function returns the number of seconds elapsed
778 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
779 * date presented un ASN1_GENERALIZEDTIME.
780 *
781 * In parsing error case, it returns -1.
782 */
783static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
784{
785 long epoch;
786 char *p, *end;
787 const unsigned short month_offset[12] = {
788 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
789 };
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +0200790 unsigned long year, month;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200791
792 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
793
794 p = (char *)d->data;
795 end = p + d->length;
796
797 if (end - p < 4) return -1;
798 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
799 p += 4;
800 if (end - p < 2) return -1;
801 month = 10 * (p[0] - '0') + p[1] - '0';
802 if (month < 1 || month > 12) return -1;
803 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
804 We consider leap years and the current month (<marsh or not) */
805 epoch = ( ((year - 1970) * 365)
806 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
807 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
808 + month_offset[month-1]
809 ) * 24 * 60 * 60;
810 p += 2;
811 if (end - p < 2) return -1;
812 /* Add the number of seconds of completed days of current month */
813 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
814 p += 2;
815 if (end - p < 2) return -1;
816 /* Add the completed hours of the current day */
817 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
818 p += 2;
819 if (end - p < 2) return -1;
820 /* Add the completed minutes of the current hour */
821 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
822 p += 2;
823 if (p == end) return -1;
824 /* Test if there is available seconds */
825 if (p[0] < '0' || p[0] > '9')
826 goto nosec;
827 if (end - p < 2) return -1;
828 /* Add the seconds of the current minute */
829 epoch += 10 * (p[0] - '0') + p[1] - '0';
830 p += 2;
831 if (p == end) return -1;
832 /* Ignore seconds float part if present */
833 if (p[0] == '.') {
834 do {
835 if (++p == end) return -1;
836 } while (p[0] >= '0' && p[0] <= '9');
837 }
838
839nosec:
840 if (p[0] == 'Z') {
841 if (end - p != 1) return -1;
842 return epoch;
843 }
844 else if (p[0] == '+') {
845 if (end - p != 5) return -1;
846 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700847 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 +0200848 }
849 else if (p[0] == '-') {
850 if (end - p != 5) return -1;
851 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700852 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 +0200853 }
854
855 return -1;
856}
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200857#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200858
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200859#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
William Lallemand104a7a62019-10-14 14:14:59 +0200860/*
861 * struct alignment works here such that the key.key is the same as key_data
862 * Do not change the placement of key_data
863 */
864struct certificate_ocsp {
865 struct ebmb_node key;
866 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +0200867 unsigned int key_length;
William Lallemand104a7a62019-10-14 14:14:59 +0200868 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200869 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200870 long expire;
871};
872
873struct ocsp_cbk_arg {
874 int is_single;
875 int single_kt;
876 union {
877 struct certificate_ocsp *s_ocsp;
878 /*
879 * m_ocsp will have multiple entries dependent on key type
880 * Entry 0 - DSA
881 * Entry 1 - ECDSA
882 * Entry 2 - RSA
883 */
884 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
885 };
886};
887
Emeric Brun1d3865b2014-06-20 15:37:32 +0200888static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200889
890/* This function starts to check if the OCSP response (in DER format) contained
891 * in chunk 'ocsp_response' is valid (else exits on error).
892 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
893 * contained in the OCSP Response and exits on error if no match.
894 * If it's a valid OCSP Response:
895 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
896 * pointed by 'ocsp'.
897 * If 'ocsp' is NULL, the function looks up into the OCSP response's
898 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
899 * from the response) and exits on error if not found. Finally, If an OCSP response is
900 * already present in the container, it will be overwritten.
901 *
902 * Note: OCSP response containing more than one OCSP Single response is not
903 * considered valid.
904 *
905 * Returns 0 on success, 1 in error case.
906 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200907static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
908 struct certificate_ocsp *ocsp,
909 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200910{
911 OCSP_RESPONSE *resp;
912 OCSP_BASICRESP *bs = NULL;
913 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200914 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200915 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200916 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200917 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200918 int reason;
919 int ret = 1;
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200920#ifdef HAVE_ASN1_TIME_TO_TM
921 struct tm nextupd_tm = {0};
922#endif
Emeric Brun4147b2e2014-06-16 18:36:30 +0200923
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200924 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
925 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200926 if (!resp) {
927 memprintf(err, "Unable to parse OCSP response");
928 goto out;
929 }
930
931 rc = OCSP_response_status(resp);
932 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
933 memprintf(err, "OCSP response status not successful");
934 goto out;
935 }
936
937 bs = OCSP_response_get1_basic(resp);
938 if (!bs) {
939 memprintf(err, "Failed to get basic response from OCSP Response");
940 goto out;
941 }
942
943 count_sr = OCSP_resp_count(bs);
944 if (count_sr > 1) {
945 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
946 goto out;
947 }
948
949 sr = OCSP_resp_get0(bs, 0);
950 if (!sr) {
951 memprintf(err, "Failed to get OCSP single response");
952 goto out;
953 }
954
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200955 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
956
Emeric Brun4147b2e2014-06-16 18:36:30 +0200957 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200958 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200959 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200960 goto out;
961 }
962
Emeric Brun13a6b482014-06-20 15:44:34 +0200963 if (!nextupd) {
964 memprintf(err, "OCSP single response: missing nextupdate");
965 goto out;
966 }
967
Emeric Brunc8b27b62014-06-19 14:16:17 +0200968 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200969 if (!rc) {
970 memprintf(err, "OCSP single response: no longer valid.");
971 goto out;
972 }
973
974 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200975 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200976 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
977 goto out;
978 }
979 }
980
981 if (!ocsp) {
982 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
983 unsigned char *p;
984
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200985 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200986 if (!rc) {
987 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
988 goto out;
989 }
990
991 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
992 memprintf(err, "OCSP single response: Certificate ID too long");
993 goto out;
994 }
995
996 p = key;
997 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200998 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200999 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
1000 if (!ocsp) {
1001 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
1002 goto out;
1003 }
1004 }
1005
1006 /* According to comments on "chunk_dup", the
1007 previous chunk buffer will be freed */
1008 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1009 memprintf(err, "OCSP response: Memory allocation error");
1010 goto out;
1011 }
1012
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001013#ifdef HAVE_ASN1_TIME_TO_TM
1014 if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) {
1015 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1016 goto out;
1017 }
1018 ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW;
1019#else
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001020 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +02001021 if (ocsp->expire < 0) {
1022 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1023 goto out;
1024 }
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001025#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001026
Emeric Brun4147b2e2014-06-16 18:36:30 +02001027 ret = 0;
1028out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001029 ERR_clear_error();
1030
Emeric Brun4147b2e2014-06-16 18:36:30 +02001031 if (bs)
1032 OCSP_BASICRESP_free(bs);
1033
1034 if (resp)
1035 OCSP_RESPONSE_free(resp);
1036
1037 return ret;
1038}
1039/*
1040 * External function use to update the OCSP response in the OCSP response's
1041 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1042 * to update in DER format.
1043 *
1044 * Returns 0 on success, 1 in error case.
1045 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001046int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001047{
1048 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1049}
1050
William Lallemand4a660132019-10-14 14:51:41 +02001051#endif
1052
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001053#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1054static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc)
1055{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001056 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001057 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001058 struct connection *conn;
1059 int head;
1060 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001061 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001062
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001063 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001064 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001065 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1066
1067 keys = ref->tlskeys;
1068 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001069
1070 if (enc) {
1071 memcpy(key_name, keys[head].name, 16);
1072
1073 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001074 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001075
Emeric Brun9e754772019-01-10 17:51:55 +01001076 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001077
Emeric Brun9e754772019-01-10 17:51:55 +01001078 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1079 goto end;
1080
Willy Tarreau9356dac2019-05-10 09:22:53 +02001081 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001082 ret = 1;
1083 }
1084 else if (ref->key_size_bits == 256 ) {
1085
1086 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1087 goto end;
1088
Willy Tarreau9356dac2019-05-10 09:22:53 +02001089 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001090 ret = 1;
1091 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001092 } else {
1093 for (i = 0; i < TLS_TICKETS_NO; i++) {
1094 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1095 goto found;
1096 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001097 ret = 0;
1098 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001099
Christopher Faulet16f45c82018-02-16 11:23:49 +01001100 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001101 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001102 HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001103 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1104 goto end;
1105 /* 2 for key renewal, 1 if current key is still valid */
1106 ret = i ? 2 : 1;
1107 }
1108 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001109 HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001110 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1111 goto end;
1112 /* 2 for key renewal, 1 if current key is still valid */
1113 ret = i ? 2 : 1;
1114 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001115 }
Emeric Brun9e754772019-01-10 17:51:55 +01001116
Christopher Faulet16f45c82018-02-16 11:23:49 +01001117 end:
1118 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1119 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001120}
1121
1122struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1123{
1124 struct tls_keys_ref *ref;
1125
1126 list_for_each_entry(ref, &tlskeys_reference, list)
1127 if (ref->filename && strcmp(filename, ref->filename) == 0)
1128 return ref;
1129 return NULL;
1130}
1131
1132struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1133{
1134 struct tls_keys_ref *ref;
1135
1136 list_for_each_entry(ref, &tlskeys_reference, list)
1137 if (ref->unique_id == unique_id)
1138 return ref;
1139 return NULL;
1140}
1141
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001142/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001143 * match existing ones, this function returns -1
1144 * else it returns 0 on success.
1145 */
1146int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001147 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001148{
Emeric Brun9e754772019-01-10 17:51:55 +01001149 if (ref->key_size_bits == 128) {
1150 if (tlskey->data != sizeof(struct tls_sess_key_128))
1151 return -1;
1152 }
1153 else if (ref->key_size_bits == 256) {
1154 if (tlskey->data != sizeof(struct tls_sess_key_256))
1155 return -1;
1156 }
1157 else
1158 return -1;
1159
Christopher Faulet16f45c82018-02-16 11:23:49 +01001160 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001161 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1162 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001163 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1164 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001165
1166 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001167}
1168
Willy Tarreau83061a82018-07-13 11:56:34 +02001169int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001170{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001171 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1172
1173 if(!ref) {
1174 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1175 return 1;
1176 }
Emeric Brun9e754772019-01-10 17:51:55 +01001177 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1178 memprintf(err, "Invalid key size");
1179 return 1;
1180 }
1181
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001182 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001183}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001184
1185/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001186 * automatic ids. It's called just after the basic checks. It returns
1187 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001188 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001189static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001190{
1191 int i = 0;
1192 struct tls_keys_ref *ref, *ref2, *ref3;
1193 struct list tkr = LIST_HEAD_INIT(tkr);
1194
1195 list_for_each_entry(ref, &tlskeys_reference, list) {
1196 if (ref->unique_id == -1) {
1197 /* Look for the first free id. */
1198 while (1) {
1199 list_for_each_entry(ref2, &tlskeys_reference, list) {
1200 if (ref2->unique_id == i) {
1201 i++;
1202 break;
1203 }
1204 }
1205 if (&ref2->list == &tlskeys_reference)
1206 break;
1207 }
1208
1209 /* Uses the unique id and increment it for the next entry. */
1210 ref->unique_id = i;
1211 i++;
1212 }
1213 }
1214
1215 /* This sort the reference list by id. */
1216 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001217 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001218 list_for_each_entry(ref3, &tkr, list) {
1219 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001220 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001221 break;
1222 }
1223 }
1224 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001225 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001226 }
1227
1228 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001229 LIST_INSERT(&tkr, &tlskeys_reference);
1230 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001231 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001232}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001233#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1234
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001235#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001236int ocsp_ex_index = -1;
1237
yanbzhube2774d2015-12-10 15:07:30 -05001238int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1239{
1240 switch (evp_keytype) {
1241 case EVP_PKEY_RSA:
1242 return 2;
1243 case EVP_PKEY_DSA:
1244 return 0;
1245 case EVP_PKEY_EC:
1246 return 1;
1247 }
1248
1249 return -1;
1250}
1251
Emeric Brun4147b2e2014-06-16 18:36:30 +02001252/*
1253 * Callback used to set OCSP status extension content in server hello.
1254 */
1255int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1256{
yanbzhube2774d2015-12-10 15:07:30 -05001257 struct certificate_ocsp *ocsp;
1258 struct ocsp_cbk_arg *ocsp_arg;
1259 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001260 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001261 EVP_PKEY *ssl_pkey;
1262 int key_type;
1263 int index;
1264
William Lallemand76b4a122020-08-04 17:41:39 +02001265 ctx = SSL_get_SSL_CTX(ssl);
1266 if (!ctx)
1267 return SSL_TLSEXT_ERR_NOACK;
1268
1269 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1270 if (!ocsp_arg)
1271 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001272
1273 ssl_pkey = SSL_get_privatekey(ssl);
1274 if (!ssl_pkey)
1275 return SSL_TLSEXT_ERR_NOACK;
1276
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001277 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001278
1279 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1280 ocsp = ocsp_arg->s_ocsp;
1281 else {
1282 /* For multiple certs per context, we have to find the correct OCSP response based on
1283 * the certificate type
1284 */
1285 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1286
1287 if (index < 0)
1288 return SSL_TLSEXT_ERR_NOACK;
1289
1290 ocsp = ocsp_arg->m_ocsp[index];
1291
1292 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001293
1294 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001295 !ocsp->response.area ||
1296 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001297 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001298 return SSL_TLSEXT_ERR_NOACK;
1299
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001300 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001301 if (!ssl_buf)
1302 return SSL_TLSEXT_ERR_NOACK;
1303
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001304 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1305 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001306
1307 return SSL_TLSEXT_ERR_OK;
1308}
1309
William Lallemand4a660132019-10-14 14:51:41 +02001310#endif
1311
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001312#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001313
1314
1315/*
1316 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1317 * used anymore. Also removes it from the tree if free'd.
1318 */
1319static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1320{
1321 if (!ocsp)
1322 return;
1323
1324 ocsp->refcount--;
1325 if (ocsp->refcount <= 0) {
1326 ebmb_delete(&ocsp->key);
1327 chunk_destroy(&ocsp->response);
1328 free(ocsp);
1329 }
1330}
1331
1332
Emeric Brun4147b2e2014-06-16 18:36:30 +02001333/*
1334 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001335 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1336 * status extension, the issuer's certificate is mandatory. It should be
1337 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001338 *
William Lallemand246c0242019-10-11 08:59:13 +02001339 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1340 * OCSP response. If file is empty or content is not a valid OCSP response,
1341 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1342 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001343 *
1344 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001345 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001346 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001347static 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 +02001348{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001349 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001350 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001351 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001352 struct certificate_ocsp *ocsp = NULL, *iocsp;
1353 char *warn = NULL;
1354 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001355 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001356
Emeric Brun4147b2e2014-06-16 18:36:30 +02001357
William Lallemand246c0242019-10-11 08:59:13 +02001358 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001359 if (!x)
1360 goto out;
1361
William Lallemand246c0242019-10-11 08:59:13 +02001362 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001363 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1364 if (chain) {
1365 /* check if one of the certificate of the chain is the issuer */
1366 for (i = 0; i < sk_X509_num(chain); i++) {
1367 X509 *ti = sk_X509_value(chain, i);
1368 if (X509_check_issued(ti, x) == X509_V_OK) {
1369 issuer = ti;
1370 break;
1371 }
1372 }
1373 }
William Lallemand246c0242019-10-11 08:59:13 +02001374 if (!issuer)
1375 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001376
1377 cid = OCSP_cert_to_id(0, x, issuer);
1378 if (!cid)
1379 goto out;
1380
1381 i = i2d_OCSP_CERTID(cid, NULL);
1382 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1383 goto out;
1384
Vincent Bernat02779b62016-04-03 13:48:43 +02001385 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001386 if (!ocsp)
1387 goto out;
1388
1389 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001390 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001391
1392 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1393 if (iocsp == ocsp)
1394 ocsp = NULL;
1395
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001396#ifndef SSL_CTX_get_tlsext_status_cb
1397# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1398 *cb = (void (*) (void))ctx->tlsext_status_cb;
1399#endif
1400 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1401
1402 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001403 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001404 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001405
William Lallemanda560c062020-07-31 11:43:20 +02001406 cb_arg = calloc(1, sizeof(*cb_arg));
1407 if (!cb_arg)
1408 goto out;
1409
yanbzhube2774d2015-12-10 15:07:30 -05001410 cb_arg->is_single = 1;
1411 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001412 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001413
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001414 pkey = X509_get_pubkey(x);
1415 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1416 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001417
1418 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001419 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 */
1420
yanbzhube2774d2015-12-10 15:07:30 -05001421 } else {
1422 /*
1423 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1424 * Update that cb_arg with the new cert's staple
1425 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001426 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001427 struct certificate_ocsp *tmp_ocsp;
1428 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001429 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001430 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001431
William Lallemand76b4a122020-08-04 17:41:39 +02001432 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001433
1434 /*
1435 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1436 * the order of operations below matter, take care when changing it
1437 */
1438 tmp_ocsp = cb_arg->s_ocsp;
1439 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1440 cb_arg->s_ocsp = NULL;
1441 cb_arg->m_ocsp[index] = tmp_ocsp;
1442 cb_arg->is_single = 0;
1443 cb_arg->single_kt = 0;
1444
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001445 pkey = X509_get_pubkey(x);
1446 key_type = EVP_PKEY_base_id(pkey);
1447 EVP_PKEY_free(pkey);
1448
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001449 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001450 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001451 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001452 iocsp->refcount++;
1453 }
yanbzhube2774d2015-12-10 15:07:30 -05001454 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001455
1456 ret = 0;
1457
1458 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001459 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001460 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001461 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001462 }
1463
1464out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001465 if (cid)
1466 OCSP_CERTID_free(cid);
1467
1468 if (ocsp)
1469 free(ocsp);
1470
1471 if (warn)
1472 free(warn);
1473
Emeric Brun4147b2e2014-06-16 18:36:30 +02001474 return ret;
1475}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001476#endif
1477
1478#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001479static 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 +02001480{
William Lallemand4a660132019-10-14 14:51:41 +02001481 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 +02001482}
1483#endif
1484
William Lallemand4a660132019-10-14 14:51:41 +02001485
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001486#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001487
1488#define CT_EXTENSION_TYPE 18
1489
William Lallemand03c331c2020-05-13 10:10:01 +02001490int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001491
1492int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1493{
Willy Tarreau83061a82018-07-13 11:56:34 +02001494 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001495
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001496 *out = (unsigned char *) sctl->area;
1497 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001498
1499 return 1;
1500}
1501
1502int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1503{
1504 return 1;
1505}
1506
William Lallemanda17f4112019-10-10 15:16:44 +02001507static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001508{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001509 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001510
William Lallemanda17f4112019-10-10 15:16:44 +02001511 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 +01001512 goto out;
1513
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001514 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1515
1516 ret = 0;
1517
1518out:
1519 return ret;
1520}
1521
1522#endif
1523
Emeric Brune1f38db2012-09-03 20:36:47 +02001524void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1525{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001526 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001527#ifdef USE_QUIC
1528 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1529#endif /* USE_QUIC */
1530 struct ssl_sock_ctx *ctx = NULL;
1531
Emeric Brund8b2bb52014-01-28 15:43:53 +01001532 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001533 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001534
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001535 if (conn)
1536 ctx = conn->xprt_ctx;
1537#ifdef USE_QUIC
1538 else if (qc)
1539 ctx = qc->xprt_ctx;
1540#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01001541
1542 if (!ctx) {
1543 /* must never happen */
1544 ABORT_NOW();
1545 return;
1546 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001547
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001548#ifndef SSL_OP_NO_RENEGOTIATION
1549 /* Please note that BoringSSL defines this macro to zero so don't
1550 * change this to #if and do not assign a default value to this macro!
1551 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001552 if (where & SSL_CB_HANDSHAKE_START) {
1553 /* Disable renegotiation (CVE-2009-3555) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001554 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 +02001555 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001556 conn->err_code = CO_ER_SSL_RENEG;
1557 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001558 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001559#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001560
1561 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001562 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001563 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001564 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001565 consider that the buffering was activated,
1566 so we rise the output buffer size from 4k
1567 to 16k */
1568 write_bio = SSL_get_wbio(ssl);
1569 if (write_bio != SSL_get_rbio(ssl)) {
1570 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001571 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001572 }
1573 }
1574 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001575}
1576
Emeric Brune64aef12012-09-21 13:15:06 +02001577/* Callback is called for each certificate of the chain during a verify
1578 ok is set to 1 if preverify detect no error on current certificate.
1579 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001580int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001581{
1582 SSL *ssl;
1583 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001584 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001585 int err, depth;
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001586 X509 *client_crt;
1587 STACK_OF(X509) *certs;
Emeric Brune64aef12012-09-21 13:15:06 +02001588
1589 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001590 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001591 client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001592
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001593 ctx = conn->xprt_ctx;
1594
1595 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001596
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001597 depth = X509_STORE_CTX_get_error_depth(x_store);
1598 err = X509_STORE_CTX_get_error(x_store);
1599
Emeric Brun81c00f02012-09-21 14:31:21 +02001600 if (ok) /* no errors */
1601 return ok;
1602
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001603 /* Keep a reference to the client's certificate in order to be able to
1604 * dump some fetches values in a log even when the verification process
1605 * fails. */
1606 if (depth == 0) {
1607 X509_free(client_crt);
1608 client_crt = X509_STORE_CTX_get0_cert(x_store);
1609 if (client_crt) {
1610 X509_up_ref(client_crt);
1611 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
1612 }
1613 }
1614 else {
1615 /* An error occurred on a CA certificate of the certificate
1616 * chain, we might never call this verify callback on the client
1617 * certificate's depth (which is 0) so we try to store the
1618 * reference right now. */
Remi Tricot-Le Bretonf95c2952021-08-20 09:51:23 +02001619 certs = X509_STORE_CTX_get1_chain(x_store);
1620 if (certs) {
1621 client_crt = sk_X509_value(certs, 0);
1622 if (client_crt) {
1623 X509_up_ref(client_crt);
1624 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001625 }
1626 sk_X509_pop_free(certs, X509_free);
1627 }
1628 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001629
1630 /* check if CA error needs to be ignored */
1631 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001632 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1633 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1634 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001635 }
1636
Willy Tarreau731248f2020-02-04 14:02:02 +01001637 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001638 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001639 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001640 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001641 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001642
Willy Tarreau20879a02012-12-03 16:32:10 +01001643 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001644 return 0;
1645 }
1646
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001647 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1648 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001649
Emeric Brun81c00f02012-09-21 14:31:21 +02001650 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001651 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001652 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001653 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001654 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001655 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001656
Willy Tarreau20879a02012-12-03 16:32:10 +01001657 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001658 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001659}
1660
Dragan Dosen9ac98092020-05-11 15:51:45 +02001661#ifdef TLS1_RT_HEARTBEAT
1662static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1663 int content_type, const void *buf, size_t len,
1664 SSL *ssl)
1665{
1666 /* test heartbeat received (write_p is set to 0
1667 for a received record) */
1668 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1669 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1670 const unsigned char *p = buf;
1671 unsigned int payload;
1672
1673 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1674
1675 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1676 if (*p != TLS1_HB_REQUEST)
1677 return;
1678
1679 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1680 goto kill_it;
1681
1682 payload = (p[1] * 256) + p[2];
1683 if (3 + payload + 16 <= len)
1684 return; /* OK no problem */
1685 kill_it:
1686 /* We have a clear heartbleed attack (CVE-2014-0160), the
1687 * advertised payload is larger than the advertised packet
1688 * length, so we have garbage in the buffer between the
1689 * payload and the end of the buffer (p+len). We can't know
1690 * if the SSL stack is patched, and we don't know if we can
1691 * safely wipe out the area between p+3+len and payload.
1692 * So instead, we prevent the response from being sent by
1693 * setting the max_send_fragment to 0 and we report an SSL
1694 * error, which will kill this connection. It will be reported
1695 * above as SSL_ERROR_SSL while an other handshake failure with
1696 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1697 */
1698 ssl->max_send_fragment = 0;
1699 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1700 }
1701}
1702#endif
1703
1704static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1705 int content_type, const void *buf, size_t len,
1706 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001707{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001708 struct ssl_capture *capture;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001709 uchar *msg;
1710 uchar *end;
1711 uchar *extensions_end;
1712 uchar *ec_start = NULL;
1713 uchar *ec_formats_start = NULL;
1714 uchar *list_end;
1715 ushort protocol_version;
1716 ushort extension_id;
1717 ushort ec_len = 0;
1718 uchar ec_formats_len = 0;
1719 int offset = 0;
1720 int rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001721
1722 /* This function is called for "from client" and "to server"
1723 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001724 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001725 */
1726
1727 /* "write_p" is set to 0 is the bytes are received messages,
1728 * otherwise it is set to 1.
1729 */
1730 if (write_p != 0)
1731 return;
1732
1733 /* content_type contains the type of message received or sent
1734 * according with the SSL/TLS protocol spec. This message is
1735 * encoded with one byte. The value 256 (two bytes) is used
1736 * for designing the SSL/TLS record layer. According with the
1737 * rfc6101, the expected message (other than 256) are:
1738 * - change_cipher_spec(20)
1739 * - alert(21)
1740 * - handshake(22)
1741 * - application_data(23)
1742 * - (255)
1743 * We are interessed by the handshake and specially the client
1744 * hello.
1745 */
1746 if (content_type != 22)
1747 return;
1748
1749 /* The message length is at least 4 bytes, containing the
1750 * message type and the message length.
1751 */
1752 if (len < 4)
1753 return;
1754
1755 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001756 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001757 * - hello_request(0)
1758 * - client_hello(1)
1759 * - server_hello(2)
1760 * - certificate(11)
1761 * - server_key_exchange (12)
1762 * - certificate_request(13)
1763 * - server_hello_done(14)
1764 * We are interested by the client hello.
1765 */
1766 msg = (unsigned char *)buf;
1767 if (msg[0] != 1)
1768 return;
1769
1770 /* Next three bytes are the length of the message. The total length
1771 * must be this decoded length + 4. If the length given as argument
1772 * is not the same, we abort the protocol dissector.
1773 */
1774 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1775 if (len < rec_len + 4)
1776 return;
1777 msg += 4;
1778 end = msg + rec_len;
1779 if (end < msg)
1780 return;
1781
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001782 /* Expect 2 bytes for protocol version
1783 * (1 byte for major and 1 byte for minor)
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001784 */
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001785 if (msg + 2 > end)
1786 return;
1787 protocol_version = (msg[0] << 8) + msg[1];
1788 msg += 2;
1789
1790 /* Expect the random, composed by 4 bytes for the unix time and
1791 * 28 bytes for unix payload. So we jump 4 + 28.
1792 */
1793 msg += 4 + 28;
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001794 if (msg > end)
1795 return;
1796
1797 /* Next, is session id:
1798 * if present, we have to jump by length + 1 for the size information
1799 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001800 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001801 if (msg[0] > 0)
1802 msg += msg[0];
1803 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001804 if (msg > end)
1805 return;
1806
1807 /* Next two bytes are the ciphersuite length. */
1808 if (msg + 2 > end)
1809 return;
1810 rec_len = (msg[0] << 8) + msg[1];
1811 msg += 2;
1812 if (msg + rec_len > end || msg + rec_len < msg)
1813 return;
1814
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001815 capture = pool_zalloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001816 if (!capture)
1817 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001818 /* Compute the xxh64 of the ciphersuite. */
1819 capture->xxh64 = XXH64(msg, rec_len, 0);
1820
1821 /* Capture the ciphersuite. */
Marcin Deranek310a2602021-07-13 19:04:24 +02001822 capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len);
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001823 capture->ciphersuite_offset = 0;
1824 memcpy(capture->data, msg, capture->ciphersuite_len);
1825 msg += rec_len;
1826 offset += capture->ciphersuite_len;
1827
1828 /* Initialize other data */
1829 capture->protocol_version = protocol_version;
1830
1831 /* Next, compression methods:
1832 * if present, we have to jump by length + 1 for the size information
1833 * if not present, we have to jump by 1 only
1834 */
1835 if (msg[0] > 0)
1836 msg += msg[0];
1837 msg += 1;
1838 if (msg > end)
1839 goto store_capture;
1840
1841 /* We reached extensions */
1842 if (msg + 2 > end)
1843 goto store_capture;
1844 rec_len = (msg[0] << 8) + msg[1];
1845 msg += 2;
1846 if (msg + rec_len > end || msg + rec_len < msg)
1847 goto store_capture;
1848 extensions_end = msg + rec_len;
1849 capture->extensions_offset = offset;
1850
1851 /* Parse each extension */
1852 while (msg + 4 < extensions_end) {
1853 /* Add 2 bytes of extension_id */
Marcin Deranek310a2602021-07-13 19:04:24 +02001854 if (global_ssl.capture_buffer_size >= offset + 2) {
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001855 capture->data[offset++] = msg[0];
1856 capture->data[offset++] = msg[1];
1857 capture->extensions_len += 2;
1858 }
1859 else
1860 break;
1861 extension_id = (msg[0] << 8) + msg[1];
1862 /* Length of the extension */
1863 rec_len = (msg[2] << 8) + msg[3];
1864
1865 /* Expect 2 bytes extension id + 2 bytes extension size */
1866 msg += 2 + 2;
1867 if (msg + rec_len > extensions_end || msg + rec_len < msg)
1868 goto store_capture;
1869 /* TLS Extensions
1870 * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1871 if (extension_id == 0x000a) {
1872 /* Elliptic Curves:
1873 * https://www.rfc-editor.org/rfc/rfc8422.html
1874 * https://www.rfc-editor.org/rfc/rfc7919.html */
1875 list_end = msg + rec_len;
1876 if (msg + 2 > list_end)
1877 goto store_capture;
1878 rec_len = (msg[0] << 8) + msg[1];
1879 msg += 2;
1880
1881 if (msg + rec_len > list_end || msg + rec_len < msg)
1882 goto store_capture;
1883 /* Store location/size of the list */
1884 ec_start = msg;
1885 ec_len = rec_len;
1886 }
1887 else if (extension_id == 0x000b) {
1888 /* Elliptic Curves Point Formats:
1889 * https://www.rfc-editor.org/rfc/rfc8422.html */
1890 list_end = msg + rec_len;
1891 if (msg + 1 > list_end)
1892 goto store_capture;
1893 rec_len = msg[0];
1894 msg += 1;
1895
1896 if (msg + rec_len > list_end || msg + rec_len < msg)
1897 goto store_capture;
1898 /* Store location/size of the list */
1899 ec_formats_start = msg;
1900 ec_formats_len = rec_len;
1901 }
1902 msg += rec_len;
1903 }
1904
1905 if (ec_start) {
1906 rec_len = ec_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02001907 if (offset + rec_len > global_ssl.capture_buffer_size)
1908 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001909 memcpy(capture->data + offset, ec_start, rec_len);
1910 capture->ec_offset = offset;
1911 capture->ec_len = rec_len;
1912 offset += rec_len;
1913 }
1914 if (ec_formats_start) {
1915 rec_len = ec_formats_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02001916 if (offset + rec_len > global_ssl.capture_buffer_size)
1917 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001918 memcpy(capture->data + offset, ec_formats_start, rec_len);
1919 capture->ec_formats_offset = offset;
1920 capture->ec_formats_len = rec_len;
1921 offset += rec_len;
1922 }
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001923
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001924 store_capture:
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001925 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001926}
William Lallemand7d42ef52020-07-06 11:41:30 +02001927
1928
William Lallemand722180a2021-06-09 16:46:12 +02001929#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001930static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1931 int content_type, const void *buf, size_t len,
1932 SSL *ssl)
1933{
1934 struct ssl_keylog *keylog;
1935
1936 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1937 return;
1938
Willy Tarreauf208ac02021-03-22 21:10:12 +01001939 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001940 if (!keylog)
1941 return;
1942
William Lallemand7d42ef52020-07-06 11:41:30 +02001943 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1944 pool_free(pool_head_ssl_keylog, keylog);
1945 return;
1946 }
1947}
1948#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001949
Emeric Brun29f037d2014-04-25 19:05:36 +02001950/* Callback is called for ssl protocol analyse */
1951void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1952{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001953 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1954 struct ssl_sock_msg_callback *cbk;
1955
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001956 /* Try to call all callback functions that were registered by using
1957 * ssl_sock_register_msg_callback().
1958 */
1959 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1960 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1961 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001962}
1963
Bernard Spil13c53f82018-02-15 13:34:58 +01001964#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001965static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1966 const unsigned char *in, unsigned int inlen,
1967 void *arg)
1968{
1969 struct server *srv = arg;
1970
1971 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1972 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1973 return SSL_TLSEXT_ERR_OK;
1974 return SSL_TLSEXT_ERR_NOACK;
1975}
1976#endif
1977
1978#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001979/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001980 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001981 */
1982static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1983 unsigned int *len, void *arg)
1984{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001985 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001986
1987 *data = (const unsigned char *)conf->npn_str;
1988 *len = conf->npn_len;
1989 return SSL_TLSEXT_ERR_OK;
1990}
1991#endif
1992
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001993#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001994/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001995 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001996 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001997static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1998 unsigned char *outlen,
1999 const unsigned char *server,
2000 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02002001{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002002 struct ssl_bind_conf *conf = arg;
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002003#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002004 struct quic_conn *qc = SSL_get_ex_data(s, ssl_qc_app_data_index);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002005#endif
Willy Tarreauab861d32013-04-02 02:30:41 +02002006
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002007 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
2008 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002009#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002010 if (qc)
2011 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002012#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002013 return SSL_TLSEXT_ERR_NOACK;
2014 }
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002015
2016#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002017 if (qc && !quic_set_app_ops(qc, *out, *outlen)) {
2018 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002019 return SSL_TLSEXT_ERR_NOACK;
2020 }
2021#endif
2022
Willy Tarreauab861d32013-04-02 02:30:41 +02002023 return SSL_TLSEXT_ERR_OK;
2024}
2025#endif
2026
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02002027#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002028#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002029
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002030/* Configure a DNS SAN extenion on a certificate. */
2031int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
2032 int failure = 0;
2033 X509_EXTENSION *san_ext = NULL;
2034 CONF *conf = NULL;
2035 struct buffer *san_name = get_trash_chunk();
2036
2037 conf = NCONF_new(NULL);
2038 if (!conf) {
2039 failure = 1;
2040 goto cleanup;
2041 }
2042
2043 /* Build an extension based on the DNS entry above */
2044 chunk_appendf(san_name, "DNS:%s", servername);
2045 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
2046 if (!san_ext) {
2047 failure = 1;
2048 goto cleanup;
2049 }
2050
2051 /* Add the extension */
2052 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
2053 failure = 1;
2054 goto cleanup;
2055 }
2056
2057 /* Success */
2058 failure = 0;
2059
2060cleanup:
2061 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
2062 if (NULL != conf) NCONF_free(conf);
2063
2064 return failure;
2065}
2066
Christopher Faulet30548802015-06-11 13:39:32 +02002067/* Create a X509 certificate with the specified servername and serial. This
2068 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02002069static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002070ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002071{
Shimi Gersner5846c492020-08-23 13:58:12 +03002072 X509 *cacert = bind_conf->ca_sign_ckch->cert;
2073 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002074 SSL_CTX *ssl_ctx = NULL;
2075 X509 *newcrt = NULL;
2076 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002077 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002078 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002079 X509_NAME *name;
2080 const EVP_MD *digest;
2081 X509V3_CTX ctx;
2082 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002083 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002084
Christopher Faulet48a83322017-07-28 16:56:09 +02002085 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05002086#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002087 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
2088#else
2089 tmp_ssl = SSL_new(bind_conf->default_ctx);
2090 if (tmp_ssl)
2091 pkey = SSL_get_privatekey(tmp_ssl);
2092#endif
2093 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002094 goto mkcert_error;
2095
2096 /* Create the certificate */
2097 if (!(newcrt = X509_new()))
2098 goto mkcert_error;
2099
2100 /* Set version number for the certificate (X509v3) and the serial
2101 * number */
2102 if (X509_set_version(newcrt, 2L) != 1)
2103 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02002104 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002105
2106 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08002107 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
2108 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002109 goto mkcert_error;
2110
2111 /* set public key in the certificate */
2112 if (X509_set_pubkey(newcrt, pkey) != 1)
2113 goto mkcert_error;
2114
2115 /* Set issuer name from the CA */
2116 if (!(name = X509_get_subject_name(cacert)))
2117 goto mkcert_error;
2118 if (X509_set_issuer_name(newcrt, name) != 1)
2119 goto mkcert_error;
2120
2121 /* Set the subject name using the same, but the CN */
2122 name = X509_NAME_dup(name);
2123 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
2124 (const unsigned char *)servername,
2125 -1, -1, 0) != 1) {
2126 X509_NAME_free(name);
2127 goto mkcert_error;
2128 }
2129 if (X509_set_subject_name(newcrt, name) != 1) {
2130 X509_NAME_free(name);
2131 goto mkcert_error;
2132 }
2133 X509_NAME_free(name);
2134
2135 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002136 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002137 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
2138 for (i = 0; i < X509V3_EXT_SIZE; i++) {
2139 X509_EXTENSION *ext;
2140
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002141 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002142 goto mkcert_error;
2143 if (!X509_add_ext(newcrt, ext, -1)) {
2144 X509_EXTENSION_free(ext);
2145 goto mkcert_error;
2146 }
2147 X509_EXTENSION_free(ext);
2148 }
2149
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002150 /* Add SAN extension */
2151 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
2152 goto mkcert_error;
2153 }
2154
Christopher Faulet31af49d2015-06-09 17:29:50 +02002155 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002156
2157 key_type = EVP_PKEY_base_id(capkey);
2158
2159 if (key_type == EVP_PKEY_DSA)
2160 digest = EVP_sha1();
2161 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002162 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002163 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002164 digest = EVP_sha256();
2165 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002166#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002167 int nid;
2168
2169 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2170 goto mkcert_error;
2171 if (!(digest = EVP_get_digestbynid(nid)))
2172 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002173#else
2174 goto mkcert_error;
2175#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002176 }
2177
Christopher Faulet31af49d2015-06-09 17:29:50 +02002178 if (!(X509_sign(newcrt, capkey, digest)))
2179 goto mkcert_error;
2180
2181 /* Create and set the new SSL_CTX */
2182 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2183 goto mkcert_error;
2184 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2185 goto mkcert_error;
2186 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2187 goto mkcert_error;
2188 if (!SSL_CTX_check_private_key(ssl_ctx))
2189 goto mkcert_error;
2190
Shimi Gersner5846c492020-08-23 13:58:12 +03002191 /* Build chaining the CA cert and the rest of the chain, keep these order */
2192#if defined(SSL_CTX_add1_chain_cert)
2193 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2194 goto mkcert_error;
2195 }
2196
2197 if (bind_conf->ca_sign_ckch->chain) {
2198 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2199 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2200 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2201 goto mkcert_error;
2202 }
2203 }
2204 }
2205#endif
2206
Christopher Faulet31af49d2015-06-09 17:29:50 +02002207 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002208
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002209#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002210 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002211#endif
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002212
2213#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
2214#if defined(SSL_CTX_set1_curves_list)
2215 {
2216 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
2217 if (!SSL_CTX_set1_curves_list(ssl_ctx, ecdhe))
2218 goto end;
2219 }
2220#endif
2221#else
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002222#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2223 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002224 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002225 EC_KEY *ecc;
2226 int nid;
2227
2228 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2229 goto end;
2230 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2231 goto end;
2232 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2233 EC_KEY_free(ecc);
2234 }
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002235#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
2236#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002237 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002238 return ssl_ctx;
2239
2240 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002241 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002242 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002243 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2244 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002245 return NULL;
2246}
2247
Christopher Faulet7969a332015-10-09 11:15:03 +02002248
Christopher Faulet30548802015-06-11 13:39:32 +02002249/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002250 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002251SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002252ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002253{
2254 struct lru64 *lru = NULL;
2255
2256 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002257 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002258 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002259 if (lru && lru->domain) {
2260 if (ssl)
2261 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002262 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002263 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002264 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002265 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002266 }
2267 return NULL;
2268}
2269
Emeric Brun821bb9b2017-06-15 16:37:39 +02002270/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2271 * function is not thread-safe, it should only be used to check if a certificate
2272 * exists in the lru cache (with no warranty it will not be removed by another
2273 * thread). It is kept for backward compatibility. */
2274SSL_CTX *
2275ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2276{
2277 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2278}
2279
Christopher Fauletd2cab922015-07-28 16:03:47 +02002280/* Set a certificate int the LRU cache used to store generated
2281 * certificate. Return 0 on success, otherwise -1 */
2282int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002283ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002284{
2285 struct lru64 *lru = NULL;
2286
2287 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002288 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002289 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002290 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002291 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002292 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002293 }
Christopher Faulet30548802015-06-11 13:39:32 +02002294 if (lru->domain && lru->data)
2295 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002296 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002297 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002298 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002299 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002300 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002301}
2302
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002303/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002304unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002305ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002306{
2307 return XXH32(data, len, ssl_ctx_lru_seed);
2308}
2309
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002310/* Generate a cert and immediately assign it to the SSL session so that the cert's
2311 * refcount is maintained regardless of the cert's presence in the LRU cache.
2312 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002313static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002314ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002315{
Shimi Gersner5846c492020-08-23 13:58:12 +03002316 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002317 SSL_CTX *ssl_ctx = NULL;
2318 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002319 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002320
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002321 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002322 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002323 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002324 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002325 if (lru && lru->domain)
2326 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002327 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002328 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002329 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002330 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002331 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002332 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002333 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002334 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002335 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002336 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002337 SSL_set_SSL_CTX(ssl, ssl_ctx);
2338 /* No LRU cache, this CTX will be released as soon as the session dies */
2339 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002340 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002341 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002342 return 0;
2343}
2344static int
2345ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2346{
2347 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002348 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002349
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002350 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002351 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002352 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002353 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002354 }
2355 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002356}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002357#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002358
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002359#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002360
2361static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002362{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002363#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002364 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002365 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2366#endif
2367}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002368static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2369 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002370 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2371}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002372static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002373#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002374 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002375 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2376#endif
2377}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002378static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002379#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002380 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002381 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2382#endif
2383}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002384/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002385static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2386/* Unusable in this context. */
2387static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2388static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2389static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2390static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2391static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002392#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002393
2394static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2395 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002396 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2397}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002398static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2399 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2400 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2401}
2402static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2403 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002404 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2405}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002406static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2407 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2408 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2409}
2410static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2411 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002412 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2413}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002414static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2415 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2416 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2417}
2418static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2419 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002420 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2421}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002422static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2423 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2424 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2425}
2426static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002427#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002428 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002429 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2430#endif
2431}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002432static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002433#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002434 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2435 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002436#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002437}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002438#endif
2439static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2440static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002441
William Lallemand7fd8b452020-05-07 15:20:43 +02002442struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002443 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2444 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2445 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2446 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2447 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2448 {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 +02002449};
2450
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002451static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2452{
2453 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2454 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2455 SSL_set_SSL_CTX(ssl, ctx);
2456}
2457
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002458#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002459
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002460int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002461{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002462 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002463 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002464
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002465 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2466 return SSL_TLSEXT_ERR_OK;
2467 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002468}
2469
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002470#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002471int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002472{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002473 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002474#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002475int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002476{
2477#endif
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002478 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
2479#ifdef USE_QUIC
2480 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
2481#endif /* USE_QUIC */
2482 struct bind_conf *s = NULL;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002483 const uint8_t *extension_data;
2484 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002485 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002486
2487 char *wildp = NULL;
2488 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002489 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002490 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002491 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002492 int i;
2493
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002494 if (conn)
2495 s = __objt_listener(conn->target)->bind_conf;
2496#ifdef USE_QUIC
2497 else if (qc)
2498 s = qc->li->bind_conf;
2499#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01002500
2501 if (!s) {
2502 /* must never happen */
2503 ABORT_NOW();
2504 return 0;
2505 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002506
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002507#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002508 if (qc) {
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002509 /* Look for the QUIC transport parameters. */
2510#ifdef OPENSSL_IS_BORINGSSL
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002511 if (!SSL_early_callback_ctx_extension_get(ctx, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002512 &extension_data, &extension_len))
2513#else
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002514 if (!SSL_client_hello_get0_ext(ssl, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002515 &extension_data, &extension_len))
2516#endif
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002517 {
2518 /* This is not redundant. It we only return 0 without setting
2519 * <*al>, this has as side effect to generate another TLS alert
2520 * which would be set after calling quic_set_tls_alert().
2521 */
2522 *al = SSL_AD_MISSING_EXTENSION;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002523 quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION);
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002524 return 0;
2525 }
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002526
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002527 if (!quic_transport_params_store(qc, 0, extension_data,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002528 extension_data + extension_len))
2529 goto abort;
2530 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002531#endif /* USE_QUIC */
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002532
Olivier Houchard9679ac92017-10-27 14:58:08 +02002533 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002534 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002535#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002536 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2537 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002538#else
2539 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2540#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002541 /*
2542 * The server_name extension was given too much extensibility when it
2543 * was written, so parsing the normal case is a bit complex.
2544 */
2545 size_t len;
2546 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002547 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002548 /* Extract the length of the supplied list of names. */
2549 len = (*extension_data++) << 8;
2550 len |= *extension_data++;
2551 if (len + 2 != extension_len)
2552 goto abort;
2553 /*
2554 * The list in practice only has a single element, so we only consider
2555 * the first one.
2556 */
2557 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2558 goto abort;
2559 extension_len = len - 1;
2560 /* Now we can finally pull out the byte array with the actual hostname. */
2561 if (extension_len <= 2)
2562 goto abort;
2563 len = (*extension_data++) << 8;
2564 len |= *extension_data++;
2565 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2566 || memchr(extension_data, 0, len) != NULL)
2567 goto abort;
2568 servername = extension_data;
2569 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002570 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002571#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2572 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002573 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002574 }
2575#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002576 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002577 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002578 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002579 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002580 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002581 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002582 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002583 goto abort;
2584 }
2585
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002586 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002587#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002588 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002589#else
2590 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2591#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002592 uint8_t sign;
2593 size_t len;
2594 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002595 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002596 len = (*extension_data++) << 8;
2597 len |= *extension_data++;
2598 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002599 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002600 if (len % 2 != 0)
2601 goto abort;
2602 for (; len > 0; len -= 2) {
2603 extension_data++; /* hash */
2604 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002605 switch (sign) {
2606 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002607 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002608 break;
2609 case TLSEXT_signature_ecdsa:
2610 has_ecdsa_sig = 1;
2611 break;
2612 default:
2613 continue;
2614 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002615 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002616 break;
2617 }
2618 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002619 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002620 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002621 }
2622 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002623 const SSL_CIPHER *cipher;
2624 size_t len;
2625 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002626 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002627#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002628 len = ctx->cipher_suites_len;
2629 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002630#else
2631 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2632#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002633 if (len % 2 != 0)
2634 goto abort;
2635 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002636#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002637 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002638 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002639#else
2640 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2641#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002642 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002643 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002644 break;
2645 }
2646 }
2647 }
2648
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002649 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002650 trash.area[i] = tolower(servername[i]);
2651 if (!wildp && (trash.area[i] == '.'))
2652 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002653 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002654 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002655
William Lallemand150bfa82019-09-19 17:12:49 +02002656 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002657
William Lallemand94bd3192020-08-14 14:43:35 +02002658 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2659 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002660 for (i = 0; i < 2; i++) {
2661 if (i == 0) /* lookup in full qualified names */
2662 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002663 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002664 node = ebst_lookup(&s->sni_w_ctx, wildp);
2665 else
2666 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002667
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002668 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002669
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002670 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002671 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002672 struct sni_ctx *sni, *sni_tmp;
2673 int skip = 0;
2674
2675 if (i == 1 && wildp) { /* wildcard */
2676 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2677 sni = container_of(n, struct sni_ctx, name);
2678 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002679 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002680 skip = 1;
2681 break;
2682 }
2683 }
2684 if (skip)
2685 continue;
2686 }
2687
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002688 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002689 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002690 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002691 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002692 break;
2693 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002694 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002695 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002696 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002697 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002698 if (!node_anonymous)
2699 node_anonymous = n;
2700 break;
2701 }
2702 }
2703 }
William Lallemand94bd3192020-08-14 14:43:35 +02002704 }
2705 /* Once the certificates are found, select them depending on what is
2706 * supported in the client and by key_signature priority order: EDSA >
2707 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002708 if (has_ecdsa_sig && node_ecdsa)
2709 node = node_ecdsa;
2710 else if (has_rsa_sig && node_rsa)
2711 node = node_rsa;
2712 else if (node_anonymous)
2713 node = node_anonymous;
2714 else if (node_ecdsa)
2715 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2716 else
2717 node = node_rsa; /* no rsa signature case (far far away) */
2718
William Lallemand94bd3192020-08-14 14:43:35 +02002719 if (node) {
2720 /* switch ctx */
2721 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2722 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2723 if (conf) {
2724 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2725 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2726 if (conf->early_data)
2727 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002728 }
William Lallemand94bd3192020-08-14 14:43:35 +02002729 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2730 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002731 }
William Lallemand150bfa82019-09-19 17:12:49 +02002732
William Lallemand02010472019-10-18 11:02:19 +02002733 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002734#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002735 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002736 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002737 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002738 }
2739#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002740 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002741 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002742 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002743 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002744 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
William Lallemand7980dff2021-11-18 17:46:26 +01002745 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002746 }
William Lallemand7980dff2021-11-18 17:46:26 +01002747
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01002748 /* We are about to raise an handshake error so the servername extension
2749 * callback will never be called and the SNI will never be stored in the
2750 * SSL context. In order for the ssl_fc_sni sample fetch to still work
2751 * in such a case, we store the SNI ourselves as an ex_data information
2752 * in the SSL context.
2753 */
2754 {
2755 char *client_sni = pool_alloc(ssl_sock_client_sni_pool);
2756 if (client_sni) {
2757 strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name);
2758 client_sni[TLSEXT_MAXLEN_host_name] = '\0';
2759 SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni);
2760 }
2761 }
2762
William Lallemand7980dff2021-11-18 17:46:26 +01002763 /* other cases fallback on abort, if strict-sni is set but no node was found */
2764
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002765 abort:
2766 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002767 if (conn)
2768 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002769#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002770 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002771#else
2772 *al = SSL_AD_UNRECOGNIZED_NAME;
2773 return 0;
2774#endif
William Lallemand7980dff2021-11-18 17:46:26 +01002775
2776allow_early:
2777#ifdef OPENSSL_IS_BORINGSSL
2778 if (allow_early)
2779 SSL_set_early_data_enabled(ssl, 1);
2780#else
2781 if (!allow_early)
2782 SSL_set_max_early_data(ssl, 0);
2783#endif
2784 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002785}
2786
William Lallemand002e2062021-11-18 15:25:16 +01002787#else /* ! HAVE_SSL_CLIENT_HELLO_CB */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002788
Emeric Brunfc0421f2012-09-07 17:30:07 +02002789/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2790 * warning when no match is found, which implies the default (first) cert
2791 * will keep being used.
2792 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002793static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002794{
2795 const char *servername;
2796 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002797 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002798 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002799 int i;
2800 (void)al; /* shut gcc stupid warning */
2801
2802 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002803 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002804#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002805 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2806 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002807#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002808 if (s->strict_sni)
2809 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002810 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002811 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002812 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002813 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002814 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002815
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002816 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002817 if (!servername[i])
2818 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002819 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002820 if (!wildp && (trash.area[i] == '.'))
2821 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002822 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002823 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002824
William Lallemand150bfa82019-09-19 17:12:49 +02002825 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002826 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002827 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002828 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2829 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002830 if (!container_of(n, struct sni_ctx, name)->neg) {
2831 node = n;
2832 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002833 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002834 }
2835 if (!node && wildp) {
2836 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002837 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2838 /* lookup a not neg filter */
2839 if (!container_of(n, struct sni_ctx, name)->neg) {
2840 node = n;
2841 break;
2842 }
2843 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002844 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002845 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002846#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002847 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2848 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002849 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002850 return SSL_TLSEXT_ERR_OK;
2851 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002852#endif
William Lallemand21724f02019-11-04 17:56:13 +01002853 if (s->strict_sni) {
2854 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002855 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002856 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002857 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002858 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002859 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002860 }
2861
2862 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002863 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002864 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002865 return SSL_TLSEXT_ERR_OK;
2866}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002867#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002868#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2869
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002870#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002871
2872static DH * ssl_get_dh_1024(void)
2873{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002874 static unsigned char dh1024_p[]={
2875 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2876 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2877 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2878 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2879 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2880 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2881 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2882 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2883 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2884 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2885 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2886 };
2887 static unsigned char dh1024_g[]={
2888 0x02,
2889 };
2890
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002891 BIGNUM *p;
2892 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002893 DH *dh = DH_new();
2894 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002895 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2896 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002897
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002898 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002899 DH_free(dh);
2900 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002901 } else {
2902 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002903 }
2904 }
2905 return dh;
2906}
2907
2908static DH *ssl_get_dh_2048(void)
2909{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002910 static unsigned char dh2048_p[]={
2911 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2912 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2913 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2914 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2915 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2916 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2917 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2918 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2919 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2920 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2921 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2922 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2923 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2924 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2925 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2926 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2927 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2928 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2929 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2930 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2931 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2932 0xB7,0x1F,0x77,0xF3,
2933 };
2934 static unsigned char dh2048_g[]={
2935 0x02,
2936 };
2937
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002938 BIGNUM *p;
2939 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002940 DH *dh = DH_new();
2941 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002942 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2943 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002944
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002945 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002946 DH_free(dh);
2947 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002948 } else {
2949 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002950 }
2951 }
2952 return dh;
2953}
2954
2955static DH *ssl_get_dh_4096(void)
2956{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002957 static unsigned char dh4096_p[]={
2958 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2959 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2960 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2961 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2962 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2963 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2964 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2965 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2966 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2967 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2968 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2969 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2970 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2971 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2972 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2973 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2974 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2975 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2976 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2977 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2978 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2979 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2980 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2981 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2982 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2983 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2984 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2985 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2986 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2987 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2988 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2989 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2990 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2991 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2992 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2993 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2994 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2995 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2996 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2997 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2998 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2999 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
3000 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003001 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02003002 static unsigned char dh4096_g[]={
3003 0x02,
3004 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003005
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003006 BIGNUM *p;
3007 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003008 DH *dh = DH_new();
3009 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003010 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
3011 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02003012
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003013 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003014 DH_free(dh);
3015 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003016 } else {
3017 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003018 }
3019 }
3020 return dh;
3021}
3022
3023/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01003024 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003025static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
3026{
3027 DH *dh = NULL;
3028 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003029 int type;
3030
3031 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003032
3033 /* The keylen supplied by OpenSSL can only be 512 or 1024.
3034 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
3035 */
3036 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
3037 keylen = EVP_PKEY_bits(pkey);
3038 }
3039
Willy Tarreauef934602016-12-22 23:12:01 +01003040 if (keylen > global_ssl.default_dh_param) {
3041 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003042 }
3043
Remi Gacogned3a341a2015-05-29 16:26:17 +02003044 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02003045 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003046 }
3047 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02003048 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003049 }
3050 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02003051 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003052 }
3053
3054 return dh;
3055}
3056
Remi Gacogne47783ef2015-05-29 15:53:22 +02003057static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003058{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003059 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02003060 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003061
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003062 if (in == NULL)
3063 goto end;
3064
Remi Gacogne47783ef2015-05-29 15:53:22 +02003065 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003066 goto end;
3067
Remi Gacogne47783ef2015-05-29 15:53:22 +02003068 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
3069
3070end:
3071 if (in)
3072 BIO_free(in);
3073
Emeric Brune1b4ed42018-08-16 15:14:12 +02003074 ERR_clear_error();
3075
Remi Gacogne47783ef2015-05-29 15:53:22 +02003076 return dh;
3077}
3078
3079int ssl_sock_load_global_dh_param_from_file(const char *filename)
3080{
3081 global_dh = ssl_sock_get_dh_from_file(filename);
3082
3083 if (global_dh) {
3084 return 0;
3085 }
3086
3087 return -1;
3088}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003089#endif
3090
William Lallemand9117de92019-10-04 00:29:42 +02003091/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02003092static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02003093 struct bind_conf *s, struct ssl_bind_conf *conf,
3094 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003095{
3096 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003097 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003098
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003099 if (*name == '!') {
3100 neg = 1;
3101 name++;
3102 }
3103 if (*name == '*') {
3104 wild = 1;
3105 name++;
3106 }
3107 /* !* filter is a nop */
3108 if (neg && wild)
3109 return order;
3110 if (*name) {
3111 int j, len;
3112 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003113 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02003114 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003115 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02003116 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003117 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003118
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003119 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02003120 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02003121 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003122 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02003123 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003124 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003125 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003126 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003127 sc->order = order++;
3128 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02003129 sc->wild = wild;
3130 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01003131 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02003132 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003133 }
3134 return order;
3135}
3136
William Lallemand6af03992019-07-23 15:00:54 +02003137/*
William Lallemand1d29c742019-10-04 00:53:29 +02003138 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
3139 * This function can't return an error.
3140 *
3141 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
3142 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003143void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02003144{
3145
3146 struct sni_ctx *sc0, *sc0b, *sc1;
3147 struct ebmb_node *node;
3148
3149 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
3150
3151 /* ignore if sc0 was already inserted in a tree */
3152 if (sc0->name.node.leaf_p)
3153 continue;
3154
3155 /* Check for duplicates. */
3156 if (sc0->wild)
3157 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
3158 else
3159 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
3160
3161 for (; node; node = ebmb_next_dup(node)) {
3162 sc1 = ebmb_entry(node, struct sni_ctx, name);
3163 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
3164 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
3165 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02003166 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02003167 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003168 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02003169 break;
William Lallemand1d29c742019-10-04 00:53:29 +02003170 }
3171 }
3172
3173 /* if duplicate, ignore the insertion */
3174 if (!sc0)
3175 continue;
3176
3177 if (sc0->wild)
3178 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
3179 else
3180 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003181 }
William Lallemand21724f02019-11-04 17:56:13 +01003182
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003183 /* replace the default_ctx if required with the instance's ctx. */
3184 if (ckch_inst->is_default) {
3185 SSL_CTX_free(bind_conf->default_ctx);
3186 SSL_CTX_up_ref(ckch_inst->ctx);
3187 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003188 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02003189 }
3190}
3191
3192/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003193 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02003194 */
William Lallemande3af8fb2019-10-08 11:36:53 +02003195struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02003196
William Lallemand2954c472020-03-06 21:54:13 +01003197/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02003198struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02003199
Emeric Brun7a883362019-10-17 13:27:40 +02003200/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003201 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003202 * DH parameter is loaded into the SSL_CTX and if there is no
3203 * DH parameter available in ckchs nor in global, the default
3204 * DH parameters are applied on the SSL_CTX.
3205 * Returns a bitfield containing the flags:
3206 * ERR_FATAL in any fatal error case
3207 * ERR_ALERT if a reason of the error is availabine in err
3208 * ERR_WARN if a warning is available into err
3209 * The value 0 means there is no error nor warning and
3210 * the operation succeed.
3211 */
William Lallemandfa892222019-07-23 16:06:08 +02003212#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003213static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3214 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003215{
Emeric Brun7a883362019-10-17 13:27:40 +02003216 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02003217 DH *dh = NULL;
3218
William Lallemanda8c73742019-07-31 18:31:34 +02003219 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003220 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02003221 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
3222 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3223 err && *err ? *err : "", path);
3224#if defined(SSL_CTX_set_dh_auto)
3225 SSL_CTX_set_dh_auto(ctx, 1);
3226 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3227 err && *err ? *err : "");
3228#else
3229 memprintf(err, "%s, DH ciphers won't be available.\n",
3230 err && *err ? *err : "");
3231#endif
3232 ret |= ERR_WARN;
3233 goto end;
3234 }
William Lallemandfa892222019-07-23 16:06:08 +02003235
3236 if (ssl_dh_ptr_index >= 0) {
3237 /* store a pointer to the DH params to avoid complaining about
3238 ssl-default-dh-param not being set for this SSL_CTX */
3239 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3240 }
3241 }
3242 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003243 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3244 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3245 err && *err ? *err : "", path);
3246#if defined(SSL_CTX_set_dh_auto)
3247 SSL_CTX_set_dh_auto(ctx, 1);
3248 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3249 err && *err ? *err : "");
3250#else
3251 memprintf(err, "%s, DH ciphers won't be available.\n",
3252 err && *err ? *err : "");
3253#endif
3254 ret |= ERR_WARN;
3255 goto end;
3256 }
William Lallemandfa892222019-07-23 16:06:08 +02003257 }
3258 else {
3259 /* Clear openssl global errors stack */
3260 ERR_clear_error();
3261
Willy Tarreau6d27a922020-11-05 19:38:05 +01003262 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003263 /* we are limited to DH parameter of 1024 bits anyway */
3264 if (local_dh_1024 == NULL)
3265 local_dh_1024 = ssl_get_dh_1024();
3266
Emeric Brun7a883362019-10-17 13:27:40 +02003267 if (local_dh_1024 == NULL) {
3268 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3269 err && *err ? *err : "", path);
3270 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003271 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003272 }
William Lallemandfa892222019-07-23 16:06:08 +02003273
Emeric Bruna9363eb2019-10-17 14:53:03 +02003274 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3275 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3276 err && *err ? *err : "", path);
3277#if defined(SSL_CTX_set_dh_auto)
3278 SSL_CTX_set_dh_auto(ctx, 1);
3279 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3280 err && *err ? *err : "");
3281#else
3282 memprintf(err, "%s, DH ciphers won't be available.\n",
3283 err && *err ? *err : "");
3284#endif
3285 ret |= ERR_WARN;
3286 goto end;
3287 }
William Lallemandfa892222019-07-23 16:06:08 +02003288 }
3289 else {
3290 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3291 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003292 }
3293
William Lallemandf9568fc2019-10-16 18:27:58 +02003294end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003295 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003296 return ret;
3297}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003298#endif
William Lallemandfa892222019-07-23 16:06:08 +02003299
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003300
3301/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003302 * Returns a bitfield containing the flags:
3303 * ERR_FATAL in any fatal error case
3304 * ERR_ALERT if the reason of the error is available in err
3305 * ERR_WARN if a warning is available into err
3306 * The value 0 means there is no error nor warning and
3307 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003308 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003309static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3310 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003311{
Emeric Bruna96b5822019-10-17 13:25:14 +02003312 int errcode = 0;
3313
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003314 if (find_chain == NULL) {
3315 errcode |= ERR_FATAL;
3316 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003317 }
3318
3319 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3320 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3321 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003322 errcode |= ERR_ALERT | ERR_FATAL;
3323 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003324 }
3325
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003326 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003327 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003328 } else {
3329 /* Find Certificate Chain in global */
3330 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003331 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003332 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003333 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003334 }
William Lallemand85888572020-02-27 14:48:35 +01003335
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003336 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003337 /* always put a null chain stack in the SSL_CTX so it does not
3338 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003339 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003340 }
3341
William Lallemandf187ce62020-06-02 18:27:20 +02003342 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003343#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003344 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003345 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3346 err && *err ? *err : "", path);
3347 errcode |= ERR_ALERT | ERR_FATAL;
3348 goto end;
3349 }
William Lallemandf187ce62020-06-02 18:27:20 +02003350#else
3351 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003352 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003353 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003354 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003355 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003356 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003357 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3358 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003359 X509_free(ca);
3360 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003361 errcode |= ERR_ALERT | ERR_FATAL;
3362 goto end;
3363 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003364 }
William Lallemandf187ce62020-06-02 18:27:20 +02003365#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003366
William Lallemand9a1d8392020-08-10 17:28:23 +02003367#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003368 /* remove the Root CA from the SSL_CTX if the option is activated */
3369 if (global_ssl.skip_self_issued_ca) {
3370 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3371 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3372 err && *err ? *err : "", path);
3373 errcode |= ERR_ALERT | ERR_FATAL;
3374 goto end;
3375 }
3376 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003377#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003378
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003379end:
3380 return errcode;
3381}
3382
3383
3384/* Loads the info in ckch into ctx
3385 * Returns a bitfield containing the flags:
3386 * ERR_FATAL in any fatal error case
3387 * ERR_ALERT if the reason of the error is available in err
3388 * ERR_WARN if a warning is available into err
3389 * The value 0 means there is no error nor warning and
3390 * the operation succeed.
3391 */
3392static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3393{
3394 int errcode = 0;
3395 STACK_OF(X509) *find_chain = NULL;
3396
3397 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3398 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3399 err && *err ? *err : "", path);
3400 errcode |= ERR_ALERT | ERR_FATAL;
3401 return errcode;
3402 }
3403
3404 /* Load certificate chain */
3405 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3406 if (errcode & ERR_CODE)
3407 goto end;
3408
William Lallemandfa892222019-07-23 16:06:08 +02003409#ifndef OPENSSL_NO_DH
3410 /* store a NULL pointer to indicate we have not yet loaded
3411 a custom DH param file */
3412 if (ssl_dh_ptr_index >= 0) {
3413 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3414 }
3415
Emeric Brun7a883362019-10-17 13:27:40 +02003416 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3417 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003418 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3419 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003420 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003421 }
3422#endif
3423
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003424#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003425 if (sctl_ex_index >= 0 && ckch->sctl) {
3426 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3427 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003428 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003429 errcode |= ERR_ALERT | ERR_FATAL;
3430 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003431 }
3432 }
3433#endif
3434
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003435#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003436 /* Load OCSP Info into context */
3437 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003438 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003439 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",
3440 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003441 errcode |= ERR_ALERT | ERR_FATAL;
3442 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003443 }
3444 }
William Lallemand246c0242019-10-11 08:59:13 +02003445#endif
3446
Emeric Bruna96b5822019-10-17 13:25:14 +02003447 end:
3448 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003449}
3450
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003451
3452/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3453 * Returns a bitfield containing the flags:
3454 * ERR_FATAL in any fatal error case
3455 * ERR_ALERT if the reason of the error is available in err
3456 * ERR_WARN if a warning is available into err
3457 * The value 0 means there is no error nor warning and
3458 * the operation succeed.
3459 */
3460static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3461 SSL_CTX *ctx, char **err)
3462{
3463 int errcode = 0;
3464 STACK_OF(X509) *find_chain = NULL;
3465
3466 /* Load the private key */
3467 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3468 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3469 err && *err ? *err : "", path);
3470 errcode |= ERR_ALERT | ERR_FATAL;
3471 }
3472
3473 /* Load certificate chain */
3474 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3475 if (errcode & ERR_CODE)
3476 goto end;
3477
3478 if (SSL_CTX_check_private_key(ctx) <= 0) {
3479 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3480 err && *err ? *err : "", path);
3481 errcode |= ERR_ALERT | ERR_FATAL;
3482 }
3483
3484end:
3485 return errcode;
3486}
3487
3488
William Lallemand614ca0d2019-10-07 13:52:11 +02003489/*
3490 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003491 *
3492 * Returns a bitfield containing the flags:
3493 * ERR_FATAL in any fatal error case
3494 * ERR_ALERT if the reason of the error is available in err
3495 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003496 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003497int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003498 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003499{
William Lallemandc9402072019-05-15 15:33:54 +02003500 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003501 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003502 int order = 0;
3503 X509_NAME *xname;
3504 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003505 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003506 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003507#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3508 STACK_OF(GENERAL_NAME) *names;
3509#endif
William Lallemand36b84632019-07-18 19:28:17 +02003510 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003511 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003512 int errcode = 0;
3513
3514 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003515
William Lallemande3af8fb2019-10-08 11:36:53 +02003516 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003517 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003518
William Lallemande3af8fb2019-10-08 11:36:53 +02003519 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003520
William Lallemandc9402072019-05-15 15:33:54 +02003521 ctx = SSL_CTX_new(SSLv23_server_method());
3522 if (!ctx) {
3523 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3524 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003525 errcode |= ERR_ALERT | ERR_FATAL;
3526 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003527 }
3528
Emeric Bruna96b5822019-10-17 13:25:14 +02003529 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3530 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003531 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003532
3533 ckch_inst = ckch_inst_new();
3534 if (!ckch_inst) {
3535 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3536 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003537 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003538 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003539 }
3540
William Lallemand36b84632019-07-18 19:28:17 +02003541 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003542 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003543 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003544 switch(EVP_PKEY_base_id(pkey)) {
3545 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003546 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003547 break;
3548 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003549 kinfo.sig = TLSEXT_signature_ecdsa;
3550 break;
3551 case EVP_PKEY_DSA:
3552 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003553 break;
3554 }
3555 EVP_PKEY_free(pkey);
3556 }
3557
Emeric Brun50bcecc2013-04-22 13:05:23 +02003558 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003559 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003560 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 +02003561 if (order < 0) {
3562 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003563 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003564 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003565 }
3566 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003567 }
3568 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003569#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003570 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003571 if (names) {
3572 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3573 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3574 if (name->type == GEN_DNS) {
3575 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003576 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003577 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003578 if (order < 0) {
3579 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003580 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003581 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003582 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003583 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003584 }
3585 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003586 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003587 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003588#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003589 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003590 i = -1;
3591 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3592 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003593 ASN1_STRING *value;
3594
3595 value = X509_NAME_ENTRY_get_data(entry);
3596 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003597 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003598 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003599 if (order < 0) {
3600 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003601 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003602 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003603 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003604 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003605 }
3606 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003607 /* we must not free the SSL_CTX anymore below, since it's already in
3608 * the tree, so it will be discovered and cleaned in time.
3609 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003610
Emeric Brunfc0421f2012-09-07 17:30:07 +02003611#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003612 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003613 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3614 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003615 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003616 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003617 }
3618#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003619 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003620 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003621 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003622 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003623 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003624 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003625 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003626
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003627 /* Always keep a reference to the newly constructed SSL_CTX in the
3628 * instance. This way if the instance has no SNIs, the SSL_CTX will
3629 * still be linked. */
3630 SSL_CTX_up_ref(ctx);
3631 ckch_inst->ctx = ctx;
3632
William Lallemand9117de92019-10-04 00:29:42 +02003633 /* everything succeed, the ckch instance can be used */
3634 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003635 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003636 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003637
William Lallemand02e19a52020-04-08 16:11:26 +02003638 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3639
Emeric Brun054563d2019-10-17 13:16:58 +02003640 *ckchi = ckch_inst;
3641 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003642
3643error:
3644 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003645 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003646 if (ckch_inst->is_default)
3647 SSL_CTX_free(ctx);
3648
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003649 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003650 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003651 }
William Lallemandd9199372019-10-04 15:37:05 +02003652 SSL_CTX_free(ctx);
3653
Emeric Brun054563d2019-10-17 13:16:58 +02003654 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003655}
3656
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003657
3658/*
3659 * This function allocate a ckch_inst that will be used on the backend side
3660 * (server line)
3661 *
3662 * Returns a bitfield containing the flags:
3663 * ERR_FATAL in any fatal error case
3664 * ERR_ALERT if the reason of the error is available in err
3665 * ERR_WARN if a warning is available into err
3666 */
3667int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003668 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003669{
3670 SSL_CTX *ctx;
3671 struct cert_key_and_chain *ckch;
3672 struct ckch_inst *ckch_inst = NULL;
3673 int errcode = 0;
3674
3675 *ckchi = NULL;
3676
3677 if (!ckchs || !ckchs->ckch)
3678 return ERR_FATAL;
3679
3680 ckch = ckchs->ckch;
3681
3682 ctx = SSL_CTX_new(SSLv23_client_method());
3683 if (!ctx) {
3684 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3685 err && *err ? *err : "", path);
3686 errcode |= ERR_ALERT | ERR_FATAL;
3687 goto error;
3688 }
3689
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003690 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3691 if (errcode & ERR_CODE)
3692 goto error;
3693
3694 ckch_inst = ckch_inst_new();
3695 if (!ckch_inst) {
3696 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3697 err && *err ? *err : "", path);
3698 errcode |= ERR_ALERT | ERR_FATAL;
3699 goto error;
3700 }
3701
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003702 /* everything succeed, the ckch instance can be used */
3703 ckch_inst->bind_conf = NULL;
3704 ckch_inst->ssl_conf = NULL;
3705 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003706 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003707 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003708
3709 *ckchi = ckch_inst;
3710 return errcode;
3711
3712error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003713 SSL_CTX_free(ctx);
3714
3715 return errcode;
3716}
3717
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003718/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003719static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3720 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003721 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003722{
Emeric Brun054563d2019-10-17 13:16:58 +02003723 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003724
3725 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003726 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 +02003727
Emeric Brun054563d2019-10-17 13:16:58 +02003728 if (errcode & ERR_CODE)
3729 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003730
William Lallemand24bde432020-03-09 16:48:43 +01003731 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003732
3733 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003734 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003735 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003736}
3737
William Lallemanddb26e2b2021-01-26 12:01:46 +01003738/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3739 * fill the SSL_CTX of the server.
3740 *
3741 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003742static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003743 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003744{
3745 int errcode = 0;
3746
3747 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003748 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003749
3750 if (errcode & ERR_CODE)
3751 return errcode;
3752
William Lallemanddb26e2b2021-01-26 12:01:46 +01003753 (*ckch_inst)->server = server;
3754 /* Keep the reference to the SSL_CTX in the server. */
3755 SSL_CTX_up_ref((*ckch_inst)->ctx);
3756 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003757 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003758 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003759 return errcode;
3760}
3761
William Lallemand6be66ec2020-03-06 22:26:32 +01003762
William Lallemand4c68bba2020-03-30 18:45:10 +02003763
3764
3765/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3766 * done once. Zero is returned if the operation fails. No error is returned
3767 * if the random is said as not implemented, because we expect that openssl
3768 * will use another method once needed.
3769 */
Amaury Denoyellec593bcd2021-05-19 15:35:29 +02003770int ssl_initialize_random(void)
William Lallemand4c68bba2020-03-30 18:45:10 +02003771{
3772 unsigned char random;
3773 static int random_initialized = 0;
3774
3775 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3776 random_initialized = 1;
3777
3778 return random_initialized;
3779}
3780
William Lallemand2954c472020-03-06 21:54:13 +01003781/* Load a crt-list file, this is done in 2 parts:
3782 * - store the content of the file in a crtlist structure with crtlist_entry structures
3783 * - generate the instances by iterating on entries in the crtlist struct
3784 *
3785 * Nothing is locked there, this function is used in the configuration parser.
3786 *
3787 * Returns a set of ERR_* flags possibly with an error in <err>.
3788 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003789int 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 +01003790{
3791 struct crtlist *crtlist = NULL;
3792 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003793 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003794 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003795 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003796 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003797
William Lallemand79d31ec2020-03-25 15:10:49 +01003798 bind_conf_node = malloc(sizeof(*bind_conf_node));
3799 if (!bind_conf_node) {
3800 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3801 cfgerr |= ERR_FATAL | ERR_ALERT;
3802 goto error;
3803 }
3804 bind_conf_node->next = NULL;
3805 bind_conf_node->bind_conf = bind_conf;
3806
William Lallemand41ca9302020-04-08 13:15:18 +02003807 /* strip trailing slashes, including first one */
3808 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3809 *end = 0;
3810
William Lallemand2954c472020-03-06 21:54:13 +01003811 /* look for an existing crtlist or create one */
3812 eb = ebst_lookup(&crtlists_tree, file);
3813 if (eb) {
3814 crtlist = ebmb_entry(eb, struct crtlist, node);
3815 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003816 /* load a crt-list OR a directory */
3817 if (dir)
3818 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3819 else
3820 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3821
William Lallemand2954c472020-03-06 21:54:13 +01003822 if (!(cfgerr & ERR_CODE))
3823 ebst_insert(&crtlists_tree, &crtlist->node);
3824 }
3825
3826 if (cfgerr & ERR_CODE) {
3827 cfgerr |= ERR_FATAL | ERR_ALERT;
3828 goto error;
3829 }
3830
3831 /* generates ckch instance from the crtlist_entry */
3832 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3833 struct ckch_store *store;
3834 struct ckch_inst *ckch_inst = NULL;
3835
3836 store = entry->node.key;
3837 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3838 if (cfgerr & ERR_CODE) {
3839 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3840 goto error;
3841 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003842 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003843 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003844 }
William Lallemand2954c472020-03-06 21:54:13 +01003845
William Lallemand79d31ec2020-03-25 15:10:49 +01003846 /* add the bind_conf to the list */
3847 bind_conf_node->next = crtlist->bind_conf;
3848 crtlist->bind_conf = bind_conf_node;
3849
William Lallemand2954c472020-03-06 21:54:13 +01003850 return cfgerr;
3851error:
3852 {
William Lallemand49398312020-03-30 17:01:33 +02003853 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003854 struct ckch_inst *inst, *s_inst;
3855
William Lallemand49398312020-03-30 17:01:33 +02003856 lastentry = entry; /* which entry we tried to generate last */
3857 if (lastentry) {
3858 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3859 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3860 break;
3861
3862 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003863
William Lallemand49398312020-03-30 17:01:33 +02003864 /* this was not generated for this bind_conf, skip */
3865 if (inst->bind_conf != bind_conf)
3866 continue;
3867
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003868 /* free the sni_ctx and instance */
3869 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003870 }
William Lallemand2954c472020-03-06 21:54:13 +01003871 }
William Lallemand2954c472020-03-06 21:54:13 +01003872 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003873 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003874 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003875 return cfgerr;
3876}
3877
William Lallemand06b22a82020-03-16 14:45:55 +01003878/* Returns a set of ERR_* flags possibly with an error in <err>. */
3879int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3880{
3881 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003882 int cfgerr = 0;
3883 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003884 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003885 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003886
3887 if ((ckchs = ckchs_lookup(path))) {
3888 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003889 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3890 found++;
3891 } else if (stat(path, &buf) == 0) {
3892 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003893 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003894 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003895 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003896 cfgerr |= ERR_ALERT | ERR_FATAL;
3897 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003898 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003899 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003900 }
3901 } else {
3902 /* stat failed, could be a bundle */
3903 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003904 char fp[MAXPATHLEN+1] = {0};
3905 int n = 0;
3906
3907 /* Load all possible certs and keys in separate ckch_store */
3908 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3909 struct stat buf;
3910 int ret;
3911
3912 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3913 if (ret > sizeof(fp))
3914 continue;
3915
3916 if ((ckchs = ckchs_lookup(fp))) {
3917 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003918 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003919 } else {
3920 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003921 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003922 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003923 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003924 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003925 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3926 }
3927 }
3928 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003929#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3930 if (found) {
3931 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3932 err && *err ? *err : "", path);
3933 cfgerr |= ERR_ALERT | ERR_FATAL;
3934 }
3935#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003936 }
3937 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003938 if (!found) {
3939 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3940 err && *err ? *err : "", path, strerror(errno));
3941 cfgerr |= ERR_ALERT | ERR_FATAL;
3942 }
William Lallemand06b22a82020-03-16 14:45:55 +01003943
3944 return cfgerr;
3945}
3946
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003947
3948/* Create a full ssl context and ckch instance that will be used for a specific
3949 * backend server (server configuration line).
3950 * Returns a set of ERR_* flags possibly with an error in <err>.
3951 */
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003952int 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 +01003953{
3954 struct stat buf;
3955 int cfgerr = 0;
3956 struct ckch_store *ckchs;
3957 int found = 0; /* did we found a file to load ? */
3958
3959 if ((ckchs = ckchs_lookup(path))) {
3960 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003961 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003962 found++;
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003963 } else {
3964 if (!create_if_none) {
3965 memprintf(err, "%sunable to stat SSL certificate '%s'.\n",
3966 err && *err ? *err : "", path);
3967 cfgerr |= ERR_ALERT | ERR_FATAL;
3968 goto out;
3969 }
3970
3971 if (stat(path, &buf) == 0) {
3972 /* We do not manage directories on backend side. */
3973 if (S_ISDIR(buf.st_mode) == 0) {
3974 ++found;
3975 ckchs = ckchs_load_cert_file(path, err);
3976 if (!ckchs)
3977 cfgerr |= ERR_ALERT | ERR_FATAL;
3978 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
3979 }
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003980 }
3981 }
3982 if (!found) {
3983 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3984 err && *err ? *err : "", path, strerror(errno));
3985 cfgerr |= ERR_ALERT | ERR_FATAL;
3986 }
3987
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003988out:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003989 return cfgerr;
3990}
3991
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003992/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003993static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003994ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003995{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003996 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003997 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003998 SSL_OP_ALL | /* all known workarounds for bugs */
3999 SSL_OP_NO_SSLv2 |
4000 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02004001 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02004002 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004003 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02004004 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004005 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004006 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004007 SSL_MODE_ENABLE_PARTIAL_WRITE |
4008 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004009 SSL_MODE_RELEASE_BUFFERS |
4010 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004011 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004012 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004013 int flags = MC_SSL_O_ALL;
4014 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02004015 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004016
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004017 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004018 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004019
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004020 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004021 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
4022 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4023 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004024 else
4025 flags = conf_ssl_methods->flags;
4026
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004027 min = conf_ssl_methods->min;
4028 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02004029
4030 /* default minimum is TLSV12, */
4031 if (!min) {
4032 if (!max || (max >= default_min_ver)) {
4033 min = default_min_ver;
4034 } else {
4035 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). "
4036 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
4037 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
4038 min = max;
4039 }
4040 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004041 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004042 if (min)
4043 flags |= (methodVersions[min].flag - 1);
4044 if (max)
4045 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004046 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004047 min = max = CONF_TLSV_NONE;
4048 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004049 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004050 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004051 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004052 if (min) {
4053 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004054 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
4055 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4056 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4057 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004058 hole = 0;
4059 }
4060 max = i;
4061 }
4062 else {
4063 min = max = i;
4064 }
4065 }
4066 else {
4067 if (min)
4068 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004069 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004070 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004071 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4072 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004073 cfgerr += 1;
4074 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004075 /* save real min/max in bind_conf */
4076 conf_ssl_methods->min = min;
4077 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004078
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004079#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004080 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004081 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004082 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004083 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004084 else
William Lallemandd0712f32020-06-11 17:34:00 +02004085 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
4086 /* clear every version flags in case SSL_CTX_new()
4087 * returns an SSL_CTX with disabled versions */
4088 SSL_CTX_clear_options(ctx, methodVersions[i].option);
4089
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004090 if (flags & methodVersions[i].flag)
4091 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02004092
4093 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004094#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004095 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004096 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4097 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02004098#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004099
4100 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
4101 options |= SSL_OP_NO_TICKET;
4102 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
4103 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08004104
4105#ifdef SSL_OP_NO_RENEGOTIATION
4106 options |= SSL_OP_NO_RENEGOTIATION;
4107#endif
4108
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004109 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004110
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004111#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004112 if (global_ssl.async)
4113 mode |= SSL_MODE_ASYNC;
4114#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004115 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004116 if (global_ssl.life_time)
4117 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004118
4119#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
4120#ifdef OPENSSL_IS_BORINGSSL
4121 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
4122 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05004123#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01004124 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01004125 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02004126 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
4127 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004128#else
4129 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004130#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02004131 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004132#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004133 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004134}
4135
William Lallemand4f45bb92017-10-30 20:08:51 +01004136
4137static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
4138{
4139 if (first == block) {
4140 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4141 if (first->len > 0)
4142 sh_ssl_sess_tree_delete(sh_ssl_sess);
4143 }
4144}
4145
4146/* return first block from sh_ssl_sess */
4147static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
4148{
4149 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
4150
4151}
4152
4153/* store a session into the cache
4154 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
4155 * data: asn1 encoded session
4156 * data_len: asn1 encoded session length
4157 * Returns 1 id session was stored (else 0)
4158 */
4159static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
4160{
4161 struct shared_block *first;
4162 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
4163
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004164 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01004165 if (!first) {
4166 /* Could not retrieve enough free blocks to store that session */
4167 return 0;
4168 }
4169
4170 /* STORE the key in the first elem */
4171 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4172 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
4173 first->len = sizeof(struct sh_ssl_sess_hdr);
4174
4175 /* it returns the already existing node
4176 or current node if none, never returns null */
4177 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4178 if (oldsh_ssl_sess != sh_ssl_sess) {
4179 /* NOTE: Row couldn't be in use because we lock read & write function */
4180 /* release the reserved row */
4181 shctx_row_dec_hot(ssl_shctx, first);
4182 /* replace the previous session already in the tree */
4183 sh_ssl_sess = oldsh_ssl_sess;
4184 /* ignore the previous session data, only use the header */
4185 first = sh_ssl_sess_first_block(sh_ssl_sess);
4186 shctx_row_inc_hot(ssl_shctx, first);
4187 first->len = sizeof(struct sh_ssl_sess_hdr);
4188 }
4189
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004190 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004191 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004192 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004193 }
4194
4195 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004196
4197 return 1;
4198}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004199
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004200/* SSL callback used when a new session is created while connecting to a server */
4201static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4202{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004203 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004204 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004205
Willy Tarreau07d94e42018-09-20 10:57:52 +02004206 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004207
William Lallemand3ce6eed2021-02-08 10:43:44 +01004208 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
4209 * one cache per thread, it only prevents to flush it from the CLI in
4210 * another thread */
4211
Olivier Houcharde6060c52017-11-16 17:42:52 +01004212 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4213 int len;
4214 unsigned char *ptr;
William Lallemande18d4e82021-11-17 02:59:21 +01004215 const char *sni;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004216
Olivier Houcharde6060c52017-11-16 17:42:52 +01004217 len = i2d_SSL_SESSION(sess, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01004218 sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004219 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004220 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4221 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4222 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004223 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4224 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004225 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4226 }
4227 if (s->ssl_ctx.reused_sess[tid].ptr) {
4228 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4229 &ptr);
4230 }
William Lallemande18d4e82021-11-17 02:59:21 +01004231
4232 if (s->ssl_ctx.reused_sess[tid].sni) {
4233 /* if the new sni is empty or isn' t the same as the old one */
4234 if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) {
4235 ha_free(&s->ssl_ctx.reused_sess[tid].sni);
4236 if (sni)
4237 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4238 }
4239 } else if (sni) {
4240 /* if there wasn't an old sni but there is a new one */
4241 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4242 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004243 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004244 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004245 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004246 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004247 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004248 }
4249
4250 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004251}
4252
Olivier Houcharde6060c52017-11-16 17:42:52 +01004253
William Lallemanded0b5ad2017-10-30 19:36:36 +01004254/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004255int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004256{
4257 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4258 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4259 unsigned char *p;
4260 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004261 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004262 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004263
4264 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004265 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004266 * note: SSL_SESSION_set1_id is using
4267 * a memcpy so we need to use a different pointer
4268 * than sid_data or sid_ctx_data to avoid valgrind
4269 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004270 */
4271
4272 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004273
4274 /* copy value in an other buffer */
4275 memcpy(encid, sid_data, sid_length);
4276
4277 /* pad with 0 */
4278 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4279 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4280
4281 /* force length to zero to avoid ASN1 encoding */
4282 SSL_SESSION_set1_id(sess, encid, 0);
4283
4284 /* force length to zero to avoid ASN1 encoding */
4285 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004286
4287 /* check if buffer is large enough for the ASN1 encoded session */
4288 data_len = i2d_SSL_SESSION(sess, NULL);
4289 if (data_len > SHSESS_MAX_DATA_LEN)
4290 goto err;
4291
4292 p = encsess;
4293
4294 /* process ASN1 session encoding before the lock */
4295 i2d_SSL_SESSION(sess, &p);
4296
William Lallemanded0b5ad2017-10-30 19:36:36 +01004297
William Lallemanda3c77cf2017-10-30 23:44:40 +01004298 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004299 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004300 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004301 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004302err:
4303 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004304 SSL_SESSION_set1_id(sess, encid, sid_length);
4305 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004306
4307 return 0; /* do not increment session reference count */
4308}
4309
4310/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004311SSL_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 +01004312{
William Lallemand4f45bb92017-10-30 20:08:51 +01004313 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004314 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4315 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004316 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004317 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004318
Willy Tarreau4c19e992021-06-15 16:39:22 +02004319 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004320
4321 /* allow the session to be freed automatically by openssl */
4322 *do_copy = 0;
4323
4324 /* tree key is zeros padded sessionid */
4325 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4326 memcpy(tmpkey, key, key_len);
4327 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4328 key = tmpkey;
4329 }
4330
4331 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004332 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004333
4334 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004335 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4336 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004337 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004338 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004339 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004340 return NULL;
4341 }
4342
William Lallemand4f45bb92017-10-30 20:08:51 +01004343 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4344 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004345
William Lallemand4f45bb92017-10-30 20:08:51 +01004346 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 +01004347
William Lallemanda3c77cf2017-10-30 23:44:40 +01004348 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004349
4350 /* decode ASN1 session */
4351 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004352 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004353 /* Reset session id and session id contenxt */
4354 if (sess) {
4355 SSL_SESSION_set1_id(sess, key, key_len);
4356 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4357 }
4358
4359 return sess;
4360}
4361
William Lallemand4f45bb92017-10-30 20:08:51 +01004362
William Lallemanded0b5ad2017-10-30 19:36:36 +01004363/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004364void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004365{
William Lallemand4f45bb92017-10-30 20:08:51 +01004366 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004367 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4368 unsigned int sid_length;
4369 const unsigned char *sid_data;
4370 (void)ctx;
4371
4372 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4373 /* tree key is zeros padded sessionid */
4374 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4375 memcpy(tmpkey, sid_data, sid_length);
4376 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4377 sid_data = tmpkey;
4378 }
4379
William Lallemanda3c77cf2017-10-30 23:44:40 +01004380 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004381
4382 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004383 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4384 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004385 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004386 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004387 }
4388
4389 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004390 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004391}
4392
4393/* Set session cache mode to server and disable openssl internal cache.
4394 * Set shared cache callbacks on an ssl context.
4395 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004396void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004397{
4398 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4399
4400 if (!ssl_shctx) {
4401 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4402 return;
4403 }
4404
4405 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4406 SSL_SESS_CACHE_NO_INTERNAL |
4407 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4408
4409 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004410 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4411 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4412 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004413}
William Lallemand7d42ef52020-07-06 11:41:30 +02004414
4415/*
4416 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4417 *
4418 * The format is:
4419 * * <Label> <space> <ClientRandom> <space> <Secret>
4420 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4421 */
4422
William Lallemand722180a2021-06-09 16:46:12 +02004423#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004424void SSL_CTX_keylog(const SSL *ssl, const char *line)
4425{
4426 struct ssl_keylog *keylog;
4427 char *lastarg = NULL;
4428 char *dst = NULL;
4429
4430 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4431 if (!keylog)
4432 return;
4433
4434 lastarg = strrchr(line, ' ');
4435 if (lastarg == NULL || ++lastarg == NULL)
4436 return;
4437
4438 dst = pool_alloc(pool_head_ssl_keylog_str);
4439 if (!dst)
4440 return;
4441
4442 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4443 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4444
4445 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4446 if (keylog->client_random)
4447 goto error;
4448 keylog->client_random = dst;
4449
4450 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4451 if (keylog->client_early_traffic_secret)
4452 goto error;
4453 keylog->client_early_traffic_secret = dst;
4454
4455 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4456 if(keylog->client_handshake_traffic_secret)
4457 goto error;
4458 keylog->client_handshake_traffic_secret = dst;
4459
4460 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4461 if (keylog->server_handshake_traffic_secret)
4462 goto error;
4463 keylog->server_handshake_traffic_secret = dst;
4464
4465 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4466 if (keylog->client_traffic_secret_0)
4467 goto error;
4468 keylog->client_traffic_secret_0 = dst;
4469
4470 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4471 if (keylog->server_traffic_secret_0)
4472 goto error;
4473 keylog->server_traffic_secret_0 = dst;
4474
4475 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4476 if (keylog->early_exporter_secret)
4477 goto error;
4478 keylog->early_exporter_secret = dst;
4479
4480 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4481 if (keylog->exporter_secret)
4482 goto error;
4483 keylog->exporter_secret = dst;
4484 } else {
4485 goto error;
4486 }
4487
4488 return;
4489
4490error:
4491 pool_free(pool_head_ssl_keylog_str, dst);
4492
4493 return;
4494}
4495#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004496
William Lallemand8b453912019-11-21 15:48:10 +01004497/*
4498 * This function applies the SSL configuration on a SSL_CTX
4499 * It returns an error code and fills the <err> buffer
4500 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004501static 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 +01004502{
4503 struct proxy *curproxy = bind_conf->frontend;
4504 int cfgerr = 0;
4505 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004506 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004507 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004508#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004509 const char *conf_ciphersuites;
4510#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004511 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004512
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004513 if (ssl_conf) {
4514 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4515 int i, min, max;
4516 int flags = MC_SSL_O_ALL;
4517
4518 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004519 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4520 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004521 if (min)
4522 flags |= (methodVersions[min].flag - 1);
4523 if (max)
4524 flags |= ~((methodVersions[max].flag << 1) - 1);
4525 min = max = CONF_TLSV_NONE;
4526 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4527 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4528 if (min)
4529 max = i;
4530 else
4531 min = max = i;
4532 }
4533 /* save real min/max */
4534 conf_ssl_methods->min = min;
4535 conf_ssl_methods->max = max;
4536 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004537 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4538 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004539 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004540 }
4541 }
4542
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004543 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004544 case SSL_SOCK_VERIFY_NONE:
4545 verify = SSL_VERIFY_NONE;
4546 break;
4547 case SSL_SOCK_VERIFY_OPTIONAL:
4548 verify = SSL_VERIFY_PEER;
4549 break;
4550 case SSL_SOCK_VERIFY_REQUIRED:
4551 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4552 break;
4553 }
4554 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4555 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004556 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 +01004557 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 +01004558 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 +01004559 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004560 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004561 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004562 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004563 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004564 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004565 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004566 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4567 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4568 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4569 cfgerr |= ERR_ALERT | ERR_FATAL;
4570 }
4571 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004572 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004573 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 +02004574 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004575 }
Emeric Brun850efd52014-01-29 12:24:34 +01004576 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004577 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4578 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004579 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004580 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004581#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004582 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004583 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4584
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004585 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004586 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4587 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004588 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004589 }
Emeric Brun561e5742012-10-02 15:20:55 +02004590 else {
4591 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4592 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004593 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004594#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004595 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004596 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004597#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004598 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004599 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004600 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4601 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004602 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004603 }
4604 }
4605#endif
4606
William Lallemand4f45bb92017-10-30 20:08:51 +01004607 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004608 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4609 if (conf_ciphers &&
4610 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004611 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4612 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004613 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004614 }
4615
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004616#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004617 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4618 if (conf_ciphersuites &&
4619 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004620 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4621 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004622 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004623 }
4624#endif
4625
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004626#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004627 /* If tune.ssl.default-dh-param has not been set,
4628 neither has ssl-default-dh-file and no static DH
4629 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004630 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004631 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004632 (ssl_dh_ptr_index == -1 ||
4633 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004634 /* default to dh-param 2048 */
4635 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004636 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004637
Willy Tarreauef934602016-12-22 23:12:01 +01004638 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004639 if (local_dh_1024 == NULL) {
4640 local_dh_1024 = ssl_get_dh_1024();
4641 }
Willy Tarreauef934602016-12-22 23:12:01 +01004642 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004643 if (local_dh_2048 == NULL) {
4644 local_dh_2048 = ssl_get_dh_2048();
4645 }
Willy Tarreauef934602016-12-22 23:12:01 +01004646 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004647 if (local_dh_4096 == NULL) {
4648 local_dh_4096 = ssl_get_dh_4096();
4649 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004650 }
4651 }
4652 }
4653#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004654
Emeric Brunfc0421f2012-09-07 17:30:07 +02004655 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004656#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004657 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004658#endif
William Lallemand722180a2021-06-09 16:46:12 +02004659#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004660 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4661#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004662
Bernard Spil13c53f82018-02-15 13:34:58 +01004663#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004664 ssl_conf_cur = NULL;
4665 if (ssl_conf && ssl_conf->npn_str)
4666 ssl_conf_cur = ssl_conf;
4667 else if (bind_conf->ssl_conf.npn_str)
4668 ssl_conf_cur = &bind_conf->ssl_conf;
4669 if (ssl_conf_cur)
4670 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004671#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004672#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004673 ssl_conf_cur = NULL;
4674 if (ssl_conf && ssl_conf->alpn_str)
4675 ssl_conf_cur = ssl_conf;
4676 else if (bind_conf->ssl_conf.alpn_str)
4677 ssl_conf_cur = &bind_conf->ssl_conf;
4678 if (ssl_conf_cur)
4679 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004680#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004681#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004682 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4683 if (conf_curves) {
4684 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004685 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4686 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004687 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004688 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004689 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004690 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004691#endif /* defined(SSL_CTX_set1_curves_list) */
4692
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004693 if (!conf_curves) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004694#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004695#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004696 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004697 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4698 NULL);
4699
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004700 if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) {
4701 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4702 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
4703 cfgerr |= ERR_ALERT | ERR_FATAL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02004704 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004705#endif /* defined(SSL_CTX_set1_curves_list) */
Olivier Houchardc2aae742017-09-22 18:26:28 +02004706#else
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004707#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
4708 int i;
4709 EC_KEY *ecdh;
4710
Olivier Houchardc2aae742017-09-22 18:26:28 +02004711 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4712 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4713 ECDHE_DEFAULT_CURVE);
Emeric Brun2b58d042012-09-20 17:10:03 +02004714
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004715 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004716 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004717 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 +01004718 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004719 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004720 }
4721 else {
4722 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4723 EC_KEY_free(ecdh);
4724 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004725#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
4726#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Emeric Brun2b58d042012-09-20 17:10:03 +02004727 }
Emeric Brun2b58d042012-09-20 17:10:03 +02004728
Emeric Brunfc0421f2012-09-07 17:30:07 +02004729 return cfgerr;
4730}
4731
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004732
4733/*
4734 * Prepare the SSL_CTX based on the bind line configuration.
4735 * Since the CA file loading is made depending on the verify option of the bind
4736 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4737 * If we want to create a link between the CA file entry and the corresponding
4738 * ckch instance (for CA file hot update), it needs to be done after
4739 * ssl_sock_prepare_ctx.
4740 * Returns 0 in case of success.
4741 */
4742int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4743 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4744{
4745 int errcode = 0;
4746
4747 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4748 if (!errcode && ckch_inst)
4749 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4750
4751 return errcode;
4752}
4753
Evan Broderbe554312013-06-27 00:05:25 -07004754static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4755{
4756 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4757 size_t prefixlen, suffixlen;
4758
4759 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004760 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004761 return 1;
4762
Evan Broderbe554312013-06-27 00:05:25 -07004763 /* The rest of this logic is based on RFC 6125, section 6.4.3
4764 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4765
Emeric Bruna848dae2013-10-08 11:27:28 +02004766 pattern_wildcard = NULL;
4767 pattern_left_label_end = pattern;
4768 while (*pattern_left_label_end != '.') {
4769 switch (*pattern_left_label_end) {
4770 case 0:
4771 /* End of label not found */
4772 return 0;
4773 case '*':
4774 /* If there is more than one wildcards */
4775 if (pattern_wildcard)
4776 return 0;
4777 pattern_wildcard = pattern_left_label_end;
4778 break;
4779 }
4780 pattern_left_label_end++;
4781 }
4782
4783 /* If it's not trivial and there is no wildcard, it can't
4784 * match */
4785 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004786 return 0;
4787
4788 /* Make sure all labels match except the leftmost */
4789 hostname_left_label_end = strchr(hostname, '.');
4790 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004791 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004792 return 0;
4793
4794 /* Make sure the leftmost label of the hostname is long enough
4795 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004796 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004797 return 0;
4798
4799 /* Finally compare the string on either side of the
4800 * wildcard */
4801 prefixlen = pattern_wildcard - pattern;
4802 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004803 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4804 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004805 return 0;
4806
4807 return 1;
4808}
4809
4810static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4811{
4812 SSL *ssl;
4813 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004814 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004815 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004816 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004817
4818 int depth;
4819 X509 *cert;
4820 STACK_OF(GENERAL_NAME) *alt_names;
4821 int i;
4822 X509_NAME *cert_subject;
4823 char *str;
4824
4825 if (ok == 0)
4826 return ok;
4827
4828 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004829 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004830 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004831
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004832 /* We're checking if the provided hostnames match the desired one. The
4833 * desired hostname comes from the SNI we presented if any, or if not
4834 * provided then it may have been explicitly stated using a "verifyhost"
4835 * directive. If neither is set, we don't care about the name so the
4836 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004837 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004838 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004839 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004840 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004841 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004842 if (!servername)
4843 return ok;
4844 }
Evan Broderbe554312013-06-27 00:05:25 -07004845
4846 /* We only need to verify the CN on the actual server cert,
4847 * not the indirect CAs */
4848 depth = X509_STORE_CTX_get_error_depth(ctx);
4849 if (depth != 0)
4850 return ok;
4851
4852 /* At this point, the cert is *not* OK unless we can find a
4853 * hostname match */
4854 ok = 0;
4855
4856 cert = X509_STORE_CTX_get_current_cert(ctx);
4857 /* It seems like this might happen if verify peer isn't set */
4858 if (!cert)
4859 return ok;
4860
4861 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4862 if (alt_names) {
4863 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4864 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4865 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004866#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004867 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4868#else
Evan Broderbe554312013-06-27 00:05:25 -07004869 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004870#endif
Evan Broderbe554312013-06-27 00:05:25 -07004871 ok = ssl_sock_srv_hostcheck(str, servername);
4872 OPENSSL_free(str);
4873 }
4874 }
4875 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004876 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004877 }
4878
4879 cert_subject = X509_get_subject_name(cert);
4880 i = -1;
4881 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4882 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004883 ASN1_STRING *value;
4884 value = X509_NAME_ENTRY_get_data(entry);
4885 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004886 ok = ssl_sock_srv_hostcheck(str, servername);
4887 OPENSSL_free(str);
4888 }
4889 }
4890
Willy Tarreau71d058c2017-07-26 20:09:56 +02004891 /* report the mismatch and indicate if SNI was used or not */
4892 if (!ok && !conn->err_code)
4893 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004894 return ok;
4895}
4896
Emeric Brun94324a42012-10-11 14:00:19 +02004897/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004898int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004899{
4900 int cfgerr = 0;
William Lallemand2c776f12021-12-28 18:47:17 +01004901 SSL_CTX *ctx;
Willy Tarreaufce03112015-01-15 21:32:40 +01004902 /* Automatic memory computations need to know we use SSL there */
4903 global.ssl_used_backend = 1;
4904
4905 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004906 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004907 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004908 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02004909 cfgerr++;
4910 return cfgerr;
4911 }
4912 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004913 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004914 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004915
William Lallemand2c776f12021-12-28 18:47:17 +01004916 if (srv->ssl_ctx.client_crt) {
4917 const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1;
4918 char *err = NULL;
4919 int err_code = 0;
4920
4921 /* If there is a crt keyword there, the SSL_CTX will be created here. */
4922 err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err);
4923 if (err_code != ERR_NONE) {
4924 if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT))
4925 ha_warning("%s", err);
4926 else
4927 ha_alert("%s", err);
4928
4929 if (err_code & (ERR_FATAL|ERR_ABORT))
4930 cfgerr++;
4931 }
4932 ha_free(&err);
4933 }
4934
4935 ctx = srv->ssl_ctx.ctx;
4936
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004937 /* The context will be uninitialized if there wasn't any "cert" option
4938 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004939 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004940 ctx = SSL_CTX_new(SSLv23_client_method());
4941 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004942 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004943 cfgerr++;
4944 return cfgerr;
4945 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004946
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004947 srv->ssl_ctx.ctx = ctx;
4948 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004949
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004950 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 +01004951
4952 return cfgerr;
4953}
4954
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004955/* Initialize an SSL context that will be used on the backend side.
4956 * Returns an error count.
4957 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004958static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004959{
4960 struct proxy *curproxy = srv->proxy;
4961 int cfgerr = 0;
4962 long options =
4963 SSL_OP_ALL | /* all known workarounds for bugs */
4964 SSL_OP_NO_SSLv2 |
4965 SSL_OP_NO_COMPRESSION;
4966 long mode =
4967 SSL_MODE_ENABLE_PARTIAL_WRITE |
4968 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4969 SSL_MODE_RELEASE_BUFFERS |
4970 SSL_MODE_SMALL_BUFFERS;
4971 int verify = SSL_VERIFY_NONE;
4972 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4973 int i, min, max, hole;
4974 int flags = MC_SSL_O_ALL;
4975
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004976 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004977 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
4978 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004979 else
4980 flags = conf_ssl_methods->flags;
4981
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004982 /* Real min and max should be determinate with configuration and openssl's capabilities */
4983 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004984 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004985 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004986 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004987
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004988 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004989 min = max = CONF_TLSV_NONE;
4990 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004991 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004992 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004993 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004994 if (min) {
4995 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004996 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01004997 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4998 proxy_type_str(curproxy), curproxy->id, srv->id,
4999 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005000 hole = 0;
5001 }
5002 max = i;
5003 }
5004 else {
5005 min = max = i;
5006 }
5007 }
5008 else {
5009 if (min)
5010 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005011 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005012 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005013 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01005014 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005015 cfgerr += 1;
5016 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005017
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005018#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005019 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08005020 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005021 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005022 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005023 else
5024 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
5025 if (flags & methodVersions[i].flag)
5026 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005027#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005028 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005029 methodVersions[min].ctx_set_version(ctx, SET_MIN);
5030 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005031#endif
5032
5033 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
5034 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005035 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005036
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005037#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005038 if (global_ssl.async)
5039 mode |= SSL_MODE_ASYNC;
5040#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005041 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005042
Emeric Brun850efd52014-01-29 12:24:34 +01005043 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
5044 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01005045 switch (srv->ssl_ctx.verify) {
5046 case SSL_SOCK_VERIFY_NONE:
5047 verify = SSL_VERIFY_NONE;
5048 break;
5049 case SSL_SOCK_VERIFY_REQUIRED:
5050 verify = SSL_VERIFY_PEER;
5051 break;
5052 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005053 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02005054 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01005055 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02005056 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02005057 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005058 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005059 ha_alert("unable to set CA file '%s'.\n",
5060 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005061 cfgerr++;
5062 }
5063 }
Emeric Brun850efd52014-01-29 12:24:34 +01005064 else {
5065 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005066 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 +01005067 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005068 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01005069 cfgerr++;
5070 }
Emeric Brunef42d922012-10-11 16:11:36 +02005071#ifdef X509_V_FLAG_CRL_CHECK
5072 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005073 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02005074
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01005075 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005076 ha_alert("unable to configure CRL file '%s'.\n",
5077 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005078 cfgerr++;
5079 }
5080 else {
5081 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
5082 }
5083 }
5084#endif
5085 }
5086
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005087 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
5088 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02005089 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005090 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005091 ha_alert("unable to set SSL cipher list to '%s'.\n",
5092 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02005093 cfgerr++;
5094 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005095
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05005096#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005097 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005098 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005099 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
5100 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005101 cfgerr++;
5102 }
5103#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01005104#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
5105 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005106 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01005107#endif
5108#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5109 if (srv->ssl_ctx.alpn_str)
5110 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
5111#endif
5112
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005113
5114 return cfgerr;
5115}
5116
5117/*
5118 * Prepare the frontend's SSL_CTX based on the server line configuration.
5119 * Since the CA file loading is made depending on the verify option of the
5120 * server line, the link between the SSL_CTX and the CA file tree entry is
5121 * made here.
5122 * If we want to create a link between the CA file entry and the corresponding
5123 * ckch instance (for CA file hot update), it needs to be done after
5124 * ssl_sock_prepare_srv_ssl_ctx.
5125 * Returns an error count.
5126 */
5127int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
5128 struct ckch_inst *ckch_inst)
5129{
5130 int cfgerr = 0;
5131
5132 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
5133 if (!cfgerr && ckch_inst)
5134 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02005135
5136 return cfgerr;
5137}
5138
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005139
Frédéric Lécailleec216522020-11-23 14:33:30 +01005140/*
5141 * Create an initial CTX used to start the SSL connections.
5142 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
5143 * Returns 0 if succeeded, or something >0 if not.
5144 */
5145#ifdef USE_QUIC
5146static int ssl_initial_ctx(struct bind_conf *bind_conf)
5147{
5148 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
5149 return ssl_quic_initial_ctx(bind_conf);
5150 else
5151 return ssl_sock_initial_ctx(bind_conf);
5152}
5153#else
5154static int ssl_initial_ctx(struct bind_conf *bind_conf)
5155{
5156 return ssl_sock_initial_ctx(bind_conf);
5157}
5158#endif
5159
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005160/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005161 * be NULL, in which case nothing is done. Returns the number of errors
5162 * encountered.
5163 */
Willy Tarreau03209342016-12-22 17:08:28 +01005164int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005165{
5166 struct ebmb_node *node;
5167 struct sni_ctx *sni;
5168 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01005169 int errcode = 0;
5170 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02005171
Willy Tarreaufce03112015-01-15 21:32:40 +01005172 /* Automatic memory computations need to know we use SSL there */
5173 global.ssl_used_frontend = 1;
5174
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005175 /* Create initial_ctx used to start the ssl connection before do switchctx */
5176 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01005177 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005178 /* It should not be necessary to call this function, but it's
5179 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01005180 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005181 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
5182 }
5183 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005184 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 +01005185 }
Emeric Brun0bed9942014-10-30 19:25:24 +01005186
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005187 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005188 while (node) {
5189 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005190 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005191 /* only initialize the CTX on its first occurrence and
5192 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005193 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
5194 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005195 node = ebmb_next(node);
5196 }
5197
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005198 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005199 while (node) {
5200 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01005201 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005202 /* only initialize the CTX on its first occurrence and
5203 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005204 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005205 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005206 node = ebmb_next(node);
5207 }
William Lallemand8b453912019-11-21 15:48:10 +01005208
5209 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005210 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005211 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005212 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005213 err++;
5214 }
5215
5216 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005217 return err;
5218}
5219
Willy Tarreau55d37912016-12-21 23:38:39 +01005220/* Prepares all the contexts for a bind_conf and allocates the shared SSL
5221 * context if needed. Returns < 0 on error, 0 on success. The warnings and
5222 * alerts are directly emitted since the rest of the stack does it below.
5223 */
5224int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
5225{
5226 struct proxy *px = bind_conf->frontend;
5227 int alloc_ctx;
5228 int err;
5229
5230 if (!bind_conf->is_ssl) {
5231 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005232 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
5233 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01005234 }
5235 return 0;
5236 }
5237 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005238 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005239 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
5240 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005241 }
5242 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005243 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
5244 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005245 return -1;
5246 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005247 }
William Lallemandc61c0b32017-12-04 18:46:39 +01005248 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005249 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02005250 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
Willy Tarreau91358592021-06-15 08:08:04 +02005251 sizeof(*sh_ssl_sess_tree), (global.nbthread > 1));
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02005252 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005253 if (alloc_ctx == SHCTX_E_INIT_LOCK)
5254 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");
5255 else
5256 ha_alert("Unable to allocate SSL session cache.\n");
5257 return -1;
5258 }
5259 /* free block callback */
5260 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
5261 /* init the root tree within the extra space */
5262 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
5263 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01005264 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005265 err = 0;
5266 /* initialize all certificate contexts */
5267 err += ssl_sock_prepare_all_ctx(bind_conf);
5268
5269 /* initialize CA variables if the certificates generation is enabled */
5270 err += ssl_sock_load_ca(bind_conf);
5271
5272 return -err;
5273}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005274
William Lallemand231610a2021-12-30 11:25:43 +01005275/* release ssl context allocated for servers. Most of the field free here
5276 * must also be allocated in srv_ssl_settings_cpy() */
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005277void ssl_sock_free_srv_ctx(struct server *srv)
5278{
Olivier Houchardc7566002018-11-20 23:33:50 +01005279#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
William Lallemand231610a2021-12-30 11:25:43 +01005280 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005281#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005282#ifdef OPENSSL_NPN_NEGOTIATED
William Lallemand231610a2021-12-30 11:25:43 +01005283 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005284#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005285 if (srv->ssl_ctx.reused_sess) {
5286 int i;
5287
William Lallemande18d4e82021-11-17 02:59:21 +01005288 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaue709e822021-02-26 21:06:32 +01005289 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
William Lallemande18d4e82021-11-17 02:59:21 +01005290 ha_free(&srv->ssl_ctx.reused_sess[i].sni);
5291 }
Willy Tarreaue709e822021-02-26 21:06:32 +01005292 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005293 }
5294
Willy Tarreaue709e822021-02-26 21:06:32 +01005295 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005296 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005297 srv->ssl_ctx.ctx = NULL;
5298 }
William Lallemand231610a2021-12-30 11:25:43 +01005299
5300 ha_free(&srv->ssl_ctx.ca_file);
5301 ha_free(&srv->ssl_ctx.crl_file);
5302 ha_free(&srv->ssl_ctx.client_crt);
5303 ha_free(&srv->ssl_ctx.verify_host);
5304#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
5305 ha_free(&srv->sni_expr);
5306#endif
5307 ha_free(&srv->ssl_ctx.ciphers);
5308#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
5309 ha_free(&srv->ssl_ctx.ciphersuites);
5310#endif
William Lallemande69563f2021-12-30 14:45:19 +01005311 /* If there is a certificate we must unlink the ckch instance */
5312 ckch_inst_free(srv->ssl_ctx.inst);
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005313}
5314
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005315/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005316 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5317 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005318void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005319{
5320 struct ebmb_node *node, *back;
5321 struct sni_ctx *sni;
5322
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005323 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005324 while (node) {
5325 sni = ebmb_entry(node, struct sni_ctx, name);
5326 back = ebmb_next(node);
5327 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005328 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005329 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005330 free(sni);
5331 node = back;
5332 }
5333
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005334 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005335 while (node) {
5336 sni = ebmb_entry(node, struct sni_ctx, name);
5337 back = ebmb_next(node);
5338 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005339 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005340 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005341 free(sni);
5342 node = back;
5343 }
William Lallemandb2408692020-06-24 09:54:29 +02005344
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005345 SSL_CTX_free(bind_conf->initial_ctx);
5346 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005347 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005348 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005349 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005350 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005351}
William Lallemandb2408692020-06-24 09:54:29 +02005352
5353
5354void ssl_sock_deinit()
5355{
5356 crtlist_deinit(); /* must be free'd before the ckchs */
5357 ckch_deinit();
5358}
5359REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005360
Willy Tarreau795cdab2016-12-22 17:30:54 +01005361/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5362void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5363{
5364 ssl_sock_free_ca(bind_conf);
5365 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005366 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005367 free(bind_conf->ca_sign_file);
5368 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005369 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005370 free(bind_conf->keys_ref->filename);
5371 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005372 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005373 free(bind_conf->keys_ref);
5374 }
5375 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005376 bind_conf->ca_sign_pass = NULL;
5377 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005378}
5379
Christopher Faulet31af49d2015-06-09 17:29:50 +02005380/* Load CA cert file and private key used to generate certificates */
5381int
Willy Tarreau03209342016-12-22 17:08:28 +01005382ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005383{
Willy Tarreau03209342016-12-22 17:08:28 +01005384 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005385 struct cert_key_and_chain *ckch = NULL;
5386 int ret = 0;
5387 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005388
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005389 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005390 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005391
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005392#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005393 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005394 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005395 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005396 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005397 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005398#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005399
Christopher Faulet31af49d2015-06-09 17:29:50 +02005400 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005401 ha_alert("Proxy '%s': cannot enable certificate generation, "
5402 "no CA certificate File configured at [%s:%d].\n",
5403 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005404 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005405 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005406
Shimi Gersner5846c492020-08-23 13:58:12 +03005407 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005408 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005409 if (!ckch) {
5410 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5411 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5412 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005413 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005414
5415 /* Try to parse file */
5416 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5417 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5418 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005419 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005420 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005421 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005422
5423 /* Fail if missing cert or pkey */
5424 if ((!ckch->cert) || (!ckch->key)) {
5425 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5426 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5427 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005428 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005429
Shimi Gersner5846c492020-08-23 13:58:12 +03005430 /* Final assignment to bind */
5431 bind_conf->ca_sign_ckch = ckch;
5432 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005433
Shimi Gersner5846c492020-08-23 13:58:12 +03005434 failed:
5435 if (ckch) {
5436 ssl_sock_free_cert_key_and_chain_contents(ckch);
5437 free(ckch);
5438 }
5439
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005440 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005441 ret++;
5442 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005443}
5444
5445/* Release CA cert and private key used to generate certificated */
5446void
5447ssl_sock_free_ca(struct bind_conf *bind_conf)
5448{
Shimi Gersner5846c492020-08-23 13:58:12 +03005449 if (bind_conf->ca_sign_ckch) {
5450 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005451 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005452 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005453}
5454
Emeric Brun46591952012-05-18 15:47:34 +02005455/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005456 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5457 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5458 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5459 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005460 * 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 +01005461 * as parameters to this function.
5462 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5463 * CO_ER_SSL_NO_MEM.
5464 */
5465int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5466 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5467{
5468 int retry = 1;
5469
5470 retry:
5471 /* Alloc a new SSL session. */
5472 *ssl = SSL_new(ssl_ctx);
5473 if (!*ssl) {
5474 if (!retry--)
5475 goto err;
5476
5477 pool_gc(NULL);
5478 goto retry;
5479 }
5480
5481 *bio = BIO_new(bio_meth);
5482 if (!*bio) {
5483 SSL_free(*ssl);
5484 *ssl = NULL;
5485 if (!retry--)
5486 goto err;
5487
5488 pool_gc(NULL);
5489 goto retry;
5490 }
5491
5492 BIO_set_data(*bio, ctx);
5493 SSL_set_bio(*ssl, *bio, *bio);
5494
5495 /* set connection pointer. */
5496 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5497 SSL_free(*ssl);
5498 *ssl = NULL;
5499 if (!retry--)
5500 goto err;
5501
5502 pool_gc(NULL);
5503 goto retry;
5504 }
5505
5506 return 0;
5507
5508 err:
5509 conn->err_code = CO_ER_SSL_NO_MEM;
5510 return -1;
5511}
5512
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005513/* This function is called when all the XPRT have been initialized. We can
5514 * now attempt to start the SSL handshake.
5515 */
5516static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5517{
5518 struct ssl_sock_ctx *ctx = xprt_ctx;
5519
5520 if (ctx->xprt->start) {
5521 int ret;
5522
5523 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5524 if (ret < 0)
5525 return ret;
5526 }
5527 tasklet_wakeup(ctx->wait_event.tasklet);
5528
5529 return 0;
5530}
5531
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005532/*
Emeric Brun46591952012-05-18 15:47:34 +02005533 * This function is called if SSL * context is not yet allocated. The function
5534 * is designed to be called before any other data-layer operation and sets the
5535 * handshake flag on the connection. It is safe to call it multiple times.
5536 * It returns 0 on success and -1 in error case.
5537 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005538static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005539{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005540 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005541 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005542 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005543 return 0;
5544
Olivier Houchard66ab4982019-02-26 18:37:15 +01005545 ctx = pool_alloc(ssl_sock_ctx_pool);
5546 if (!ctx) {
5547 conn->err_code = CO_ER_SSL_NO_MEM;
5548 return -1;
5549 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005550 ctx->wait_event.tasklet = tasklet_new();
5551 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005552 conn->err_code = CO_ER_SSL_NO_MEM;
5553 pool_free(ssl_sock_ctx_pool, ctx);
5554 return -1;
5555 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005556 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5557 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005558 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005559 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005560 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005561 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005562 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005563 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005564 ctx->xprt_st = 0;
5565 ctx->xprt_ctx = NULL;
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005566 ctx->error_code = 0;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005567
5568 /* Only work with sockets for now, this should be adapted when we'll
5569 * add QUIC support.
5570 */
5571 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005572 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005573 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5574 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005575 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005576
Willy Tarreau82531f62021-10-06 12:15:18 +02005577 if (global.maxsslconn && global.sslconns >= global.maxsslconn) {
Willy Tarreau20879a02012-12-03 16:32:10 +01005578 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005579 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005580 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005581
Emeric Brun46591952012-05-18 15:47:34 +02005582 /* If it is in client mode initiate SSL session
5583 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005584 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005585 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5586 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005587 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005588
Olivier Houchard66ab4982019-02-26 18:37:15 +01005589 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005590 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005591 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5592 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5593 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 +01005594 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005595 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005596 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005597 } else if (sess) {
5598 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005599 }
5600 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005601 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005602
Emeric Brun46591952012-05-18 15:47:34 +02005603 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005604 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005605
Willy Tarreau82531f62021-10-06 12:15:18 +02005606 _HA_ATOMIC_INC(&global.sslconns);
5607 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005608 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005609 return 0;
5610 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005611 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005612 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005613
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005614 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5615 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005616 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005617
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005618#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005619 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005620 b_alloc(&ctx->early_buf);
5621 SSL_set_max_early_data(ctx->ssl,
5622 /* Only allow early data if we managed to allocate
5623 * a buffer.
5624 */
5625 (!b_is_null(&ctx->early_buf)) ?
5626 global.tune.bufsize - global.tune.maxrewrite : 0);
5627 }
5628#endif
5629
Olivier Houchard66ab4982019-02-26 18:37:15 +01005630 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005631
Emeric Brun46591952012-05-18 15:47:34 +02005632 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005633 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005634#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005635 if (bc->ssl_conf.early_data)
5636 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005637#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005638
Willy Tarreau82531f62021-10-06 12:15:18 +02005639 _HA_ATOMIC_INC(&global.sslconns);
5640 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005641 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005642 return 0;
5643 }
5644 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005645 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005646err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005647 if (ctx && ctx->wait_event.tasklet)
5648 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005649 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005650 return -1;
5651}
5652
5653
5654/* This is the callback which is used when an SSL handshake is pending. It
5655 * updates the FD status if it wants some polling before being called again.
5656 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5657 * otherwise it returns non-zero and removes itself from the connection's
5658 * flags (the bit is provided in <flag> by the caller).
5659 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005660static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005661{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005662 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005663 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005664 struct ssl_counters *counters = NULL;
5665 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005666 struct listener *li;
5667 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005668 socklen_t lskerr;
5669 int skerr;
5670
Emeric Brun46591952012-05-18 15:47:34 +02005671
Willy Tarreau3c728722014-01-23 13:50:42 +01005672 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005673 return 0;
5674
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005675 /* get counters */
5676 switch (obj_type(conn->target)) {
5677 case OBJ_TYPE_LISTENER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005678 li = __objt_listener(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005679 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5680 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5681 &ssl_stats_module);
5682 break;
5683
5684 case OBJ_TYPE_SERVER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005685 srv = __objt_server(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005686 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5687 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5688 &ssl_stats_module);
5689 break;
5690
5691 default:
5692 break;
5693 }
5694
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005695 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005696 goto out_error;
5697
Willy Tarreau06300382021-02-02 15:42:25 +01005698 /* don't start calculating a handshake on a dead connection */
5699 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5700 goto out_error;
5701
5702 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5703 * status from the lower layers, so let's check the FD directly. Ideally
5704 * the xprt layers should provide some status indicating their knowledge
5705 * of shutdowns or error.
5706 */
5707 skerr = 0;
5708 lskerr = sizeof(skerr);
5709 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5710 skerr != 0)
5711 goto out_error;
5712
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005713#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005714 /*
5715 * Check if we have early data. If we do, we have to read them
5716 * before SSL_do_handshake() is called, And there's no way to
5717 * detect early data, except to try to read them
5718 */
5719 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005720 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005721
Olivier Houchard54907bb2019-12-19 15:02:39 +01005722 while (1) {
5723 ret = SSL_read_early_data(ctx->ssl,
5724 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5725 &read_data);
5726 if (ret == SSL_READ_EARLY_DATA_ERROR)
5727 goto check_error;
5728 if (read_data > 0) {
5729 conn->flags |= CO_FL_EARLY_DATA;
5730 b_add(&ctx->early_buf, read_data);
5731 }
5732 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5733 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5734 if (!b_data(&ctx->early_buf))
5735 b_free(&ctx->early_buf);
5736 break;
5737 }
5738 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005739 }
5740#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005741 /* If we use SSL_do_handshake to process a reneg initiated by
5742 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5743 * Usually SSL_write and SSL_read are used and process implicitly
5744 * the reneg handshake.
5745 * Here we use SSL_peek as a workaround for reneg.
5746 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005747 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005748 char c;
5749
Olivier Houchard66ab4982019-02-26 18:37:15 +01005750 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005751 if (ret <= 0) {
5752 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005753 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005754
Emeric Brun674b7432012-11-08 19:21:55 +01005755 if (ret == SSL_ERROR_WANT_WRITE) {
5756 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005757 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005758 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005759 return 0;
5760 }
5761 else if (ret == SSL_ERROR_WANT_READ) {
5762 /* handshake may have been completed but we have
5763 * no more data to read.
5764 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005765 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005766 ret = 1;
5767 goto reneg_ok;
5768 }
5769 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005770 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005771 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005772 return 0;
5773 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005774#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005775 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005776 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005777 return 0;
5778 }
5779#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005780 else if (ret == SSL_ERROR_SYSCALL) {
5781 /* if errno is null, then connection was successfully established */
5782 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5783 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005784 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005785#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5786 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005787 conn->err_code = CO_ER_SSL_HANDSHAKE;
5788#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005789 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005790#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005791 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005792 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005793 empty_handshake = state == TLS_ST_BEFORE;
5794#else
Lukas Tribus49799162019-07-08 14:29:15 +02005795 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5796 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005797#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005798 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005799 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005800 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005801 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5802 else
5803 conn->err_code = CO_ER_SSL_EMPTY;
5804 }
5805 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005806 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005807 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5808 else
5809 conn->err_code = CO_ER_SSL_ABORT;
5810 }
5811 }
5812 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005813 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005814 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005815 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005816 conn->err_code = CO_ER_SSL_HANDSHAKE;
5817 }
Lukas Tribus49799162019-07-08 14:29:15 +02005818#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005819 }
Emeric Brun674b7432012-11-08 19:21:55 +01005820 goto out_error;
5821 }
5822 else {
5823 /* Fail on all other handshake errors */
5824 /* Note: OpenSSL may leave unread bytes in the socket's
5825 * buffer, causing an RST to be emitted upon close() on
5826 * TCP sockets. We first try to drain possibly pending
5827 * data to avoid this as much as possible.
5828 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005829 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005830 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005831 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005832 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005833 goto out_error;
5834 }
5835 }
5836 /* read some data: consider handshake completed */
5837 goto reneg_ok;
5838 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005839 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005840check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005841 if (ret != 1) {
5842 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005843 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005844
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005845 if (!ctx->error_code)
5846 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02005847
Emeric Brun46591952012-05-18 15:47:34 +02005848 if (ret == SSL_ERROR_WANT_WRITE) {
5849 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005850 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005851 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005852 return 0;
5853 }
5854 else if (ret == SSL_ERROR_WANT_READ) {
5855 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005856 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005857 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5858 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005859 return 0;
5860 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005861#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005862 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005863 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005864 return 0;
5865 }
5866#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005867 else if (ret == SSL_ERROR_SYSCALL) {
5868 /* if errno is null, then connection was successfully established */
5869 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5870 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005871 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005872#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5873 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005874 conn->err_code = CO_ER_SSL_HANDSHAKE;
5875#else
5876 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005877#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005878 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005879 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005880 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005881#else
Lukas Tribus49799162019-07-08 14:29:15 +02005882 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5883 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005884#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005885 if (empty_handshake) {
5886 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005887 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005888 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5889 else
5890 conn->err_code = CO_ER_SSL_EMPTY;
5891 }
5892 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005893 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005894 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5895 else
5896 conn->err_code = CO_ER_SSL_ABORT;
5897 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005898 }
5899 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005900 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005901 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5902 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005903 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005904 }
Lukas Tribus49799162019-07-08 14:29:15 +02005905#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005906 }
Willy Tarreau89230192012-09-28 20:22:13 +02005907 goto out_error;
5908 }
Emeric Brun46591952012-05-18 15:47:34 +02005909 else {
5910 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005911 /* Note: OpenSSL may leave unread bytes in the socket's
5912 * buffer, causing an RST to be emitted upon close() on
5913 * TCP sockets. We first try to drain possibly pending
5914 * data to avoid this as much as possible.
5915 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005916 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005917 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005918 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005919 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005920 goto out_error;
5921 }
5922 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005923#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005924 else {
5925 /*
5926 * If the server refused the early data, we have to send a
5927 * 425 to the client, as we no longer have the data to sent
5928 * them again.
5929 */
5930 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005931 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005932 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5933 goto out_error;
5934 }
5935 }
5936 }
5937#endif
5938
Emeric Brun46591952012-05-18 15:47:34 +02005939
Emeric Brun674b7432012-11-08 19:21:55 +01005940reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005941
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005942#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005943 /* ASYNC engine API doesn't support moving read/write
5944 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005945 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005946 */
5947 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005948 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005949#endif
Emeric Brun46591952012-05-18 15:47:34 +02005950 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005951 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005952 if (objt_server(conn->target)) {
5953 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5954 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5955 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005956 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005957 else {
5958 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5959 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5960 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5961 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005962
Willy Tarreau42995282020-11-06 13:19:18 +01005963 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01005964 HA_ATOMIC_INC(&counters->sess);
5965 HA_ATOMIC_INC(&counters_px->sess);
Willy Tarreau42995282020-11-06 13:19:18 +01005966 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005967 }
Willy Tarreau42995282020-11-06 13:19:18 +01005968 else if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01005969 HA_ATOMIC_INC(&counters->reused_sess);
5970 HA_ATOMIC_INC(&counters_px->reused_sess);
Emeric Brun46591952012-05-18 15:47:34 +02005971 }
5972
5973 /* The connection is now established at both layers, it's time to leave */
5974 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5975 return 1;
5976
5977 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005978 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005979 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005980 ERR_clear_error();
5981
Emeric Brun9fa89732012-10-04 17:09:56 +02005982 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005983 if (objt_server(conn->target)) {
5984 struct server *s = __objt_server(conn->target);
5985 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5986 * one cache per thread, it only prevents to flush it from the CLI in
5987 * another thread */
5988
5989 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005990 if (s->ssl_ctx.reused_sess[tid].ptr)
5991 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005992 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005993 }
5994
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005995 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01005996 HA_ATOMIC_INC(&counters->failed_handshake);
5997 HA_ATOMIC_INC(&counters_px->failed_handshake);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005998 }
5999
Emeric Brun46591952012-05-18 15:47:34 +02006000 /* Fail on all other handshake errors */
6001 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01006002 if (!conn->err_code)
6003 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006004 return 0;
6005}
6006
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006007/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6008 * event subscriber <es> is not allowed to change from a previous call as long
6009 * as at least one event is still subscribed. The <event_type> must only be a
6010 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
6011 * unless the transport layer was already released.
6012 */
6013static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006014{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006015 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006016
Olivier Houchard0ff28652019-06-24 18:57:39 +02006017 if (!ctx)
6018 return -1;
6019
Willy Tarreau113d52b2020-01-10 09:20:26 +01006020 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006021 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006022
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006023 ctx->subs = es;
6024 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006025
6026 /* we may have to subscribe to lower layers for new events */
6027 event_type &= ~ctx->wait_event.events;
6028 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
6029 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006030 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006031}
6032
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006033/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6034 * The <es> pointer is not allowed to differ from the one passed to the
6035 * subscribe() call. It always returns zero.
6036 */
6037static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006038{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006039 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006040
Willy Tarreau113d52b2020-01-10 09:20:26 +01006041 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006042 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006043
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006044 es->events &= ~event_type;
6045 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01006046 ctx->subs = NULL;
6047
6048 /* If we subscribed, and we're not doing the handshake,
6049 * then we subscribed because the upper layer asked for it,
6050 * as the upper layer is no longer interested, we can
6051 * unsubscribe too.
6052 */
6053 event_type &= ctx->wait_event.events;
6054 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
6055 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006056
6057 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006058}
6059
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006060/* The connection has been taken over, so destroy the old tasklet and create
6061 * a new one. The original thread ID must be passed into orig_tid
6062 * It should be called with the takeover lock for the old thread held.
6063 * Returns 0 on success, and -1 on failure
6064 */
6065static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
6066{
6067 struct ssl_sock_ctx *ctx = xprt_ctx;
6068 struct tasklet *tl = tasklet_new();
6069
6070 if (!tl)
6071 return -1;
6072
6073 ctx->wait_event.tasklet->context = NULL;
6074 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
6075 ctx->wait_event.tasklet = tl;
6076 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
6077 ctx->wait_event.tasklet->context = ctx;
6078 return 0;
6079}
6080
Willy Tarreau41491682021-03-02 17:29:56 +01006081/* notify the next xprt that the connection is about to become idle and that it
6082 * may be stolen at any time after the function returns and that any tasklet in
6083 * the chain must be careful before dereferencing its context.
6084 */
6085static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
6086{
6087 struct ssl_sock_ctx *ctx = xprt_ctx;
6088
6089 if (!ctx || !ctx->wait_event.tasklet)
6090 return;
6091
6092 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6093 if (ctx->xprt)
6094 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
6095}
6096
6097/* notify the next xprt that the connection is not idle anymore and that it may
6098 * not be stolen before the next xprt_set_idle().
6099 */
6100static void ssl_set_used(struct connection *conn, void *xprt_ctx)
6101{
6102 struct ssl_sock_ctx *ctx = xprt_ctx;
6103
6104 if (!ctx || !ctx->wait_event.tasklet)
6105 return;
6106
6107 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6108 if (ctx->xprt)
6109 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
6110}
6111
Olivier Houchard2e055482019-05-27 19:50:12 +02006112/* Use the provided XPRT as an underlying XPRT, and provide the old one.
6113 * Returns 0 on success, and non-zero on failure.
6114 */
6115static 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)
6116{
6117 struct ssl_sock_ctx *ctx = xprt_ctx;
6118
6119 if (oldxprt_ops != NULL)
6120 *oldxprt_ops = ctx->xprt;
6121 if (oldxprt_ctx != NULL)
6122 *oldxprt_ctx = ctx->xprt_ctx;
6123 ctx->xprt = toadd_ops;
6124 ctx->xprt_ctx = toadd_ctx;
6125 return 0;
6126}
6127
Olivier Houchard5149b592019-05-23 17:47:36 +02006128/* Remove the specified xprt. If if it our underlying XPRT, remove it and
6129 * return 0, otherwise just call the remove_xprt method from the underlying
6130 * XPRT.
6131 */
6132static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
6133{
6134 struct ssl_sock_ctx *ctx = xprt_ctx;
6135
6136 if (ctx->xprt_ctx == toremove_ctx) {
6137 ctx->xprt_ctx = newctx;
6138 ctx->xprt = newops;
6139 return 0;
6140 }
6141 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
6142}
6143
Willy Tarreau144f84a2021-03-02 16:09:26 +01006144struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02006145{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006146 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006147 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006148 struct connection *conn;
6149 int conn_in_list;
6150 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006151
Willy Tarreau41491682021-03-02 17:29:56 +01006152 if (state & TASK_F_USR1) {
6153 /* the tasklet was idling on an idle connection, it might have
6154 * been stolen, let's be careful!
6155 */
6156 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6157 if (tl->context == NULL) {
6158 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6159 tasklet_free(tl);
6160 return NULL;
6161 }
6162 conn = ctx->conn;
6163 conn_in_list = conn->flags & CO_FL_LIST_MASK;
6164 if (conn_in_list)
6165 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006166 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01006167 } else {
6168 conn = ctx->conn;
6169 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006170 }
Willy Tarreau41491682021-03-02 17:29:56 +01006171
Olivier Houchardea8dd942019-05-20 14:02:16 +02006172 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01006173 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006174 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006175 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
6176 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01006177 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006178 }
6179 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006180 /* If we had an error, or the handshake is done and I/O is available,
6181 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01006182 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02006183 * we can't be sure conn_fd_handler() will be called again.
6184 */
6185 if ((ctx->conn->flags & CO_FL_ERROR) ||
6186 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006187 int woke = 0;
6188
6189 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006190 if (ctx->subs) {
6191 tasklet_wakeup(ctx->subs->tasklet);
6192 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006193 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006194 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006195 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006196
Olivier Houchardea8dd942019-05-20 14:02:16 +02006197 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01006198 * upper layers know. If we have no mux, create it,
6199 * and once we have a mux, call its wake method if we didn't
6200 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02006201 */
6202 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01006203 if (!ctx->conn->mux)
6204 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006205 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006206 ret = ctx->conn->mux->wake(ctx->conn);
6207 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006208 }
6209 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006210#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006211 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006212 else if (b_data(&ctx->early_buf) && ctx->subs &&
6213 ctx->subs->events & SUB_RETRY_RECV) {
6214 tasklet_wakeup(ctx->subs->tasklet);
6215 ctx->subs->events &= ~SUB_RETRY_RECV;
6216 if (!ctx->subs->events)
6217 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01006218 }
6219#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006220leave:
6221 if (!ret && conn_in_list) {
6222 struct server *srv = objt_server(conn->target);
6223
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006224 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006225 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006226 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006227 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006228 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006229 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006230 }
Willy Tarreau74163142021-03-13 11:30:19 +01006231 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006232}
6233
Emeric Brun46591952012-05-18 15:47:34 +02006234/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01006235 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02006236 * buffer wraps, in which case a second call may be performed. The connection's
6237 * flags are updated with whatever special event is detected (error, read0,
6238 * empty). The caller is responsible for taking care of those events and
6239 * avoiding the call if inappropriate. The function does not call the
6240 * connection's polling update function, so the caller is responsible for this.
6241 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006242static 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 +02006243{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006244 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02006245 ssize_t ret;
6246 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02006247
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006248 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006249 goto out_error;
6250
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006251#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006252 if (b_data(&ctx->early_buf)) {
6253 try = b_contig_space(buf);
6254 if (try > b_data(&ctx->early_buf))
6255 try = b_data(&ctx->early_buf);
6256 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
6257 b_add(buf, try);
6258 b_del(&ctx->early_buf, try);
6259 if (b_data(&ctx->early_buf) == 0)
6260 b_free(&ctx->early_buf);
6261 return try;
6262 }
6263#endif
6264
Willy Tarreau911db9b2020-01-23 16:27:54 +01006265 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006266 /* a handshake was requested */
6267 return 0;
6268
Emeric Brun46591952012-05-18 15:47:34 +02006269 /* read the largest possible block. For this, we perform only one call
6270 * to recv() unless the buffer wraps and we exactly fill the first hunk,
6271 * in which case we accept to do it once again. A new attempt is made on
6272 * EINTR too.
6273 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01006274 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006275
Willy Tarreau591d4452018-06-15 17:21:00 +02006276 try = b_contig_space(buf);
6277 if (!try)
6278 break;
6279
Willy Tarreauabf08d92014-01-14 11:31:27 +01006280 if (try > count)
6281 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02006282
Olivier Houchard66ab4982019-02-26 18:37:15 +01006283 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02006284
Emeric Brune1f38db2012-09-03 20:36:47 +02006285 if (conn->flags & CO_FL_ERROR) {
6286 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006287 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006288 }
Emeric Brun46591952012-05-18 15:47:34 +02006289 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006290 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006291 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006292 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006293 }
Emeric Brun46591952012-05-18 15:47:34 +02006294 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006295 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006296 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006297 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006298 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006299 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006300#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006301 /* Async mode can be re-enabled, because we're leaving data state.*/
6302 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006303 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006304#endif
Emeric Brun46591952012-05-18 15:47:34 +02006305 break;
6306 }
6307 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006308 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006309 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6310 SUB_RETRY_RECV,
6311 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006312 /* handshake is running, and it may need to re-enable read */
6313 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006314#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006315 /* Async mode can be re-enabled, because we're leaving data state.*/
6316 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006317 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006318#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006319 break;
6320 }
Emeric Brun46591952012-05-18 15:47:34 +02006321 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006322 } else if (ret == SSL_ERROR_ZERO_RETURN)
6323 goto read0;
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006324 else if (ret == SSL_ERROR_SSL) {
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006325 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6326 if (!ctx->error_code)
6327 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006328 conn->err_code = CO_ERR_SSL_FATAL;
6329 }
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006330 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6331 * stack before shutting down the connection for
6332 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006333 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6334 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006335 /* otherwise it's a real error */
6336 goto out_error;
6337 }
6338 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006339 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006340 return done;
6341
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006342 clear_ssl_error:
6343 /* Clear openssl global errors stack */
6344 ssl_sock_dump_errors(conn);
6345 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006346 read0:
6347 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006348 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006349
Emeric Brun46591952012-05-18 15:47:34 +02006350 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006351 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006352 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006353 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006354 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006355 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006356}
6357
6358
Willy Tarreau787db9a2018-06-14 18:31:46 +02006359/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6360 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6361 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006362 * Only one call to send() is performed, unless the buffer wraps, in which case
6363 * a second call may be performed. The connection's flags are updated with
6364 * whatever special event is detected (error, empty). The caller is responsible
6365 * for taking care of those events and avoiding the call if inappropriate. The
6366 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006367 * is responsible for this. The buffer's output is not adjusted, it's up to the
6368 * caller to take care of this. It's up to the caller to update the buffer's
6369 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006370 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006371static 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 +02006372{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006373 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006374 ssize_t ret;
6375 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006376
6377 done = 0;
6378
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006379 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006380 goto out_error;
6381
Willy Tarreau911db9b2020-01-23 16:27:54 +01006382 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006383 /* a handshake was requested */
6384 return 0;
6385
6386 /* send the largest possible block. For this we perform only one call
6387 * to send() unless the buffer wraps and we exactly fill the first hunk,
6388 * in which case we accept to do it once again.
6389 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006390 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006391#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006392 size_t written_data;
6393#endif
6394
Willy Tarreau787db9a2018-06-14 18:31:46 +02006395 try = b_contig_data(buf, done);
6396 if (try > count)
6397 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006398
Willy Tarreau7bed9452014-02-02 02:00:24 +01006399 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006400 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006401 global_ssl.max_record && try > global_ssl.max_record) {
6402 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006403 }
6404 else {
6405 /* we need to keep the information about the fact that
6406 * we're not limiting the upcoming send(), because if it
6407 * fails, we'll have to retry with at least as many data.
6408 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006409 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006410 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006411
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006412#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006413 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006414 unsigned int max_early;
6415
Olivier Houchard522eea72017-11-03 16:27:47 +01006416 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006417 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006418 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006419 if (SSL_get0_session(ctx->ssl))
6420 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006421 else
6422 max_early = 0;
6423 }
6424
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006425 if (try + ctx->sent_early_data > max_early) {
6426 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006427 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006428 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006429 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006430 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006431 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006432 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006433 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006434 if (ret == 1) {
6435 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006436 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006437 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006438 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006439 /* Initiate the handshake, now */
6440 tasklet_wakeup(ctx->wait_event.tasklet);
6441 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006442
Olivier Houchardc2aae742017-09-22 18:26:28 +02006443 }
6444
6445 } else
6446#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006447 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006448
Emeric Brune1f38db2012-09-03 20:36:47 +02006449 if (conn->flags & CO_FL_ERROR) {
6450 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006451 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006452 }
Emeric Brun46591952012-05-18 15:47:34 +02006453 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006454 /* A send succeeded, so we can consider ourself connected */
6455 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006456 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006457 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006458 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006459 }
6460 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006461 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006462
Emeric Brun46591952012-05-18 15:47:34 +02006463 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006464 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006465 /* handshake is running, and it may need to re-enable write */
6466 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006467 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006468#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006469 /* Async mode can be re-enabled, because we're leaving data state.*/
6470 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006471 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006472#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006473 break;
6474 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006475
Emeric Brun46591952012-05-18 15:47:34 +02006476 break;
6477 }
6478 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006479 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006480 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006481 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6482 SUB_RETRY_RECV,
6483 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006484#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006485 /* Async mode can be re-enabled, because we're leaving data state.*/
6486 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006487 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006488#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006489 break;
6490 }
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006491 else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) {
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006492 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6493 if (!ctx->error_code)
6494 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006495 conn->err_code = CO_ERR_SSL_FATAL;
6496 }
Emeric Brun46591952012-05-18 15:47:34 +02006497 goto out_error;
6498 }
6499 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006500 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006501 return done;
6502
6503 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006504 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006505 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006506 ERR_clear_error();
6507
Emeric Brun46591952012-05-18 15:47:34 +02006508 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006509 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006510}
6511
Willy Tarreau832e2422021-05-13 10:11:03 +02006512void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006513
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006514 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006515
Olivier Houchardea8dd942019-05-20 14:02:16 +02006516
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006517 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006518 if (ctx->wait_event.events != 0)
6519 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6520 ctx->wait_event.events,
6521 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006522 if (ctx->subs) {
6523 ctx->subs->events = 0;
6524 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006525 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006526
Olivier Houchard692c1d02019-05-23 18:41:47 +02006527 if (ctx->xprt->close)
6528 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006529#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006530 if (global_ssl.async) {
6531 OSSL_ASYNC_FD all_fd[32], afd;
6532 size_t num_all_fds = 0;
6533 int i;
6534
Olivier Houchard66ab4982019-02-26 18:37:15 +01006535 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006536 if (num_all_fds > 32) {
6537 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6538 return;
6539 }
6540
Olivier Houchard66ab4982019-02-26 18:37:15 +01006541 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006542
6543 /* If an async job is pending, we must try to
6544 to catch the end using polling before calling
6545 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006546 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006547 for (i=0 ; i < num_all_fds ; i++) {
6548 /* switch on an handler designed to
6549 * handle the SSL_free
6550 */
6551 afd = all_fd[i];
6552 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006553 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006554 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006555 /* To ensure that the fd cache won't be used
6556 * and we'll catch a real RD event.
6557 */
6558 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006559 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006560 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006561 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006562 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006563 return;
6564 }
Emeric Brun3854e012017-05-17 20:42:48 +02006565 /* Else we can remove the fds from the fdtab
6566 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006567 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006568 * because the fd is owned by the engine.
6569 * the engine is responsible to close
6570 */
6571 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006572 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006573 }
6574#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006575 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006576 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006577 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006578 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau82531f62021-10-06 12:15:18 +02006579 _HA_ATOMIC_DEC(&global.sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006580 }
Emeric Brun46591952012-05-18 15:47:34 +02006581}
6582
6583/* This function tries to perform a clean shutdown on an SSL connection, and in
6584 * any case, flags the connection as reusable if no handshake was in progress.
6585 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006586static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006587{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006588 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006589
Willy Tarreau911db9b2020-01-23 16:27:54 +01006590 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006591 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006592 if (!clean)
6593 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006594 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006595 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006596 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006597 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006598 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006599 ERR_clear_error();
6600 }
Emeric Brun46591952012-05-18 15:47:34 +02006601}
6602
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006603
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006604/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006605int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6606{
6607 struct ssl_sock_ctx *ctx;
6608 X509 *crt;
6609
Willy Tarreau1057bee2021-10-06 11:38:44 +02006610 if (!conn_is_ssl(conn))
William Lallemandd4f946c2019-12-05 10:26:40 +01006611 return 0;
6612
6613 ctx = conn->xprt_ctx;
6614
6615 crt = SSL_get_certificate(ctx->ssl);
6616 if (!crt)
6617 return 0;
6618
6619 return cert_get_pkey_algo(crt, out);
6620}
6621
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006622/* used for ppv2 cert signature (can be used for logging) */
6623const char *ssl_sock_get_cert_sig(struct connection *conn)
6624{
Christopher Faulet82004142019-09-10 10:12:03 +02006625 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006626
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006627 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6628 X509 *crt;
6629
Willy Tarreau1057bee2021-10-06 11:38:44 +02006630 if (!conn_is_ssl(conn))
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006631 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006632 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006633 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006634 if (!crt)
6635 return NULL;
6636 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6637 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6638}
6639
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006640/* used for ppv2 authority */
6641const char *ssl_sock_get_sni(struct connection *conn)
6642{
6643#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006644 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006645
Willy Tarreau1057bee2021-10-06 11:38:44 +02006646 if (!conn_is_ssl(conn))
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006647 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006648 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006649 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006650#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006651 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006652#endif
6653}
6654
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006655/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006656const char *ssl_sock_get_cipher_name(struct connection *conn)
6657{
Christopher Faulet82004142019-09-10 10:12:03 +02006658 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006659
Willy Tarreau1057bee2021-10-06 11:38:44 +02006660 if (!conn_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006661 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006662 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006663 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006664}
6665
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006666/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006667const char *ssl_sock_get_proto_version(struct connection *conn)
6668{
Christopher Faulet82004142019-09-10 10:12:03 +02006669 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006670
Willy Tarreau1057bee2021-10-06 11:38:44 +02006671 if (!conn_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006672 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006673 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006674 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006675}
6676
Olivier Houchardab28a322018-12-21 19:45:40 +01006677void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6678{
6679#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006680 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006681
Willy Tarreau1057bee2021-10-06 11:38:44 +02006682 if (!conn_is_ssl(conn))
Olivier Houcharde488ea82019-06-28 14:10:33 +02006683 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006684 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006685 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006686#endif
6687}
6688
Willy Tarreau119a4082016-12-22 21:58:38 +01006689/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6690 * to disable SNI.
6691 */
Willy Tarreau63076412015-07-10 11:33:32 +02006692void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6693{
6694#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006695 struct ssl_sock_ctx *ctx;
William Lallemande18d4e82021-11-17 02:59:21 +01006696 struct server *s;
Willy Tarreau119a4082016-12-22 21:58:38 +01006697 char *prev_name;
6698
Willy Tarreau1057bee2021-10-06 11:38:44 +02006699 if (!conn_is_ssl(conn))
Willy Tarreau63076412015-07-10 11:33:32 +02006700 return;
Willy Tarreau77bfa662021-12-23 11:12:13 +01006701
6702 BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN));
6703 BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS));
6704
Christopher Faulet82004142019-09-10 10:12:03 +02006705 ctx = conn->xprt_ctx;
William Lallemande18d4e82021-11-17 02:59:21 +01006706 s = __objt_server(conn->target);
Willy Tarreau63076412015-07-10 11:33:32 +02006707
Willy Tarreau119a4082016-12-22 21:58:38 +01006708 /* if the SNI changes, we must destroy the reusable context so that a
William Lallemande18d4e82021-11-17 02:59:21 +01006709 * new connection will present a new SNI. compare with the SNI
6710 * previously stored in the reused_sess */
6711 /* the RWLOCK is used to ensure that we are not trying to flush the
6712 * cache from the CLI */
6713
6714 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
6715 prev_name = s->ssl_ctx.reused_sess[tid].sni;
Willy Tarreau119a4082016-12-22 21:58:38 +01006716 if ((!prev_name && hostname) ||
6717 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006718 SSL_set_session(ctx->ssl, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01006719 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau119a4082016-12-22 21:58:38 +01006720
Olivier Houchard66ab4982019-02-26 18:37:15 +01006721 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006722#endif
6723}
6724
Emeric Brun0abf8362014-06-24 18:26:41 +02006725/* Extract peer certificate's common name into the chunk dest
6726 * Returns
6727 * the len of the extracted common name
6728 * or 0 if no CN found in DN
6729 * or -1 on error case (i.e. no peer certificate)
6730 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006731int ssl_sock_get_remote_common_name(struct connection *conn,
6732 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006733{
Christopher Faulet82004142019-09-10 10:12:03 +02006734 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006735 X509 *crt = NULL;
6736 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006737 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006738 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006739 .area = (char *)&find_cn,
6740 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006741 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006742 int result = -1;
David Safb76832014-05-08 23:42:08 -04006743
Willy Tarreau1057bee2021-10-06 11:38:44 +02006744 if (!conn_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006745 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006746 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006747
6748 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006749 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006750 if (!crt)
6751 goto out;
6752
6753 name = X509_get_subject_name(crt);
6754 if (!name)
6755 goto out;
David Safb76832014-05-08 23:42:08 -04006756
Emeric Brun0abf8362014-06-24 18:26:41 +02006757 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6758out:
David Safb76832014-05-08 23:42:08 -04006759 if (crt)
6760 X509_free(crt);
6761
6762 return result;
6763}
6764
Dave McCowan328fb582014-07-30 10:39:13 -04006765/* returns 1 if client passed a certificate for this session, 0 if not */
6766int ssl_sock_get_cert_used_sess(struct connection *conn)
6767{
Christopher Faulet82004142019-09-10 10:12:03 +02006768 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006769 X509 *crt = NULL;
6770
Willy Tarreau1057bee2021-10-06 11:38:44 +02006771 if (!conn_is_ssl(conn))
Dave McCowan328fb582014-07-30 10:39:13 -04006772 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006773 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006774
6775 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006776 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006777 if (!crt)
6778 return 0;
6779
6780 X509_free(crt);
6781 return 1;
6782}
6783
6784/* returns 1 if client passed a certificate for this connection, 0 if not */
6785int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006786{
Christopher Faulet82004142019-09-10 10:12:03 +02006787 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006788
Willy Tarreau1057bee2021-10-06 11:38:44 +02006789 if (!conn_is_ssl(conn))
David Safb76832014-05-08 23:42:08 -04006790 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006791 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006792 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006793}
6794
6795/* returns result from SSL verify */
6796unsigned int ssl_sock_get_verify_result(struct connection *conn)
6797{
Christopher Faulet82004142019-09-10 10:12:03 +02006798 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006799
Willy Tarreau1057bee2021-10-06 11:38:44 +02006800 if (!conn_is_ssl(conn))
David Safb76832014-05-08 23:42:08 -04006801 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006802 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006803 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006804}
6805
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006806/* Returns the application layer protocol name in <str> and <len> when known.
6807 * Zero is returned if the protocol name was not found, otherwise non-zero is
6808 * returned. The string is allocated in the SSL context and doesn't have to be
6809 * freed by the caller. NPN is also checked if available since older versions
6810 * of openssl (1.0.1) which are more common in field only support this one.
6811 */
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01006812int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006813{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006814#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6815 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006816 struct ssl_sock_ctx *ctx = xprt_ctx;
6817 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006818 return 0;
6819
6820 *str = NULL;
6821
6822#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006823 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006824 if (*str)
6825 return 1;
6826#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006827#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006828 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006829 if (*str)
6830 return 1;
6831#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006832#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006833 return 0;
6834}
6835
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006836/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006837int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006838{
6839 X509 *ca;
6840 X509_NAME *name = NULL;
6841 ASN1_OCTET_STRING *skid = NULL;
6842 STACK_OF(X509) *chain = NULL;
6843 struct issuer_chain *issuer;
6844 struct eb64_node *node;
6845 char *path;
6846 u64 key;
6847 int ret = 0;
6848
6849 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6850 if (chain == NULL) {
6851 chain = sk_X509_new_null();
6852 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6853 name = X509_get_subject_name(ca);
6854 }
6855 if (!sk_X509_push(chain, ca)) {
6856 X509_free(ca);
6857 goto end;
6858 }
6859 }
6860 if (!chain) {
6861 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6862 goto end;
6863 }
6864 if (!skid) {
6865 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6866 goto end;
6867 }
6868 if (!name) {
6869 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6870 goto end;
6871 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006872 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006873 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006874 issuer = container_of(node, typeof(*issuer), node);
6875 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6876 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6877 goto end;
6878 }
6879 }
6880 issuer = calloc(1, sizeof *issuer);
6881 path = strdup(fp);
6882 if (!issuer || !path) {
6883 free(issuer);
6884 free(path);
6885 goto end;
6886 }
6887 issuer->node.key = key;
6888 issuer->path = path;
6889 issuer->chain = chain;
6890 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006891 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006892 ret = 1;
6893 end:
6894 if (skid)
6895 ASN1_OCTET_STRING_free(skid);
6896 if (chain)
6897 sk_X509_pop_free(chain, X509_free);
6898 return ret;
6899}
6900
William Lallemandda8584c2020-05-14 10:14:37 +02006901 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006902{
6903 AUTHORITY_KEYID *akid;
6904 struct issuer_chain *issuer = NULL;
6905
6906 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006907 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006908 struct eb64_node *node;
6909 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006910 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006911 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6912 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6913 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6914 issuer = ti;
6915 break;
6916 }
6917 }
6918 AUTHORITY_KEYID_free(akid);
6919 }
6920 return issuer;
6921}
6922
William Lallemanddad31052020-05-14 17:47:32 +02006923void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006924{
6925 struct eb64_node *node, *back;
6926 struct issuer_chain *issuer;
6927
William Lallemande0f3fd52020-02-25 14:53:06 +01006928 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006929 while (node) {
6930 issuer = container_of(node, typeof(*issuer), node);
6931 back = eb64_next(node);
6932 eb64_delete(node);
6933 free(issuer->path);
6934 sk_X509_pop_free(issuer->chain, X509_free);
6935 free(issuer);
6936 node = back;
6937 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006938}
6939
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006940#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006941static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006942 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006943
Emeric Brun3854e012017-05-17 20:42:48 +02006944 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006945 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006946 err_code = ERR_ABORT;
6947 }
6948 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006949}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006950#endif
6951
Willy Tarreaude5675a2021-01-20 14:41:29 +01006952/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006953 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006954 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006955static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006956{
6957 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006958 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006959
6960 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006961 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006962
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006963 if (sctx->conn != conn) {
6964 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6965 ret = 1;
6966 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006967 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6968
6969 if (sctx->xprt) {
6970 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6971 if (sctx->xprt_ctx)
6972 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6973 }
6974
6975 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006976
6977 /* as soon as a shutdown is reported the lower layer unregisters its
6978 * subscriber, so the situations below are transient and rare enough to
6979 * be reported as suspicious. In any case they shouldn't last.
6980 */
6981 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6982 ret = 1;
6983 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6984 ret = 1;
6985
Willy Tarreaude5675a2021-01-20 14:41:29 +01006986 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6987 if (sctx->subs) {
6988 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006989 if (sctx->subs->tasklet->calls >= 1000000)
6990 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006991 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6992 sctx->subs->tasklet->calls,
6993 sctx->subs->tasklet->context);
6994 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6995 chunk_appendf(&trash, ")");
6996 }
6997 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6998 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006999 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007000}
7001
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007002#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02007003/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007004 * each reference. The variable <ref> must point to the current node's list
7005 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02007006 */
William Lallemand32af2032016-10-29 18:09:35 +02007007static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007008struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02007009{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007010 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007011 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02007012
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007013 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007014 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007015 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02007016
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007017 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02007018}
7019
7020static inline
7021struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
7022{
7023 int id;
7024 char *error;
7025
7026 /* If the reference starts by a '#', this is numeric id. */
7027 if (reference[0] == '#') {
7028 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
7029 id = strtol(reference + 1, &error, 10);
7030 if (*error != '\0')
7031 return NULL;
7032
7033 /* Perform the unique id lookup. */
7034 return tlskeys_ref_lookupid(id);
7035 }
7036
7037 /* Perform the string lookup. */
7038 return tlskeys_ref_lookup(reference);
7039}
7040#endif
7041
7042
7043#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7044
7045static int cli_io_handler_tlskeys_files(struct appctx *appctx);
7046
7047static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
7048 return cli_io_handler_tlskeys_files(appctx);
7049}
7050
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007051/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
7052 * (next index to be dumped), and cli.p0 (next key reference).
7053 */
William Lallemand32af2032016-10-29 18:09:35 +02007054static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
7055
7056 struct stream_interface *si = appctx->owner;
7057
7058 switch (appctx->st2) {
7059 case STAT_ST_INIT:
7060 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08007061 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02007062 * later and restart at the state "STAT_ST_INIT".
7063 */
7064 chunk_reset(&trash);
7065
7066 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
7067 chunk_appendf(&trash, "# id secret\n");
7068 else
7069 chunk_appendf(&trash, "# id (file)\n");
7070
Willy Tarreau06d80a92017-10-19 14:32:15 +02007071 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01007072 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007073 return 0;
7074 }
7075
William Lallemand32af2032016-10-29 18:09:35 +02007076 /* Now, we start the browsing of the references lists.
7077 * Note that the following call to LIST_ELEM return bad pointer. The only
7078 * available field of this pointer is <list>. It is used with the function
7079 * tlskeys_list_get_next() for retruning the first available entry
7080 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007081 if (appctx->ctx.cli.p0 == NULL)
7082 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007083
7084 appctx->st2 = STAT_ST_LIST;
7085 /* fall through */
7086
7087 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007088 while (appctx->ctx.cli.p0) {
7089 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02007090
7091 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007092 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02007093 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007094
7095 if (appctx->ctx.cli.i1 == 0)
7096 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
7097
William Lallemand32af2032016-10-29 18:09:35 +02007098 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01007099 int head;
7100
7101 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
7102 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007103 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02007104 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02007105
7106 chunk_reset(t2);
7107 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01007108 if (ref->key_size_bits == 128) {
7109 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
7110 sizeof(struct tls_sess_key_128),
7111 t2->area, t2->size);
7112 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
7113 t2->area);
7114 }
7115 else if (ref->key_size_bits == 256) {
7116 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
7117 sizeof(struct tls_sess_key_256),
7118 t2->area, t2->size);
7119 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
7120 t2->area);
7121 }
7122 else {
7123 /* This case should never happen */
7124 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
7125 }
William Lallemand32af2032016-10-29 18:09:35 +02007126
Willy Tarreau06d80a92017-10-19 14:32:15 +02007127 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007128 /* let's try again later from this stream. We add ourselves into
7129 * this stream's users so that it can remove us upon termination.
7130 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01007131 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01007132 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007133 return 0;
7134 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007135 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02007136 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01007137 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007138 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007139 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02007140 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007141 /* let's try again later from this stream. We add ourselves into
7142 * this stream's users so that it can remove us upon termination.
7143 */
Willy Tarreaudb398432018-11-15 11:08:52 +01007144 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007145 return 0;
7146 }
7147
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007148 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02007149 break;
7150
7151 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007152 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007153 }
7154
7155 appctx->st2 = STAT_ST_FIN;
7156 /* fall through */
7157
7158 default:
7159 appctx->st2 = STAT_ST_FIN;
7160 return 1;
7161 }
7162 return 0;
7163}
7164
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007165/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007166static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007167{
William Lallemand32af2032016-10-29 18:09:35 +02007168 /* no parameter, shows only file list */
7169 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007170 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007171 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007172 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007173 }
7174
7175 if (args[2][0] == '*') {
7176 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007177 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007178 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007179 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007180 if (!appctx->ctx.cli.p0)
7181 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007182 }
William Lallemand32af2032016-10-29 18:09:35 +02007183 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007184 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007185}
7186
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007187static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007188{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007189 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007190 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007191
William Lallemand32af2032016-10-29 18:09:35 +02007192 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007193 if (!*args[3] || !*args[4])
7194 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 +02007195
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007196 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007197 if (!ref)
7198 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007199
Willy Tarreau1c913e42018-08-22 05:26:57 +02007200 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007201 if (ret < 0)
7202 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01007203
Willy Tarreau1c913e42018-08-22 05:26:57 +02007204 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02007205 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
7206 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007207
Willy Tarreau9d008692019-08-09 11:21:01 +02007208 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007209}
William Lallemandd4f946c2019-12-05 10:26:40 +01007210#endif
William Lallemand419e6342020-04-08 12:05:39 +02007211
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007212static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007213{
7214#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
7215 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007216 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007217
7218 if (!payload)
7219 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02007220
7221 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007222 if (!*payload)
7223 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007224
7225 /* remove \r and \n from the payload */
7226 for (i = 0, j = 0; payload[i]; i++) {
7227 if (payload[i] == '\r' || payload[i] == '\n')
7228 continue;
7229 payload[j++] = payload[i];
7230 }
7231 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007232
Willy Tarreau1c913e42018-08-22 05:26:57 +02007233 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007234 if (ret < 0)
7235 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007236
Willy Tarreau1c913e42018-08-22 05:26:57 +02007237 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02007238 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02007239 if (err)
7240 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
7241 else
7242 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007243 }
Willy Tarreau9d008692019-08-09 11:21:01 +02007244
7245 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007246#else
Willy Tarreau9d008692019-08-09 11:21:01 +02007247 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 +02007248#endif
7249
Elliot Otchet71f82972020-01-15 08:12:14 -05007250}
7251
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007252
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007253#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 +02007254static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
7255#endif
7256
7257/* parsing function for 'show ssl ocsp-response [id]' */
7258static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
7259{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007260#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 +02007261 if (*args[3]) {
7262 struct certificate_ocsp *ocsp = NULL;
7263 char *key = NULL;
7264 int key_length = 0;
7265
7266 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
7267 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
7268 }
7269
7270 if (parse_binary(args[3], &key, &key_length, NULL)) {
7271
7272 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
7273 memcpy(full_key, key, key_length);
7274
7275 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
7276 }
7277 if (key)
7278 ha_free(&key);
7279
7280 if (!ocsp) {
7281 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
7282 }
7283
7284 appctx->ctx.cli.p0 = ocsp;
7285 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
7286 }
7287
7288 return 0;
7289
7290#else
7291 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7292#endif
7293}
7294
7295
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007296#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 +02007297/*
7298 * This function dumps the details of an OCSP_CERTID. It is based on
7299 * ocsp_certid_print in OpenSSL.
7300 */
7301static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
7302{
7303 ASN1_OCTET_STRING *piNameHash = NULL;
7304 ASN1_OCTET_STRING *piKeyHash = NULL;
7305 ASN1_INTEGER *pSerial = NULL;
7306
7307 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7308
7309 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7310 indent += 2;
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007311 BIO_printf(bp, "%*sIssuer Name Hash: ", indent, "");
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007312 i2a_ASN1_STRING(bp, piNameHash, 0);
7313 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7314 i2a_ASN1_STRING(bp, piKeyHash, 0);
7315 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7316 i2a_ASN1_INTEGER(bp, pSerial);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007317 }
7318 return 1;
7319}
7320#endif
7321
7322/*
7323 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7324 * is managed in cli_io_handler_show_ocspresponse_detail.
7325 */
7326static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7327{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007328#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 +02007329 struct buffer *trash = alloc_trash_chunk();
7330 struct buffer *tmp = NULL;
7331 struct ebmb_node *node;
7332 struct stream_interface *si = appctx->owner;
7333 struct certificate_ocsp *ocsp = NULL;
7334 BIO *bio = NULL;
7335 int write = -1;
7336
7337 if (trash == NULL)
7338 return 1;
7339
7340 tmp = alloc_trash_chunk();
7341 if (!tmp)
7342 goto end;
7343
7344 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7345 goto end;
7346
7347 if (!appctx->ctx.cli.p0) {
7348 chunk_appendf(trash, "# Certificate IDs\n");
7349 node = ebmb_first(&cert_ocsp_tree);
7350 } else {
7351 node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key;
7352 }
7353
7354 while (node) {
7355 OCSP_CERTID *certid = NULL;
7356 const unsigned char *p = NULL;
7357 int i;
7358
7359 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7360
7361 /* Dump the key in hexadecimal */
7362 chunk_appendf(trash, "Certificate ID key : ");
7363 for (i = 0; i < ocsp->key_length; ++i) {
7364 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7365 }
7366 chunk_appendf(trash, "\n");
7367
7368 p = ocsp->key_data;
7369
7370 /* Decode the certificate ID (serialized into the key). */
7371 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
7372
7373 /* Dump the CERTID info */
7374 ocsp_certid_print(bio, certid, 1);
7375 write = BIO_read(bio, tmp->area, tmp->size-1);
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007376 /* strip trailing LFs */
7377 while (write > 0 && tmp->area[write-1] == '\n')
7378 write--;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007379 tmp->area[write] = '\0';
7380
7381 chunk_appendf(trash, "%s\n", tmp->area);
7382
7383 node = ebmb_next(node);
7384 if (ci_putchk(si_ic(si), trash) == -1) {
7385 si_rx_room_blk(si);
7386 goto yield;
7387 }
7388 }
7389
7390end:
7391 appctx->ctx.cli.p0 = NULL;
7392 if (trash)
7393 free_trash_chunk(trash);
7394 if (tmp)
7395 free_trash_chunk(tmp);
7396 if (bio)
7397 BIO_free(bio);
7398 return 1;
7399
7400yield:
7401
7402 if (trash)
7403 free_trash_chunk(trash);
7404 if (tmp)
7405 free_trash_chunk(tmp);
7406 if (bio)
7407 BIO_free(bio);
7408 appctx->ctx.cli.p0 = ocsp;
7409 return 0;
7410#else
7411 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7412#endif
7413}
7414
7415
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007416#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 +02007417/*
7418 * Dump the details about an OCSP response in DER format stored in
7419 * <ocsp_response> into buffer <out>.
7420 * Returns 0 in case of success.
7421 */
7422int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7423{
7424 BIO *bio = NULL;
7425 int write = -1;
7426 OCSP_RESPONSE *resp;
7427 const unsigned char *p;
7428
7429 if (!ocsp_response)
7430 return -1;
7431
7432 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7433 return -1;
7434
7435 p = (const unsigned char*)ocsp_response->area;
7436
7437 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7438 if (!resp) {
7439 chunk_appendf(out, "Unable to parse OCSP response");
7440 return -1;
7441 }
7442
7443 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007444 struct buffer *trash = get_trash_chunk();
7445 struct ist ist_block = IST_NULL;
7446 struct ist ist_double_lf = IST_NULL;
7447 static struct ist double_lf = IST("\n\n");
7448
7449 write = BIO_read(bio, trash->area, trash->size - 1);
7450 trash->data = write;
7451
7452 /* Look for empty lines in the 'trash' buffer and add a space to
7453 * the beginning to avoid having empty lines in the output
7454 * (without changing the appearance of the information
7455 * displayed).
7456 */
7457 ist_block = ist2(b_orig(trash), b_data(trash));
7458
7459 ist_double_lf = istist(ist_block, double_lf);
7460
7461 while (istlen(ist_double_lf)) {
7462 /* istptr(ist_double_lf) points to the first \n of a
7463 * \n\n pattern.
7464 */
7465 uint empty_line_offset = istptr(ist_double_lf) + 1 - istptr(ist_block);
7466
7467 /* Write up to the first '\n' of the "\n\n" pattern into
7468 * the output buffer.
7469 */
7470 b_putblk(out, istptr(ist_block), empty_line_offset);
7471 /* Add an extra space. */
7472 b_putchr(out, ' ');
7473
7474 /* Keep looking for empty lines in the rest of the data. */
7475 ist_block = istadv(ist_block, empty_line_offset);
7476
7477 ist_double_lf = istist(ist_block, double_lf);
7478 }
7479
7480 b_istput(out, ist_block);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007481 }
7482
7483 if (bio)
7484 BIO_free(bio);
7485
7486 return 0;
7487}
7488
7489/*
7490 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7491 * Returns 0 in case of success.
7492 */
7493int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7494{
7495 struct certificate_ocsp *ocsp;
7496
7497 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7498 if (!ocsp)
7499 return -1;
7500
7501 return ssl_ocsp_response_print(&ocsp->response, out);
7502}
7503
7504
7505/* IO handler of details "show ssl ocsp-response <id>". */
7506static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7507{
7508 struct buffer *trash = alloc_trash_chunk();
7509 struct certificate_ocsp *ocsp = NULL;
7510 struct stream_interface *si = appctx->owner;
7511
7512 ocsp = appctx->ctx.cli.p0;
7513
7514 if (trash == NULL)
7515 return 1;
7516
7517 ssl_ocsp_response_print(&ocsp->response, trash);
7518
7519 if (ci_putchk(si_ic(si), trash) == -1) {
7520 si_rx_room_blk(si);
7521 goto yield;
7522 }
7523 appctx->ctx.cli.p0 = NULL;
7524 if (trash)
7525 free_trash_chunk(trash);
7526 return 1;
7527
7528yield:
7529 if (trash)
7530 free_trash_chunk(trash);
7531
7532 return 0;
7533}
7534#endif
7535
William Lallemand32af2032016-10-29 18:09:35 +02007536/* register cli keywords */
7537static struct cli_kw_list cli_kws = {{ },{
7538#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007539 { { "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 },
7540 { { "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 +02007541#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007542 { { "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 +02007543
7544 { { "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 +02007545 { { NULL }, NULL, NULL, NULL }
7546}};
7547
Willy Tarreau0108d902018-11-25 19:14:37 +01007548INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007549
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007550/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007551struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007552 .snd_buf = ssl_sock_from_buf,
7553 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007554 .subscribe = ssl_subscribe,
7555 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007556 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007557 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007558 .rcv_pipe = NULL,
7559 .snd_pipe = NULL,
7560 .shutr = NULL,
7561 .shutw = ssl_sock_shutw,
7562 .close = ssl_sock_close,
7563 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007564 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007565 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007566 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007567 .prepare_srv = ssl_sock_prepare_srv_ctx,
7568 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007569 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007570 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007571 .set_idle = ssl_set_idle,
7572 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007573 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007574 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007575};
7576
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007577enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7578 struct session *sess, struct stream *s, int flags)
7579{
7580 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007581 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007582
7583 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007584 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007585
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007586 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007587 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007588 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007589 s->req.flags |= CF_READ_NULL;
7590 return ACT_RET_YIELD;
7591 }
7592 }
7593 return (ACT_RET_CONT);
7594}
7595
7596static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7597{
7598 rule->action_ptr = ssl_action_wait_for_hs;
7599
7600 return ACT_RET_PRS_OK;
7601}
7602
7603static struct action_kw_list http_req_actions = {ILH, {
7604 { "wait-for-handshake", ssl_parse_wait_for_hs },
7605 { /* END */ }
7606}};
7607
Willy Tarreau0108d902018-11-25 19:14:37 +01007608INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7609
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007610#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007611
7612static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7613{
7614 if (ptr) {
7615 chunk_destroy(ptr);
7616 free(ptr);
7617 }
7618}
7619
7620#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007621
7622#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7623static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7624{
7625 struct ocsp_cbk_arg *ocsp_arg;
7626
7627 if (ptr) {
7628 ocsp_arg = ptr;
7629
7630 if (ocsp_arg->is_single) {
7631 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7632 ocsp_arg->s_ocsp = NULL;
7633 } else {
7634 int i;
7635
7636 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7637 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7638 ocsp_arg->m_ocsp[i] = NULL;
7639 }
7640 }
7641 free(ocsp_arg);
7642 }
7643}
7644#endif
7645
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007646static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7647{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007648 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007649}
William Lallemand7d42ef52020-07-06 11:41:30 +02007650
William Lallemand722180a2021-06-09 16:46:12 +02007651#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007652static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7653{
7654 struct ssl_keylog *keylog;
7655
7656 if (!ptr)
7657 return;
7658
7659 keylog = ptr;
7660
7661 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7662 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7663 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7664 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7665 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7666 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7667 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7668 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7669
7670 pool_free(pool_head_ssl_keylog, ptr);
7671}
7672#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007673
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007674static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7675{
7676 if (!ptr)
7677 return;
7678
7679 X509_free((X509*)ptr);
7680}
7681
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01007682static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7683{
7684 pool_free(ssl_sock_client_sni_pool, ptr);
7685}
7686
Emeric Brun46591952012-05-18 15:47:34 +02007687__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007688static void __ssl_sock_init(void)
7689{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007690#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007691 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007692 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007693#endif
Emeric Brun46591952012-05-18 15:47:34 +02007694
Willy Tarreauef934602016-12-22 23:12:01 +01007695 if (global_ssl.listen_default_ciphers)
7696 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7697 if (global_ssl.connect_default_ciphers)
7698 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007699#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007700 if (global_ssl.listen_default_ciphersuites)
7701 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7702 if (global_ssl.connect_default_ciphersuites)
7703 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7704#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007705
Willy Tarreau13e14102016-12-22 20:25:26 +01007706 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007707#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007708 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007709#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007710#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007711 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007712 n = sk_SSL_COMP_num(cm);
7713 while (n--) {
7714 (void) sk_SSL_COMP_pop(cm);
7715 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007716#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007717
Willy Tarreau5db847a2019-05-09 14:13:35 +02007718#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007719 ssl_locking_init();
7720#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007721#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007722 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7723#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007724
7725#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7726 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7727#endif
7728
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007729 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007730 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 +01007731#ifdef USE_QUIC
7732 ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7733#endif /* USE_QUIC */
William Lallemand722180a2021-06-09 16:46:12 +02007734#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007735 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7736#endif
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007737 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 +01007738 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 +02007739#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007740 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007741 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007742#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007743#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7744 hap_register_post_check(tlskeys_finalize_config);
7745#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007746
7747 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7748 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7749
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007750 hap_register_post_deinit(ssl_free_global_issuers);
7751
Willy Tarreau80713382018-11-26 10:19:54 +01007752#ifndef OPENSSL_NO_DH
7753 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7754 hap_register_post_deinit(ssl_free_dh);
7755#endif
7756#ifndef OPENSSL_NO_ENGINE
7757 hap_register_post_deinit(ssl_free_engines);
7758#endif
7759 /* Load SSL string for the verbose & debug mode. */
7760 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007761 ha_meth = BIO_meth_new(0x666, "ha methods");
7762 BIO_meth_set_write(ha_meth, ha_ssl_write);
7763 BIO_meth_set_read(ha_meth, ha_ssl_read);
7764 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7765 BIO_meth_set_create(ha_meth, ha_ssl_new);
7766 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7767 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7768 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007769
7770 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007771
Dragan Dosen9ac98092020-05-11 15:51:45 +02007772 /* Try to register dedicated SSL/TLS protocol message callbacks for
7773 * heartbleed attack (CVE-2014-0160) and clienthello.
7774 */
7775 hap_register_post_check(ssl_sock_register_msg_callbacks);
7776
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007777 /* Try to free all callbacks that were registered by using
7778 * ssl_sock_register_msg_callback().
7779 */
7780 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007781}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007782
Willy Tarreau80713382018-11-26 10:19:54 +01007783/* Compute and register the version string */
7784static void ssl_register_build_options()
7785{
7786 char *ptr = NULL;
7787 int i;
7788
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007789 memprintf(&ptr, "Built with OpenSSL version : "
7790#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007791 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007792#else /* OPENSSL_IS_BORINGSSL */
7793 OPENSSL_VERSION_TEXT
7794 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007795 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007796 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007797#endif
7798 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007799#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007800 "no (library version too old)"
7801#elif defined(OPENSSL_NO_TLSEXT)
7802 "no (disabled via OPENSSL_NO_TLSEXT)"
7803#else
7804 "yes"
7805#endif
7806 "", ptr);
7807
7808 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7809#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7810 "yes"
7811#else
7812#ifdef OPENSSL_NO_TLSEXT
7813 "no (because of OPENSSL_NO_TLSEXT)"
7814#else
7815 "no (version might be too old, 0.9.8f min needed)"
7816#endif
7817#endif
7818 "", ptr);
7819
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007820 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7821 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7822 if (methodVersions[i].option)
7823 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007824
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007825 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007826}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007827
Willy Tarreau80713382018-11-26 10:19:54 +01007828INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007829
Emeric Brun46591952012-05-18 15:47:34 +02007830
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007831#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007832void ssl_free_engines(void) {
7833 struct ssl_engine_list *wl, *wlb;
7834 /* free up engine list */
7835 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7836 ENGINE_finish(wl->e);
7837 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007838 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007839 free(wl);
7840 }
7841}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007842#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007843
Remi Gacogned3a23c32015-05-28 16:39:47 +02007844#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007845void ssl_free_dh(void) {
7846 if (local_dh_1024) {
7847 DH_free(local_dh_1024);
7848 local_dh_1024 = NULL;
7849 }
7850 if (local_dh_2048) {
7851 DH_free(local_dh_2048);
7852 local_dh_2048 = NULL;
7853 }
7854 if (local_dh_4096) {
7855 DH_free(local_dh_4096);
7856 local_dh_4096 = NULL;
7857 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007858 if (global_dh) {
7859 DH_free(global_dh);
7860 global_dh = NULL;
7861 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007862}
7863#endif
7864
7865__attribute__((destructor))
7866static void __ssl_sock_deinit(void)
7867{
7868#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007869 if (ssl_ctx_lru_tree) {
7870 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007871 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007872 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007873#endif
7874
Willy Tarreau5db847a2019-05-09 14:13:35 +02007875#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007876 ERR_remove_state(0);
7877 ERR_free_strings();
7878
7879 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007880#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007881
Willy Tarreau5db847a2019-05-09 14:13:35 +02007882#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007883 CRYPTO_cleanup_all_ex_data();
7884#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007885 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007886}
7887
William Dauchyf6370442020-11-14 19:25:33 +01007888
Emeric Brun46591952012-05-18 15:47:34 +02007889/*
7890 * Local variables:
7891 * c-indent-level: 8
7892 * c-basic-offset: 8
7893 * End:
7894 */