blob: a2be6721d86d56a1a7c37e8656336e577267abc1 [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
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001053
1054/*
1055 * Initialize an HMAC context <hctx> using the <key> and <md> parameters.
1056 * Returns -1 in case of error, 1 otherwise.
1057 */
1058static int ssl_hmac_init(MAC_CTX *hctx, unsigned char *key, int key_len, const EVP_MD *md)
1059{
1060#ifdef HAVE_OSSL_PARAM
1061 OSSL_PARAM params[3];
1062
1063 params[0] = OSSL_PARAM_construct_octet_string(OSSL_MAC_PARAM_KEY, key, key_len);
1064 params[1] = OSSL_PARAM_construct_utf8_string(OSSL_MAC_PARAM_DIGEST, (char*)EVP_MD_name(md), 0);
1065 params[2] = OSSL_PARAM_construct_end();
1066 if (EVP_MAC_CTX_set_params(hctx, params) == 0)
1067 return -1; /* error in mac initialisation */
1068
1069#else
1070 HMAC_Init_ex(hctx, key, key_len, md, NULL);
1071#endif
1072 return 1;
1073}
1074
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001075#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01001076
1077static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ectx, MAC_CTX *hctx, int enc)
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001078{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001079 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001080 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001081 struct connection *conn;
1082 int head;
1083 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001084 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001085
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001086 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001087 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001088 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1089
1090 keys = ref->tlskeys;
1091 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001092
1093 if (enc) {
1094 memcpy(key_name, keys[head].name, 16);
1095
1096 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001097 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001098
Emeric Brun9e754772019-01-10 17:51:55 +01001099 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001100
Emeric Brun9e754772019-01-10 17:51:55 +01001101 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1102 goto end;
1103
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001104 if (ssl_hmac_init(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0)
1105 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001106 ret = 1;
1107 }
1108 else if (ref->key_size_bits == 256 ) {
1109
1110 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1111 goto end;
1112
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001113 if (ssl_hmac_init(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0)
1114 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001115 ret = 1;
1116 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001117 } else {
1118 for (i = 0; i < TLS_TICKETS_NO; i++) {
1119 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1120 goto found;
1121 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001122 ret = 0;
1123 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001124
Christopher Faulet16f45c82018-02-16 11:23:49 +01001125 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001126 if (ref->key_size_bits == 128) {
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001127 if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT()) < 0)
1128 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001129 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1130 goto end;
1131 /* 2 for key renewal, 1 if current key is still valid */
1132 ret = i ? 2 : 1;
1133 }
1134 else if (ref->key_size_bits == 256) {
Remi Tricot-Le Bretonc9414e22022-02-08 17:45:59 +01001135 if (ssl_hmac_init(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT()) < 0)
1136 goto end;
Emeric Brun9e754772019-01-10 17:51:55 +01001137 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1138 goto end;
1139 /* 2 for key renewal, 1 if current key is still valid */
1140 ret = i ? 2 : 1;
1141 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001142 }
Emeric Brun9e754772019-01-10 17:51:55 +01001143
Christopher Faulet16f45c82018-02-16 11:23:49 +01001144 end:
1145 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1146 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001147}
1148
1149struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1150{
1151 struct tls_keys_ref *ref;
1152
1153 list_for_each_entry(ref, &tlskeys_reference, list)
1154 if (ref->filename && strcmp(filename, ref->filename) == 0)
1155 return ref;
1156 return NULL;
1157}
1158
1159struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1160{
1161 struct tls_keys_ref *ref;
1162
1163 list_for_each_entry(ref, &tlskeys_reference, list)
1164 if (ref->unique_id == unique_id)
1165 return ref;
1166 return NULL;
1167}
1168
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001169/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001170 * match existing ones, this function returns -1
1171 * else it returns 0 on success.
1172 */
1173int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001174 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001175{
Emeric Brun9e754772019-01-10 17:51:55 +01001176 if (ref->key_size_bits == 128) {
1177 if (tlskey->data != sizeof(struct tls_sess_key_128))
1178 return -1;
1179 }
1180 else if (ref->key_size_bits == 256) {
1181 if (tlskey->data != sizeof(struct tls_sess_key_256))
1182 return -1;
1183 }
1184 else
1185 return -1;
1186
Christopher Faulet16f45c82018-02-16 11:23:49 +01001187 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001188 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1189 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001190 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1191 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001192
1193 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001194}
1195
Willy Tarreau83061a82018-07-13 11:56:34 +02001196int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001197{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001198 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1199
1200 if(!ref) {
1201 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1202 return 1;
1203 }
Emeric Brun9e754772019-01-10 17:51:55 +01001204 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1205 memprintf(err, "Invalid key size");
1206 return 1;
1207 }
1208
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001209 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001210}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001211
1212/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001213 * automatic ids. It's called just after the basic checks. It returns
1214 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001215 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001216static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001217{
1218 int i = 0;
1219 struct tls_keys_ref *ref, *ref2, *ref3;
1220 struct list tkr = LIST_HEAD_INIT(tkr);
1221
1222 list_for_each_entry(ref, &tlskeys_reference, list) {
1223 if (ref->unique_id == -1) {
1224 /* Look for the first free id. */
1225 while (1) {
1226 list_for_each_entry(ref2, &tlskeys_reference, list) {
1227 if (ref2->unique_id == i) {
1228 i++;
1229 break;
1230 }
1231 }
1232 if (&ref2->list == &tlskeys_reference)
1233 break;
1234 }
1235
1236 /* Uses the unique id and increment it for the next entry. */
1237 ref->unique_id = i;
1238 i++;
1239 }
1240 }
1241
1242 /* This sort the reference list by id. */
1243 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001244 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001245 list_for_each_entry(ref3, &tkr, list) {
1246 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001247 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001248 break;
1249 }
1250 }
1251 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001252 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001253 }
1254
1255 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001256 LIST_INSERT(&tkr, &tlskeys_reference);
1257 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001258 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001259}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001260#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1261
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001262#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001263int ocsp_ex_index = -1;
1264
yanbzhube2774d2015-12-10 15:07:30 -05001265int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1266{
1267 switch (evp_keytype) {
1268 case EVP_PKEY_RSA:
1269 return 2;
1270 case EVP_PKEY_DSA:
1271 return 0;
1272 case EVP_PKEY_EC:
1273 return 1;
1274 }
1275
1276 return -1;
1277}
1278
Emeric Brun4147b2e2014-06-16 18:36:30 +02001279/*
1280 * Callback used to set OCSP status extension content in server hello.
1281 */
1282int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1283{
yanbzhube2774d2015-12-10 15:07:30 -05001284 struct certificate_ocsp *ocsp;
1285 struct ocsp_cbk_arg *ocsp_arg;
1286 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001287 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001288 EVP_PKEY *ssl_pkey;
1289 int key_type;
1290 int index;
1291
William Lallemand76b4a122020-08-04 17:41:39 +02001292 ctx = SSL_get_SSL_CTX(ssl);
1293 if (!ctx)
1294 return SSL_TLSEXT_ERR_NOACK;
1295
1296 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1297 if (!ocsp_arg)
1298 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001299
1300 ssl_pkey = SSL_get_privatekey(ssl);
1301 if (!ssl_pkey)
1302 return SSL_TLSEXT_ERR_NOACK;
1303
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001304 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001305
1306 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1307 ocsp = ocsp_arg->s_ocsp;
1308 else {
1309 /* For multiple certs per context, we have to find the correct OCSP response based on
1310 * the certificate type
1311 */
1312 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1313
1314 if (index < 0)
1315 return SSL_TLSEXT_ERR_NOACK;
1316
1317 ocsp = ocsp_arg->m_ocsp[index];
1318
1319 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001320
1321 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001322 !ocsp->response.area ||
1323 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001324 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001325 return SSL_TLSEXT_ERR_NOACK;
1326
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001327 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001328 if (!ssl_buf)
1329 return SSL_TLSEXT_ERR_NOACK;
1330
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001331 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1332 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001333
1334 return SSL_TLSEXT_ERR_OK;
1335}
1336
William Lallemand4a660132019-10-14 14:51:41 +02001337#endif
1338
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001339#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001340
1341
1342/*
1343 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1344 * used anymore. Also removes it from the tree if free'd.
1345 */
1346static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1347{
1348 if (!ocsp)
1349 return;
1350
1351 ocsp->refcount--;
1352 if (ocsp->refcount <= 0) {
1353 ebmb_delete(&ocsp->key);
1354 chunk_destroy(&ocsp->response);
1355 free(ocsp);
1356 }
1357}
1358
1359
Emeric Brun4147b2e2014-06-16 18:36:30 +02001360/*
1361 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001362 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1363 * status extension, the issuer's certificate is mandatory. It should be
1364 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001365 *
William Lallemand246c0242019-10-11 08:59:13 +02001366 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1367 * OCSP response. If file is empty or content is not a valid OCSP response,
1368 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1369 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001370 *
1371 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001372 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001373 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001374static 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 +02001375{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001376 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001377 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001378 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001379 struct certificate_ocsp *ocsp = NULL, *iocsp;
1380 char *warn = NULL;
1381 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001382 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001383
Emeric Brun4147b2e2014-06-16 18:36:30 +02001384
William Lallemand246c0242019-10-11 08:59:13 +02001385 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001386 if (!x)
1387 goto out;
1388
William Lallemand246c0242019-10-11 08:59:13 +02001389 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001390 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1391 if (chain) {
1392 /* check if one of the certificate of the chain is the issuer */
1393 for (i = 0; i < sk_X509_num(chain); i++) {
1394 X509 *ti = sk_X509_value(chain, i);
1395 if (X509_check_issued(ti, x) == X509_V_OK) {
1396 issuer = ti;
1397 break;
1398 }
1399 }
1400 }
William Lallemand246c0242019-10-11 08:59:13 +02001401 if (!issuer)
1402 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001403
1404 cid = OCSP_cert_to_id(0, x, issuer);
1405 if (!cid)
1406 goto out;
1407
1408 i = i2d_OCSP_CERTID(cid, NULL);
1409 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1410 goto out;
1411
Vincent Bernat02779b62016-04-03 13:48:43 +02001412 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001413 if (!ocsp)
1414 goto out;
1415
1416 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001417 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001418
1419 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1420 if (iocsp == ocsp)
1421 ocsp = NULL;
1422
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001423#ifndef SSL_CTX_get_tlsext_status_cb
1424# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1425 *cb = (void (*) (void))ctx->tlsext_status_cb;
1426#endif
1427 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1428
1429 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001430 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001431 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001432
William Lallemanda560c062020-07-31 11:43:20 +02001433 cb_arg = calloc(1, sizeof(*cb_arg));
1434 if (!cb_arg)
1435 goto out;
1436
yanbzhube2774d2015-12-10 15:07:30 -05001437 cb_arg->is_single = 1;
1438 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001439 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001440
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001441 pkey = X509_get_pubkey(x);
1442 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1443 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001444
1445 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001446 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 */
1447
yanbzhube2774d2015-12-10 15:07:30 -05001448 } else {
1449 /*
1450 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1451 * Update that cb_arg with the new cert's staple
1452 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001453 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001454 struct certificate_ocsp *tmp_ocsp;
1455 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001456 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001457 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001458
William Lallemand76b4a122020-08-04 17:41:39 +02001459 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001460
1461 /*
1462 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1463 * the order of operations below matter, take care when changing it
1464 */
1465 tmp_ocsp = cb_arg->s_ocsp;
1466 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1467 cb_arg->s_ocsp = NULL;
1468 cb_arg->m_ocsp[index] = tmp_ocsp;
1469 cb_arg->is_single = 0;
1470 cb_arg->single_kt = 0;
1471
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001472 pkey = X509_get_pubkey(x);
1473 key_type = EVP_PKEY_base_id(pkey);
1474 EVP_PKEY_free(pkey);
1475
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001476 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001477 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001478 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001479 iocsp->refcount++;
1480 }
yanbzhube2774d2015-12-10 15:07:30 -05001481 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001482
1483 ret = 0;
1484
1485 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001486 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001487 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001488 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001489 }
1490
1491out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001492 if (cid)
1493 OCSP_CERTID_free(cid);
1494
1495 if (ocsp)
1496 free(ocsp);
1497
1498 if (warn)
1499 free(warn);
1500
Emeric Brun4147b2e2014-06-16 18:36:30 +02001501 return ret;
1502}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001503#endif
1504
1505#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001506static 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 +02001507{
William Lallemand4a660132019-10-14 14:51:41 +02001508 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 +02001509}
1510#endif
1511
William Lallemand4a660132019-10-14 14:51:41 +02001512
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001513#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001514
1515#define CT_EXTENSION_TYPE 18
1516
William Lallemand03c331c2020-05-13 10:10:01 +02001517int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001518
1519int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1520{
Willy Tarreau83061a82018-07-13 11:56:34 +02001521 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001522
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001523 *out = (unsigned char *) sctl->area;
1524 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001525
1526 return 1;
1527}
1528
1529int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1530{
1531 return 1;
1532}
1533
William Lallemanda17f4112019-10-10 15:16:44 +02001534static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001535{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001536 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001537
William Lallemanda17f4112019-10-10 15:16:44 +02001538 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 +01001539 goto out;
1540
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001541 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1542
1543 ret = 0;
1544
1545out:
1546 return ret;
1547}
1548
1549#endif
1550
Emeric Brune1f38db2012-09-03 20:36:47 +02001551void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1552{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001553 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001554#ifdef USE_QUIC
1555 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
1556#endif /* USE_QUIC */
1557 struct ssl_sock_ctx *ctx = NULL;
1558
Emeric Brund8b2bb52014-01-28 15:43:53 +01001559 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001560 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001561
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001562 if (conn)
1563 ctx = conn->xprt_ctx;
1564#ifdef USE_QUIC
1565 else if (qc)
1566 ctx = qc->xprt_ctx;
1567#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01001568
1569 if (!ctx) {
1570 /* must never happen */
1571 ABORT_NOW();
1572 return;
1573 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001574
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001575#ifndef SSL_OP_NO_RENEGOTIATION
1576 /* Please note that BoringSSL defines this macro to zero so don't
1577 * change this to #if and do not assign a default value to this macro!
1578 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001579 if (where & SSL_CB_HANDSHAKE_START) {
1580 /* Disable renegotiation (CVE-2009-3555) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01001581 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 +02001582 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001583 conn->err_code = CO_ER_SSL_RENEG;
1584 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001585 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001586#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001587
1588 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001589 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001590 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001591 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001592 consider that the buffering was activated,
1593 so we rise the output buffer size from 4k
1594 to 16k */
1595 write_bio = SSL_get_wbio(ssl);
1596 if (write_bio != SSL_get_rbio(ssl)) {
1597 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001598 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001599 }
1600 }
1601 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001602}
1603
Emeric Brune64aef12012-09-21 13:15:06 +02001604/* Callback is called for each certificate of the chain during a verify
1605 ok is set to 1 if preverify detect no error on current certificate.
1606 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001607int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001608{
1609 SSL *ssl;
1610 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001611 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001612 int err, depth;
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001613 X509 *client_crt;
1614 STACK_OF(X509) *certs;
Emeric Brune64aef12012-09-21 13:15:06 +02001615
1616 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001617 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001618 client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001619
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001620 ctx = conn->xprt_ctx;
1621
1622 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001623
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001624 depth = X509_STORE_CTX_get_error_depth(x_store);
1625 err = X509_STORE_CTX_get_error(x_store);
1626
Emeric Brun81c00f02012-09-21 14:31:21 +02001627 if (ok) /* no errors */
1628 return ok;
1629
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001630 /* Keep a reference to the client's certificate in order to be able to
1631 * dump some fetches values in a log even when the verification process
1632 * fails. */
1633 if (depth == 0) {
1634 X509_free(client_crt);
1635 client_crt = X509_STORE_CTX_get0_cert(x_store);
1636 if (client_crt) {
1637 X509_up_ref(client_crt);
1638 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
1639 }
1640 }
1641 else {
1642 /* An error occurred on a CA certificate of the certificate
1643 * chain, we might never call this verify callback on the client
1644 * certificate's depth (which is 0) so we try to store the
1645 * reference right now. */
Remi Tricot-Le Bretonf95c2952021-08-20 09:51:23 +02001646 certs = X509_STORE_CTX_get1_chain(x_store);
1647 if (certs) {
1648 client_crt = sk_X509_value(certs, 0);
1649 if (client_crt) {
1650 X509_up_ref(client_crt);
1651 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001652 }
1653 sk_X509_pop_free(certs, X509_free);
1654 }
1655 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001656
1657 /* check if CA error needs to be ignored */
1658 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001659 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1660 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1661 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001662 }
1663
Willy Tarreau731248f2020-02-04 14:02:02 +01001664 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001665 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001666 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001667 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001668 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001669
Willy Tarreau20879a02012-12-03 16:32:10 +01001670 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001671 return 0;
1672 }
1673
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001674 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1675 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001676
Emeric Brun81c00f02012-09-21 14:31:21 +02001677 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001678 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001679 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001680 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001681 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001682 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001683
Willy Tarreau20879a02012-12-03 16:32:10 +01001684 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001685 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001686}
1687
Dragan Dosen9ac98092020-05-11 15:51:45 +02001688#ifdef TLS1_RT_HEARTBEAT
1689static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1690 int content_type, const void *buf, size_t len,
1691 SSL *ssl)
1692{
1693 /* test heartbeat received (write_p is set to 0
1694 for a received record) */
1695 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1696 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1697 const unsigned char *p = buf;
1698 unsigned int payload;
1699
1700 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1701
1702 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1703 if (*p != TLS1_HB_REQUEST)
1704 return;
1705
1706 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1707 goto kill_it;
1708
1709 payload = (p[1] * 256) + p[2];
1710 if (3 + payload + 16 <= len)
1711 return; /* OK no problem */
1712 kill_it:
1713 /* We have a clear heartbleed attack (CVE-2014-0160), the
1714 * advertised payload is larger than the advertised packet
1715 * length, so we have garbage in the buffer between the
1716 * payload and the end of the buffer (p+len). We can't know
1717 * if the SSL stack is patched, and we don't know if we can
1718 * safely wipe out the area between p+3+len and payload.
1719 * So instead, we prevent the response from being sent by
1720 * setting the max_send_fragment to 0 and we report an SSL
1721 * error, which will kill this connection. It will be reported
1722 * above as SSL_ERROR_SSL while an other handshake failure with
1723 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1724 */
1725 ssl->max_send_fragment = 0;
1726 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1727 }
1728}
1729#endif
1730
1731static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1732 int content_type, const void *buf, size_t len,
1733 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001734{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001735 struct ssl_capture *capture;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001736 uchar *msg;
1737 uchar *end;
1738 uchar *extensions_end;
1739 uchar *ec_start = NULL;
1740 uchar *ec_formats_start = NULL;
1741 uchar *list_end;
1742 ushort protocol_version;
1743 ushort extension_id;
1744 ushort ec_len = 0;
1745 uchar ec_formats_len = 0;
1746 int offset = 0;
1747 int rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001748
1749 /* This function is called for "from client" and "to server"
1750 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001751 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001752 */
1753
1754 /* "write_p" is set to 0 is the bytes are received messages,
1755 * otherwise it is set to 1.
1756 */
1757 if (write_p != 0)
1758 return;
1759
1760 /* content_type contains the type of message received or sent
1761 * according with the SSL/TLS protocol spec. This message is
1762 * encoded with one byte. The value 256 (two bytes) is used
1763 * for designing the SSL/TLS record layer. According with the
1764 * rfc6101, the expected message (other than 256) are:
1765 * - change_cipher_spec(20)
1766 * - alert(21)
1767 * - handshake(22)
1768 * - application_data(23)
1769 * - (255)
1770 * We are interessed by the handshake and specially the client
1771 * hello.
1772 */
1773 if (content_type != 22)
1774 return;
1775
1776 /* The message length is at least 4 bytes, containing the
1777 * message type and the message length.
1778 */
1779 if (len < 4)
1780 return;
1781
1782 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001783 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001784 * - hello_request(0)
1785 * - client_hello(1)
1786 * - server_hello(2)
1787 * - certificate(11)
1788 * - server_key_exchange (12)
1789 * - certificate_request(13)
1790 * - server_hello_done(14)
1791 * We are interested by the client hello.
1792 */
1793 msg = (unsigned char *)buf;
1794 if (msg[0] != 1)
1795 return;
1796
1797 /* Next three bytes are the length of the message. The total length
1798 * must be this decoded length + 4. If the length given as argument
1799 * is not the same, we abort the protocol dissector.
1800 */
1801 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1802 if (len < rec_len + 4)
1803 return;
1804 msg += 4;
1805 end = msg + rec_len;
1806 if (end < msg)
1807 return;
1808
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001809 /* Expect 2 bytes for protocol version
1810 * (1 byte for major and 1 byte for minor)
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001811 */
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001812 if (msg + 2 > end)
1813 return;
1814 protocol_version = (msg[0] << 8) + msg[1];
1815 msg += 2;
1816
1817 /* Expect the random, composed by 4 bytes for the unix time and
1818 * 28 bytes for unix payload. So we jump 4 + 28.
1819 */
1820 msg += 4 + 28;
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001821 if (msg > end)
1822 return;
1823
1824 /* Next, is session id:
1825 * if present, we have to jump by length + 1 for the size information
1826 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001827 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001828 if (msg[0] > 0)
1829 msg += msg[0];
1830 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001831 if (msg > end)
1832 return;
1833
1834 /* Next two bytes are the ciphersuite length. */
1835 if (msg + 2 > end)
1836 return;
1837 rec_len = (msg[0] << 8) + msg[1];
1838 msg += 2;
1839 if (msg + rec_len > end || msg + rec_len < msg)
1840 return;
1841
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001842 capture = pool_zalloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001843 if (!capture)
1844 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001845 /* Compute the xxh64 of the ciphersuite. */
1846 capture->xxh64 = XXH64(msg, rec_len, 0);
1847
1848 /* Capture the ciphersuite. */
Marcin Deranek310a2602021-07-13 19:04:24 +02001849 capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len);
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001850 capture->ciphersuite_offset = 0;
1851 memcpy(capture->data, msg, capture->ciphersuite_len);
1852 msg += rec_len;
1853 offset += capture->ciphersuite_len;
1854
1855 /* Initialize other data */
1856 capture->protocol_version = protocol_version;
1857
1858 /* Next, compression methods:
1859 * if present, we have to jump by length + 1 for the size information
1860 * if not present, we have to jump by 1 only
1861 */
1862 if (msg[0] > 0)
1863 msg += msg[0];
1864 msg += 1;
1865 if (msg > end)
1866 goto store_capture;
1867
1868 /* We reached extensions */
1869 if (msg + 2 > end)
1870 goto store_capture;
1871 rec_len = (msg[0] << 8) + msg[1];
1872 msg += 2;
1873 if (msg + rec_len > end || msg + rec_len < msg)
1874 goto store_capture;
1875 extensions_end = msg + rec_len;
1876 capture->extensions_offset = offset;
1877
1878 /* Parse each extension */
1879 while (msg + 4 < extensions_end) {
1880 /* Add 2 bytes of extension_id */
Marcin Deranek310a2602021-07-13 19:04:24 +02001881 if (global_ssl.capture_buffer_size >= offset + 2) {
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001882 capture->data[offset++] = msg[0];
1883 capture->data[offset++] = msg[1];
1884 capture->extensions_len += 2;
1885 }
1886 else
1887 break;
1888 extension_id = (msg[0] << 8) + msg[1];
1889 /* Length of the extension */
1890 rec_len = (msg[2] << 8) + msg[3];
1891
1892 /* Expect 2 bytes extension id + 2 bytes extension size */
1893 msg += 2 + 2;
1894 if (msg + rec_len > extensions_end || msg + rec_len < msg)
1895 goto store_capture;
1896 /* TLS Extensions
1897 * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1898 if (extension_id == 0x000a) {
1899 /* Elliptic Curves:
1900 * https://www.rfc-editor.org/rfc/rfc8422.html
1901 * https://www.rfc-editor.org/rfc/rfc7919.html */
1902 list_end = msg + rec_len;
1903 if (msg + 2 > list_end)
1904 goto store_capture;
1905 rec_len = (msg[0] << 8) + msg[1];
1906 msg += 2;
1907
1908 if (msg + rec_len > list_end || msg + rec_len < msg)
1909 goto store_capture;
1910 /* Store location/size of the list */
1911 ec_start = msg;
1912 ec_len = rec_len;
1913 }
1914 else if (extension_id == 0x000b) {
1915 /* Elliptic Curves Point Formats:
1916 * https://www.rfc-editor.org/rfc/rfc8422.html */
1917 list_end = msg + rec_len;
1918 if (msg + 1 > list_end)
1919 goto store_capture;
1920 rec_len = msg[0];
1921 msg += 1;
1922
1923 if (msg + rec_len > list_end || msg + rec_len < msg)
1924 goto store_capture;
1925 /* Store location/size of the list */
1926 ec_formats_start = msg;
1927 ec_formats_len = rec_len;
1928 }
1929 msg += rec_len;
1930 }
1931
1932 if (ec_start) {
1933 rec_len = ec_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02001934 if (offset + rec_len > global_ssl.capture_buffer_size)
1935 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001936 memcpy(capture->data + offset, ec_start, rec_len);
1937 capture->ec_offset = offset;
1938 capture->ec_len = rec_len;
1939 offset += rec_len;
1940 }
1941 if (ec_formats_start) {
1942 rec_len = ec_formats_len;
Marcin Deranek310a2602021-07-13 19:04:24 +02001943 if (offset + rec_len > global_ssl.capture_buffer_size)
1944 rec_len = global_ssl.capture_buffer_size - offset;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001945 memcpy(capture->data + offset, ec_formats_start, rec_len);
1946 capture->ec_formats_offset = offset;
1947 capture->ec_formats_len = rec_len;
1948 offset += rec_len;
1949 }
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001950
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001951 store_capture:
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001952 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001953}
William Lallemand7d42ef52020-07-06 11:41:30 +02001954
1955
William Lallemand722180a2021-06-09 16:46:12 +02001956#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001957static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1958 int content_type, const void *buf, size_t len,
1959 SSL *ssl)
1960{
1961 struct ssl_keylog *keylog;
1962
1963 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1964 return;
1965
Willy Tarreauf208ac02021-03-22 21:10:12 +01001966 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001967 if (!keylog)
1968 return;
1969
William Lallemand7d42ef52020-07-06 11:41:30 +02001970 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1971 pool_free(pool_head_ssl_keylog, keylog);
1972 return;
1973 }
1974}
1975#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001976
Emeric Brun29f037d2014-04-25 19:05:36 +02001977/* Callback is called for ssl protocol analyse */
1978void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1979{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001980 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1981 struct ssl_sock_msg_callback *cbk;
1982
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001983 /* Try to call all callback functions that were registered by using
1984 * ssl_sock_register_msg_callback().
1985 */
1986 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1987 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1988 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001989}
1990
Bernard Spil13c53f82018-02-15 13:34:58 +01001991#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001992static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1993 const unsigned char *in, unsigned int inlen,
1994 void *arg)
1995{
1996 struct server *srv = arg;
1997
1998 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1999 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
2000 return SSL_TLSEXT_ERR_OK;
2001 return SSL_TLSEXT_ERR_NOACK;
2002}
2003#endif
2004
2005#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002006/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002007 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002008 */
2009static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
2010 unsigned int *len, void *arg)
2011{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002012 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02002013
2014 *data = (const unsigned char *)conf->npn_str;
2015 *len = conf->npn_len;
2016 return SSL_TLSEXT_ERR_OK;
2017}
2018#endif
2019
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002020#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02002021/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002022 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02002023 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002024static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
2025 unsigned char *outlen,
2026 const unsigned char *server,
2027 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02002028{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002029 struct ssl_bind_conf *conf = arg;
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002030#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002031 struct quic_conn *qc = SSL_get_ex_data(s, ssl_qc_app_data_index);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002032#endif
Willy Tarreauab861d32013-04-02 02:30:41 +02002033
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002034 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
2035 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002036#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002037 if (qc)
2038 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille067a82b2021-11-19 17:02:20 +01002039#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01002040 return SSL_TLSEXT_ERR_NOACK;
2041 }
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002042
2043#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002044 if (qc && !quic_set_app_ops(qc, *out, *outlen)) {
2045 quic_set_tls_alert(qc, SSL_AD_NO_APPLICATION_PROTOCOL);
Frédéric Lécaille1761fdf2021-12-14 19:40:04 +01002046 return SSL_TLSEXT_ERR_NOACK;
2047 }
2048#endif
2049
Willy Tarreauab861d32013-04-02 02:30:41 +02002050 return SSL_TLSEXT_ERR_OK;
2051}
2052#endif
2053
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02002054#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002055#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002056
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002057/* Configure a DNS SAN extenion on a certificate. */
2058int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
2059 int failure = 0;
2060 X509_EXTENSION *san_ext = NULL;
2061 CONF *conf = NULL;
2062 struct buffer *san_name = get_trash_chunk();
2063
2064 conf = NCONF_new(NULL);
2065 if (!conf) {
2066 failure = 1;
2067 goto cleanup;
2068 }
2069
2070 /* Build an extension based on the DNS entry above */
2071 chunk_appendf(san_name, "DNS:%s", servername);
2072 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
2073 if (!san_ext) {
2074 failure = 1;
2075 goto cleanup;
2076 }
2077
2078 /* Add the extension */
2079 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
2080 failure = 1;
2081 goto cleanup;
2082 }
2083
2084 /* Success */
2085 failure = 0;
2086
2087cleanup:
2088 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
2089 if (NULL != conf) NCONF_free(conf);
2090
2091 return failure;
2092}
2093
Christopher Faulet30548802015-06-11 13:39:32 +02002094/* Create a X509 certificate with the specified servername and serial. This
2095 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02002096static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002097ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002098{
Shimi Gersner5846c492020-08-23 13:58:12 +03002099 X509 *cacert = bind_conf->ca_sign_ckch->cert;
2100 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002101 SSL_CTX *ssl_ctx = NULL;
2102 X509 *newcrt = NULL;
2103 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002104 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002105 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002106 X509_NAME *name;
2107 const EVP_MD *digest;
2108 X509V3_CTX ctx;
2109 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002110 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002111
Christopher Faulet48a83322017-07-28 16:56:09 +02002112 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05002113#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002114 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
2115#else
2116 tmp_ssl = SSL_new(bind_conf->default_ctx);
2117 if (tmp_ssl)
2118 pkey = SSL_get_privatekey(tmp_ssl);
2119#endif
2120 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002121 goto mkcert_error;
2122
2123 /* Create the certificate */
2124 if (!(newcrt = X509_new()))
2125 goto mkcert_error;
2126
2127 /* Set version number for the certificate (X509v3) and the serial
2128 * number */
2129 if (X509_set_version(newcrt, 2L) != 1)
2130 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02002131 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002132
2133 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08002134 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
2135 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002136 goto mkcert_error;
2137
2138 /* set public key in the certificate */
2139 if (X509_set_pubkey(newcrt, pkey) != 1)
2140 goto mkcert_error;
2141
2142 /* Set issuer name from the CA */
2143 if (!(name = X509_get_subject_name(cacert)))
2144 goto mkcert_error;
2145 if (X509_set_issuer_name(newcrt, name) != 1)
2146 goto mkcert_error;
2147
2148 /* Set the subject name using the same, but the CN */
2149 name = X509_NAME_dup(name);
2150 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
2151 (const unsigned char *)servername,
2152 -1, -1, 0) != 1) {
2153 X509_NAME_free(name);
2154 goto mkcert_error;
2155 }
2156 if (X509_set_subject_name(newcrt, name) != 1) {
2157 X509_NAME_free(name);
2158 goto mkcert_error;
2159 }
2160 X509_NAME_free(name);
2161
2162 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002163 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002164 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
2165 for (i = 0; i < X509V3_EXT_SIZE; i++) {
2166 X509_EXTENSION *ext;
2167
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002168 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002169 goto mkcert_error;
2170 if (!X509_add_ext(newcrt, ext, -1)) {
2171 X509_EXTENSION_free(ext);
2172 goto mkcert_error;
2173 }
2174 X509_EXTENSION_free(ext);
2175 }
2176
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002177 /* Add SAN extension */
2178 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
2179 goto mkcert_error;
2180 }
2181
Christopher Faulet31af49d2015-06-09 17:29:50 +02002182 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002183
2184 key_type = EVP_PKEY_base_id(capkey);
2185
2186 if (key_type == EVP_PKEY_DSA)
2187 digest = EVP_sha1();
2188 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002189 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002190 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002191 digest = EVP_sha256();
2192 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002193#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002194 int nid;
2195
2196 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2197 goto mkcert_error;
2198 if (!(digest = EVP_get_digestbynid(nid)))
2199 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002200#else
2201 goto mkcert_error;
2202#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002203 }
2204
Christopher Faulet31af49d2015-06-09 17:29:50 +02002205 if (!(X509_sign(newcrt, capkey, digest)))
2206 goto mkcert_error;
2207
2208 /* Create and set the new SSL_CTX */
2209 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2210 goto mkcert_error;
2211 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2212 goto mkcert_error;
2213 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2214 goto mkcert_error;
2215 if (!SSL_CTX_check_private_key(ssl_ctx))
2216 goto mkcert_error;
2217
Shimi Gersner5846c492020-08-23 13:58:12 +03002218 /* Build chaining the CA cert and the rest of the chain, keep these order */
2219#if defined(SSL_CTX_add1_chain_cert)
2220 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2221 goto mkcert_error;
2222 }
2223
2224 if (bind_conf->ca_sign_ckch->chain) {
2225 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2226 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2227 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2228 goto mkcert_error;
2229 }
2230 }
2231 }
2232#endif
2233
Christopher Faulet31af49d2015-06-09 17:29:50 +02002234 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002235
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002236#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002237 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002238#endif
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002239
2240#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
2241#if defined(SSL_CTX_set1_curves_list)
2242 {
2243 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
2244 if (!SSL_CTX_set1_curves_list(ssl_ctx, ecdhe))
2245 goto end;
2246 }
2247#endif
2248#else
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002249#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2250 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002251 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002252 EC_KEY *ecc;
2253 int nid;
2254
2255 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2256 goto end;
2257 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2258 goto end;
2259 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2260 EC_KEY_free(ecc);
2261 }
Remi Tricot-Le Bretonc11e7e12022-02-08 17:45:56 +01002262#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
2263#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002264 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002265 return ssl_ctx;
2266
2267 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002268 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002269 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002270 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2271 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002272 return NULL;
2273}
2274
Christopher Faulet7969a332015-10-09 11:15:03 +02002275
Christopher Faulet30548802015-06-11 13:39:32 +02002276/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002277 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002278SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002279ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002280{
2281 struct lru64 *lru = NULL;
2282
2283 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002284 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002285 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002286 if (lru && lru->domain) {
2287 if (ssl)
2288 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002289 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002290 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002291 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002292 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002293 }
2294 return NULL;
2295}
2296
Emeric Brun821bb9b2017-06-15 16:37:39 +02002297/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2298 * function is not thread-safe, it should only be used to check if a certificate
2299 * exists in the lru cache (with no warranty it will not be removed by another
2300 * thread). It is kept for backward compatibility. */
2301SSL_CTX *
2302ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2303{
2304 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2305}
2306
Christopher Fauletd2cab922015-07-28 16:03:47 +02002307/* Set a certificate int the LRU cache used to store generated
2308 * certificate. Return 0 on success, otherwise -1 */
2309int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002310ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002311{
2312 struct lru64 *lru = NULL;
2313
2314 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002315 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002316 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002317 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002318 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002319 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002320 }
Christopher Faulet30548802015-06-11 13:39:32 +02002321 if (lru->domain && lru->data)
2322 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002323 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002324 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002325 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002326 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002327 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002328}
2329
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002330/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002331unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002332ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002333{
2334 return XXH32(data, len, ssl_ctx_lru_seed);
2335}
2336
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002337/* Generate a cert and immediately assign it to the SSL session so that the cert's
2338 * refcount is maintained regardless of the cert's presence in the LRU cache.
2339 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002340static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002341ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002342{
Shimi Gersner5846c492020-08-23 13:58:12 +03002343 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002344 SSL_CTX *ssl_ctx = NULL;
2345 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002346 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002347
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002348 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002349 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002350 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002351 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002352 if (lru && lru->domain)
2353 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002354 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002355 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002356 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002357 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002358 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002359 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002360 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002361 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002362 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002363 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002364 SSL_set_SSL_CTX(ssl, ssl_ctx);
2365 /* No LRU cache, this CTX will be released as soon as the session dies */
2366 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002367 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002368 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002369 return 0;
2370}
2371static int
2372ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2373{
2374 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002375 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002376
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002377 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002378 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002379 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002380 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002381 }
2382 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002383}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002384#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002385
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002386#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002387
2388static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002389{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002390#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002391 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002392 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2393#endif
2394}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002395static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2396 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002397 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2398}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002399static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002400#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002401 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002402 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2403#endif
2404}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002405static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002406#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002407 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002408 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2409#endif
2410}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002411/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002412static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2413/* Unusable in this context. */
2414static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2415static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2416static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2417static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2418static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002419#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002420
2421static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2422 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002423 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2424}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002425static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2426 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2427 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2428}
2429static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2430 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002431 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2432}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002433static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2434 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2435 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2436}
2437static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2438 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002439 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2440}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002441static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2442 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2443 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2444}
2445static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2446 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002447 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2448}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002449static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2450 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2451 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2452}
2453static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002454#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002455 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002456 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2457#endif
2458}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002459static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002460#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002461 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2462 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002463#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002464}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002465#endif
2466static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2467static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002468
William Lallemand7fd8b452020-05-07 15:20:43 +02002469struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002470 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2471 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2472 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2473 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2474 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2475 {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 +02002476};
2477
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002478static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2479{
2480 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2481 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2482 SSL_set_SSL_CTX(ssl, ctx);
2483}
2484
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002485#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002486
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002487int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002488{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002489 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002490 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002491
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002492 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2493 return SSL_TLSEXT_ERR_OK;
2494 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002495}
2496
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002497#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002498int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002499{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002500 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002501#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002502int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002503{
2504#endif
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002505 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
2506#ifdef USE_QUIC
2507 struct quic_conn *qc = SSL_get_ex_data(ssl, ssl_qc_app_data_index);
2508#endif /* USE_QUIC */
2509 struct bind_conf *s = NULL;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002510 const uint8_t *extension_data;
2511 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002512 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002513
2514 char *wildp = NULL;
2515 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002516 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002517 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002518 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002519 int i;
2520
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002521 if (conn)
2522 s = __objt_listener(conn->target)->bind_conf;
2523#ifdef USE_QUIC
2524 else if (qc)
2525 s = qc->li->bind_conf;
2526#endif /* USE_QUIC */
Amaury Denoyelle7c564bf2022-01-24 11:04:05 +01002527
2528 if (!s) {
2529 /* must never happen */
2530 ABORT_NOW();
2531 return 0;
2532 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002533
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002534#ifdef USE_QUIC
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002535 if (qc) {
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002536 /* Look for the QUIC transport parameters. */
2537#ifdef OPENSSL_IS_BORINGSSL
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002538 if (!SSL_early_callback_ctx_extension_get(ctx, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002539 &extension_data, &extension_len))
2540#else
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002541 if (!SSL_client_hello_get0_ext(ssl, qc->tps_tls_ext,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002542 &extension_data, &extension_len))
2543#endif
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002544 {
2545 /* This is not redundant. It we only return 0 without setting
2546 * <*al>, this has as side effect to generate another TLS alert
2547 * which would be set after calling quic_set_tls_alert().
2548 */
2549 *al = SSL_AD_MISSING_EXTENSION;
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002550 quic_set_tls_alert(qc, SSL_AD_MISSING_EXTENSION);
Frédéric Lécailleb5b52472021-11-22 15:55:16 +01002551 return 0;
2552 }
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002553
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002554 if (!quic_transport_params_store(qc, 0, extension_data,
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002555 extension_data + extension_len))
2556 goto abort;
2557 }
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002558#endif /* USE_QUIC */
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002559
Olivier Houchard9679ac92017-10-27 14:58:08 +02002560 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002561 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002562#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002563 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2564 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002565#else
2566 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2567#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002568 /*
2569 * The server_name extension was given too much extensibility when it
2570 * was written, so parsing the normal case is a bit complex.
2571 */
2572 size_t len;
2573 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002574 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002575 /* Extract the length of the supplied list of names. */
2576 len = (*extension_data++) << 8;
2577 len |= *extension_data++;
2578 if (len + 2 != extension_len)
2579 goto abort;
2580 /*
2581 * The list in practice only has a single element, so we only consider
2582 * the first one.
2583 */
2584 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2585 goto abort;
2586 extension_len = len - 1;
2587 /* Now we can finally pull out the byte array with the actual hostname. */
2588 if (extension_len <= 2)
2589 goto abort;
2590 len = (*extension_data++) << 8;
2591 len |= *extension_data++;
2592 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2593 || memchr(extension_data, 0, len) != NULL)
2594 goto abort;
2595 servername = extension_data;
2596 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002597 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002598#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2599 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002600 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002601 }
2602#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002603 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002604 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002605 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002606 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002607 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002608 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002609 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002610 goto abort;
2611 }
2612
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002613 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002614#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002615 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002616#else
2617 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2618#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002619 uint8_t sign;
2620 size_t len;
2621 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002622 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002623 len = (*extension_data++) << 8;
2624 len |= *extension_data++;
2625 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002626 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002627 if (len % 2 != 0)
2628 goto abort;
2629 for (; len > 0; len -= 2) {
2630 extension_data++; /* hash */
2631 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002632 switch (sign) {
2633 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002634 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002635 break;
2636 case TLSEXT_signature_ecdsa:
2637 has_ecdsa_sig = 1;
2638 break;
2639 default:
2640 continue;
2641 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002642 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002643 break;
2644 }
2645 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002646 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002647 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002648 }
2649 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002650 const SSL_CIPHER *cipher;
2651 size_t len;
2652 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002653 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002654#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002655 len = ctx->cipher_suites_len;
2656 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002657#else
2658 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2659#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002660 if (len % 2 != 0)
2661 goto abort;
2662 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002663#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002664 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002665 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002666#else
2667 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2668#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002669 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002670 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002671 break;
2672 }
2673 }
2674 }
2675
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002676 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002677 trash.area[i] = tolower(servername[i]);
2678 if (!wildp && (trash.area[i] == '.'))
2679 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002680 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002681 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002682
William Lallemand150bfa82019-09-19 17:12:49 +02002683 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002684
William Lallemand94bd3192020-08-14 14:43:35 +02002685 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2686 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002687 for (i = 0; i < 2; i++) {
2688 if (i == 0) /* lookup in full qualified names */
2689 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002690 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002691 node = ebst_lookup(&s->sni_w_ctx, wildp);
2692 else
2693 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002694
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002695 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002696
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002697 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002698 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002699 struct sni_ctx *sni, *sni_tmp;
2700 int skip = 0;
2701
2702 if (i == 1 && wildp) { /* wildcard */
2703 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2704 sni = container_of(n, struct sni_ctx, name);
2705 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002706 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002707 skip = 1;
2708 break;
2709 }
2710 }
2711 if (skip)
2712 continue;
2713 }
2714
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002715 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002716 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002717 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002718 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002719 break;
2720 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002721 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002722 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002723 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002724 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002725 if (!node_anonymous)
2726 node_anonymous = n;
2727 break;
2728 }
2729 }
2730 }
William Lallemand94bd3192020-08-14 14:43:35 +02002731 }
2732 /* Once the certificates are found, select them depending on what is
2733 * supported in the client and by key_signature priority order: EDSA >
2734 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002735 if (has_ecdsa_sig && node_ecdsa)
2736 node = node_ecdsa;
2737 else if (has_rsa_sig && node_rsa)
2738 node = node_rsa;
2739 else if (node_anonymous)
2740 node = node_anonymous;
2741 else if (node_ecdsa)
2742 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2743 else
2744 node = node_rsa; /* no rsa signature case (far far away) */
2745
William Lallemand94bd3192020-08-14 14:43:35 +02002746 if (node) {
2747 /* switch ctx */
2748 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2749 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2750 if (conf) {
2751 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2752 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2753 if (conf->early_data)
2754 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002755 }
William Lallemand94bd3192020-08-14 14:43:35 +02002756 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2757 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002758 }
William Lallemand150bfa82019-09-19 17:12:49 +02002759
William Lallemand02010472019-10-18 11:02:19 +02002760 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002761#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002762 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002763 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002764 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002765 }
2766#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002767 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002768 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002769 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002770 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002771 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
William Lallemand7980dff2021-11-18 17:46:26 +01002772 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002773 }
William Lallemand7980dff2021-11-18 17:46:26 +01002774
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01002775 /* We are about to raise an handshake error so the servername extension
2776 * callback will never be called and the SNI will never be stored in the
2777 * SSL context. In order for the ssl_fc_sni sample fetch to still work
2778 * in such a case, we store the SNI ourselves as an ex_data information
2779 * in the SSL context.
2780 */
2781 {
2782 char *client_sni = pool_alloc(ssl_sock_client_sni_pool);
2783 if (client_sni) {
2784 strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name);
2785 client_sni[TLSEXT_MAXLEN_host_name] = '\0';
2786 SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni);
2787 }
2788 }
2789
William Lallemand7980dff2021-11-18 17:46:26 +01002790 /* other cases fallback on abort, if strict-sni is set but no node was found */
2791
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002792 abort:
2793 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
Amaury Denoyelle9320dd52022-01-19 10:03:30 +01002794 if (conn)
2795 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002796#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002797 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002798#else
2799 *al = SSL_AD_UNRECOGNIZED_NAME;
2800 return 0;
2801#endif
William Lallemand7980dff2021-11-18 17:46:26 +01002802
2803allow_early:
2804#ifdef OPENSSL_IS_BORINGSSL
2805 if (allow_early)
2806 SSL_set_early_data_enabled(ssl, 1);
2807#else
2808 if (!allow_early)
2809 SSL_set_max_early_data(ssl, 0);
2810#endif
2811 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002812}
2813
William Lallemand002e2062021-11-18 15:25:16 +01002814#else /* ! HAVE_SSL_CLIENT_HELLO_CB */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002815
Emeric Brunfc0421f2012-09-07 17:30:07 +02002816/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2817 * warning when no match is found, which implies the default (first) cert
2818 * will keep being used.
2819 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002820static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002821{
2822 const char *servername;
2823 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002824 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002825 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002826 int i;
2827 (void)al; /* shut gcc stupid warning */
2828
2829 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002830 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002831#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002832 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2833 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002834#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002835 if (s->strict_sni)
2836 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002837 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002838 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002839 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002840 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002841 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002842
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002843 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002844 if (!servername[i])
2845 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002846 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002847 if (!wildp && (trash.area[i] == '.'))
2848 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002849 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002850 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002851
William Lallemand150bfa82019-09-19 17:12:49 +02002852 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002853 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002854 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002855 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2856 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002857 if (!container_of(n, struct sni_ctx, name)->neg) {
2858 node = n;
2859 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002860 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002861 }
2862 if (!node && wildp) {
2863 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002864 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2865 /* lookup a not neg filter */
2866 if (!container_of(n, struct sni_ctx, name)->neg) {
2867 node = n;
2868 break;
2869 }
2870 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002871 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002872 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002873#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002874 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2875 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002876 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002877 return SSL_TLSEXT_ERR_OK;
2878 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002879#endif
William Lallemand21724f02019-11-04 17:56:13 +01002880 if (s->strict_sni) {
2881 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002882 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002883 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002884 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002885 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002886 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002887 }
2888
2889 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002890 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002891 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002892 return SSL_TLSEXT_ERR_OK;
2893}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002894#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002895#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2896
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002897#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002898
2899static DH * ssl_get_dh_1024(void)
2900{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002901 static unsigned char dh1024_p[]={
2902 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2903 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2904 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2905 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2906 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2907 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2908 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2909 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2910 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2911 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2912 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2913 };
2914 static unsigned char dh1024_g[]={
2915 0x02,
2916 };
2917
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002918 BIGNUM *p;
2919 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002920 DH *dh = DH_new();
2921 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002922 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2923 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002924
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002925 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002926 DH_free(dh);
2927 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002928 } else {
2929 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002930 }
2931 }
2932 return dh;
2933}
2934
2935static DH *ssl_get_dh_2048(void)
2936{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002937 static unsigned char dh2048_p[]={
2938 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2939 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2940 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2941 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2942 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2943 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2944 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2945 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2946 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2947 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2948 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2949 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2950 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2951 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2952 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2953 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2954 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2955 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2956 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2957 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2958 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2959 0xB7,0x1F,0x77,0xF3,
2960 };
2961 static unsigned char dh2048_g[]={
2962 0x02,
2963 };
2964
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002965 BIGNUM *p;
2966 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002967 DH *dh = DH_new();
2968 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002969 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2970 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002971
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002972 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002973 DH_free(dh);
2974 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002975 } else {
2976 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002977 }
2978 }
2979 return dh;
2980}
2981
2982static DH *ssl_get_dh_4096(void)
2983{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002984 static unsigned char dh4096_p[]={
2985 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2986 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2987 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2988 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2989 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2990 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2991 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2992 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2993 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2994 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2995 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2996 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2997 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2998 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2999 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
3000 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
3001 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
3002 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
3003 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
3004 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
3005 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
3006 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
3007 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
3008 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
3009 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
3010 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
3011 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
3012 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
3013 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
3014 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
3015 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
3016 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
3017 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
3018 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
3019 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
3020 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
3021 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
3022 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
3023 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
3024 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
3025 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
3026 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
3027 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003028 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02003029 static unsigned char dh4096_g[]={
3030 0x02,
3031 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003032
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003033 BIGNUM *p;
3034 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003035 DH *dh = DH_new();
3036 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003037 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
3038 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02003039
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003040 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003041 DH_free(dh);
3042 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003043 } else {
3044 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003045 }
3046 }
3047 return dh;
3048}
3049
3050/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01003051 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003052static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
3053{
3054 DH *dh = NULL;
3055 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003056 int type;
3057
3058 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003059
3060 /* The keylen supplied by OpenSSL can only be 512 or 1024.
3061 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
3062 */
3063 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
3064 keylen = EVP_PKEY_bits(pkey);
3065 }
3066
Willy Tarreauef934602016-12-22 23:12:01 +01003067 if (keylen > global_ssl.default_dh_param) {
3068 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003069 }
3070
Remi Gacogned3a341a2015-05-29 16:26:17 +02003071 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02003072 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003073 }
3074 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02003075 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003076 }
3077 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02003078 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02003079 }
3080
3081 return dh;
3082}
3083
Remi Gacogne47783ef2015-05-29 15:53:22 +02003084static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003085{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003086 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02003087 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003088
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003089 if (in == NULL)
3090 goto end;
3091
Remi Gacogne47783ef2015-05-29 15:53:22 +02003092 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003093 goto end;
3094
Remi Gacogne47783ef2015-05-29 15:53:22 +02003095 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
3096
3097end:
3098 if (in)
3099 BIO_free(in);
3100
Emeric Brune1b4ed42018-08-16 15:14:12 +02003101 ERR_clear_error();
3102
Remi Gacogne47783ef2015-05-29 15:53:22 +02003103 return dh;
3104}
3105
3106int ssl_sock_load_global_dh_param_from_file(const char *filename)
3107{
3108 global_dh = ssl_sock_get_dh_from_file(filename);
3109
3110 if (global_dh) {
3111 return 0;
3112 }
3113
3114 return -1;
3115}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003116#endif
3117
William Lallemand9117de92019-10-04 00:29:42 +02003118/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02003119static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02003120 struct bind_conf *s, struct ssl_bind_conf *conf,
3121 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003122{
3123 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003124 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003125
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003126 if (*name == '!') {
3127 neg = 1;
3128 name++;
3129 }
3130 if (*name == '*') {
3131 wild = 1;
3132 name++;
3133 }
3134 /* !* filter is a nop */
3135 if (neg && wild)
3136 return order;
3137 if (*name) {
3138 int j, len;
3139 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003140 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02003141 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003142 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02003143 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003144 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003145
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003146 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02003147 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02003148 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003149 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02003150 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003151 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003152 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003153 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003154 sc->order = order++;
3155 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02003156 sc->wild = wild;
3157 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01003158 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02003159 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003160 }
3161 return order;
3162}
3163
William Lallemand6af03992019-07-23 15:00:54 +02003164/*
William Lallemand1d29c742019-10-04 00:53:29 +02003165 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
3166 * This function can't return an error.
3167 *
3168 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
3169 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003170void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02003171{
3172
3173 struct sni_ctx *sc0, *sc0b, *sc1;
3174 struct ebmb_node *node;
3175
3176 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
3177
3178 /* ignore if sc0 was already inserted in a tree */
3179 if (sc0->name.node.leaf_p)
3180 continue;
3181
3182 /* Check for duplicates. */
3183 if (sc0->wild)
3184 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
3185 else
3186 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
3187
3188 for (; node; node = ebmb_next_dup(node)) {
3189 sc1 = ebmb_entry(node, struct sni_ctx, name);
3190 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
3191 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
3192 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02003193 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02003194 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003195 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02003196 break;
William Lallemand1d29c742019-10-04 00:53:29 +02003197 }
3198 }
3199
3200 /* if duplicate, ignore the insertion */
3201 if (!sc0)
3202 continue;
3203
3204 if (sc0->wild)
3205 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
3206 else
3207 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003208 }
William Lallemand21724f02019-11-04 17:56:13 +01003209
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003210 /* replace the default_ctx if required with the instance's ctx. */
3211 if (ckch_inst->is_default) {
3212 SSL_CTX_free(bind_conf->default_ctx);
3213 SSL_CTX_up_ref(ckch_inst->ctx);
3214 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003215 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02003216 }
3217}
3218
3219/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003220 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02003221 */
William Lallemande3af8fb2019-10-08 11:36:53 +02003222struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02003223
William Lallemand2954c472020-03-06 21:54:13 +01003224/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02003225struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02003226
Emeric Brun7a883362019-10-17 13:27:40 +02003227/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003228 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003229 * DH parameter is loaded into the SSL_CTX and if there is no
3230 * DH parameter available in ckchs nor in global, the default
3231 * DH parameters are applied on the SSL_CTX.
3232 * Returns a bitfield containing the flags:
3233 * ERR_FATAL in any fatal error case
3234 * ERR_ALERT if a reason of the error is availabine in err
3235 * ERR_WARN if a warning is available into err
3236 * The value 0 means there is no error nor warning and
3237 * the operation succeed.
3238 */
William Lallemandfa892222019-07-23 16:06:08 +02003239#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003240static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3241 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003242{
Emeric Brun7a883362019-10-17 13:27:40 +02003243 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02003244 DH *dh = NULL;
3245
William Lallemanda8c73742019-07-31 18:31:34 +02003246 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003247 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02003248 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
3249 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3250 err && *err ? *err : "", path);
3251#if defined(SSL_CTX_set_dh_auto)
3252 SSL_CTX_set_dh_auto(ctx, 1);
3253 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3254 err && *err ? *err : "");
3255#else
3256 memprintf(err, "%s, DH ciphers won't be available.\n",
3257 err && *err ? *err : "");
3258#endif
3259 ret |= ERR_WARN;
3260 goto end;
3261 }
William Lallemandfa892222019-07-23 16:06:08 +02003262
3263 if (ssl_dh_ptr_index >= 0) {
3264 /* store a pointer to the DH params to avoid complaining about
3265 ssl-default-dh-param not being set for this SSL_CTX */
3266 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3267 }
3268 }
3269 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003270 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3271 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3272 err && *err ? *err : "", path);
3273#if defined(SSL_CTX_set_dh_auto)
3274 SSL_CTX_set_dh_auto(ctx, 1);
3275 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3276 err && *err ? *err : "");
3277#else
3278 memprintf(err, "%s, DH ciphers won't be available.\n",
3279 err && *err ? *err : "");
3280#endif
3281 ret |= ERR_WARN;
3282 goto end;
3283 }
William Lallemandfa892222019-07-23 16:06:08 +02003284 }
3285 else {
3286 /* Clear openssl global errors stack */
3287 ERR_clear_error();
3288
Willy Tarreau6d27a922020-11-05 19:38:05 +01003289 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003290 /* we are limited to DH parameter of 1024 bits anyway */
3291 if (local_dh_1024 == NULL)
3292 local_dh_1024 = ssl_get_dh_1024();
3293
Emeric Brun7a883362019-10-17 13:27:40 +02003294 if (local_dh_1024 == NULL) {
3295 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3296 err && *err ? *err : "", path);
3297 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003298 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003299 }
William Lallemandfa892222019-07-23 16:06:08 +02003300
Emeric Bruna9363eb2019-10-17 14:53:03 +02003301 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3302 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3303 err && *err ? *err : "", path);
3304#if defined(SSL_CTX_set_dh_auto)
3305 SSL_CTX_set_dh_auto(ctx, 1);
3306 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3307 err && *err ? *err : "");
3308#else
3309 memprintf(err, "%s, DH ciphers won't be available.\n",
3310 err && *err ? *err : "");
3311#endif
3312 ret |= ERR_WARN;
3313 goto end;
3314 }
William Lallemandfa892222019-07-23 16:06:08 +02003315 }
3316 else {
3317 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3318 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003319 }
3320
William Lallemandf9568fc2019-10-16 18:27:58 +02003321end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003322 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003323 return ret;
3324}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003325#endif
William Lallemandfa892222019-07-23 16:06:08 +02003326
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003327
3328/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003329 * Returns a bitfield containing the flags:
3330 * ERR_FATAL in any fatal error case
3331 * ERR_ALERT if the reason of the error is available in err
3332 * ERR_WARN if a warning is available into err
3333 * The value 0 means there is no error nor warning and
3334 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003335 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003336static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3337 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003338{
Emeric Bruna96b5822019-10-17 13:25:14 +02003339 int errcode = 0;
3340
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003341 if (find_chain == NULL) {
3342 errcode |= ERR_FATAL;
3343 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003344 }
3345
3346 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3347 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3348 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003349 errcode |= ERR_ALERT | ERR_FATAL;
3350 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003351 }
3352
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003353 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003354 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003355 } else {
3356 /* Find Certificate Chain in global */
3357 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003358 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003359 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003360 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003361 }
William Lallemand85888572020-02-27 14:48:35 +01003362
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003363 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003364 /* always put a null chain stack in the SSL_CTX so it does not
3365 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003366 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003367 }
3368
William Lallemandf187ce62020-06-02 18:27:20 +02003369 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003370#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003371 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003372 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3373 err && *err ? *err : "", path);
3374 errcode |= ERR_ALERT | ERR_FATAL;
3375 goto end;
3376 }
William Lallemandf187ce62020-06-02 18:27:20 +02003377#else
3378 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003379 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003380 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003381 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003382 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003383 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003384 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3385 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003386 X509_free(ca);
3387 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003388 errcode |= ERR_ALERT | ERR_FATAL;
3389 goto end;
3390 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003391 }
William Lallemandf187ce62020-06-02 18:27:20 +02003392#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003393
William Lallemand9a1d8392020-08-10 17:28:23 +02003394#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003395 /* remove the Root CA from the SSL_CTX if the option is activated */
3396 if (global_ssl.skip_self_issued_ca) {
3397 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3398 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3399 err && *err ? *err : "", path);
3400 errcode |= ERR_ALERT | ERR_FATAL;
3401 goto end;
3402 }
3403 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003404#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003405
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003406end:
3407 return errcode;
3408}
3409
3410
3411/* Loads the info in ckch into ctx
3412 * Returns a bitfield containing the flags:
3413 * ERR_FATAL in any fatal error case
3414 * ERR_ALERT if the reason of the error is available in err
3415 * ERR_WARN if a warning is available into err
3416 * The value 0 means there is no error nor warning and
3417 * the operation succeed.
3418 */
3419static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3420{
3421 int errcode = 0;
3422 STACK_OF(X509) *find_chain = NULL;
3423
3424 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3425 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3426 err && *err ? *err : "", path);
3427 errcode |= ERR_ALERT | ERR_FATAL;
3428 return errcode;
3429 }
3430
3431 /* Load certificate chain */
3432 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3433 if (errcode & ERR_CODE)
3434 goto end;
3435
William Lallemandfa892222019-07-23 16:06:08 +02003436#ifndef OPENSSL_NO_DH
3437 /* store a NULL pointer to indicate we have not yet loaded
3438 a custom DH param file */
3439 if (ssl_dh_ptr_index >= 0) {
3440 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3441 }
3442
Emeric Brun7a883362019-10-17 13:27:40 +02003443 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3444 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003445 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3446 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003447 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003448 }
3449#endif
3450
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003451#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003452 if (sctl_ex_index >= 0 && ckch->sctl) {
3453 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3454 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003455 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003456 errcode |= ERR_ALERT | ERR_FATAL;
3457 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003458 }
3459 }
3460#endif
3461
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003462#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003463 /* Load OCSP Info into context */
3464 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003465 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003466 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",
3467 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003468 errcode |= ERR_ALERT | ERR_FATAL;
3469 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003470 }
3471 }
William Lallemand246c0242019-10-11 08:59:13 +02003472#endif
3473
Emeric Bruna96b5822019-10-17 13:25:14 +02003474 end:
3475 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003476}
3477
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003478
3479/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3480 * Returns a bitfield containing the flags:
3481 * ERR_FATAL in any fatal error case
3482 * ERR_ALERT if the reason of the error is available in err
3483 * ERR_WARN if a warning is available into err
3484 * The value 0 means there is no error nor warning and
3485 * the operation succeed.
3486 */
3487static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3488 SSL_CTX *ctx, char **err)
3489{
3490 int errcode = 0;
3491 STACK_OF(X509) *find_chain = NULL;
3492
3493 /* Load the private key */
3494 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3495 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3496 err && *err ? *err : "", path);
3497 errcode |= ERR_ALERT | ERR_FATAL;
3498 }
3499
3500 /* Load certificate chain */
3501 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3502 if (errcode & ERR_CODE)
3503 goto end;
3504
3505 if (SSL_CTX_check_private_key(ctx) <= 0) {
3506 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3507 err && *err ? *err : "", path);
3508 errcode |= ERR_ALERT | ERR_FATAL;
3509 }
3510
3511end:
3512 return errcode;
3513}
3514
3515
William Lallemand614ca0d2019-10-07 13:52:11 +02003516/*
3517 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003518 *
3519 * Returns a bitfield containing the flags:
3520 * ERR_FATAL in any fatal error case
3521 * ERR_ALERT if the reason of the error is available in err
3522 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003523 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003524int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003525 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003526{
William Lallemandc9402072019-05-15 15:33:54 +02003527 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003528 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003529 int order = 0;
3530 X509_NAME *xname;
3531 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003532 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003533 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003534#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3535 STACK_OF(GENERAL_NAME) *names;
3536#endif
William Lallemand36b84632019-07-18 19:28:17 +02003537 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003538 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003539 int errcode = 0;
3540
3541 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003542
William Lallemande3af8fb2019-10-08 11:36:53 +02003543 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003544 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003545
William Lallemande3af8fb2019-10-08 11:36:53 +02003546 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003547
William Lallemandc9402072019-05-15 15:33:54 +02003548 ctx = SSL_CTX_new(SSLv23_server_method());
3549 if (!ctx) {
3550 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3551 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003552 errcode |= ERR_ALERT | ERR_FATAL;
3553 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003554 }
3555
Emeric Bruna96b5822019-10-17 13:25:14 +02003556 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3557 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003558 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003559
3560 ckch_inst = ckch_inst_new();
3561 if (!ckch_inst) {
3562 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3563 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003564 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003565 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003566 }
3567
William Lallemand36b84632019-07-18 19:28:17 +02003568 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003569 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003570 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003571 switch(EVP_PKEY_base_id(pkey)) {
3572 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003573 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003574 break;
3575 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003576 kinfo.sig = TLSEXT_signature_ecdsa;
3577 break;
3578 case EVP_PKEY_DSA:
3579 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003580 break;
3581 }
3582 EVP_PKEY_free(pkey);
3583 }
3584
Emeric Brun50bcecc2013-04-22 13:05:23 +02003585 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003586 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003587 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 +02003588 if (order < 0) {
3589 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003590 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003591 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003592 }
3593 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003594 }
3595 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003596#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003597 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003598 if (names) {
3599 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3600 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3601 if (name->type == GEN_DNS) {
3602 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003603 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003604 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003605 if (order < 0) {
3606 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003607 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003608 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003609 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003610 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003611 }
3612 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003613 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003614 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003615#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003616 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003617 i = -1;
3618 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3619 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003620 ASN1_STRING *value;
3621
3622 value = X509_NAME_ENTRY_get_data(entry);
3623 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003624 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003625 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003626 if (order < 0) {
3627 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003628 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003629 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003630 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003631 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003632 }
3633 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003634 /* we must not free the SSL_CTX anymore below, since it's already in
3635 * the tree, so it will be discovered and cleaned in time.
3636 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003637
Emeric Brunfc0421f2012-09-07 17:30:07 +02003638#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003639 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003640 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3641 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003642 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003643 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003644 }
3645#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003646 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003647 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003648 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003649 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003650 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003651 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003652 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003653
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003654 /* Always keep a reference to the newly constructed SSL_CTX in the
3655 * instance. This way if the instance has no SNIs, the SSL_CTX will
3656 * still be linked. */
3657 SSL_CTX_up_ref(ctx);
3658 ckch_inst->ctx = ctx;
3659
William Lallemand9117de92019-10-04 00:29:42 +02003660 /* everything succeed, the ckch instance can be used */
3661 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003662 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003663 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003664
William Lallemand02e19a52020-04-08 16:11:26 +02003665 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3666
Emeric Brun054563d2019-10-17 13:16:58 +02003667 *ckchi = ckch_inst;
3668 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003669
3670error:
3671 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003672 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003673 if (ckch_inst->is_default)
3674 SSL_CTX_free(ctx);
3675
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003676 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003677 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003678 }
William Lallemandd9199372019-10-04 15:37:05 +02003679 SSL_CTX_free(ctx);
3680
Emeric Brun054563d2019-10-17 13:16:58 +02003681 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003682}
3683
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003684
3685/*
3686 * This function allocate a ckch_inst that will be used on the backend side
3687 * (server line)
3688 *
3689 * Returns a bitfield containing the flags:
3690 * ERR_FATAL in any fatal error case
3691 * ERR_ALERT if the reason of the error is available in err
3692 * ERR_WARN if a warning is available into err
3693 */
3694int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003695 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003696{
3697 SSL_CTX *ctx;
3698 struct cert_key_and_chain *ckch;
3699 struct ckch_inst *ckch_inst = NULL;
3700 int errcode = 0;
3701
3702 *ckchi = NULL;
3703
3704 if (!ckchs || !ckchs->ckch)
3705 return ERR_FATAL;
3706
3707 ckch = ckchs->ckch;
3708
3709 ctx = SSL_CTX_new(SSLv23_client_method());
3710 if (!ctx) {
3711 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3712 err && *err ? *err : "", path);
3713 errcode |= ERR_ALERT | ERR_FATAL;
3714 goto error;
3715 }
3716
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003717 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3718 if (errcode & ERR_CODE)
3719 goto error;
3720
3721 ckch_inst = ckch_inst_new();
3722 if (!ckch_inst) {
3723 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3724 err && *err ? *err : "", path);
3725 errcode |= ERR_ALERT | ERR_FATAL;
3726 goto error;
3727 }
3728
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003729 /* everything succeed, the ckch instance can be used */
3730 ckch_inst->bind_conf = NULL;
3731 ckch_inst->ssl_conf = NULL;
3732 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003733 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003734 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003735
3736 *ckchi = ckch_inst;
3737 return errcode;
3738
3739error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003740 SSL_CTX_free(ctx);
3741
3742 return errcode;
3743}
3744
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003745/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003746static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3747 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003748 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003749{
Emeric Brun054563d2019-10-17 13:16:58 +02003750 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003751
3752 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003753 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 +02003754
Emeric Brun054563d2019-10-17 13:16:58 +02003755 if (errcode & ERR_CODE)
3756 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003757
William Lallemand24bde432020-03-09 16:48:43 +01003758 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003759
3760 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003761 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003762 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003763}
3764
William Lallemanddb26e2b2021-01-26 12:01:46 +01003765/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3766 * fill the SSL_CTX of the server.
3767 *
3768 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003769static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003770 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003771{
3772 int errcode = 0;
3773
3774 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003775 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003776
3777 if (errcode & ERR_CODE)
3778 return errcode;
3779
William Lallemanddb26e2b2021-01-26 12:01:46 +01003780 (*ckch_inst)->server = server;
3781 /* Keep the reference to the SSL_CTX in the server. */
3782 SSL_CTX_up_ref((*ckch_inst)->ctx);
3783 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003784 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003785 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003786 return errcode;
3787}
3788
William Lallemand6be66ec2020-03-06 22:26:32 +01003789
William Lallemand4c68bba2020-03-30 18:45:10 +02003790
3791
3792/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3793 * done once. Zero is returned if the operation fails. No error is returned
3794 * if the random is said as not implemented, because we expect that openssl
3795 * will use another method once needed.
3796 */
Amaury Denoyellec593bcd2021-05-19 15:35:29 +02003797int ssl_initialize_random(void)
William Lallemand4c68bba2020-03-30 18:45:10 +02003798{
3799 unsigned char random;
3800 static int random_initialized = 0;
3801
3802 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3803 random_initialized = 1;
3804
3805 return random_initialized;
3806}
3807
William Lallemand2954c472020-03-06 21:54:13 +01003808/* Load a crt-list file, this is done in 2 parts:
3809 * - store the content of the file in a crtlist structure with crtlist_entry structures
3810 * - generate the instances by iterating on entries in the crtlist struct
3811 *
3812 * Nothing is locked there, this function is used in the configuration parser.
3813 *
3814 * Returns a set of ERR_* flags possibly with an error in <err>.
3815 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003816int 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 +01003817{
3818 struct crtlist *crtlist = NULL;
3819 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003820 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003821 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003822 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003823 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003824
William Lallemand79d31ec2020-03-25 15:10:49 +01003825 bind_conf_node = malloc(sizeof(*bind_conf_node));
3826 if (!bind_conf_node) {
3827 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3828 cfgerr |= ERR_FATAL | ERR_ALERT;
3829 goto error;
3830 }
3831 bind_conf_node->next = NULL;
3832 bind_conf_node->bind_conf = bind_conf;
3833
William Lallemand41ca9302020-04-08 13:15:18 +02003834 /* strip trailing slashes, including first one */
3835 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3836 *end = 0;
3837
William Lallemand2954c472020-03-06 21:54:13 +01003838 /* look for an existing crtlist or create one */
3839 eb = ebst_lookup(&crtlists_tree, file);
3840 if (eb) {
3841 crtlist = ebmb_entry(eb, struct crtlist, node);
3842 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003843 /* load a crt-list OR a directory */
3844 if (dir)
3845 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3846 else
3847 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3848
William Lallemand2954c472020-03-06 21:54:13 +01003849 if (!(cfgerr & ERR_CODE))
3850 ebst_insert(&crtlists_tree, &crtlist->node);
3851 }
3852
3853 if (cfgerr & ERR_CODE) {
3854 cfgerr |= ERR_FATAL | ERR_ALERT;
3855 goto error;
3856 }
3857
3858 /* generates ckch instance from the crtlist_entry */
3859 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3860 struct ckch_store *store;
3861 struct ckch_inst *ckch_inst = NULL;
3862
3863 store = entry->node.key;
3864 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3865 if (cfgerr & ERR_CODE) {
3866 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3867 goto error;
3868 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003869 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003870 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003871 }
William Lallemand2954c472020-03-06 21:54:13 +01003872
William Lallemand79d31ec2020-03-25 15:10:49 +01003873 /* add the bind_conf to the list */
3874 bind_conf_node->next = crtlist->bind_conf;
3875 crtlist->bind_conf = bind_conf_node;
3876
William Lallemand2954c472020-03-06 21:54:13 +01003877 return cfgerr;
3878error:
3879 {
William Lallemand49398312020-03-30 17:01:33 +02003880 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003881 struct ckch_inst *inst, *s_inst;
3882
William Lallemand49398312020-03-30 17:01:33 +02003883 lastentry = entry; /* which entry we tried to generate last */
3884 if (lastentry) {
3885 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3886 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3887 break;
3888
3889 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003890
William Lallemand49398312020-03-30 17:01:33 +02003891 /* this was not generated for this bind_conf, skip */
3892 if (inst->bind_conf != bind_conf)
3893 continue;
3894
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003895 /* free the sni_ctx and instance */
3896 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003897 }
William Lallemand2954c472020-03-06 21:54:13 +01003898 }
William Lallemand2954c472020-03-06 21:54:13 +01003899 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003900 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003901 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003902 return cfgerr;
3903}
3904
William Lallemand06b22a82020-03-16 14:45:55 +01003905/* Returns a set of ERR_* flags possibly with an error in <err>. */
3906int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3907{
3908 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003909 int cfgerr = 0;
3910 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003911 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003912 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003913
3914 if ((ckchs = ckchs_lookup(path))) {
3915 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003916 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3917 found++;
3918 } else if (stat(path, &buf) == 0) {
3919 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003920 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003921 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003922 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003923 cfgerr |= ERR_ALERT | ERR_FATAL;
3924 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003925 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003926 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003927 }
3928 } else {
3929 /* stat failed, could be a bundle */
3930 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003931 char fp[MAXPATHLEN+1] = {0};
3932 int n = 0;
3933
3934 /* Load all possible certs and keys in separate ckch_store */
3935 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3936 struct stat buf;
3937 int ret;
3938
3939 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3940 if (ret > sizeof(fp))
3941 continue;
3942
3943 if ((ckchs = ckchs_lookup(fp))) {
3944 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003945 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003946 } else {
3947 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003948 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003949 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003950 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003951 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003952 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3953 }
3954 }
3955 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003956#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3957 if (found) {
3958 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3959 err && *err ? *err : "", path);
3960 cfgerr |= ERR_ALERT | ERR_FATAL;
3961 }
3962#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003963 }
3964 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003965 if (!found) {
3966 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3967 err && *err ? *err : "", path, strerror(errno));
3968 cfgerr |= ERR_ALERT | ERR_FATAL;
3969 }
William Lallemand06b22a82020-03-16 14:45:55 +01003970
3971 return cfgerr;
3972}
3973
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003974
3975/* Create a full ssl context and ckch instance that will be used for a specific
3976 * backend server (server configuration line).
3977 * Returns a set of ERR_* flags possibly with an error in <err>.
3978 */
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003979int 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 +01003980{
3981 struct stat buf;
3982 int cfgerr = 0;
3983 struct ckch_store *ckchs;
3984 int found = 0; /* did we found a file to load ? */
3985
3986 if ((ckchs = ckchs_lookup(path))) {
3987 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003988 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003989 found++;
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003990 } else {
3991 if (!create_if_none) {
3992 memprintf(err, "%sunable to stat SSL certificate '%s'.\n",
3993 err && *err ? *err : "", path);
3994 cfgerr |= ERR_ALERT | ERR_FATAL;
3995 goto out;
3996 }
3997
3998 if (stat(path, &buf) == 0) {
3999 /* We do not manage directories on backend side. */
4000 if (S_ISDIR(buf.st_mode) == 0) {
4001 ++found;
4002 ckchs = ckchs_load_cert_file(path, err);
4003 if (!ckchs)
4004 cfgerr |= ERR_ALERT | ERR_FATAL;
4005 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
4006 }
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004007 }
4008 }
4009 if (!found) {
4010 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
4011 err && *err ? *err : "", path, strerror(errno));
4012 cfgerr |= ERR_ALERT | ERR_FATAL;
4013 }
4014
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02004015out:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004016 return cfgerr;
4017}
4018
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004019/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004020static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004021ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004022{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004023 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004024 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004025 SSL_OP_ALL | /* all known workarounds for bugs */
4026 SSL_OP_NO_SSLv2 |
4027 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02004028 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02004029 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004030 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02004031 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02004032 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004033 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02004034 SSL_MODE_ENABLE_PARTIAL_WRITE |
4035 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004036 SSL_MODE_RELEASE_BUFFERS |
4037 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004038 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004039 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004040 int flags = MC_SSL_O_ALL;
4041 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02004042 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004043
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004044 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004045 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004046
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004047 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004048 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
4049 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4050 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004051 else
4052 flags = conf_ssl_methods->flags;
4053
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004054 min = conf_ssl_methods->min;
4055 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02004056
4057 /* default minimum is TLSV12, */
4058 if (!min) {
4059 if (!max || (max >= default_min_ver)) {
4060 min = default_min_ver;
4061 } else {
4062 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). "
4063 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
4064 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
4065 min = max;
4066 }
4067 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004068 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02004069 if (min)
4070 flags |= (methodVersions[min].flag - 1);
4071 if (max)
4072 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004073 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004074 min = max = CONF_TLSV_NONE;
4075 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004076 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004077 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004078 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004079 if (min) {
4080 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004081 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
4082 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4083 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4084 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004085 hole = 0;
4086 }
4087 max = i;
4088 }
4089 else {
4090 min = max = i;
4091 }
4092 }
4093 else {
4094 if (min)
4095 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004096 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004097 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004098 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4099 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004100 cfgerr += 1;
4101 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004102 /* save real min/max in bind_conf */
4103 conf_ssl_methods->min = min;
4104 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004105
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004106#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004107 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004108 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004109 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004110 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004111 else
William Lallemandd0712f32020-06-11 17:34:00 +02004112 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
4113 /* clear every version flags in case SSL_CTX_new()
4114 * returns an SSL_CTX with disabled versions */
4115 SSL_CTX_clear_options(ctx, methodVersions[i].option);
4116
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004117 if (flags & methodVersions[i].flag)
4118 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02004119
4120 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004121#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004122 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004123 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4124 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02004125#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004126
4127 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
4128 options |= SSL_OP_NO_TICKET;
4129 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
4130 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08004131
4132#ifdef SSL_OP_NO_RENEGOTIATION
4133 options |= SSL_OP_NO_RENEGOTIATION;
4134#endif
4135
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004136 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004137
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004138#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004139 if (global_ssl.async)
4140 mode |= SSL_MODE_ASYNC;
4141#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004142 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004143 if (global_ssl.life_time)
4144 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004145
4146#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
4147#ifdef OPENSSL_IS_BORINGSSL
4148 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
4149 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05004150#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01004151 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01004152 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02004153 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
4154 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004155#else
4156 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004157#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02004158 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004159#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004160 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004161}
4162
William Lallemand4f45bb92017-10-30 20:08:51 +01004163
4164static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
4165{
4166 if (first == block) {
4167 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4168 if (first->len > 0)
4169 sh_ssl_sess_tree_delete(sh_ssl_sess);
4170 }
4171}
4172
4173/* return first block from sh_ssl_sess */
4174static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
4175{
4176 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
4177
4178}
4179
4180/* store a session into the cache
4181 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
4182 * data: asn1 encoded session
4183 * data_len: asn1 encoded session length
4184 * Returns 1 id session was stored (else 0)
4185 */
4186static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
4187{
4188 struct shared_block *first;
4189 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
4190
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004191 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01004192 if (!first) {
4193 /* Could not retrieve enough free blocks to store that session */
4194 return 0;
4195 }
4196
4197 /* STORE the key in the first elem */
4198 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4199 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
4200 first->len = sizeof(struct sh_ssl_sess_hdr);
4201
4202 /* it returns the already existing node
4203 or current node if none, never returns null */
4204 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4205 if (oldsh_ssl_sess != sh_ssl_sess) {
4206 /* NOTE: Row couldn't be in use because we lock read & write function */
4207 /* release the reserved row */
4208 shctx_row_dec_hot(ssl_shctx, first);
4209 /* replace the previous session already in the tree */
4210 sh_ssl_sess = oldsh_ssl_sess;
4211 /* ignore the previous session data, only use the header */
4212 first = sh_ssl_sess_first_block(sh_ssl_sess);
4213 shctx_row_inc_hot(ssl_shctx, first);
4214 first->len = sizeof(struct sh_ssl_sess_hdr);
4215 }
4216
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004217 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004218 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004219 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004220 }
4221
4222 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004223
4224 return 1;
4225}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004226
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004227/* SSL callback used when a new session is created while connecting to a server */
4228static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4229{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004230 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004231 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004232
Willy Tarreau07d94e42018-09-20 10:57:52 +02004233 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004234
William Lallemand3ce6eed2021-02-08 10:43:44 +01004235 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
4236 * one cache per thread, it only prevents to flush it from the CLI in
4237 * another thread */
4238
Olivier Houcharde6060c52017-11-16 17:42:52 +01004239 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4240 int len;
4241 unsigned char *ptr;
William Lallemande18d4e82021-11-17 02:59:21 +01004242 const char *sni;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004243
Olivier Houcharde6060c52017-11-16 17:42:52 +01004244 len = i2d_SSL_SESSION(sess, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01004245 sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004246 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004247 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4248 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4249 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004250 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4251 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004252 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4253 }
4254 if (s->ssl_ctx.reused_sess[tid].ptr) {
4255 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4256 &ptr);
4257 }
William Lallemande18d4e82021-11-17 02:59:21 +01004258
4259 if (s->ssl_ctx.reused_sess[tid].sni) {
4260 /* if the new sni is empty or isn' t the same as the old one */
4261 if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) {
4262 ha_free(&s->ssl_ctx.reused_sess[tid].sni);
4263 if (sni)
4264 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4265 }
4266 } else if (sni) {
4267 /* if there wasn't an old sni but there is a new one */
4268 s->ssl_ctx.reused_sess[tid].sni = strdup(sni);
4269 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004270 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004271 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004272 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004273 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004274 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004275 }
4276
4277 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004278}
4279
Olivier Houcharde6060c52017-11-16 17:42:52 +01004280
William Lallemanded0b5ad2017-10-30 19:36:36 +01004281/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004282int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004283{
4284 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4285 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4286 unsigned char *p;
4287 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004288 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004289 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004290
4291 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004292 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004293 * note: SSL_SESSION_set1_id is using
4294 * a memcpy so we need to use a different pointer
4295 * than sid_data or sid_ctx_data to avoid valgrind
4296 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004297 */
4298
4299 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004300
4301 /* copy value in an other buffer */
4302 memcpy(encid, sid_data, sid_length);
4303
4304 /* pad with 0 */
4305 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4306 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4307
4308 /* force length to zero to avoid ASN1 encoding */
4309 SSL_SESSION_set1_id(sess, encid, 0);
4310
4311 /* force length to zero to avoid ASN1 encoding */
4312 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004313
4314 /* check if buffer is large enough for the ASN1 encoded session */
4315 data_len = i2d_SSL_SESSION(sess, NULL);
4316 if (data_len > SHSESS_MAX_DATA_LEN)
4317 goto err;
4318
4319 p = encsess;
4320
4321 /* process ASN1 session encoding before the lock */
4322 i2d_SSL_SESSION(sess, &p);
4323
William Lallemanded0b5ad2017-10-30 19:36:36 +01004324
William Lallemanda3c77cf2017-10-30 23:44:40 +01004325 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004326 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004327 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004328 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004329err:
4330 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004331 SSL_SESSION_set1_id(sess, encid, sid_length);
4332 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004333
4334 return 0; /* do not increment session reference count */
4335}
4336
4337/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004338SSL_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 +01004339{
William Lallemand4f45bb92017-10-30 20:08:51 +01004340 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004341 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4342 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004343 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004344 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004345
Willy Tarreau4c19e992021-06-15 16:39:22 +02004346 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004347
4348 /* allow the session to be freed automatically by openssl */
4349 *do_copy = 0;
4350
4351 /* tree key is zeros padded sessionid */
4352 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4353 memcpy(tmpkey, key, key_len);
4354 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4355 key = tmpkey;
4356 }
4357
4358 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004359 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004360
4361 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004362 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4363 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004364 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004365 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004366 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004367 return NULL;
4368 }
4369
William Lallemand4f45bb92017-10-30 20:08:51 +01004370 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4371 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004372
William Lallemand4f45bb92017-10-30 20:08:51 +01004373 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 +01004374
William Lallemanda3c77cf2017-10-30 23:44:40 +01004375 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004376
4377 /* decode ASN1 session */
4378 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004379 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004380 /* Reset session id and session id contenxt */
4381 if (sess) {
4382 SSL_SESSION_set1_id(sess, key, key_len);
4383 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4384 }
4385
4386 return sess;
4387}
4388
William Lallemand4f45bb92017-10-30 20:08:51 +01004389
William Lallemanded0b5ad2017-10-30 19:36:36 +01004390/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004391void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004392{
William Lallemand4f45bb92017-10-30 20:08:51 +01004393 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004394 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4395 unsigned int sid_length;
4396 const unsigned char *sid_data;
4397 (void)ctx;
4398
4399 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4400 /* tree key is zeros padded sessionid */
4401 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4402 memcpy(tmpkey, sid_data, sid_length);
4403 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4404 sid_data = tmpkey;
4405 }
4406
William Lallemanda3c77cf2017-10-30 23:44:40 +01004407 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004408
4409 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004410 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4411 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004412 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004413 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004414 }
4415
4416 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004417 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004418}
4419
4420/* Set session cache mode to server and disable openssl internal cache.
4421 * Set shared cache callbacks on an ssl context.
4422 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004423void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004424{
4425 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4426
4427 if (!ssl_shctx) {
4428 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4429 return;
4430 }
4431
4432 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4433 SSL_SESS_CACHE_NO_INTERNAL |
4434 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4435
4436 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004437 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4438 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4439 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004440}
William Lallemand7d42ef52020-07-06 11:41:30 +02004441
4442/*
4443 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4444 *
4445 * The format is:
4446 * * <Label> <space> <ClientRandom> <space> <Secret>
4447 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4448 */
4449
William Lallemand722180a2021-06-09 16:46:12 +02004450#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004451void SSL_CTX_keylog(const SSL *ssl, const char *line)
4452{
4453 struct ssl_keylog *keylog;
4454 char *lastarg = NULL;
4455 char *dst = NULL;
4456
4457 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4458 if (!keylog)
4459 return;
4460
4461 lastarg = strrchr(line, ' ');
4462 if (lastarg == NULL || ++lastarg == NULL)
4463 return;
4464
4465 dst = pool_alloc(pool_head_ssl_keylog_str);
4466 if (!dst)
4467 return;
4468
4469 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4470 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4471
4472 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4473 if (keylog->client_random)
4474 goto error;
4475 keylog->client_random = dst;
4476
4477 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4478 if (keylog->client_early_traffic_secret)
4479 goto error;
4480 keylog->client_early_traffic_secret = dst;
4481
4482 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4483 if(keylog->client_handshake_traffic_secret)
4484 goto error;
4485 keylog->client_handshake_traffic_secret = dst;
4486
4487 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4488 if (keylog->server_handshake_traffic_secret)
4489 goto error;
4490 keylog->server_handshake_traffic_secret = dst;
4491
4492 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4493 if (keylog->client_traffic_secret_0)
4494 goto error;
4495 keylog->client_traffic_secret_0 = dst;
4496
4497 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4498 if (keylog->server_traffic_secret_0)
4499 goto error;
4500 keylog->server_traffic_secret_0 = dst;
4501
4502 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4503 if (keylog->early_exporter_secret)
4504 goto error;
4505 keylog->early_exporter_secret = dst;
4506
4507 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4508 if (keylog->exporter_secret)
4509 goto error;
4510 keylog->exporter_secret = dst;
4511 } else {
4512 goto error;
4513 }
4514
4515 return;
4516
4517error:
4518 pool_free(pool_head_ssl_keylog_str, dst);
4519
4520 return;
4521}
4522#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004523
William Lallemand8b453912019-11-21 15:48:10 +01004524/*
4525 * This function applies the SSL configuration on a SSL_CTX
4526 * It returns an error code and fills the <err> buffer
4527 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004528static 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 +01004529{
4530 struct proxy *curproxy = bind_conf->frontend;
4531 int cfgerr = 0;
4532 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004533 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004534 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004535#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004536 const char *conf_ciphersuites;
4537#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004538 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004539
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004540 if (ssl_conf) {
4541 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4542 int i, min, max;
4543 int flags = MC_SSL_O_ALL;
4544
4545 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004546 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4547 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004548 if (min)
4549 flags |= (methodVersions[min].flag - 1);
4550 if (max)
4551 flags |= ~((methodVersions[max].flag << 1) - 1);
4552 min = max = CONF_TLSV_NONE;
4553 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4554 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4555 if (min)
4556 max = i;
4557 else
4558 min = max = i;
4559 }
4560 /* save real min/max */
4561 conf_ssl_methods->min = min;
4562 conf_ssl_methods->max = max;
4563 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004564 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4565 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004566 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004567 }
4568 }
4569
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004570 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004571 case SSL_SOCK_VERIFY_NONE:
4572 verify = SSL_VERIFY_NONE;
4573 break;
4574 case SSL_SOCK_VERIFY_OPTIONAL:
4575 verify = SSL_VERIFY_PEER;
4576 break;
4577 case SSL_SOCK_VERIFY_REQUIRED:
4578 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4579 break;
4580 }
4581 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4582 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004583 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 +01004584 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 +01004585 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 +01004586 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004587 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004588 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004589 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004590 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004591 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004592 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004593 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4594 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4595 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4596 cfgerr |= ERR_ALERT | ERR_FATAL;
4597 }
4598 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004599 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004600 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 +02004601 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004602 }
Emeric Brun850efd52014-01-29 12:24:34 +01004603 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004604 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4605 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004606 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004607 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004608#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004609 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004610 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4611
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004612 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004613 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4614 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004615 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004616 }
Emeric Brun561e5742012-10-02 15:20:55 +02004617 else {
4618 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4619 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004620 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004621#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004622 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004623 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004624#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004625 if(bind_conf->keys_ref) {
Remi Tricot-Le Breton8ea1f5f2022-02-08 17:45:58 +01004626 if (!SSL_CTX_set_tlsext_ticket_key_evp_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004627 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4628 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004629 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004630 }
4631 }
4632#endif
4633
William Lallemand4f45bb92017-10-30 20:08:51 +01004634 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004635 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4636 if (conf_ciphers &&
4637 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004638 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4639 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004640 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004641 }
4642
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004643#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004644 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4645 if (conf_ciphersuites &&
4646 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004647 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4648 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004649 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004650 }
4651#endif
4652
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004653#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004654 /* If tune.ssl.default-dh-param has not been set,
4655 neither has ssl-default-dh-file and no static DH
4656 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004657 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004658 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004659 (ssl_dh_ptr_index == -1 ||
4660 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004661 /* default to dh-param 2048 */
4662 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004663 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004664
Willy Tarreauef934602016-12-22 23:12:01 +01004665 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004666 if (local_dh_1024 == NULL) {
4667 local_dh_1024 = ssl_get_dh_1024();
4668 }
Willy Tarreauef934602016-12-22 23:12:01 +01004669 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004670 if (local_dh_2048 == NULL) {
4671 local_dh_2048 = ssl_get_dh_2048();
4672 }
Willy Tarreauef934602016-12-22 23:12:01 +01004673 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004674 if (local_dh_4096 == NULL) {
4675 local_dh_4096 = ssl_get_dh_4096();
4676 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004677 }
4678 }
4679 }
4680#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004681
Emeric Brunfc0421f2012-09-07 17:30:07 +02004682 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004683#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004684 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004685#endif
William Lallemand722180a2021-06-09 16:46:12 +02004686#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004687 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4688#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004689
Bernard Spil13c53f82018-02-15 13:34:58 +01004690#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004691 ssl_conf_cur = NULL;
4692 if (ssl_conf && ssl_conf->npn_str)
4693 ssl_conf_cur = ssl_conf;
4694 else if (bind_conf->ssl_conf.npn_str)
4695 ssl_conf_cur = &bind_conf->ssl_conf;
4696 if (ssl_conf_cur)
4697 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004698#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004699#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004700 ssl_conf_cur = NULL;
4701 if (ssl_conf && ssl_conf->alpn_str)
4702 ssl_conf_cur = ssl_conf;
4703 else if (bind_conf->ssl_conf.alpn_str)
4704 ssl_conf_cur = &bind_conf->ssl_conf;
4705 if (ssl_conf_cur)
4706 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004707#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004708#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004709 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4710 if (conf_curves) {
4711 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004712 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4713 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004714 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004715 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004716 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004717 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004718#endif /* defined(SSL_CTX_set1_curves_list) */
4719
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004720 if (!conf_curves) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004721#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004722#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004723 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004724 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4725 NULL);
4726
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004727 if (ecdhe && SSL_CTX_set1_curves_list(ctx, ecdhe) == 0) {
4728 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4729 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
4730 cfgerr |= ERR_ALERT | ERR_FATAL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02004731 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004732#endif /* defined(SSL_CTX_set1_curves_list) */
Olivier Houchardc2aae742017-09-22 18:26:28 +02004733#else
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004734#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
4735 int i;
4736 EC_KEY *ecdh;
4737
Olivier Houchardc2aae742017-09-22 18:26:28 +02004738 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4739 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4740 ECDHE_DEFAULT_CURVE);
Emeric Brun2b58d042012-09-20 17:10:03 +02004741
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004742 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004743 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004744 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 +01004745 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004746 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004747 }
4748 else {
4749 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4750 EC_KEY_free(ecdh);
4751 }
Remi Tricot-Le Bretonff4c3c42022-02-08 17:45:54 +01004752#endif /* defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) */
4753#endif /* HA_OPENSSL_VERSION_NUMBER >= 0x10101000L */
Emeric Brun2b58d042012-09-20 17:10:03 +02004754 }
Emeric Brun2b58d042012-09-20 17:10:03 +02004755
Emeric Brunfc0421f2012-09-07 17:30:07 +02004756 return cfgerr;
4757}
4758
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004759
4760/*
4761 * Prepare the SSL_CTX based on the bind line configuration.
4762 * Since the CA file loading is made depending on the verify option of the bind
4763 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4764 * If we want to create a link between the CA file entry and the corresponding
4765 * ckch instance (for CA file hot update), it needs to be done after
4766 * ssl_sock_prepare_ctx.
4767 * Returns 0 in case of success.
4768 */
4769int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4770 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4771{
4772 int errcode = 0;
4773
4774 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4775 if (!errcode && ckch_inst)
4776 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4777
4778 return errcode;
4779}
4780
Evan Broderbe554312013-06-27 00:05:25 -07004781static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4782{
4783 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4784 size_t prefixlen, suffixlen;
4785
4786 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004787 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004788 return 1;
4789
Evan Broderbe554312013-06-27 00:05:25 -07004790 /* The rest of this logic is based on RFC 6125, section 6.4.3
4791 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4792
Emeric Bruna848dae2013-10-08 11:27:28 +02004793 pattern_wildcard = NULL;
4794 pattern_left_label_end = pattern;
4795 while (*pattern_left_label_end != '.') {
4796 switch (*pattern_left_label_end) {
4797 case 0:
4798 /* End of label not found */
4799 return 0;
4800 case '*':
4801 /* If there is more than one wildcards */
4802 if (pattern_wildcard)
4803 return 0;
4804 pattern_wildcard = pattern_left_label_end;
4805 break;
4806 }
4807 pattern_left_label_end++;
4808 }
4809
4810 /* If it's not trivial and there is no wildcard, it can't
4811 * match */
4812 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004813 return 0;
4814
4815 /* Make sure all labels match except the leftmost */
4816 hostname_left_label_end = strchr(hostname, '.');
4817 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004818 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004819 return 0;
4820
4821 /* Make sure the leftmost label of the hostname is long enough
4822 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004823 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004824 return 0;
4825
4826 /* Finally compare the string on either side of the
4827 * wildcard */
4828 prefixlen = pattern_wildcard - pattern;
4829 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004830 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4831 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004832 return 0;
4833
4834 return 1;
4835}
4836
4837static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4838{
4839 SSL *ssl;
4840 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004841 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004842 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004843 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004844
4845 int depth;
4846 X509 *cert;
4847 STACK_OF(GENERAL_NAME) *alt_names;
4848 int i;
4849 X509_NAME *cert_subject;
4850 char *str;
4851
4852 if (ok == 0)
4853 return ok;
4854
4855 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004856 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004857 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004858
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004859 /* We're checking if the provided hostnames match the desired one. The
4860 * desired hostname comes from the SNI we presented if any, or if not
4861 * provided then it may have been explicitly stated using a "verifyhost"
4862 * directive. If neither is set, we don't care about the name so the
4863 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004864 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004865 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004866 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004867 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004868 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004869 if (!servername)
4870 return ok;
4871 }
Evan Broderbe554312013-06-27 00:05:25 -07004872
4873 /* We only need to verify the CN on the actual server cert,
4874 * not the indirect CAs */
4875 depth = X509_STORE_CTX_get_error_depth(ctx);
4876 if (depth != 0)
4877 return ok;
4878
4879 /* At this point, the cert is *not* OK unless we can find a
4880 * hostname match */
4881 ok = 0;
4882
4883 cert = X509_STORE_CTX_get_current_cert(ctx);
4884 /* It seems like this might happen if verify peer isn't set */
4885 if (!cert)
4886 return ok;
4887
4888 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4889 if (alt_names) {
4890 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4891 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4892 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004893#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004894 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4895#else
Evan Broderbe554312013-06-27 00:05:25 -07004896 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004897#endif
Evan Broderbe554312013-06-27 00:05:25 -07004898 ok = ssl_sock_srv_hostcheck(str, servername);
4899 OPENSSL_free(str);
4900 }
4901 }
4902 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004903 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004904 }
4905
4906 cert_subject = X509_get_subject_name(cert);
4907 i = -1;
4908 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4909 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004910 ASN1_STRING *value;
4911 value = X509_NAME_ENTRY_get_data(entry);
4912 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004913 ok = ssl_sock_srv_hostcheck(str, servername);
4914 OPENSSL_free(str);
4915 }
4916 }
4917
Willy Tarreau71d058c2017-07-26 20:09:56 +02004918 /* report the mismatch and indicate if SNI was used or not */
4919 if (!ok && !conn->err_code)
4920 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004921 return ok;
4922}
4923
Emeric Brun94324a42012-10-11 14:00:19 +02004924/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004925int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004926{
4927 int cfgerr = 0;
William Lallemand2c776f12021-12-28 18:47:17 +01004928 SSL_CTX *ctx;
Willy Tarreaufce03112015-01-15 21:32:40 +01004929 /* Automatic memory computations need to know we use SSL there */
4930 global.ssl_used_backend = 1;
4931
4932 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004933 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004934 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004935 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02004936 cfgerr++;
4937 return cfgerr;
4938 }
4939 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004940 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004941 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004942
William Lallemand2c776f12021-12-28 18:47:17 +01004943 if (srv->ssl_ctx.client_crt) {
4944 const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1;
4945 char *err = NULL;
4946 int err_code = 0;
4947
4948 /* If there is a crt keyword there, the SSL_CTX will be created here. */
4949 err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err);
4950 if (err_code != ERR_NONE) {
4951 if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT))
4952 ha_warning("%s", err);
4953 else
4954 ha_alert("%s", err);
4955
4956 if (err_code & (ERR_FATAL|ERR_ABORT))
4957 cfgerr++;
4958 }
4959 ha_free(&err);
4960 }
4961
4962 ctx = srv->ssl_ctx.ctx;
4963
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004964 /* The context will be uninitialized if there wasn't any "cert" option
4965 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004966 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004967 ctx = SSL_CTX_new(SSLv23_client_method());
4968 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004969 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004970 cfgerr++;
4971 return cfgerr;
4972 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004973
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004974 srv->ssl_ctx.ctx = ctx;
4975 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004976
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004977 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 +01004978
4979 return cfgerr;
4980}
4981
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004982/* Initialize an SSL context that will be used on the backend side.
4983 * Returns an error count.
4984 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004985static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004986{
4987 struct proxy *curproxy = srv->proxy;
4988 int cfgerr = 0;
4989 long options =
4990 SSL_OP_ALL | /* all known workarounds for bugs */
4991 SSL_OP_NO_SSLv2 |
4992 SSL_OP_NO_COMPRESSION;
4993 long mode =
4994 SSL_MODE_ENABLE_PARTIAL_WRITE |
4995 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4996 SSL_MODE_RELEASE_BUFFERS |
4997 SSL_MODE_SMALL_BUFFERS;
4998 int verify = SSL_VERIFY_NONE;
4999 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
5000 int i, min, max, hole;
5001 int flags = MC_SSL_O_ALL;
5002
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005003 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005004 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
5005 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005006 else
5007 flags = conf_ssl_methods->flags;
5008
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005009 /* Real min and max should be determinate with configuration and openssl's capabilities */
5010 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005011 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005012 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005013 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005014
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005015 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005016 min = max = CONF_TLSV_NONE;
5017 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005018 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005019 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005020 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005021 if (min) {
5022 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005023 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01005024 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
5025 proxy_type_str(curproxy), curproxy->id, srv->id,
5026 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005027 hole = 0;
5028 }
5029 max = i;
5030 }
5031 else {
5032 min = max = i;
5033 }
5034 }
5035 else {
5036 if (min)
5037 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005038 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005039 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02005040 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01005041 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005042 cfgerr += 1;
5043 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005044
Willy Tarreau9a1ab082019-05-09 13:26:41 +02005045#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005046 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08005047 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005048 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005049 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02005050 else
5051 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
5052 if (flags & methodVersions[i].flag)
5053 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005054#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02005055 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02005056 methodVersions[min].ctx_set_version(ctx, SET_MIN);
5057 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02005058#endif
5059
5060 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
5061 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005062 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005063
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005064#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005065 if (global_ssl.async)
5066 mode |= SSL_MODE_ASYNC;
5067#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005068 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01005069
Emeric Brun850efd52014-01-29 12:24:34 +01005070 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
5071 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01005072 switch (srv->ssl_ctx.verify) {
5073 case SSL_SOCK_VERIFY_NONE:
5074 verify = SSL_VERIFY_NONE;
5075 break;
5076 case SSL_SOCK_VERIFY_REQUIRED:
5077 verify = SSL_VERIFY_PEER;
5078 break;
5079 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005080 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02005081 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01005082 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02005083 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02005084 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005085 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005086 ha_alert("unable to set CA file '%s'.\n",
5087 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005088 cfgerr++;
5089 }
5090 }
Emeric Brun850efd52014-01-29 12:24:34 +01005091 else {
5092 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005093 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 +01005094 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005095 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01005096 cfgerr++;
5097 }
Emeric Brunef42d922012-10-11 16:11:36 +02005098#ifdef X509_V_FLAG_CRL_CHECK
5099 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005100 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02005101
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01005102 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005103 ha_alert("unable to configure CRL file '%s'.\n",
5104 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02005105 cfgerr++;
5106 }
5107 else {
5108 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
5109 }
5110 }
5111#endif
5112 }
5113
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005114 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
5115 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02005116 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005117 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005118 ha_alert("unable to set SSL cipher list to '%s'.\n",
5119 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02005120 cfgerr++;
5121 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005122
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05005123#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005124 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005125 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02005126 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
5127 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02005128 cfgerr++;
5129 }
5130#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01005131#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
5132 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01005133 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01005134#endif
5135#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5136 if (srv->ssl_ctx.alpn_str)
5137 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
5138#endif
5139
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005140
5141 return cfgerr;
5142}
5143
5144/*
5145 * Prepare the frontend's SSL_CTX based on the server line configuration.
5146 * Since the CA file loading is made depending on the verify option of the
5147 * server line, the link between the SSL_CTX and the CA file tree entry is
5148 * made here.
5149 * If we want to create a link between the CA file entry and the corresponding
5150 * ckch instance (for CA file hot update), it needs to be done after
5151 * ssl_sock_prepare_srv_ssl_ctx.
5152 * Returns an error count.
5153 */
5154int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
5155 struct ckch_inst *ckch_inst)
5156{
5157 int cfgerr = 0;
5158
5159 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
5160 if (!cfgerr && ckch_inst)
5161 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02005162
5163 return cfgerr;
5164}
5165
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005166
Frédéric Lécailleec216522020-11-23 14:33:30 +01005167/*
5168 * Create an initial CTX used to start the SSL connections.
5169 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
5170 * Returns 0 if succeeded, or something >0 if not.
5171 */
5172#ifdef USE_QUIC
5173static int ssl_initial_ctx(struct bind_conf *bind_conf)
5174{
5175 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
5176 return ssl_quic_initial_ctx(bind_conf);
5177 else
5178 return ssl_sock_initial_ctx(bind_conf);
5179}
5180#else
5181static int ssl_initial_ctx(struct bind_conf *bind_conf)
5182{
5183 return ssl_sock_initial_ctx(bind_conf);
5184}
5185#endif
5186
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005187/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005188 * be NULL, in which case nothing is done. Returns the number of errors
5189 * encountered.
5190 */
Willy Tarreau03209342016-12-22 17:08:28 +01005191int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005192{
5193 struct ebmb_node *node;
5194 struct sni_ctx *sni;
5195 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01005196 int errcode = 0;
5197 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02005198
Willy Tarreaufce03112015-01-15 21:32:40 +01005199 /* Automatic memory computations need to know we use SSL there */
5200 global.ssl_used_frontend = 1;
5201
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005202 /* Create initial_ctx used to start the ssl connection before do switchctx */
5203 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01005204 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005205 /* It should not be necessary to call this function, but it's
5206 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01005207 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005208 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
5209 }
5210 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005211 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 +01005212 }
Emeric Brun0bed9942014-10-30 19:25:24 +01005213
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005214 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005215 while (node) {
5216 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005217 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005218 /* only initialize the CTX on its first occurrence and
5219 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005220 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
5221 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005222 node = ebmb_next(node);
5223 }
5224
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005225 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005226 while (node) {
5227 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01005228 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005229 /* only initialize the CTX on its first occurrence and
5230 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005231 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005232 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005233 node = ebmb_next(node);
5234 }
William Lallemand8b453912019-11-21 15:48:10 +01005235
5236 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005237 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005238 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005239 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005240 err++;
5241 }
5242
5243 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005244 return err;
5245}
5246
Willy Tarreau55d37912016-12-21 23:38:39 +01005247/* Prepares all the contexts for a bind_conf and allocates the shared SSL
5248 * context if needed. Returns < 0 on error, 0 on success. The warnings and
5249 * alerts are directly emitted since the rest of the stack does it below.
5250 */
5251int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
5252{
5253 struct proxy *px = bind_conf->frontend;
5254 int alloc_ctx;
5255 int err;
5256
5257 if (!bind_conf->is_ssl) {
5258 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005259 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
5260 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01005261 }
5262 return 0;
5263 }
5264 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005265 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005266 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
5267 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005268 }
5269 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005270 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
5271 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005272 return -1;
5273 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005274 }
William Lallemandc61c0b32017-12-04 18:46:39 +01005275 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005276 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02005277 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
Willy Tarreau91358592021-06-15 08:08:04 +02005278 sizeof(*sh_ssl_sess_tree), (global.nbthread > 1));
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02005279 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005280 if (alloc_ctx == SHCTX_E_INIT_LOCK)
5281 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");
5282 else
5283 ha_alert("Unable to allocate SSL session cache.\n");
5284 return -1;
5285 }
5286 /* free block callback */
5287 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
5288 /* init the root tree within the extra space */
5289 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
5290 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01005291 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005292 err = 0;
5293 /* initialize all certificate contexts */
5294 err += ssl_sock_prepare_all_ctx(bind_conf);
5295
5296 /* initialize CA variables if the certificates generation is enabled */
5297 err += ssl_sock_load_ca(bind_conf);
5298
5299 return -err;
5300}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005301
William Lallemand231610a2021-12-30 11:25:43 +01005302/* release ssl context allocated for servers. Most of the field free here
5303 * must also be allocated in srv_ssl_settings_cpy() */
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005304void ssl_sock_free_srv_ctx(struct server *srv)
5305{
Olivier Houchardc7566002018-11-20 23:33:50 +01005306#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
William Lallemand231610a2021-12-30 11:25:43 +01005307 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005308#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005309#ifdef OPENSSL_NPN_NEGOTIATED
William Lallemand231610a2021-12-30 11:25:43 +01005310 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005311#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005312 if (srv->ssl_ctx.reused_sess) {
5313 int i;
5314
William Lallemande18d4e82021-11-17 02:59:21 +01005315 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaue709e822021-02-26 21:06:32 +01005316 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
William Lallemande18d4e82021-11-17 02:59:21 +01005317 ha_free(&srv->ssl_ctx.reused_sess[i].sni);
5318 }
Willy Tarreaue709e822021-02-26 21:06:32 +01005319 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005320 }
5321
Willy Tarreaue709e822021-02-26 21:06:32 +01005322 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005323 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005324 srv->ssl_ctx.ctx = NULL;
5325 }
William Lallemand231610a2021-12-30 11:25:43 +01005326
5327 ha_free(&srv->ssl_ctx.ca_file);
5328 ha_free(&srv->ssl_ctx.crl_file);
5329 ha_free(&srv->ssl_ctx.client_crt);
5330 ha_free(&srv->ssl_ctx.verify_host);
5331#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
5332 ha_free(&srv->sni_expr);
5333#endif
5334 ha_free(&srv->ssl_ctx.ciphers);
5335#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
5336 ha_free(&srv->ssl_ctx.ciphersuites);
5337#endif
William Lallemande69563f2021-12-30 14:45:19 +01005338 /* If there is a certificate we must unlink the ckch instance */
5339 ckch_inst_free(srv->ssl_ctx.inst);
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005340}
5341
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005342/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005343 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5344 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005345void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005346{
5347 struct ebmb_node *node, *back;
5348 struct sni_ctx *sni;
5349
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005350 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005351 while (node) {
5352 sni = ebmb_entry(node, struct sni_ctx, name);
5353 back = ebmb_next(node);
5354 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005355 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005356 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005357 free(sni);
5358 node = back;
5359 }
5360
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005361 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005362 while (node) {
5363 sni = ebmb_entry(node, struct sni_ctx, name);
5364 back = ebmb_next(node);
5365 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005366 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005367 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005368 free(sni);
5369 node = back;
5370 }
William Lallemandb2408692020-06-24 09:54:29 +02005371
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005372 SSL_CTX_free(bind_conf->initial_ctx);
5373 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005374 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005375 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005376 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005377 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005378}
William Lallemandb2408692020-06-24 09:54:29 +02005379
5380
5381void ssl_sock_deinit()
5382{
5383 crtlist_deinit(); /* must be free'd before the ckchs */
5384 ckch_deinit();
5385}
5386REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005387
Willy Tarreau795cdab2016-12-22 17:30:54 +01005388/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5389void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5390{
5391 ssl_sock_free_ca(bind_conf);
5392 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005393 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005394 free(bind_conf->ca_sign_file);
5395 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005396 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005397 free(bind_conf->keys_ref->filename);
5398 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005399 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005400 free(bind_conf->keys_ref);
5401 }
5402 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005403 bind_conf->ca_sign_pass = NULL;
5404 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005405}
5406
Christopher Faulet31af49d2015-06-09 17:29:50 +02005407/* Load CA cert file and private key used to generate certificates */
5408int
Willy Tarreau03209342016-12-22 17:08:28 +01005409ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005410{
Willy Tarreau03209342016-12-22 17:08:28 +01005411 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005412 struct cert_key_and_chain *ckch = NULL;
5413 int ret = 0;
5414 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005415
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005416 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005417 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005418
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005419#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005420 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005421 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005422 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005423 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005424 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005425#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005426
Christopher Faulet31af49d2015-06-09 17:29:50 +02005427 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005428 ha_alert("Proxy '%s': cannot enable certificate generation, "
5429 "no CA certificate File configured at [%s:%d].\n",
5430 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005431 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005432 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005433
Shimi Gersner5846c492020-08-23 13:58:12 +03005434 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005435 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005436 if (!ckch) {
5437 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5438 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5439 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005440 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005441
5442 /* Try to parse file */
5443 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5444 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5445 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005446 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005447 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005448 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005449
5450 /* Fail if missing cert or pkey */
5451 if ((!ckch->cert) || (!ckch->key)) {
5452 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5453 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5454 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005455 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005456
Shimi Gersner5846c492020-08-23 13:58:12 +03005457 /* Final assignment to bind */
5458 bind_conf->ca_sign_ckch = ckch;
5459 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005460
Shimi Gersner5846c492020-08-23 13:58:12 +03005461 failed:
5462 if (ckch) {
5463 ssl_sock_free_cert_key_and_chain_contents(ckch);
5464 free(ckch);
5465 }
5466
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005467 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005468 ret++;
5469 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005470}
5471
5472/* Release CA cert and private key used to generate certificated */
5473void
5474ssl_sock_free_ca(struct bind_conf *bind_conf)
5475{
Shimi Gersner5846c492020-08-23 13:58:12 +03005476 if (bind_conf->ca_sign_ckch) {
5477 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005478 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005479 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005480}
5481
Emeric Brun46591952012-05-18 15:47:34 +02005482/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005483 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5484 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5485 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5486 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005487 * 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 +01005488 * as parameters to this function.
5489 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5490 * CO_ER_SSL_NO_MEM.
5491 */
5492int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5493 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5494{
5495 int retry = 1;
5496
5497 retry:
5498 /* Alloc a new SSL session. */
5499 *ssl = SSL_new(ssl_ctx);
5500 if (!*ssl) {
5501 if (!retry--)
5502 goto err;
5503
5504 pool_gc(NULL);
5505 goto retry;
5506 }
5507
5508 *bio = BIO_new(bio_meth);
5509 if (!*bio) {
5510 SSL_free(*ssl);
5511 *ssl = NULL;
5512 if (!retry--)
5513 goto err;
5514
5515 pool_gc(NULL);
5516 goto retry;
5517 }
5518
5519 BIO_set_data(*bio, ctx);
5520 SSL_set_bio(*ssl, *bio, *bio);
5521
5522 /* set connection pointer. */
5523 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5524 SSL_free(*ssl);
5525 *ssl = NULL;
5526 if (!retry--)
5527 goto err;
5528
5529 pool_gc(NULL);
5530 goto retry;
5531 }
5532
5533 return 0;
5534
5535 err:
5536 conn->err_code = CO_ER_SSL_NO_MEM;
5537 return -1;
5538}
5539
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005540/* This function is called when all the XPRT have been initialized. We can
5541 * now attempt to start the SSL handshake.
5542 */
5543static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5544{
5545 struct ssl_sock_ctx *ctx = xprt_ctx;
5546
5547 if (ctx->xprt->start) {
5548 int ret;
5549
5550 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5551 if (ret < 0)
5552 return ret;
5553 }
5554 tasklet_wakeup(ctx->wait_event.tasklet);
5555
5556 return 0;
5557}
5558
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005559/*
Emeric Brun46591952012-05-18 15:47:34 +02005560 * This function is called if SSL * context is not yet allocated. The function
5561 * is designed to be called before any other data-layer operation and sets the
5562 * handshake flag on the connection. It is safe to call it multiple times.
5563 * It returns 0 on success and -1 in error case.
5564 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005565static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005566{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005567 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005568 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005569 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005570 return 0;
5571
Olivier Houchard66ab4982019-02-26 18:37:15 +01005572 ctx = pool_alloc(ssl_sock_ctx_pool);
5573 if (!ctx) {
5574 conn->err_code = CO_ER_SSL_NO_MEM;
5575 return -1;
5576 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005577 ctx->wait_event.tasklet = tasklet_new();
5578 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005579 conn->err_code = CO_ER_SSL_NO_MEM;
5580 pool_free(ssl_sock_ctx_pool, ctx);
5581 return -1;
5582 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005583 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5584 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005585 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005586 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005587 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005588 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005589 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005590 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005591 ctx->xprt_st = 0;
5592 ctx->xprt_ctx = NULL;
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005593 ctx->error_code = 0;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005594
5595 /* Only work with sockets for now, this should be adapted when we'll
5596 * add QUIC support.
5597 */
5598 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005599 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005600 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5601 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005602 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005603
Willy Tarreau82531f62021-10-06 12:15:18 +02005604 if (global.maxsslconn && global.sslconns >= global.maxsslconn) {
Willy Tarreau20879a02012-12-03 16:32:10 +01005605 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005606 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005607 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005608
Emeric Brun46591952012-05-18 15:47:34 +02005609 /* If it is in client mode initiate SSL session
5610 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005611 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005612 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5613 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005614 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005615
Olivier Houchard66ab4982019-02-26 18:37:15 +01005616 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005617 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005618 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5619 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5620 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 +01005621 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005622 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005623 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005624 } else if (sess) {
5625 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005626 }
5627 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005628 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005629
Emeric Brun46591952012-05-18 15:47:34 +02005630 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005631 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005632
Willy Tarreau82531f62021-10-06 12:15:18 +02005633 _HA_ATOMIC_INC(&global.sslconns);
5634 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005635 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005636 return 0;
5637 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005638 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005639 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005640
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005641 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5642 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005643 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005644
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005645#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005646 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005647 b_alloc(&ctx->early_buf);
5648 SSL_set_max_early_data(ctx->ssl,
5649 /* Only allow early data if we managed to allocate
5650 * a buffer.
5651 */
5652 (!b_is_null(&ctx->early_buf)) ?
5653 global.tune.bufsize - global.tune.maxrewrite : 0);
5654 }
5655#endif
5656
Olivier Houchard66ab4982019-02-26 18:37:15 +01005657 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005658
Emeric Brun46591952012-05-18 15:47:34 +02005659 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005660 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005661#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005662 if (bc->ssl_conf.early_data)
5663 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005664#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005665
Willy Tarreau82531f62021-10-06 12:15:18 +02005666 _HA_ATOMIC_INC(&global.sslconns);
5667 _HA_ATOMIC_INC(&global.totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005668 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005669 return 0;
5670 }
5671 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005672 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005673err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005674 if (ctx && ctx->wait_event.tasklet)
5675 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005676 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005677 return -1;
5678}
5679
5680
5681/* This is the callback which is used when an SSL handshake is pending. It
5682 * updates the FD status if it wants some polling before being called again.
5683 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5684 * otherwise it returns non-zero and removes itself from the connection's
5685 * flags (the bit is provided in <flag> by the caller).
5686 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005687static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005688{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005689 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005690 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005691 struct ssl_counters *counters = NULL;
5692 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005693 struct listener *li;
5694 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005695 socklen_t lskerr;
5696 int skerr;
5697
Emeric Brun46591952012-05-18 15:47:34 +02005698
Willy Tarreau3c728722014-01-23 13:50:42 +01005699 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005700 return 0;
5701
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005702 /* get counters */
5703 switch (obj_type(conn->target)) {
5704 case OBJ_TYPE_LISTENER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005705 li = __objt_listener(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005706 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5707 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5708 &ssl_stats_module);
5709 break;
5710
5711 case OBJ_TYPE_SERVER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005712 srv = __objt_server(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005713 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5714 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5715 &ssl_stats_module);
5716 break;
5717
5718 default:
5719 break;
5720 }
5721
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005722 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005723 goto out_error;
5724
Willy Tarreau06300382021-02-02 15:42:25 +01005725 /* don't start calculating a handshake on a dead connection */
5726 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5727 goto out_error;
5728
5729 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5730 * status from the lower layers, so let's check the FD directly. Ideally
5731 * the xprt layers should provide some status indicating their knowledge
5732 * of shutdowns or error.
5733 */
5734 skerr = 0;
5735 lskerr = sizeof(skerr);
5736 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5737 skerr != 0)
5738 goto out_error;
5739
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005740#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005741 /*
5742 * Check if we have early data. If we do, we have to read them
5743 * before SSL_do_handshake() is called, And there's no way to
5744 * detect early data, except to try to read them
5745 */
5746 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005747 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005748
Olivier Houchard54907bb2019-12-19 15:02:39 +01005749 while (1) {
5750 ret = SSL_read_early_data(ctx->ssl,
5751 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5752 &read_data);
5753 if (ret == SSL_READ_EARLY_DATA_ERROR)
5754 goto check_error;
5755 if (read_data > 0) {
5756 conn->flags |= CO_FL_EARLY_DATA;
5757 b_add(&ctx->early_buf, read_data);
5758 }
5759 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5760 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5761 if (!b_data(&ctx->early_buf))
5762 b_free(&ctx->early_buf);
5763 break;
5764 }
5765 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005766 }
5767#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005768 /* If we use SSL_do_handshake to process a reneg initiated by
5769 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5770 * Usually SSL_write and SSL_read are used and process implicitly
5771 * the reneg handshake.
5772 * Here we use SSL_peek as a workaround for reneg.
5773 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005774 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005775 char c;
5776
Olivier Houchard66ab4982019-02-26 18:37:15 +01005777 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005778 if (ret <= 0) {
5779 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005780 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005781
Emeric Brun674b7432012-11-08 19:21:55 +01005782 if (ret == SSL_ERROR_WANT_WRITE) {
5783 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005784 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005785 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005786 return 0;
5787 }
5788 else if (ret == SSL_ERROR_WANT_READ) {
5789 /* handshake may have been completed but we have
5790 * no more data to read.
5791 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005792 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005793 ret = 1;
5794 goto reneg_ok;
5795 }
5796 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005797 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005798 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005799 return 0;
5800 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005801#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005802 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005803 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005804 return 0;
5805 }
5806#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005807 else if (ret == SSL_ERROR_SYSCALL) {
5808 /* if errno is null, then connection was successfully established */
5809 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5810 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005811 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005812#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5813 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005814 conn->err_code = CO_ER_SSL_HANDSHAKE;
5815#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005816 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005817#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005818 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005819 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005820 empty_handshake = state == TLS_ST_BEFORE;
5821#else
Lukas Tribus49799162019-07-08 14:29:15 +02005822 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5823 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005824#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005825 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005826 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005827 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005828 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5829 else
5830 conn->err_code = CO_ER_SSL_EMPTY;
5831 }
5832 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005833 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005834 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5835 else
5836 conn->err_code = CO_ER_SSL_ABORT;
5837 }
5838 }
5839 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005840 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005841 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005842 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005843 conn->err_code = CO_ER_SSL_HANDSHAKE;
5844 }
Lukas Tribus49799162019-07-08 14:29:15 +02005845#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005846 }
Emeric Brun674b7432012-11-08 19:21:55 +01005847 goto out_error;
5848 }
5849 else {
5850 /* Fail on all other handshake errors */
5851 /* Note: OpenSSL may leave unread bytes in the socket's
5852 * buffer, causing an RST to be emitted upon close() on
5853 * TCP sockets. We first try to drain possibly pending
5854 * data to avoid this as much as possible.
5855 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005856 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005857 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005858 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005859 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005860 goto out_error;
5861 }
5862 }
5863 /* read some data: consider handshake completed */
5864 goto reneg_ok;
5865 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005866 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005867check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005868 if (ret != 1) {
5869 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005870 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005871
Remi Tricot-Le Breton1fe0fad2021-09-29 18:56:52 +02005872 if (!ctx->error_code)
5873 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02005874
Emeric Brun46591952012-05-18 15:47:34 +02005875 if (ret == SSL_ERROR_WANT_WRITE) {
5876 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005877 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005878 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005879 return 0;
5880 }
5881 else if (ret == SSL_ERROR_WANT_READ) {
5882 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005883 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005884 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5885 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005886 return 0;
5887 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005888#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005889 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005890 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005891 return 0;
5892 }
5893#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005894 else if (ret == SSL_ERROR_SYSCALL) {
5895 /* if errno is null, then connection was successfully established */
5896 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5897 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005898 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005899#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5900 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005901 conn->err_code = CO_ER_SSL_HANDSHAKE;
5902#else
5903 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005904#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005905 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005906 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005907 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005908#else
Lukas Tribus49799162019-07-08 14:29:15 +02005909 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5910 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005911#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005912 if (empty_handshake) {
5913 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005914 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005915 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5916 else
5917 conn->err_code = CO_ER_SSL_EMPTY;
5918 }
5919 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005920 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005921 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5922 else
5923 conn->err_code = CO_ER_SSL_ABORT;
5924 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005925 }
5926 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005927 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005928 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5929 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005930 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005931 }
Lukas Tribus49799162019-07-08 14:29:15 +02005932#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005933 }
Willy Tarreau89230192012-09-28 20:22:13 +02005934 goto out_error;
5935 }
Emeric Brun46591952012-05-18 15:47:34 +02005936 else {
5937 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005938 /* Note: OpenSSL may leave unread bytes in the socket's
5939 * buffer, causing an RST to be emitted upon close() on
5940 * TCP sockets. We first try to drain possibly pending
5941 * data to avoid this as much as possible.
5942 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005943 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005944 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005945 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005946 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005947 goto out_error;
5948 }
5949 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005950#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005951 else {
5952 /*
5953 * If the server refused the early data, we have to send a
5954 * 425 to the client, as we no longer have the data to sent
5955 * them again.
5956 */
5957 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005958 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005959 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5960 goto out_error;
5961 }
5962 }
5963 }
5964#endif
5965
Emeric Brun46591952012-05-18 15:47:34 +02005966
Emeric Brun674b7432012-11-08 19:21:55 +01005967reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005968
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005969#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005970 /* ASYNC engine API doesn't support moving read/write
5971 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005972 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005973 */
5974 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005975 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005976#endif
Emeric Brun46591952012-05-18 15:47:34 +02005977 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005978 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005979 if (objt_server(conn->target)) {
5980 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5981 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5982 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005983 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005984 else {
5985 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5986 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5987 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5988 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005989
Willy Tarreau42995282020-11-06 13:19:18 +01005990 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01005991 HA_ATOMIC_INC(&counters->sess);
5992 HA_ATOMIC_INC(&counters_px->sess);
Willy Tarreau42995282020-11-06 13:19:18 +01005993 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005994 }
Willy Tarreau42995282020-11-06 13:19:18 +01005995 else if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01005996 HA_ATOMIC_INC(&counters->reused_sess);
5997 HA_ATOMIC_INC(&counters_px->reused_sess);
Emeric Brun46591952012-05-18 15:47:34 +02005998 }
5999
6000 /* The connection is now established at both layers, it's time to leave */
6001 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
6002 return 1;
6003
6004 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006005 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006006 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006007 ERR_clear_error();
6008
Emeric Brun9fa89732012-10-04 17:09:56 +02006009 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01006010 if (objt_server(conn->target)) {
6011 struct server *s = __objt_server(conn->target);
6012 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
6013 * one cache per thread, it only prevents to flush it from the CLI in
6014 * another thread */
6015
6016 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01006017 if (s->ssl_ctx.reused_sess[tid].ptr)
6018 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01006019 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02006020 }
6021
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006022 if (counters) {
Willy Tarreauc5e7cf92021-11-22 17:46:13 +01006023 HA_ATOMIC_INC(&counters->failed_handshake);
6024 HA_ATOMIC_INC(&counters_px->failed_handshake);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01006025 }
6026
Emeric Brun46591952012-05-18 15:47:34 +02006027 /* Fail on all other handshake errors */
6028 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01006029 if (!conn->err_code)
6030 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02006031 return 0;
6032}
6033
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006034/* Called from the upper layer, to subscribe <es> to events <event_type>. The
6035 * event subscriber <es> is not allowed to change from a previous call as long
6036 * as at least one event is still subscribed. The <event_type> must only be a
6037 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
6038 * unless the transport layer was already released.
6039 */
6040static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006041{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006042 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006043
Olivier Houchard0ff28652019-06-24 18:57:39 +02006044 if (!ctx)
6045 return -1;
6046
Willy Tarreau113d52b2020-01-10 09:20:26 +01006047 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006048 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006049
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006050 ctx->subs = es;
6051 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006052
6053 /* we may have to subscribe to lower layers for new events */
6054 event_type &= ~ctx->wait_event.events;
6055 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
6056 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006057 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006058}
6059
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006060/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
6061 * The <es> pointer is not allowed to differ from the one passed to the
6062 * subscribe() call. It always returns zero.
6063 */
6064static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01006065{
Olivier Houchardea8dd942019-05-20 14:02:16 +02006066 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006067
Willy Tarreau113d52b2020-01-10 09:20:26 +01006068 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006069 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006070
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01006071 es->events &= ~event_type;
6072 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01006073 ctx->subs = NULL;
6074
6075 /* If we subscribed, and we're not doing the handshake,
6076 * then we subscribed because the upper layer asked for it,
6077 * as the upper layer is no longer interested, we can
6078 * unsubscribe too.
6079 */
6080 event_type &= ctx->wait_event.events;
6081 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
6082 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006083
6084 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01006085}
6086
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006087/* The connection has been taken over, so destroy the old tasklet and create
6088 * a new one. The original thread ID must be passed into orig_tid
6089 * It should be called with the takeover lock for the old thread held.
6090 * Returns 0 on success, and -1 on failure
6091 */
6092static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
6093{
6094 struct ssl_sock_ctx *ctx = xprt_ctx;
6095 struct tasklet *tl = tasklet_new();
6096
6097 if (!tl)
6098 return -1;
6099
6100 ctx->wait_event.tasklet->context = NULL;
6101 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
6102 ctx->wait_event.tasklet = tl;
6103 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
6104 ctx->wait_event.tasklet->context = ctx;
6105 return 0;
6106}
6107
Willy Tarreau41491682021-03-02 17:29:56 +01006108/* notify the next xprt that the connection is about to become idle and that it
6109 * may be stolen at any time after the function returns and that any tasklet in
6110 * the chain must be careful before dereferencing its context.
6111 */
6112static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
6113{
6114 struct ssl_sock_ctx *ctx = xprt_ctx;
6115
6116 if (!ctx || !ctx->wait_event.tasklet)
6117 return;
6118
6119 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6120 if (ctx->xprt)
6121 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
6122}
6123
6124/* notify the next xprt that the connection is not idle anymore and that it may
6125 * not be stolen before the next xprt_set_idle().
6126 */
6127static void ssl_set_used(struct connection *conn, void *xprt_ctx)
6128{
6129 struct ssl_sock_ctx *ctx = xprt_ctx;
6130
6131 if (!ctx || !ctx->wait_event.tasklet)
6132 return;
6133
6134 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
6135 if (ctx->xprt)
6136 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
6137}
6138
Olivier Houchard2e055482019-05-27 19:50:12 +02006139/* Use the provided XPRT as an underlying XPRT, and provide the old one.
6140 * Returns 0 on success, and non-zero on failure.
6141 */
6142static 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)
6143{
6144 struct ssl_sock_ctx *ctx = xprt_ctx;
6145
6146 if (oldxprt_ops != NULL)
6147 *oldxprt_ops = ctx->xprt;
6148 if (oldxprt_ctx != NULL)
6149 *oldxprt_ctx = ctx->xprt_ctx;
6150 ctx->xprt = toadd_ops;
6151 ctx->xprt_ctx = toadd_ctx;
6152 return 0;
6153}
6154
Olivier Houchard5149b592019-05-23 17:47:36 +02006155/* Remove the specified xprt. If if it our underlying XPRT, remove it and
6156 * return 0, otherwise just call the remove_xprt method from the underlying
6157 * XPRT.
6158 */
6159static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
6160{
6161 struct ssl_sock_ctx *ctx = xprt_ctx;
6162
6163 if (ctx->xprt_ctx == toremove_ctx) {
6164 ctx->xprt_ctx = newctx;
6165 ctx->xprt = newops;
6166 return 0;
6167 }
6168 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
6169}
6170
Willy Tarreau144f84a2021-03-02 16:09:26 +01006171struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02006172{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006173 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006174 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006175 struct connection *conn;
6176 int conn_in_list;
6177 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006178
Willy Tarreau41491682021-03-02 17:29:56 +01006179 if (state & TASK_F_USR1) {
6180 /* the tasklet was idling on an idle connection, it might have
6181 * been stolen, let's be careful!
6182 */
6183 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6184 if (tl->context == NULL) {
6185 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6186 tasklet_free(tl);
6187 return NULL;
6188 }
6189 conn = ctx->conn;
6190 conn_in_list = conn->flags & CO_FL_LIST_MASK;
6191 if (conn_in_list)
6192 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006193 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01006194 } else {
6195 conn = ctx->conn;
6196 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006197 }
Willy Tarreau41491682021-03-02 17:29:56 +01006198
Olivier Houchardea8dd942019-05-20 14:02:16 +02006199 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01006200 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006201 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006202 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
6203 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01006204 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006205 }
6206 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006207 /* If we had an error, or the handshake is done and I/O is available,
6208 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01006209 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02006210 * we can't be sure conn_fd_handler() will be called again.
6211 */
6212 if ((ctx->conn->flags & CO_FL_ERROR) ||
6213 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006214 int woke = 0;
6215
6216 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006217 if (ctx->subs) {
6218 tasklet_wakeup(ctx->subs->tasklet);
6219 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006220 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006221 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006222 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006223
Olivier Houchardea8dd942019-05-20 14:02:16 +02006224 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01006225 * upper layers know. If we have no mux, create it,
6226 * and once we have a mux, call its wake method if we didn't
6227 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02006228 */
6229 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01006230 if (!ctx->conn->mux)
6231 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006232 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006233 ret = ctx->conn->mux->wake(ctx->conn);
6234 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006235 }
6236 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006237#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006238 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006239 else if (b_data(&ctx->early_buf) && ctx->subs &&
6240 ctx->subs->events & SUB_RETRY_RECV) {
6241 tasklet_wakeup(ctx->subs->tasklet);
6242 ctx->subs->events &= ~SUB_RETRY_RECV;
6243 if (!ctx->subs->events)
6244 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01006245 }
6246#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006247leave:
6248 if (!ret && conn_in_list) {
6249 struct server *srv = objt_server(conn->target);
6250
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006251 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006252 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006253 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006254 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006255 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006256 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006257 }
Willy Tarreau74163142021-03-13 11:30:19 +01006258 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006259}
6260
Emeric Brun46591952012-05-18 15:47:34 +02006261/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01006262 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02006263 * buffer wraps, in which case a second call may be performed. The connection's
6264 * flags are updated with whatever special event is detected (error, read0,
6265 * empty). The caller is responsible for taking care of those events and
6266 * avoiding the call if inappropriate. The function does not call the
6267 * connection's polling update function, so the caller is responsible for this.
6268 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006269static 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 +02006270{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006271 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02006272 ssize_t ret;
6273 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02006274
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006275 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006276 goto out_error;
6277
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006278#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006279 if (b_data(&ctx->early_buf)) {
6280 try = b_contig_space(buf);
6281 if (try > b_data(&ctx->early_buf))
6282 try = b_data(&ctx->early_buf);
6283 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
6284 b_add(buf, try);
6285 b_del(&ctx->early_buf, try);
6286 if (b_data(&ctx->early_buf) == 0)
6287 b_free(&ctx->early_buf);
6288 return try;
6289 }
6290#endif
6291
Willy Tarreau911db9b2020-01-23 16:27:54 +01006292 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006293 /* a handshake was requested */
6294 return 0;
6295
Emeric Brun46591952012-05-18 15:47:34 +02006296 /* read the largest possible block. For this, we perform only one call
6297 * to recv() unless the buffer wraps and we exactly fill the first hunk,
6298 * in which case we accept to do it once again. A new attempt is made on
6299 * EINTR too.
6300 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01006301 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006302
Willy Tarreau591d4452018-06-15 17:21:00 +02006303 try = b_contig_space(buf);
6304 if (!try)
6305 break;
6306
Willy Tarreauabf08d92014-01-14 11:31:27 +01006307 if (try > count)
6308 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02006309
Olivier Houchard66ab4982019-02-26 18:37:15 +01006310 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02006311
Emeric Brune1f38db2012-09-03 20:36:47 +02006312 if (conn->flags & CO_FL_ERROR) {
6313 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006314 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006315 }
Emeric Brun46591952012-05-18 15:47:34 +02006316 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006317 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006318 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006319 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006320 }
Emeric Brun46591952012-05-18 15:47:34 +02006321 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006322 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006323 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006324 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006325 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006326 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006327#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006328 /* Async mode can be re-enabled, because we're leaving data state.*/
6329 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006330 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006331#endif
Emeric Brun46591952012-05-18 15:47:34 +02006332 break;
6333 }
6334 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006335 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006336 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6337 SUB_RETRY_RECV,
6338 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006339 /* handshake is running, and it may need to re-enable read */
6340 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006341#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006342 /* Async mode can be re-enabled, because we're leaving data state.*/
6343 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006344 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006345#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006346 break;
6347 }
Emeric Brun46591952012-05-18 15:47:34 +02006348 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006349 } else if (ret == SSL_ERROR_ZERO_RETURN)
6350 goto read0;
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006351 else if (ret == SSL_ERROR_SSL) {
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006352 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6353 if (!ctx->error_code)
6354 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006355 conn->err_code = CO_ERR_SSL_FATAL;
6356 }
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006357 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6358 * stack before shutting down the connection for
6359 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006360 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6361 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006362 /* otherwise it's a real error */
6363 goto out_error;
6364 }
6365 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006366 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006367 return done;
6368
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006369 clear_ssl_error:
6370 /* Clear openssl global errors stack */
6371 ssl_sock_dump_errors(conn);
6372 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006373 read0:
6374 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006375 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006376
Emeric Brun46591952012-05-18 15:47:34 +02006377 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006378 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006379 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006380 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006381 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006382 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006383}
6384
6385
Willy Tarreau787db9a2018-06-14 18:31:46 +02006386/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6387 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6388 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006389 * Only one call to send() is performed, unless the buffer wraps, in which case
6390 * a second call may be performed. The connection's flags are updated with
6391 * whatever special event is detected (error, empty). The caller is responsible
6392 * for taking care of those events and avoiding the call if inappropriate. The
6393 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006394 * is responsible for this. The buffer's output is not adjusted, it's up to the
6395 * caller to take care of this. It's up to the caller to update the buffer's
6396 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006397 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006398static 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 +02006399{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006400 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006401 ssize_t ret;
6402 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006403
6404 done = 0;
6405
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006406 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006407 goto out_error;
6408
Willy Tarreau911db9b2020-01-23 16:27:54 +01006409 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006410 /* a handshake was requested */
6411 return 0;
6412
6413 /* send the largest possible block. For this we perform only one call
6414 * to send() unless the buffer wraps and we exactly fill the first hunk,
6415 * in which case we accept to do it once again.
6416 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006417 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006418#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006419 size_t written_data;
6420#endif
6421
Willy Tarreau787db9a2018-06-14 18:31:46 +02006422 try = b_contig_data(buf, done);
6423 if (try > count)
6424 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006425
Willy Tarreau7bed9452014-02-02 02:00:24 +01006426 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006427 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006428 global_ssl.max_record && try > global_ssl.max_record) {
6429 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006430 }
6431 else {
6432 /* we need to keep the information about the fact that
6433 * we're not limiting the upcoming send(), because if it
6434 * fails, we'll have to retry with at least as many data.
6435 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006436 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006437 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006438
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006439#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006440 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006441 unsigned int max_early;
6442
Olivier Houchard522eea72017-11-03 16:27:47 +01006443 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006444 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006445 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006446 if (SSL_get0_session(ctx->ssl))
6447 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006448 else
6449 max_early = 0;
6450 }
6451
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006452 if (try + ctx->sent_early_data > max_early) {
6453 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006454 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006455 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006456 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006457 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006458 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006459 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006460 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006461 if (ret == 1) {
6462 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006463 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006464 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006465 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006466 /* Initiate the handshake, now */
6467 tasklet_wakeup(ctx->wait_event.tasklet);
6468 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006469
Olivier Houchardc2aae742017-09-22 18:26:28 +02006470 }
6471
6472 } else
6473#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006474 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006475
Emeric Brune1f38db2012-09-03 20:36:47 +02006476 if (conn->flags & CO_FL_ERROR) {
6477 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006478 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006479 }
Emeric Brun46591952012-05-18 15:47:34 +02006480 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006481 /* A send succeeded, so we can consider ourself connected */
6482 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006483 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006484 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006485 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006486 }
6487 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006488 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006489
Emeric Brun46591952012-05-18 15:47:34 +02006490 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006491 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006492 /* handshake is running, and it may need to re-enable write */
6493 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006494 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006495#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006496 /* Async mode can be re-enabled, because we're leaving data state.*/
6497 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006498 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006499#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006500 break;
6501 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006502
Emeric Brun46591952012-05-18 15:47:34 +02006503 break;
6504 }
6505 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006506 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006507 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006508 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6509 SUB_RETRY_RECV,
6510 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006511#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006512 /* Async mode can be re-enabled, because we're leaving data state.*/
6513 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006514 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006515#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006516 break;
6517 }
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006518 else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) {
Remi Tricot-Le Breton9543d5a2021-09-29 18:56:53 +02006519 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6520 if (!ctx->error_code)
6521 ctx->error_code = ERR_peek_error();
Remi Tricot-Le Breton61944f72021-09-29 18:56:51 +02006522 conn->err_code = CO_ERR_SSL_FATAL;
6523 }
Emeric Brun46591952012-05-18 15:47:34 +02006524 goto out_error;
6525 }
6526 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006527 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006528 return done;
6529
6530 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006531 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006532 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006533 ERR_clear_error();
6534
Emeric Brun46591952012-05-18 15:47:34 +02006535 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006536 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006537}
6538
Willy Tarreau832e2422021-05-13 10:11:03 +02006539void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006540
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006541 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006542
Olivier Houchardea8dd942019-05-20 14:02:16 +02006543
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006544 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006545 if (ctx->wait_event.events != 0)
6546 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6547 ctx->wait_event.events,
6548 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006549 if (ctx->subs) {
6550 ctx->subs->events = 0;
6551 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006552 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006553
Olivier Houchard692c1d02019-05-23 18:41:47 +02006554 if (ctx->xprt->close)
6555 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006556#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006557 if (global_ssl.async) {
6558 OSSL_ASYNC_FD all_fd[32], afd;
6559 size_t num_all_fds = 0;
6560 int i;
6561
Olivier Houchard66ab4982019-02-26 18:37:15 +01006562 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006563 if (num_all_fds > 32) {
6564 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6565 return;
6566 }
6567
Olivier Houchard66ab4982019-02-26 18:37:15 +01006568 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006569
6570 /* If an async job is pending, we must try to
6571 to catch the end using polling before calling
6572 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006573 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006574 for (i=0 ; i < num_all_fds ; i++) {
6575 /* switch on an handler designed to
6576 * handle the SSL_free
6577 */
6578 afd = all_fd[i];
6579 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006580 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006581 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006582 /* To ensure that the fd cache won't be used
6583 * and we'll catch a real RD event.
6584 */
6585 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006586 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006587 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006588 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006589 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006590 return;
6591 }
Emeric Brun3854e012017-05-17 20:42:48 +02006592 /* Else we can remove the fds from the fdtab
6593 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006594 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006595 * because the fd is owned by the engine.
6596 * the engine is responsible to close
6597 */
6598 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006599 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006600 }
6601#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006602 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006603 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006604 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006605 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau82531f62021-10-06 12:15:18 +02006606 _HA_ATOMIC_DEC(&global.sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006607 }
Emeric Brun46591952012-05-18 15:47:34 +02006608}
6609
6610/* This function tries to perform a clean shutdown on an SSL connection, and in
6611 * any case, flags the connection as reusable if no handshake was in progress.
6612 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006613static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006614{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006615 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006616
Willy Tarreau911db9b2020-01-23 16:27:54 +01006617 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006618 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006619 if (!clean)
6620 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006621 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006622 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006623 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006624 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006625 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006626 ERR_clear_error();
6627 }
Emeric Brun46591952012-05-18 15:47:34 +02006628}
6629
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006630
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006631/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006632int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6633{
6634 struct ssl_sock_ctx *ctx;
6635 X509 *crt;
6636
Willy Tarreau1057bee2021-10-06 11:38:44 +02006637 if (!conn_is_ssl(conn))
William Lallemandd4f946c2019-12-05 10:26:40 +01006638 return 0;
6639
6640 ctx = conn->xprt_ctx;
6641
6642 crt = SSL_get_certificate(ctx->ssl);
6643 if (!crt)
6644 return 0;
6645
6646 return cert_get_pkey_algo(crt, out);
6647}
6648
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006649/* used for ppv2 cert signature (can be used for logging) */
6650const char *ssl_sock_get_cert_sig(struct connection *conn)
6651{
Christopher Faulet82004142019-09-10 10:12:03 +02006652 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006653
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006654 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6655 X509 *crt;
6656
Willy Tarreau1057bee2021-10-06 11:38:44 +02006657 if (!conn_is_ssl(conn))
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006658 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006659 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006660 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006661 if (!crt)
6662 return NULL;
6663 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6664 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6665}
6666
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006667/* used for ppv2 authority */
6668const char *ssl_sock_get_sni(struct connection *conn)
6669{
6670#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006671 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006672
Willy Tarreau1057bee2021-10-06 11:38:44 +02006673 if (!conn_is_ssl(conn))
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006674 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006675 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006676 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006677#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006678 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006679#endif
6680}
6681
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006682/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006683const char *ssl_sock_get_cipher_name(struct connection *conn)
6684{
Christopher Faulet82004142019-09-10 10:12:03 +02006685 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006686
Willy Tarreau1057bee2021-10-06 11:38:44 +02006687 if (!conn_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006688 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006689 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006690 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006691}
6692
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006693/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006694const char *ssl_sock_get_proto_version(struct connection *conn)
6695{
Christopher Faulet82004142019-09-10 10:12:03 +02006696 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006697
Willy Tarreau1057bee2021-10-06 11:38:44 +02006698 if (!conn_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006699 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006700 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006701 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006702}
6703
Olivier Houchardab28a322018-12-21 19:45:40 +01006704void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6705{
6706#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006707 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006708
Willy Tarreau1057bee2021-10-06 11:38:44 +02006709 if (!conn_is_ssl(conn))
Olivier Houcharde488ea82019-06-28 14:10:33 +02006710 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006711 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006712 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006713#endif
6714}
6715
Willy Tarreau119a4082016-12-22 21:58:38 +01006716/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6717 * to disable SNI.
6718 */
Willy Tarreau63076412015-07-10 11:33:32 +02006719void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6720{
6721#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006722 struct ssl_sock_ctx *ctx;
William Lallemande18d4e82021-11-17 02:59:21 +01006723 struct server *s;
Willy Tarreau119a4082016-12-22 21:58:38 +01006724 char *prev_name;
6725
Willy Tarreau1057bee2021-10-06 11:38:44 +02006726 if (!conn_is_ssl(conn))
Willy Tarreau63076412015-07-10 11:33:32 +02006727 return;
Willy Tarreau77bfa662021-12-23 11:12:13 +01006728
6729 BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN));
6730 BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS));
6731
Christopher Faulet82004142019-09-10 10:12:03 +02006732 ctx = conn->xprt_ctx;
William Lallemande18d4e82021-11-17 02:59:21 +01006733 s = __objt_server(conn->target);
Willy Tarreau63076412015-07-10 11:33:32 +02006734
Willy Tarreau119a4082016-12-22 21:58:38 +01006735 /* if the SNI changes, we must destroy the reusable context so that a
William Lallemande18d4e82021-11-17 02:59:21 +01006736 * new connection will present a new SNI. compare with the SNI
6737 * previously stored in the reused_sess */
6738 /* the RWLOCK is used to ensure that we are not trying to flush the
6739 * cache from the CLI */
6740
6741 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
6742 prev_name = s->ssl_ctx.reused_sess[tid].sni;
Willy Tarreau119a4082016-12-22 21:58:38 +01006743 if ((!prev_name && hostname) ||
6744 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006745 SSL_set_session(ctx->ssl, NULL);
William Lallemande18d4e82021-11-17 02:59:21 +01006746 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau119a4082016-12-22 21:58:38 +01006747
Olivier Houchard66ab4982019-02-26 18:37:15 +01006748 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006749#endif
6750}
6751
Emeric Brun0abf8362014-06-24 18:26:41 +02006752/* Extract peer certificate's common name into the chunk dest
6753 * Returns
6754 * the len of the extracted common name
6755 * or 0 if no CN found in DN
6756 * or -1 on error case (i.e. no peer certificate)
6757 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006758int ssl_sock_get_remote_common_name(struct connection *conn,
6759 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006760{
Christopher Faulet82004142019-09-10 10:12:03 +02006761 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006762 X509 *crt = NULL;
6763 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006764 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006765 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006766 .area = (char *)&find_cn,
6767 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006768 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006769 int result = -1;
David Safb76832014-05-08 23:42:08 -04006770
Willy Tarreau1057bee2021-10-06 11:38:44 +02006771 if (!conn_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006772 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006773 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -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);
David Safb76832014-05-08 23:42:08 -04006777 if (!crt)
6778 goto out;
6779
6780 name = X509_get_subject_name(crt);
6781 if (!name)
6782 goto out;
David Safb76832014-05-08 23:42:08 -04006783
Emeric Brun0abf8362014-06-24 18:26:41 +02006784 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6785out:
David Safb76832014-05-08 23:42:08 -04006786 if (crt)
6787 X509_free(crt);
6788
6789 return result;
6790}
6791
Dave McCowan328fb582014-07-30 10:39:13 -04006792/* returns 1 if client passed a certificate for this session, 0 if not */
6793int ssl_sock_get_cert_used_sess(struct connection *conn)
6794{
Christopher Faulet82004142019-09-10 10:12:03 +02006795 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006796 X509 *crt = NULL;
6797
Willy Tarreau1057bee2021-10-06 11:38:44 +02006798 if (!conn_is_ssl(conn))
Dave McCowan328fb582014-07-30 10:39:13 -04006799 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006800 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006801
6802 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006803 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006804 if (!crt)
6805 return 0;
6806
6807 X509_free(crt);
6808 return 1;
6809}
6810
6811/* returns 1 if client passed a certificate for this connection, 0 if not */
6812int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006813{
Christopher Faulet82004142019-09-10 10:12:03 +02006814 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006815
Willy Tarreau1057bee2021-10-06 11:38:44 +02006816 if (!conn_is_ssl(conn))
David Safb76832014-05-08 23:42:08 -04006817 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006818 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006819 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006820}
6821
6822/* returns result from SSL verify */
6823unsigned int ssl_sock_get_verify_result(struct connection *conn)
6824{
Christopher Faulet82004142019-09-10 10:12:03 +02006825 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006826
Willy Tarreau1057bee2021-10-06 11:38:44 +02006827 if (!conn_is_ssl(conn))
David Safb76832014-05-08 23:42:08 -04006828 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006829 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006830 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006831}
6832
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006833/* Returns the application layer protocol name in <str> and <len> when known.
6834 * Zero is returned if the protocol name was not found, otherwise non-zero is
6835 * returned. The string is allocated in the SSL context and doesn't have to be
6836 * freed by the caller. NPN is also checked if available since older versions
6837 * of openssl (1.0.1) which are more common in field only support this one.
6838 */
Amaury Denoyelle71e588c2021-11-12 11:23:29 +01006839int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006840{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006841#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6842 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006843 struct ssl_sock_ctx *ctx = xprt_ctx;
6844 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006845 return 0;
6846
6847 *str = NULL;
6848
6849#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006850 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006851 if (*str)
6852 return 1;
6853#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006854#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006855 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006856 if (*str)
6857 return 1;
6858#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006859#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006860 return 0;
6861}
6862
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006863/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006864int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006865{
6866 X509 *ca;
6867 X509_NAME *name = NULL;
6868 ASN1_OCTET_STRING *skid = NULL;
6869 STACK_OF(X509) *chain = NULL;
6870 struct issuer_chain *issuer;
6871 struct eb64_node *node;
6872 char *path;
6873 u64 key;
6874 int ret = 0;
6875
6876 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6877 if (chain == NULL) {
6878 chain = sk_X509_new_null();
6879 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6880 name = X509_get_subject_name(ca);
6881 }
6882 if (!sk_X509_push(chain, ca)) {
6883 X509_free(ca);
6884 goto end;
6885 }
6886 }
6887 if (!chain) {
6888 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6889 goto end;
6890 }
6891 if (!skid) {
6892 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6893 goto end;
6894 }
6895 if (!name) {
6896 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6897 goto end;
6898 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006899 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006900 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006901 issuer = container_of(node, typeof(*issuer), node);
6902 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6903 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6904 goto end;
6905 }
6906 }
6907 issuer = calloc(1, sizeof *issuer);
6908 path = strdup(fp);
6909 if (!issuer || !path) {
6910 free(issuer);
6911 free(path);
6912 goto end;
6913 }
6914 issuer->node.key = key;
6915 issuer->path = path;
6916 issuer->chain = chain;
6917 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006918 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006919 ret = 1;
6920 end:
6921 if (skid)
6922 ASN1_OCTET_STRING_free(skid);
6923 if (chain)
6924 sk_X509_pop_free(chain, X509_free);
6925 return ret;
6926}
6927
William Lallemandda8584c2020-05-14 10:14:37 +02006928 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006929{
6930 AUTHORITY_KEYID *akid;
6931 struct issuer_chain *issuer = NULL;
6932
6933 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006934 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006935 struct eb64_node *node;
6936 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006937 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006938 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6939 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6940 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6941 issuer = ti;
6942 break;
6943 }
6944 }
6945 AUTHORITY_KEYID_free(akid);
6946 }
6947 return issuer;
6948}
6949
William Lallemanddad31052020-05-14 17:47:32 +02006950void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006951{
6952 struct eb64_node *node, *back;
6953 struct issuer_chain *issuer;
6954
William Lallemande0f3fd52020-02-25 14:53:06 +01006955 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006956 while (node) {
6957 issuer = container_of(node, typeof(*issuer), node);
6958 back = eb64_next(node);
6959 eb64_delete(node);
6960 free(issuer->path);
6961 sk_X509_pop_free(issuer->chain, X509_free);
6962 free(issuer);
6963 node = back;
6964 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006965}
6966
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006967#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006968static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006969 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006970
Emeric Brun3854e012017-05-17 20:42:48 +02006971 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006972 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006973 err_code = ERR_ABORT;
6974 }
6975 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006976}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006977#endif
6978
Willy Tarreaude5675a2021-01-20 14:41:29 +01006979/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006980 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006981 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006982static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006983{
6984 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006985 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006986
6987 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006988 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006989
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006990 if (sctx->conn != conn) {
6991 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6992 ret = 1;
6993 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006994 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6995
6996 if (sctx->xprt) {
6997 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6998 if (sctx->xprt_ctx)
6999 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
7000 }
7001
7002 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007003
7004 /* as soon as a shutdown is reported the lower layer unregisters its
7005 * subscriber, so the situations below are transient and rare enough to
7006 * be reported as suspicious. In any case they shouldn't last.
7007 */
7008 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
7009 ret = 1;
7010 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
7011 ret = 1;
7012
Willy Tarreaude5675a2021-01-20 14:41:29 +01007013 chunk_appendf(&trash, " .subs=%p", sctx->subs);
7014 if (sctx->subs) {
7015 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007016 if (sctx->subs->tasklet->calls >= 1000000)
7017 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007018 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
7019 sctx->subs->tasklet->calls,
7020 sctx->subs->tasklet->context);
7021 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
7022 chunk_appendf(&trash, ")");
7023 }
7024 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
7025 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01007026 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01007027}
7028
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007029#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02007030/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007031 * each reference. The variable <ref> must point to the current node's list
7032 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02007033 */
William Lallemand32af2032016-10-29 18:09:35 +02007034static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007035struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02007036{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007037 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007038 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02007039
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007040 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007041 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01007042 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02007043
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007044 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02007045}
7046
7047static inline
7048struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
7049{
7050 int id;
7051 char *error;
7052
7053 /* If the reference starts by a '#', this is numeric id. */
7054 if (reference[0] == '#') {
7055 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
7056 id = strtol(reference + 1, &error, 10);
7057 if (*error != '\0')
7058 return NULL;
7059
7060 /* Perform the unique id lookup. */
7061 return tlskeys_ref_lookupid(id);
7062 }
7063
7064 /* Perform the string lookup. */
7065 return tlskeys_ref_lookup(reference);
7066}
7067#endif
7068
7069
7070#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7071
7072static int cli_io_handler_tlskeys_files(struct appctx *appctx);
7073
7074static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
7075 return cli_io_handler_tlskeys_files(appctx);
7076}
7077
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007078/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
7079 * (next index to be dumped), and cli.p0 (next key reference).
7080 */
William Lallemand32af2032016-10-29 18:09:35 +02007081static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
7082
7083 struct stream_interface *si = appctx->owner;
7084
7085 switch (appctx->st2) {
7086 case STAT_ST_INIT:
7087 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08007088 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02007089 * later and restart at the state "STAT_ST_INIT".
7090 */
7091 chunk_reset(&trash);
7092
7093 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
7094 chunk_appendf(&trash, "# id secret\n");
7095 else
7096 chunk_appendf(&trash, "# id (file)\n");
7097
Willy Tarreau06d80a92017-10-19 14:32:15 +02007098 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01007099 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007100 return 0;
7101 }
7102
William Lallemand32af2032016-10-29 18:09:35 +02007103 /* Now, we start the browsing of the references lists.
7104 * Note that the following call to LIST_ELEM return bad pointer. The only
7105 * available field of this pointer is <list>. It is used with the function
7106 * tlskeys_list_get_next() for retruning the first available entry
7107 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007108 if (appctx->ctx.cli.p0 == NULL)
7109 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007110
7111 appctx->st2 = STAT_ST_LIST;
7112 /* fall through */
7113
7114 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007115 while (appctx->ctx.cli.p0) {
7116 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02007117
7118 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007119 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02007120 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007121
7122 if (appctx->ctx.cli.i1 == 0)
7123 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
7124
William Lallemand32af2032016-10-29 18:09:35 +02007125 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01007126 int head;
7127
7128 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
7129 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007130 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02007131 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02007132
7133 chunk_reset(t2);
7134 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01007135 if (ref->key_size_bits == 128) {
7136 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
7137 sizeof(struct tls_sess_key_128),
7138 t2->area, t2->size);
7139 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
7140 t2->area);
7141 }
7142 else if (ref->key_size_bits == 256) {
7143 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
7144 sizeof(struct tls_sess_key_256),
7145 t2->area, t2->size);
7146 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
7147 t2->area);
7148 }
7149 else {
7150 /* This case should never happen */
7151 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
7152 }
William Lallemand32af2032016-10-29 18:09:35 +02007153
Willy Tarreau06d80a92017-10-19 14:32:15 +02007154 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007155 /* let's try again later from this stream. We add ourselves into
7156 * this stream's users so that it can remove us upon termination.
7157 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01007158 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01007159 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007160 return 0;
7161 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007162 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02007163 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01007164 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007165 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007166 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02007167 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02007168 /* let's try again later from this stream. We add ourselves into
7169 * this stream's users so that it can remove us upon termination.
7170 */
Willy Tarreaudb398432018-11-15 11:08:52 +01007171 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02007172 return 0;
7173 }
7174
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007175 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02007176 break;
7177
7178 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01007179 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02007180 }
7181
7182 appctx->st2 = STAT_ST_FIN;
7183 /* fall through */
7184
7185 default:
7186 appctx->st2 = STAT_ST_FIN;
7187 return 1;
7188 }
7189 return 0;
7190}
7191
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007192/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007193static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007194{
William Lallemand32af2032016-10-29 18:09:35 +02007195 /* no parameter, shows only file list */
7196 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007197 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007198 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007199 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007200 }
7201
7202 if (args[2][0] == '*') {
7203 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007204 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007205 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007206 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007207 if (!appctx->ctx.cli.p0)
7208 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007209 }
William Lallemand32af2032016-10-29 18:09:35 +02007210 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007211 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007212}
7213
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007214static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007215{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007216 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007217 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007218
William Lallemand32af2032016-10-29 18:09:35 +02007219 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007220 if (!*args[3] || !*args[4])
7221 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 +02007222
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007223 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007224 if (!ref)
7225 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007226
Willy Tarreau1c913e42018-08-22 05:26:57 +02007227 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007228 if (ret < 0)
7229 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01007230
Willy Tarreau1c913e42018-08-22 05:26:57 +02007231 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02007232 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
7233 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007234
Willy Tarreau9d008692019-08-09 11:21:01 +02007235 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007236}
William Lallemandd4f946c2019-12-05 10:26:40 +01007237#endif
William Lallemand419e6342020-04-08 12:05:39 +02007238
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007239static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007240{
7241#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
7242 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007243 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007244
7245 if (!payload)
7246 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02007247
7248 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007249 if (!*payload)
7250 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007251
7252 /* remove \r and \n from the payload */
7253 for (i = 0, j = 0; payload[i]; i++) {
7254 if (payload[i] == '\r' || payload[i] == '\n')
7255 continue;
7256 payload[j++] = payload[i];
7257 }
7258 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007259
Willy Tarreau1c913e42018-08-22 05:26:57 +02007260 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007261 if (ret < 0)
7262 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007263
Willy Tarreau1c913e42018-08-22 05:26:57 +02007264 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02007265 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02007266 if (err)
7267 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
7268 else
7269 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007270 }
Willy Tarreau9d008692019-08-09 11:21:01 +02007271
7272 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007273#else
Willy Tarreau9d008692019-08-09 11:21:01 +02007274 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 +02007275#endif
7276
Elliot Otchet71f82972020-01-15 08:12:14 -05007277}
7278
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007279
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007280#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 +02007281static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
7282#endif
7283
7284/* parsing function for 'show ssl ocsp-response [id]' */
7285static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
7286{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007287#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 +02007288 if (*args[3]) {
7289 struct certificate_ocsp *ocsp = NULL;
7290 char *key = NULL;
7291 int key_length = 0;
7292
7293 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
7294 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
7295 }
7296
7297 if (parse_binary(args[3], &key, &key_length, NULL)) {
7298
7299 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
7300 memcpy(full_key, key, key_length);
7301
7302 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
7303 }
7304 if (key)
7305 ha_free(&key);
7306
7307 if (!ocsp) {
7308 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
7309 }
7310
7311 appctx->ctx.cli.p0 = ocsp;
7312 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
7313 }
7314
7315 return 0;
7316
7317#else
7318 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7319#endif
7320}
7321
7322
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007323#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 +02007324/*
7325 * This function dumps the details of an OCSP_CERTID. It is based on
7326 * ocsp_certid_print in OpenSSL.
7327 */
7328static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
7329{
7330 ASN1_OCTET_STRING *piNameHash = NULL;
7331 ASN1_OCTET_STRING *piKeyHash = NULL;
7332 ASN1_INTEGER *pSerial = NULL;
7333
7334 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7335
7336 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7337 indent += 2;
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007338 BIO_printf(bp, "%*sIssuer Name Hash: ", indent, "");
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007339 i2a_ASN1_STRING(bp, piNameHash, 0);
7340 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7341 i2a_ASN1_STRING(bp, piKeyHash, 0);
7342 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7343 i2a_ASN1_INTEGER(bp, pSerial);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007344 }
7345 return 1;
7346}
7347#endif
7348
7349/*
7350 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7351 * is managed in cli_io_handler_show_ocspresponse_detail.
7352 */
7353static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7354{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007355#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007356 struct buffer *trash = alloc_trash_chunk();
7357 struct buffer *tmp = NULL;
7358 struct ebmb_node *node;
7359 struct stream_interface *si = appctx->owner;
7360 struct certificate_ocsp *ocsp = NULL;
7361 BIO *bio = NULL;
7362 int write = -1;
7363
7364 if (trash == NULL)
7365 return 1;
7366
7367 tmp = alloc_trash_chunk();
7368 if (!tmp)
7369 goto end;
7370
7371 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7372 goto end;
7373
7374 if (!appctx->ctx.cli.p0) {
7375 chunk_appendf(trash, "# Certificate IDs\n");
7376 node = ebmb_first(&cert_ocsp_tree);
7377 } else {
7378 node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key;
7379 }
7380
7381 while (node) {
7382 OCSP_CERTID *certid = NULL;
7383 const unsigned char *p = NULL;
7384 int i;
7385
7386 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7387
7388 /* Dump the key in hexadecimal */
7389 chunk_appendf(trash, "Certificate ID key : ");
7390 for (i = 0; i < ocsp->key_length; ++i) {
7391 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7392 }
7393 chunk_appendf(trash, "\n");
7394
7395 p = ocsp->key_data;
7396
7397 /* Decode the certificate ID (serialized into the key). */
7398 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
7399
7400 /* Dump the CERTID info */
7401 ocsp_certid_print(bio, certid, 1);
7402 write = BIO_read(bio, tmp->area, tmp->size-1);
Remi Tricot-Le Bretoncc750ef2021-12-17 18:53:23 +01007403 /* strip trailing LFs */
7404 while (write > 0 && tmp->area[write-1] == '\n')
7405 write--;
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007406 tmp->area[write] = '\0';
7407
7408 chunk_appendf(trash, "%s\n", tmp->area);
7409
7410 node = ebmb_next(node);
7411 if (ci_putchk(si_ic(si), trash) == -1) {
7412 si_rx_room_blk(si);
7413 goto yield;
7414 }
7415 }
7416
7417end:
7418 appctx->ctx.cli.p0 = NULL;
7419 if (trash)
7420 free_trash_chunk(trash);
7421 if (tmp)
7422 free_trash_chunk(tmp);
7423 if (bio)
7424 BIO_free(bio);
7425 return 1;
7426
7427yield:
7428
7429 if (trash)
7430 free_trash_chunk(trash);
7431 if (tmp)
7432 free_trash_chunk(tmp);
7433 if (bio)
7434 BIO_free(bio);
7435 appctx->ctx.cli.p0 = ocsp;
7436 return 0;
7437#else
7438 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7439#endif
7440}
7441
7442
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007443#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 +02007444/*
7445 * Dump the details about an OCSP response in DER format stored in
7446 * <ocsp_response> into buffer <out>.
7447 * Returns 0 in case of success.
7448 */
7449int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7450{
7451 BIO *bio = NULL;
7452 int write = -1;
7453 OCSP_RESPONSE *resp;
7454 const unsigned char *p;
7455
7456 if (!ocsp_response)
7457 return -1;
7458
7459 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7460 return -1;
7461
7462 p = (const unsigned char*)ocsp_response->area;
7463
7464 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7465 if (!resp) {
7466 chunk_appendf(out, "Unable to parse OCSP response");
7467 return -1;
7468 }
7469
7470 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
Remi Tricot-Le Breton2e7d1eb2022-01-11 10:11:10 +01007471 struct buffer *trash = get_trash_chunk();
7472 struct ist ist_block = IST_NULL;
7473 struct ist ist_double_lf = IST_NULL;
7474 static struct ist double_lf = IST("\n\n");
7475
7476 write = BIO_read(bio, trash->area, trash->size - 1);
7477 trash->data = write;
7478
7479 /* Look for empty lines in the 'trash' buffer and add a space to
7480 * the beginning to avoid having empty lines in the output
7481 * (without changing the appearance of the information
7482 * displayed).
7483 */
7484 ist_block = ist2(b_orig(trash), b_data(trash));
7485
7486 ist_double_lf = istist(ist_block, double_lf);
7487
7488 while (istlen(ist_double_lf)) {
7489 /* istptr(ist_double_lf) points to the first \n of a
7490 * \n\n pattern.
7491 */
7492 uint empty_line_offset = istptr(ist_double_lf) + 1 - istptr(ist_block);
7493
7494 /* Write up to the first '\n' of the "\n\n" pattern into
7495 * the output buffer.
7496 */
7497 b_putblk(out, istptr(ist_block), empty_line_offset);
7498 /* Add an extra space. */
7499 b_putchr(out, ' ');
7500
7501 /* Keep looking for empty lines in the rest of the data. */
7502 ist_block = istadv(ist_block, empty_line_offset);
7503
7504 ist_double_lf = istist(ist_block, double_lf);
7505 }
7506
7507 b_istput(out, ist_block);
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007508 }
7509
7510 if (bio)
7511 BIO_free(bio);
7512
7513 return 0;
7514}
7515
7516/*
7517 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7518 * Returns 0 in case of success.
7519 */
7520int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7521{
7522 struct certificate_ocsp *ocsp;
7523
7524 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7525 if (!ocsp)
7526 return -1;
7527
7528 return ssl_ocsp_response_print(&ocsp->response, out);
7529}
7530
7531
7532/* IO handler of details "show ssl ocsp-response <id>". */
7533static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7534{
7535 struct buffer *trash = alloc_trash_chunk();
7536 struct certificate_ocsp *ocsp = NULL;
7537 struct stream_interface *si = appctx->owner;
7538
7539 ocsp = appctx->ctx.cli.p0;
7540
7541 if (trash == NULL)
7542 return 1;
7543
7544 ssl_ocsp_response_print(&ocsp->response, trash);
7545
7546 if (ci_putchk(si_ic(si), trash) == -1) {
7547 si_rx_room_blk(si);
7548 goto yield;
7549 }
7550 appctx->ctx.cli.p0 = NULL;
7551 if (trash)
7552 free_trash_chunk(trash);
7553 return 1;
7554
7555yield:
7556 if (trash)
7557 free_trash_chunk(trash);
7558
7559 return 0;
7560}
7561#endif
7562
William Lallemand32af2032016-10-29 18:09:35 +02007563/* register cli keywords */
7564static struct cli_kw_list cli_kws = {{ },{
7565#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007566 { { "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 },
7567 { { "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 +02007568#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007569 { { "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 +02007570
7571 { { "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 +02007572 { { NULL }, NULL, NULL, NULL }
7573}};
7574
Willy Tarreau0108d902018-11-25 19:14:37 +01007575INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007576
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007577/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007578struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007579 .snd_buf = ssl_sock_from_buf,
7580 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007581 .subscribe = ssl_subscribe,
7582 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007583 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007584 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007585 .rcv_pipe = NULL,
7586 .snd_pipe = NULL,
7587 .shutr = NULL,
7588 .shutw = ssl_sock_shutw,
7589 .close = ssl_sock_close,
7590 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007591 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007592 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007593 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007594 .prepare_srv = ssl_sock_prepare_srv_ctx,
7595 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007596 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007597 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007598 .set_idle = ssl_set_idle,
7599 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007600 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007601 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007602};
7603
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007604enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7605 struct session *sess, struct stream *s, int flags)
7606{
7607 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007608 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007609
7610 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007611 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007612
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007613 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007614 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007615 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007616 s->req.flags |= CF_READ_NULL;
7617 return ACT_RET_YIELD;
7618 }
7619 }
7620 return (ACT_RET_CONT);
7621}
7622
7623static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7624{
7625 rule->action_ptr = ssl_action_wait_for_hs;
7626
7627 return ACT_RET_PRS_OK;
7628}
7629
7630static struct action_kw_list http_req_actions = {ILH, {
7631 { "wait-for-handshake", ssl_parse_wait_for_hs },
7632 { /* END */ }
7633}};
7634
Willy Tarreau0108d902018-11-25 19:14:37 +01007635INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7636
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007637#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007638
7639static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7640{
7641 if (ptr) {
7642 chunk_destroy(ptr);
7643 free(ptr);
7644 }
7645}
7646
7647#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007648
7649#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7650static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7651{
7652 struct ocsp_cbk_arg *ocsp_arg;
7653
7654 if (ptr) {
7655 ocsp_arg = ptr;
7656
7657 if (ocsp_arg->is_single) {
7658 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7659 ocsp_arg->s_ocsp = NULL;
7660 } else {
7661 int i;
7662
7663 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7664 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7665 ocsp_arg->m_ocsp[i] = NULL;
7666 }
7667 }
7668 free(ocsp_arg);
7669 }
7670}
7671#endif
7672
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007673static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7674{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007675 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007676}
William Lallemand7d42ef52020-07-06 11:41:30 +02007677
William Lallemand722180a2021-06-09 16:46:12 +02007678#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007679static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7680{
7681 struct ssl_keylog *keylog;
7682
7683 if (!ptr)
7684 return;
7685
7686 keylog = ptr;
7687
7688 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7689 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7690 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7691 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7692 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7693 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7694 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7695 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7696
7697 pool_free(pool_head_ssl_keylog, ptr);
7698}
7699#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007700
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007701static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7702{
7703 if (!ptr)
7704 return;
7705
7706 X509_free((X509*)ptr);
7707}
7708
Remi Tricot-Le Bretona9967632022-01-07 17:12:01 +01007709static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7710{
7711 pool_free(ssl_sock_client_sni_pool, ptr);
7712}
7713
Emeric Brun46591952012-05-18 15:47:34 +02007714__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007715static void __ssl_sock_init(void)
7716{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007717#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007718 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007719 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007720#endif
Emeric Brun46591952012-05-18 15:47:34 +02007721
Willy Tarreauef934602016-12-22 23:12:01 +01007722 if (global_ssl.listen_default_ciphers)
7723 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7724 if (global_ssl.connect_default_ciphers)
7725 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007726#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007727 if (global_ssl.listen_default_ciphersuites)
7728 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7729 if (global_ssl.connect_default_ciphersuites)
7730 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7731#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007732
Willy Tarreau13e14102016-12-22 20:25:26 +01007733 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007734#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007735 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007736#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007737#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007738 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007739 n = sk_SSL_COMP_num(cm);
7740 while (n--) {
7741 (void) sk_SSL_COMP_pop(cm);
7742 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007743#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007744
Willy Tarreau5db847a2019-05-09 14:13:35 +02007745#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007746 ssl_locking_init();
7747#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007748#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007749 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7750#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007751
7752#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7753 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7754#endif
7755
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007756 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007757 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 +01007758#ifdef USE_QUIC
7759 ssl_qc_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7760#endif /* USE_QUIC */
William Lallemand722180a2021-06-09 16:46:12 +02007761#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007762 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7763#endif
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007764 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 +01007765 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 +02007766#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007767 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007768 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007769#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007770#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7771 hap_register_post_check(tlskeys_finalize_config);
7772#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007773
7774 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7775 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7776
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007777 hap_register_post_deinit(ssl_free_global_issuers);
7778
Willy Tarreau80713382018-11-26 10:19:54 +01007779#ifndef OPENSSL_NO_DH
7780 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7781 hap_register_post_deinit(ssl_free_dh);
7782#endif
7783#ifndef OPENSSL_NO_ENGINE
7784 hap_register_post_deinit(ssl_free_engines);
7785#endif
7786 /* Load SSL string for the verbose & debug mode. */
7787 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007788 ha_meth = BIO_meth_new(0x666, "ha methods");
7789 BIO_meth_set_write(ha_meth, ha_ssl_write);
7790 BIO_meth_set_read(ha_meth, ha_ssl_read);
7791 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7792 BIO_meth_set_create(ha_meth, ha_ssl_new);
7793 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7794 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7795 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007796
7797 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007798
Dragan Dosen9ac98092020-05-11 15:51:45 +02007799 /* Try to register dedicated SSL/TLS protocol message callbacks for
7800 * heartbleed attack (CVE-2014-0160) and clienthello.
7801 */
7802 hap_register_post_check(ssl_sock_register_msg_callbacks);
7803
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007804 /* Try to free all callbacks that were registered by using
7805 * ssl_sock_register_msg_callback().
7806 */
7807 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007808}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007809
Willy Tarreau80713382018-11-26 10:19:54 +01007810/* Compute and register the version string */
7811static void ssl_register_build_options()
7812{
7813 char *ptr = NULL;
7814 int i;
7815
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007816 memprintf(&ptr, "Built with OpenSSL version : "
7817#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007818 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007819#else /* OPENSSL_IS_BORINGSSL */
7820 OPENSSL_VERSION_TEXT
7821 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007822 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007823 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007824#endif
7825 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007826#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007827 "no (library version too old)"
7828#elif defined(OPENSSL_NO_TLSEXT)
7829 "no (disabled via OPENSSL_NO_TLSEXT)"
7830#else
7831 "yes"
7832#endif
7833 "", ptr);
7834
7835 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7836#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7837 "yes"
7838#else
7839#ifdef OPENSSL_NO_TLSEXT
7840 "no (because of OPENSSL_NO_TLSEXT)"
7841#else
7842 "no (version might be too old, 0.9.8f min needed)"
7843#endif
7844#endif
7845 "", ptr);
7846
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007847 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7848 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7849 if (methodVersions[i].option)
7850 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007851
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007852 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007853}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007854
Willy Tarreau80713382018-11-26 10:19:54 +01007855INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007856
Emeric Brun46591952012-05-18 15:47:34 +02007857
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007858#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007859void ssl_free_engines(void) {
7860 struct ssl_engine_list *wl, *wlb;
7861 /* free up engine list */
7862 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7863 ENGINE_finish(wl->e);
7864 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007865 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007866 free(wl);
7867 }
7868}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007869#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007870
Remi Gacogned3a23c32015-05-28 16:39:47 +02007871#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007872void ssl_free_dh(void) {
7873 if (local_dh_1024) {
7874 DH_free(local_dh_1024);
7875 local_dh_1024 = NULL;
7876 }
7877 if (local_dh_2048) {
7878 DH_free(local_dh_2048);
7879 local_dh_2048 = NULL;
7880 }
7881 if (local_dh_4096) {
7882 DH_free(local_dh_4096);
7883 local_dh_4096 = NULL;
7884 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007885 if (global_dh) {
7886 DH_free(global_dh);
7887 global_dh = NULL;
7888 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007889}
7890#endif
7891
7892__attribute__((destructor))
7893static void __ssl_sock_deinit(void)
7894{
7895#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007896 if (ssl_ctx_lru_tree) {
7897 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007898 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007899 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007900#endif
7901
Willy Tarreau5db847a2019-05-09 14:13:35 +02007902#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007903 ERR_remove_state(0);
7904 ERR_free_strings();
7905
7906 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007907#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007908
Willy Tarreau5db847a2019-05-09 14:13:35 +02007909#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007910 CRYPTO_cleanup_all_ex_data();
7911#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007912 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007913}
7914
William Dauchyf6370442020-11-14 19:25:33 +01007915
Emeric Brun46591952012-05-18 15:47:34 +02007916/*
7917 * Local variables:
7918 * c-indent-level: 8
7919 * c-basic-offset: 8
7920 * End:
7921 */