blob: 68391326d79d96e8b78c4f1cb2fc03109ee1f69a [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>
46#include <import/xxhash.h>
47
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/api.h>
49#include <haproxy/arg.h>
50#include <haproxy/base64.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020051#include <haproxy/channel.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020052#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020053#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020054#include <haproxy/connection.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020055#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020056#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020057#include <haproxy/fd.h>
58#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020059#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020060#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020061#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020062#include <haproxy/log.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +020063#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020064#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020066#include <haproxy/proxy.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020067#include <haproxy/server.h>
Willy Tarreau334099c2020-06-03 18:38:48 +020068#include <haproxy/shctx.h>
Willy Tarreau47d7f902020-06-04 14:25:47 +020069#include <haproxy/ssl_ckch.h>
Willy Tarreau52d88722020-06-04 14:29:23 +020070#include <haproxy/ssl_crtlist.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020071#include <haproxy/ssl_sock.h>
Willy Tarreaub2bd8652020-06-04 14:21:22 +020072#include <haproxy/ssl_utils.h>
Amaury Denoyelle9963fa72020-11-03 17:10:00 +010073#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020075#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020076#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020077#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020078#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020080#include <haproxy/vars.h>
Frédéric Lécailleec216522020-11-23 14:33:30 +010081#include <haproxy/xprt_quic.h>
Emeric Brun46591952012-05-18 15:47:34 +020082
Emeric Brun46591952012-05-18 15:47:34 +020083
Willy Tarreau9356dac2019-05-10 09:22:53 +020084/* ***** READ THIS before adding code here! *****
85 *
86 * Due to API incompatibilities between multiple OpenSSL versions and their
87 * derivatives, it's often tempting to add macros to (re-)define certain
88 * symbols. Please do not do this here, and do it in common/openssl-compat.h
89 * exclusively so that the whole code consistently uses the same macros.
90 *
91 * Whenever possible if a macro is missing in certain versions, it's better
92 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
93 */
94
Willy Tarreau71b734c2014-01-28 15:19:44 +010095int sslconns = 0;
96int totalsslconns = 0;
Emeric Brunece0c332017-12-06 13:51:49 +010097int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +020098
William Lallemande0f3fd52020-02-25 14:53:06 +010099static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
100
William Lallemand7fd8b452020-05-07 15:20:43 +0200101struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100102#ifdef LISTEN_DEFAULT_CIPHERS
103 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
104#endif
105#ifdef CONNECT_DEFAULT_CIPHERS
106 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
107#endif
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +0500108#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200109 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200110 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
111#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100112 .listen_default_ssloptions = BC_SSL_O_NONE,
113 .connect_default_ssloptions = SRV_SSL_O_NONE,
114
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200115 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
116 .listen_default_sslmethods.min = CONF_TLSV_NONE,
117 .listen_default_sslmethods.max = CONF_TLSV_NONE,
118 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
119 .connect_default_sslmethods.min = CONF_TLSV_NONE,
120 .connect_default_sslmethods.max = CONF_TLSV_NONE,
121
Willy Tarreauef934602016-12-22 23:12:01 +0100122#ifdef DEFAULT_SSL_MAX_RECORD
123 .max_record = DEFAULT_SSL_MAX_RECORD,
124#endif
125 .default_dh_param = SSL_DEFAULT_DH_PARAM,
126 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100127 .capture_cipherlist = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100128 .extra_files = SSL_GF_ALL,
William Lallemand8e8581e2020-10-20 17:36:46 +0200129 .extra_files_noext = 0,
William Lallemand722180a2021-06-09 16:46:12 +0200130#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200131 .keylog = 0
132#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100133};
134
Olivier Houcharda8955d52019-04-07 22:00:38 +0200135static BIO_METHOD *ha_meth;
136
Olivier Houchard66ab4982019-02-26 18:37:15 +0100137DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
138
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100139/* ssl stats module */
140enum {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100141 SSL_ST_SESS,
142 SSL_ST_REUSED_SESS,
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100143 SSL_ST_FAILED_HANDSHAKE,
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100144
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100145 SSL_ST_STATS_COUNT /* must be the last member of the enum */
146};
147
148static struct name_desc ssl_stats[] = {
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100149 [SSL_ST_SESS] = { .name = "ssl_sess",
150 .desc = "Total number of ssl sessions established" },
151 [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess",
152 .desc = "Total number of ssl sessions reused" },
153 [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake",
154 .desc = "Total number of failed handshake" },
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100155};
156
157static struct ssl_counters {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100158 long long sess;
159 long long reused_sess;
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100160 long long failed_handshake;
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100161} ssl_counters;
162
163static void ssl_fill_stats(void *data, struct field *stats)
164{
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100165 struct ssl_counters *counters = data;
166
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100167 stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess);
168 stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess);
169 stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake);
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100170}
171
172static struct stats_module ssl_stats_module = {
173 .name = "ssl",
174 .fill_stats = ssl_fill_stats,
175 .stats = ssl_stats,
176 .stats_count = SSL_ST_STATS_COUNT,
177 .counters = &ssl_counters,
178 .counters_size = sizeof(ssl_counters),
179 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV),
180 .clearable = 1,
181};
182
183INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module);
184
Willy Tarreau691d5032021-01-20 14:55:01 +0100185/* ssl_sock_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100186struct task *ssl_sock_io_cb(struct task *, void *, unsigned int);
Olivier Houchard000694c2019-05-23 14:45:12 +0200187static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200188
Olivier Houcharda8955d52019-04-07 22:00:38 +0200189/* Methods to implement OpenSSL BIO */
190static int ha_ssl_write(BIO *h, const char *buf, int num)
191{
192 struct buffer tmpbuf;
193 struct ssl_sock_ctx *ctx;
194 int ret;
195
196 ctx = BIO_get_data(h);
197 tmpbuf.size = num;
198 tmpbuf.area = (void *)(uintptr_t)buf;
199 tmpbuf.data = num;
200 tmpbuf.head = 0;
201 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200202 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200203 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200204 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200205 } else if (ret == 0)
206 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200207 return ret;
208}
209
210static int ha_ssl_gets(BIO *h, char *buf, int size)
211{
212
213 return 0;
214}
215
216static int ha_ssl_puts(BIO *h, const char *str)
217{
218
219 return ha_ssl_write(h, str, strlen(str));
220}
221
222static int ha_ssl_read(BIO *h, char *buf, int size)
223{
224 struct buffer tmpbuf;
225 struct ssl_sock_ctx *ctx;
226 int ret;
227
228 ctx = BIO_get_data(h);
229 tmpbuf.size = size;
230 tmpbuf.area = buf;
231 tmpbuf.data = 0;
232 tmpbuf.head = 0;
233 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200234 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200235 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200236 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200237 } else if (ret == 0)
238 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200239
240 return ret;
241}
242
243static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
244{
245 int ret = 0;
246 switch (cmd) {
247 case BIO_CTRL_DUP:
248 case BIO_CTRL_FLUSH:
249 ret = 1;
250 break;
251 }
252 return ret;
253}
254
255static int ha_ssl_new(BIO *h)
256{
257 BIO_set_init(h, 1);
258 BIO_set_data(h, NULL);
259 BIO_clear_flags(h, ~0);
260 return 1;
261}
262
263static int ha_ssl_free(BIO *data)
264{
265
266 return 1;
267}
268
269
Willy Tarreau5db847a2019-05-09 14:13:35 +0200270#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100271
Emeric Brun821bb9b2017-06-15 16:37:39 +0200272static HA_RWLOCK_T *ssl_rwlocks;
273
274
275unsigned long ssl_id_function(void)
276{
277 return (unsigned long)tid;
278}
279
280void ssl_locking_function(int mode, int n, const char * file, int line)
281{
282 if (mode & CRYPTO_LOCK) {
283 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100284 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200285 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100286 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200287 }
288 else {
289 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100290 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200291 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100292 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200293 }
294}
295
296static int ssl_locking_init(void)
297{
298 int i;
299
300 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
301 if (!ssl_rwlocks)
302 return -1;
303
304 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100305 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200306
307 CRYPTO_set_id_callback(ssl_id_function);
308 CRYPTO_set_locking_callback(ssl_locking_function);
309
310 return 0;
311}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100312
Emeric Brun821bb9b2017-06-15 16:37:39 +0200313#endif
314
Willy Tarreauaf613e82020-06-05 08:40:51 +0200315__decl_thread(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200316
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100317
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200318
319/* mimic what X509_STORE_load_locations do with store_ctx */
320static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
321{
Remi Tricot-Le Bretond75b99e2021-05-17 11:45:55 +0200322 X509_STORE *store = NULL;
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +0100323 struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0);
324 if (ca_e)
325 store = ca_e->ca_store;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200326 if (store_ctx && store) {
327 int i;
328 X509_OBJECT *obj;
329 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
330 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
331 obj = sk_X509_OBJECT_value(objs, i);
332 switch (X509_OBJECT_get_type(obj)) {
333 case X509_LU_X509:
334 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
335 break;
336 case X509_LU_CRL:
337 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
338 break;
339 default:
340 break;
341 }
342 }
343 return 1;
344 }
345 return 0;
346}
347
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500348/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200349static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
350{
351 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
352 return ssl_set_cert_crl_file(store_ctx, path);
353}
354
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200355/*
356 Extract CA_list from CA_file already in tree.
357 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
358 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
359*/
360static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
361{
362 struct ebmb_node *eb;
363 struct cafile_entry *ca_e;
364
365 eb = ebst_lookup(&cafile_tree, path);
366 if (!eb)
367 return NULL;
368 ca_e = ebmb_entry(eb, struct cafile_entry, node);
369
370 if (ca_e->ca_list == NULL) {
371 int i;
372 unsigned long key;
373 struct eb_root ca_name_tree = EB_ROOT;
374 struct eb64_node *node, *back;
375 struct {
376 struct eb64_node node;
377 X509_NAME *xname;
378 } *ca_name;
379 STACK_OF(X509_OBJECT) *objs;
380 STACK_OF(X509_NAME) *skn;
381 X509 *x;
382 X509_NAME *xn;
383
384 skn = sk_X509_NAME_new_null();
385 /* take x509 from cafile_tree */
386 objs = X509_STORE_get0_objects(ca_e->ca_store);
387 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
388 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
389 if (!x)
390 continue;
391 xn = X509_get_subject_name(x);
392 if (!xn)
393 continue;
394 /* Check for duplicates. */
395 key = X509_NAME_hash(xn);
396 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
397 node && ca_name == NULL;
398 node = eb64_next(node)) {
399 ca_name = container_of(node, typeof(*ca_name), node);
400 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
401 ca_name = NULL;
402 }
403 /* find a duplicate */
404 if (ca_name)
405 continue;
406 ca_name = calloc(1, sizeof *ca_name);
407 xn = X509_NAME_dup(xn);
408 if (!ca_name ||
409 !xn ||
410 !sk_X509_NAME_push(skn, xn)) {
411 free(ca_name);
412 X509_NAME_free(xn);
413 sk_X509_NAME_pop_free(skn, X509_NAME_free);
414 sk_X509_NAME_free(skn);
415 skn = NULL;
416 break;
417 }
418 ca_name->node.key = key;
419 ca_name->xname = xn;
420 eb64_insert(&ca_name_tree, &ca_name->node);
421 }
422 ca_e->ca_list = skn;
423 /* remove temporary ca_name tree */
424 node = eb64_first(&ca_name_tree);
425 while (node) {
426 ca_name = container_of(node, typeof(*ca_name), node);
427 back = eb64_next(node);
428 eb64_delete(node);
429 free(ca_name);
430 node = back;
431 }
432 }
433 return ca_e->ca_list;
434}
435
Willy Tarreauff882702021-04-10 17:23:00 +0200436struct pool_head *pool_head_ssl_capture __read_mostly = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200437int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100438int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100439
William Lallemand722180a2021-06-09 16:46:12 +0200440#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200441int ssl_keylog_index = -1;
Willy Tarreauff882702021-04-10 17:23:00 +0200442struct pool_head *pool_head_ssl_keylog __read_mostly = NULL;
443struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL;
William Lallemand7d42ef52020-07-06 11:41:30 +0200444#endif
445
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200446#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
447struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
448#endif
449
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200450#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200451unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000452struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
453struct ssl_engine_list {
454 struct list list;
455 ENGINE *e;
456};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200457#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000458
Remi Gacogne8de54152014-07-15 11:36:40 +0200459#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200460static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200461static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200462static DH *local_dh_1024 = NULL;
463static DH *local_dh_2048 = NULL;
464static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100465static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200466#endif /* OPENSSL_NO_DH */
467
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100468#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200469/* X509V3 Extensions that will be added on generated certificates */
470#define X509V3_EXT_SIZE 5
471static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
472 "basicConstraints",
473 "nsComment",
474 "subjectKeyIdentifier",
475 "authorityKeyIdentifier",
476 "keyUsage",
477};
478static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
479 "CA:FALSE",
480 "\"OpenSSL Generated Certificate\"",
481 "hash",
482 "keyid,issuer:always",
483 "nonRepudiation,digitalSignature,keyEncipherment"
484};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200485/* LRU cache to store generated certificate */
486static struct lru64_head *ssl_ctx_lru_tree = NULL;
487static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200488static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100489__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200490
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200491#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
492
yanbzhube2774d2015-12-10 15:07:30 -0500493/* The order here matters for picking a default context,
494 * keep the most common keytype at the bottom of the list
495 */
496const char *SSL_SOCK_KEYTYPE_NAMES[] = {
497 "dsa",
498 "ecdsa",
499 "rsa"
500};
yanbzhube2774d2015-12-10 15:07:30 -0500501
William Lallemandc3cd35f2017-11-28 11:04:43 +0100502static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100503static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
504
Dragan Dosen9ac98092020-05-11 15:51:45 +0200505/* Dedicated callback functions for heartbeat and clienthello.
506 */
507#ifdef TLS1_RT_HEARTBEAT
508static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
509 int content_type, const void *buf, size_t len,
510 SSL *ssl);
511#endif
512static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
513 int content_type, const void *buf, size_t len,
514 SSL *ssl);
515
William Lallemand722180a2021-06-09 16:46:12 +0200516#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200517static void ssl_init_keylog(struct connection *conn, int write_p, int version,
518 int content_type, const void *buf, size_t len,
519 SSL *ssl);
520#endif
521
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200522/* List head of all registered SSL/TLS protocol message callbacks. */
523struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
524
525/* Registers the function <func> in order to be called on SSL/TLS protocol
526 * message processing. It will return 0 if the function <func> is not set
527 * or if it fails to allocate memory.
528 */
529int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
530{
531 struct ssl_sock_msg_callback *cbk;
532
533 if (!func)
534 return 0;
535
536 cbk = calloc(1, sizeof(*cbk));
537 if (!cbk) {
538 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
539 return 0;
540 }
541
542 cbk->func = func;
543
Willy Tarreau2b718102021-04-21 07:32:39 +0200544 LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200545
546 return 1;
547}
548
Dragan Dosen9ac98092020-05-11 15:51:45 +0200549/* Used to register dedicated SSL/TLS protocol message callbacks.
550 */
551static int ssl_sock_register_msg_callbacks(void)
552{
553#ifdef TLS1_RT_HEARTBEAT
554 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
555 return ERR_ABORT;
556#endif
557 if (global_ssl.capture_cipherlist > 0) {
558 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
559 return ERR_ABORT;
560 }
William Lallemand722180a2021-06-09 16:46:12 +0200561#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200562 if (global_ssl.keylog > 0) {
563 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
564 return ERR_ABORT;
565 }
566#endif
567
Christopher Fauletfc633b62020-11-06 15:24:23 +0100568 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200569}
570
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200571/* Used to free all SSL/TLS protocol message callbacks that were
572 * registered by using ssl_sock_register_msg_callback().
573 */
574static void ssl_sock_unregister_msg_callbacks(void)
575{
576 struct ssl_sock_msg_callback *cbk, *cbkback;
577
578 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200579 LIST_DELETE(&cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200580 free(cbk);
581 }
582}
583
Dragan Doseneb607fe2020-05-11 17:17:06 +0200584SSL *ssl_sock_get_ssl_object(struct connection *conn)
585{
586 if (!ssl_sock_is_ssl(conn))
587 return NULL;
588
589 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
590}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100591/*
592 * This function gives the detail of the SSL error. It is used only
593 * if the debug mode and the verbose mode are activated. It dump all
594 * the SSL error until the stack was empty.
595 */
596static forceinline void ssl_sock_dump_errors(struct connection *conn)
597{
598 unsigned long ret;
599
600 if (unlikely(global.mode & MODE_DEBUG)) {
601 while(1) {
602 ret = ERR_get_error();
603 if (ret == 0)
604 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100605 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
606 conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100607 ERR_func_error_string(ret), ERR_reason_error_string(ret));
608 }
609 }
610}
611
yanbzhube2774d2015-12-10 15:07:30 -0500612
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200613#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200614int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000615{
616 int err_code = ERR_ABORT;
617 ENGINE *engine;
618 struct ssl_engine_list *el;
619
620 /* grab the structural reference to the engine */
621 engine = ENGINE_by_id(engine_id);
622 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100623 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000624 goto fail_get;
625 }
626
627 if (!ENGINE_init(engine)) {
628 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100629 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000630 goto fail_init;
631 }
632
633 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100634 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000635 goto fail_set_method;
636 }
637
638 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200639 if (!el)
640 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000641 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200642 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100643 nb_engines++;
644 if (global_ssl.async)
645 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000646 return 0;
647
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200648fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000649fail_set_method:
650 /* release the functional reference from ENGINE_init() */
651 ENGINE_finish(engine);
652
653fail_init:
654 /* release the structural reference from ENGINE_by_id() */
655 ENGINE_free(engine);
656
657fail_get:
658 return err_code;
659}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200660#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000661
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500662#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200663/*
664 * openssl async fd handler
665 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200666void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000667{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200668 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000669
Emeric Brun3854e012017-05-17 20:42:48 +0200670 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000671 * to poll this fd until it is requested
672 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000673 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000674 fd_cant_recv(fd);
675
676 /* crypto engine is available, let's notify the associated
677 * connection that it can pursue its processing.
678 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200679 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000680}
681
Emeric Brun3854e012017-05-17 20:42:48 +0200682/*
683 * openssl async delayed SSL_free handler
684 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200685void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000686{
687 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200688 OSSL_ASYNC_FD all_fd[32];
689 size_t num_all_fds = 0;
690 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000691
Emeric Brun3854e012017-05-17 20:42:48 +0200692 /* We suppose that the async job for a same SSL *
693 * are serialized. So if we are awake it is
694 * because the running job has just finished
695 * and we can remove all async fds safely
696 */
697 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
698 if (num_all_fds > 32) {
699 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
700 return;
701 }
702
703 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
704 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200705 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200706
707 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000708 SSL_free(ssl);
Willy Tarreau4781b152021-04-06 13:53:36 +0200709 _HA_ATOMIC_DEC(&sslconns);
710 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000711}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000712/*
Emeric Brun3854e012017-05-17 20:42:48 +0200713 * function used to manage a returned SSL_ERROR_WANT_ASYNC
714 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000715 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200716static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000717{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100718 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200719 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200720 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000721 size_t num_add_fds = 0;
722 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200723 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000724
725 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
726 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200727 if (num_add_fds > 32 || num_del_fds > 32) {
728 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 +0000729 return;
730 }
731
Emeric Brun3854e012017-05-17 20:42:48 +0200732 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000733
Emeric Brun3854e012017-05-17 20:42:48 +0200734 /* We remove unused fds from the fdtab */
735 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200736 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000737
Emeric Brun3854e012017-05-17 20:42:48 +0200738 /* We add new fds to the fdtab */
739 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200740 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000741 }
742
Emeric Brun3854e012017-05-17 20:42:48 +0200743 num_add_fds = 0;
744 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
745 if (num_add_fds > 32) {
746 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
747 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000748 }
Emeric Brun3854e012017-05-17 20:42:48 +0200749
750 /* We activate the polling for all known async fds */
751 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000752 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200753 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000754 /* To ensure that the fd cache won't be used
755 * We'll prefer to catch a real RD event
756 * because handling an EAGAIN on this fd will
757 * result in a context switch and also
758 * some engines uses a fd in blocking mode.
759 */
760 fd_cant_recv(add_fd[i]);
761 }
Emeric Brun3854e012017-05-17 20:42:48 +0200762
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000763}
764#endif
765
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200766#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 +0200767/*
768 * This function returns the number of seconds elapsed
769 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
770 * date presented un ASN1_GENERALIZEDTIME.
771 *
772 * In parsing error case, it returns -1.
773 */
774static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
775{
776 long epoch;
777 char *p, *end;
778 const unsigned short month_offset[12] = {
779 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
780 };
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +0200781 unsigned long year, month;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200782
783 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
784
785 p = (char *)d->data;
786 end = p + d->length;
787
788 if (end - p < 4) return -1;
789 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
790 p += 4;
791 if (end - p < 2) return -1;
792 month = 10 * (p[0] - '0') + p[1] - '0';
793 if (month < 1 || month > 12) return -1;
794 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
795 We consider leap years and the current month (<marsh or not) */
796 epoch = ( ((year - 1970) * 365)
797 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
798 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
799 + month_offset[month-1]
800 ) * 24 * 60 * 60;
801 p += 2;
802 if (end - p < 2) return -1;
803 /* Add the number of seconds of completed days of current month */
804 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
805 p += 2;
806 if (end - p < 2) return -1;
807 /* Add the completed hours of the current day */
808 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
809 p += 2;
810 if (end - p < 2) return -1;
811 /* Add the completed minutes of the current hour */
812 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
813 p += 2;
814 if (p == end) return -1;
815 /* Test if there is available seconds */
816 if (p[0] < '0' || p[0] > '9')
817 goto nosec;
818 if (end - p < 2) return -1;
819 /* Add the seconds of the current minute */
820 epoch += 10 * (p[0] - '0') + p[1] - '0';
821 p += 2;
822 if (p == end) return -1;
823 /* Ignore seconds float part if present */
824 if (p[0] == '.') {
825 do {
826 if (++p == end) return -1;
827 } while (p[0] >= '0' && p[0] <= '9');
828 }
829
830nosec:
831 if (p[0] == 'Z') {
832 if (end - p != 1) return -1;
833 return epoch;
834 }
835 else if (p[0] == '+') {
836 if (end - p != 5) return -1;
837 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700838 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 +0200839 }
840 else if (p[0] == '-') {
841 if (end - p != 5) return -1;
842 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700843 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 +0200844 }
845
846 return -1;
847}
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200848#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200849
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200850#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
William Lallemand104a7a62019-10-14 14:14:59 +0200851/*
852 * struct alignment works here such that the key.key is the same as key_data
853 * Do not change the placement of key_data
854 */
855struct certificate_ocsp {
856 struct ebmb_node key;
857 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +0200858 unsigned int key_length;
William Lallemand104a7a62019-10-14 14:14:59 +0200859 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200860 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200861 long expire;
862};
863
864struct ocsp_cbk_arg {
865 int is_single;
866 int single_kt;
867 union {
868 struct certificate_ocsp *s_ocsp;
869 /*
870 * m_ocsp will have multiple entries dependent on key type
871 * Entry 0 - DSA
872 * Entry 1 - ECDSA
873 * Entry 2 - RSA
874 */
875 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
876 };
877};
878
Emeric Brun1d3865b2014-06-20 15:37:32 +0200879static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200880
881/* This function starts to check if the OCSP response (in DER format) contained
882 * in chunk 'ocsp_response' is valid (else exits on error).
883 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
884 * contained in the OCSP Response and exits on error if no match.
885 * If it's a valid OCSP Response:
886 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
887 * pointed by 'ocsp'.
888 * If 'ocsp' is NULL, the function looks up into the OCSP response's
889 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
890 * from the response) and exits on error if not found. Finally, If an OCSP response is
891 * already present in the container, it will be overwritten.
892 *
893 * Note: OCSP response containing more than one OCSP Single response is not
894 * considered valid.
895 *
896 * Returns 0 on success, 1 in error case.
897 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200898static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
899 struct certificate_ocsp *ocsp,
900 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200901{
902 OCSP_RESPONSE *resp;
903 OCSP_BASICRESP *bs = NULL;
904 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200905 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200906 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200907 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200908 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200909 int reason;
910 int ret = 1;
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200911#ifdef HAVE_ASN1_TIME_TO_TM
912 struct tm nextupd_tm = {0};
913#endif
Emeric Brun4147b2e2014-06-16 18:36:30 +0200914
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200915 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
916 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200917 if (!resp) {
918 memprintf(err, "Unable to parse OCSP response");
919 goto out;
920 }
921
922 rc = OCSP_response_status(resp);
923 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
924 memprintf(err, "OCSP response status not successful");
925 goto out;
926 }
927
928 bs = OCSP_response_get1_basic(resp);
929 if (!bs) {
930 memprintf(err, "Failed to get basic response from OCSP Response");
931 goto out;
932 }
933
934 count_sr = OCSP_resp_count(bs);
935 if (count_sr > 1) {
936 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
937 goto out;
938 }
939
940 sr = OCSP_resp_get0(bs, 0);
941 if (!sr) {
942 memprintf(err, "Failed to get OCSP single response");
943 goto out;
944 }
945
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200946 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
947
Emeric Brun4147b2e2014-06-16 18:36:30 +0200948 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200949 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200950 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200951 goto out;
952 }
953
Emeric Brun13a6b482014-06-20 15:44:34 +0200954 if (!nextupd) {
955 memprintf(err, "OCSP single response: missing nextupdate");
956 goto out;
957 }
958
Emeric Brunc8b27b62014-06-19 14:16:17 +0200959 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200960 if (!rc) {
961 memprintf(err, "OCSP single response: no longer valid.");
962 goto out;
963 }
964
965 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200966 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200967 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
968 goto out;
969 }
970 }
971
972 if (!ocsp) {
973 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
974 unsigned char *p;
975
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200976 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200977 if (!rc) {
978 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
979 goto out;
980 }
981
982 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
983 memprintf(err, "OCSP single response: Certificate ID too long");
984 goto out;
985 }
986
987 p = key;
988 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200989 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200990 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
991 if (!ocsp) {
992 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
993 goto out;
994 }
995 }
996
997 /* According to comments on "chunk_dup", the
998 previous chunk buffer will be freed */
999 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1000 memprintf(err, "OCSP response: Memory allocation error");
1001 goto out;
1002 }
1003
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001004#ifdef HAVE_ASN1_TIME_TO_TM
1005 if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) {
1006 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1007 goto out;
1008 }
1009 ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW;
1010#else
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001011 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +02001012 if (ocsp->expire < 0) {
1013 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1014 goto out;
1015 }
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001016#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001017
Emeric Brun4147b2e2014-06-16 18:36:30 +02001018 ret = 0;
1019out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001020 ERR_clear_error();
1021
Emeric Brun4147b2e2014-06-16 18:36:30 +02001022 if (bs)
1023 OCSP_BASICRESP_free(bs);
1024
1025 if (resp)
1026 OCSP_RESPONSE_free(resp);
1027
1028 return ret;
1029}
1030/*
1031 * External function use to update the OCSP response in the OCSP response's
1032 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1033 * to update in DER format.
1034 *
1035 * Returns 0 on success, 1 in error case.
1036 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001037int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001038{
1039 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1040}
1041
William Lallemand4a660132019-10-14 14:51:41 +02001042#endif
1043
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001044#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1045static int ssl_tlsext_ticket_key_cb(SSL *s, unsigned char key_name[16], unsigned char *iv, EVP_CIPHER_CTX *ectx, HMAC_CTX *hctx, int enc)
1046{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001047 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001048 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001049 struct connection *conn;
1050 int head;
1051 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001052 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001053
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001054 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001055 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001056 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1057
1058 keys = ref->tlskeys;
1059 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001060
1061 if (enc) {
1062 memcpy(key_name, keys[head].name, 16);
1063
1064 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001065 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001066
Emeric Brun9e754772019-01-10 17:51:55 +01001067 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001068
Emeric Brun9e754772019-01-10 17:51:55 +01001069 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1070 goto end;
1071
Willy Tarreau9356dac2019-05-10 09:22:53 +02001072 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001073 ret = 1;
1074 }
1075 else if (ref->key_size_bits == 256 ) {
1076
1077 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1078 goto end;
1079
Willy Tarreau9356dac2019-05-10 09:22:53 +02001080 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001081 ret = 1;
1082 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001083 } else {
1084 for (i = 0; i < TLS_TICKETS_NO; i++) {
1085 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1086 goto found;
1087 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001088 ret = 0;
1089 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001090
Christopher Faulet16f45c82018-02-16 11:23:49 +01001091 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001092 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001093 HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001094 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1095 goto end;
1096 /* 2 for key renewal, 1 if current key is still valid */
1097 ret = i ? 2 : 1;
1098 }
1099 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001100 HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001101 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1102 goto end;
1103 /* 2 for key renewal, 1 if current key is still valid */
1104 ret = i ? 2 : 1;
1105 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001106 }
Emeric Brun9e754772019-01-10 17:51:55 +01001107
Christopher Faulet16f45c82018-02-16 11:23:49 +01001108 end:
1109 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1110 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001111}
1112
1113struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1114{
1115 struct tls_keys_ref *ref;
1116
1117 list_for_each_entry(ref, &tlskeys_reference, list)
1118 if (ref->filename && strcmp(filename, ref->filename) == 0)
1119 return ref;
1120 return NULL;
1121}
1122
1123struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1124{
1125 struct tls_keys_ref *ref;
1126
1127 list_for_each_entry(ref, &tlskeys_reference, list)
1128 if (ref->unique_id == unique_id)
1129 return ref;
1130 return NULL;
1131}
1132
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001133/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001134 * match existing ones, this function returns -1
1135 * else it returns 0 on success.
1136 */
1137int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001138 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001139{
Emeric Brun9e754772019-01-10 17:51:55 +01001140 if (ref->key_size_bits == 128) {
1141 if (tlskey->data != sizeof(struct tls_sess_key_128))
1142 return -1;
1143 }
1144 else if (ref->key_size_bits == 256) {
1145 if (tlskey->data != sizeof(struct tls_sess_key_256))
1146 return -1;
1147 }
1148 else
1149 return -1;
1150
Christopher Faulet16f45c82018-02-16 11:23:49 +01001151 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001152 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1153 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001154 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1155 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001156
1157 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001158}
1159
Willy Tarreau83061a82018-07-13 11:56:34 +02001160int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001161{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001162 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1163
1164 if(!ref) {
1165 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1166 return 1;
1167 }
Emeric Brun9e754772019-01-10 17:51:55 +01001168 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1169 memprintf(err, "Invalid key size");
1170 return 1;
1171 }
1172
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001173 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001174}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001175
1176/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001177 * automatic ids. It's called just after the basic checks. It returns
1178 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001179 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001180static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001181{
1182 int i = 0;
1183 struct tls_keys_ref *ref, *ref2, *ref3;
1184 struct list tkr = LIST_HEAD_INIT(tkr);
1185
1186 list_for_each_entry(ref, &tlskeys_reference, list) {
1187 if (ref->unique_id == -1) {
1188 /* Look for the first free id. */
1189 while (1) {
1190 list_for_each_entry(ref2, &tlskeys_reference, list) {
1191 if (ref2->unique_id == i) {
1192 i++;
1193 break;
1194 }
1195 }
1196 if (&ref2->list == &tlskeys_reference)
1197 break;
1198 }
1199
1200 /* Uses the unique id and increment it for the next entry. */
1201 ref->unique_id = i;
1202 i++;
1203 }
1204 }
1205
1206 /* This sort the reference list by id. */
1207 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001208 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001209 list_for_each_entry(ref3, &tkr, list) {
1210 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001211 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001212 break;
1213 }
1214 }
1215 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001216 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001217 }
1218
1219 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001220 LIST_INSERT(&tkr, &tlskeys_reference);
1221 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001222 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001223}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001224#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1225
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001226#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001227int ocsp_ex_index = -1;
1228
yanbzhube2774d2015-12-10 15:07:30 -05001229int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1230{
1231 switch (evp_keytype) {
1232 case EVP_PKEY_RSA:
1233 return 2;
1234 case EVP_PKEY_DSA:
1235 return 0;
1236 case EVP_PKEY_EC:
1237 return 1;
1238 }
1239
1240 return -1;
1241}
1242
Emeric Brun4147b2e2014-06-16 18:36:30 +02001243/*
1244 * Callback used to set OCSP status extension content in server hello.
1245 */
1246int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1247{
yanbzhube2774d2015-12-10 15:07:30 -05001248 struct certificate_ocsp *ocsp;
1249 struct ocsp_cbk_arg *ocsp_arg;
1250 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001251 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001252 EVP_PKEY *ssl_pkey;
1253 int key_type;
1254 int index;
1255
William Lallemand76b4a122020-08-04 17:41:39 +02001256 ctx = SSL_get_SSL_CTX(ssl);
1257 if (!ctx)
1258 return SSL_TLSEXT_ERR_NOACK;
1259
1260 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1261 if (!ocsp_arg)
1262 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001263
1264 ssl_pkey = SSL_get_privatekey(ssl);
1265 if (!ssl_pkey)
1266 return SSL_TLSEXT_ERR_NOACK;
1267
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001268 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001269
1270 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1271 ocsp = ocsp_arg->s_ocsp;
1272 else {
1273 /* For multiple certs per context, we have to find the correct OCSP response based on
1274 * the certificate type
1275 */
1276 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1277
1278 if (index < 0)
1279 return SSL_TLSEXT_ERR_NOACK;
1280
1281 ocsp = ocsp_arg->m_ocsp[index];
1282
1283 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001284
1285 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001286 !ocsp->response.area ||
1287 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001288 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001289 return SSL_TLSEXT_ERR_NOACK;
1290
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001291 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001292 if (!ssl_buf)
1293 return SSL_TLSEXT_ERR_NOACK;
1294
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001295 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1296 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001297
1298 return SSL_TLSEXT_ERR_OK;
1299}
1300
William Lallemand4a660132019-10-14 14:51:41 +02001301#endif
1302
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001303#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001304
1305
1306/*
1307 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1308 * used anymore. Also removes it from the tree if free'd.
1309 */
1310static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1311{
1312 if (!ocsp)
1313 return;
1314
1315 ocsp->refcount--;
1316 if (ocsp->refcount <= 0) {
1317 ebmb_delete(&ocsp->key);
1318 chunk_destroy(&ocsp->response);
1319 free(ocsp);
1320 }
1321}
1322
1323
Emeric Brun4147b2e2014-06-16 18:36:30 +02001324/*
1325 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001326 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1327 * status extension, the issuer's certificate is mandatory. It should be
1328 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001329 *
William Lallemand246c0242019-10-11 08:59:13 +02001330 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1331 * OCSP response. If file is empty or content is not a valid OCSP response,
1332 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1333 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001334 *
1335 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001336 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001337 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001338static 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 +02001339{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001340 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001341 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001342 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001343 struct certificate_ocsp *ocsp = NULL, *iocsp;
1344 char *warn = NULL;
1345 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001346 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001347
Emeric Brun4147b2e2014-06-16 18:36:30 +02001348
William Lallemand246c0242019-10-11 08:59:13 +02001349 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001350 if (!x)
1351 goto out;
1352
William Lallemand246c0242019-10-11 08:59:13 +02001353 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001354 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1355 if (chain) {
1356 /* check if one of the certificate of the chain is the issuer */
1357 for (i = 0; i < sk_X509_num(chain); i++) {
1358 X509 *ti = sk_X509_value(chain, i);
1359 if (X509_check_issued(ti, x) == X509_V_OK) {
1360 issuer = ti;
1361 break;
1362 }
1363 }
1364 }
William Lallemand246c0242019-10-11 08:59:13 +02001365 if (!issuer)
1366 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001367
1368 cid = OCSP_cert_to_id(0, x, issuer);
1369 if (!cid)
1370 goto out;
1371
1372 i = i2d_OCSP_CERTID(cid, NULL);
1373 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1374 goto out;
1375
Vincent Bernat02779b62016-04-03 13:48:43 +02001376 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001377 if (!ocsp)
1378 goto out;
1379
1380 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001381 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001382
1383 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1384 if (iocsp == ocsp)
1385 ocsp = NULL;
1386
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001387#ifndef SSL_CTX_get_tlsext_status_cb
1388# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1389 *cb = (void (*) (void))ctx->tlsext_status_cb;
1390#endif
1391 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1392
1393 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001394 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001395 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001396
William Lallemanda560c062020-07-31 11:43:20 +02001397 cb_arg = calloc(1, sizeof(*cb_arg));
1398 if (!cb_arg)
1399 goto out;
1400
yanbzhube2774d2015-12-10 15:07:30 -05001401 cb_arg->is_single = 1;
1402 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001403 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001404
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001405 pkey = X509_get_pubkey(x);
1406 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1407 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001408
1409 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001410 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 */
1411
yanbzhube2774d2015-12-10 15:07:30 -05001412 } else {
1413 /*
1414 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1415 * Update that cb_arg with the new cert's staple
1416 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001417 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001418 struct certificate_ocsp *tmp_ocsp;
1419 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001420 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001421 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001422
William Lallemand76b4a122020-08-04 17:41:39 +02001423 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001424
1425 /*
1426 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1427 * the order of operations below matter, take care when changing it
1428 */
1429 tmp_ocsp = cb_arg->s_ocsp;
1430 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1431 cb_arg->s_ocsp = NULL;
1432 cb_arg->m_ocsp[index] = tmp_ocsp;
1433 cb_arg->is_single = 0;
1434 cb_arg->single_kt = 0;
1435
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001436 pkey = X509_get_pubkey(x);
1437 key_type = EVP_PKEY_base_id(pkey);
1438 EVP_PKEY_free(pkey);
1439
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001440 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001441 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001442 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001443 iocsp->refcount++;
1444 }
yanbzhube2774d2015-12-10 15:07:30 -05001445 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001446
1447 ret = 0;
1448
1449 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001450 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001451 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001452 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001453 }
1454
1455out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001456 if (cid)
1457 OCSP_CERTID_free(cid);
1458
1459 if (ocsp)
1460 free(ocsp);
1461
1462 if (warn)
1463 free(warn);
1464
Emeric Brun4147b2e2014-06-16 18:36:30 +02001465 return ret;
1466}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001467#endif
1468
1469#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001470static 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 +02001471{
William Lallemand4a660132019-10-14 14:51:41 +02001472 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 +02001473}
1474#endif
1475
William Lallemand4a660132019-10-14 14:51:41 +02001476
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001477#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001478
1479#define CT_EXTENSION_TYPE 18
1480
William Lallemand03c331c2020-05-13 10:10:01 +02001481int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001482
1483int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1484{
Willy Tarreau83061a82018-07-13 11:56:34 +02001485 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001486
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001487 *out = (unsigned char *) sctl->area;
1488 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001489
1490 return 1;
1491}
1492
1493int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1494{
1495 return 1;
1496}
1497
William Lallemanda17f4112019-10-10 15:16:44 +02001498static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001499{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001500 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001501
William Lallemanda17f4112019-10-10 15:16:44 +02001502 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 +01001503 goto out;
1504
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001505 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1506
1507 ret = 0;
1508
1509out:
1510 return ret;
1511}
1512
1513#endif
1514
Emeric Brune1f38db2012-09-03 20:36:47 +02001515void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1516{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001517 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001518 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001519 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001520 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001521
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001522#ifndef SSL_OP_NO_RENEGOTIATION
1523 /* Please note that BoringSSL defines this macro to zero so don't
1524 * change this to #if and do not assign a default value to this macro!
1525 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001526 if (where & SSL_CB_HANDSHAKE_START) {
1527 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001528 if ((conn->flags & (CO_FL_WAIT_L6_CONN | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == 0) {
Emeric Brune1f38db2012-09-03 20:36:47 +02001529 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001530 conn->err_code = CO_ER_SSL_RENEG;
1531 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001532 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001533#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001534
1535 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001536 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001537 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001538 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001539 consider that the buffering was activated,
1540 so we rise the output buffer size from 4k
1541 to 16k */
1542 write_bio = SSL_get_wbio(ssl);
1543 if (write_bio != SSL_get_rbio(ssl)) {
1544 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001545 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001546 }
1547 }
1548 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001549}
1550
Emeric Brune64aef12012-09-21 13:15:06 +02001551/* Callback is called for each certificate of the chain during a verify
1552 ok is set to 1 if preverify detect no error on current certificate.
1553 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001554int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001555{
1556 SSL *ssl;
1557 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001558 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001559 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001560
1561 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001562 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001563
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001564 ctx = conn->xprt_ctx;
1565
1566 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001567
Emeric Brun81c00f02012-09-21 14:31:21 +02001568 if (ok) /* no errors */
1569 return ok;
1570
1571 depth = X509_STORE_CTX_get_error_depth(x_store);
1572 err = X509_STORE_CTX_get_error(x_store);
1573
1574 /* check if CA error needs to be ignored */
1575 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001576 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1577 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1578 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001579 }
1580
Willy Tarreau731248f2020-02-04 14:02:02 +01001581 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001582 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001583 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001584 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001585 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001586
Willy Tarreau20879a02012-12-03 16:32:10 +01001587 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001588 return 0;
1589 }
1590
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001591 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1592 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001593
Emeric Brun81c00f02012-09-21 14:31:21 +02001594 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001595 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001596 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001597 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001598 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001599 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001600
Willy Tarreau20879a02012-12-03 16:32:10 +01001601 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001602 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001603}
1604
Dragan Dosen9ac98092020-05-11 15:51:45 +02001605#ifdef TLS1_RT_HEARTBEAT
1606static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1607 int content_type, const void *buf, size_t len,
1608 SSL *ssl)
1609{
1610 /* test heartbeat received (write_p is set to 0
1611 for a received record) */
1612 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1613 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1614 const unsigned char *p = buf;
1615 unsigned int payload;
1616
1617 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1618
1619 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1620 if (*p != TLS1_HB_REQUEST)
1621 return;
1622
1623 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1624 goto kill_it;
1625
1626 payload = (p[1] * 256) + p[2];
1627 if (3 + payload + 16 <= len)
1628 return; /* OK no problem */
1629 kill_it:
1630 /* We have a clear heartbleed attack (CVE-2014-0160), the
1631 * advertised payload is larger than the advertised packet
1632 * length, so we have garbage in the buffer between the
1633 * payload and the end of the buffer (p+len). We can't know
1634 * if the SSL stack is patched, and we don't know if we can
1635 * safely wipe out the area between p+3+len and payload.
1636 * So instead, we prevent the response from being sent by
1637 * setting the max_send_fragment to 0 and we report an SSL
1638 * error, which will kill this connection. It will be reported
1639 * above as SSL_ERROR_SSL while an other handshake failure with
1640 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1641 */
1642 ssl->max_send_fragment = 0;
1643 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1644 }
1645}
1646#endif
1647
1648static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1649 int content_type, const void *buf, size_t len,
1650 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001651{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001652 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001653 unsigned char *msg;
1654 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001655 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001656
1657 /* This function is called for "from client" and "to server"
1658 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001659 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001660 */
1661
1662 /* "write_p" is set to 0 is the bytes are received messages,
1663 * otherwise it is set to 1.
1664 */
1665 if (write_p != 0)
1666 return;
1667
1668 /* content_type contains the type of message received or sent
1669 * according with the SSL/TLS protocol spec. This message is
1670 * encoded with one byte. The value 256 (two bytes) is used
1671 * for designing the SSL/TLS record layer. According with the
1672 * rfc6101, the expected message (other than 256) are:
1673 * - change_cipher_spec(20)
1674 * - alert(21)
1675 * - handshake(22)
1676 * - application_data(23)
1677 * - (255)
1678 * We are interessed by the handshake and specially the client
1679 * hello.
1680 */
1681 if (content_type != 22)
1682 return;
1683
1684 /* The message length is at least 4 bytes, containing the
1685 * message type and the message length.
1686 */
1687 if (len < 4)
1688 return;
1689
1690 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001691 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001692 * - hello_request(0)
1693 * - client_hello(1)
1694 * - server_hello(2)
1695 * - certificate(11)
1696 * - server_key_exchange (12)
1697 * - certificate_request(13)
1698 * - server_hello_done(14)
1699 * We are interested by the client hello.
1700 */
1701 msg = (unsigned char *)buf;
1702 if (msg[0] != 1)
1703 return;
1704
1705 /* Next three bytes are the length of the message. The total length
1706 * must be this decoded length + 4. If the length given as argument
1707 * is not the same, we abort the protocol dissector.
1708 */
1709 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1710 if (len < rec_len + 4)
1711 return;
1712 msg += 4;
1713 end = msg + rec_len;
1714 if (end < msg)
1715 return;
1716
1717 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1718 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001719 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1720 */
1721 msg += 1 + 1 + 4 + 28;
1722 if (msg > end)
1723 return;
1724
1725 /* Next, is session id:
1726 * if present, we have to jump by length + 1 for the size information
1727 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001728 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001729 if (msg[0] > 0)
1730 msg += msg[0];
1731 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001732 if (msg > end)
1733 return;
1734
1735 /* Next two bytes are the ciphersuite length. */
1736 if (msg + 2 > end)
1737 return;
1738 rec_len = (msg[0] << 8) + msg[1];
1739 msg += 2;
1740 if (msg + rec_len > end || msg + rec_len < msg)
1741 return;
1742
Willy Tarreaub454e902021-03-22 15:09:41 +01001743 capture = pool_alloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001744 if (!capture)
1745 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001746 /* Compute the xxh64 of the ciphersuite. */
1747 capture->xxh64 = XXH64(msg, rec_len, 0);
1748
1749 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001750 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1751 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001752 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001753
1754 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001755}
William Lallemand7d42ef52020-07-06 11:41:30 +02001756
1757
William Lallemand722180a2021-06-09 16:46:12 +02001758#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001759static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1760 int content_type, const void *buf, size_t len,
1761 SSL *ssl)
1762{
1763 struct ssl_keylog *keylog;
1764
1765 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1766 return;
1767
Willy Tarreauf208ac02021-03-22 21:10:12 +01001768 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001769 if (!keylog)
1770 return;
1771
William Lallemand7d42ef52020-07-06 11:41:30 +02001772 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1773 pool_free(pool_head_ssl_keylog, keylog);
1774 return;
1775 }
1776}
1777#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001778
Emeric Brun29f037d2014-04-25 19:05:36 +02001779/* Callback is called for ssl protocol analyse */
1780void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1781{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001782 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1783 struct ssl_sock_msg_callback *cbk;
1784
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001785 /* Try to call all callback functions that were registered by using
1786 * ssl_sock_register_msg_callback().
1787 */
1788 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1789 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1790 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001791}
1792
Bernard Spil13c53f82018-02-15 13:34:58 +01001793#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001794static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1795 const unsigned char *in, unsigned int inlen,
1796 void *arg)
1797{
1798 struct server *srv = arg;
1799
1800 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1801 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1802 return SSL_TLSEXT_ERR_OK;
1803 return SSL_TLSEXT_ERR_NOACK;
1804}
1805#endif
1806
1807#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001808/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001809 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001810 */
1811static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1812 unsigned int *len, void *arg)
1813{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001814 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001815
1816 *data = (const unsigned char *)conf->npn_str;
1817 *len = conf->npn_len;
1818 return SSL_TLSEXT_ERR_OK;
1819}
1820#endif
1821
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001822#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001823/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001824 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001825 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001826static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1827 unsigned char *outlen,
1828 const unsigned char *server,
1829 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001830{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001831 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001832
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001833 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1834 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1835 return SSL_TLSEXT_ERR_NOACK;
1836 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001837 return SSL_TLSEXT_ERR_OK;
1838}
1839#endif
1840
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001841#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001842#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001843
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001844/* Configure a DNS SAN extenion on a certificate. */
1845int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
1846 int failure = 0;
1847 X509_EXTENSION *san_ext = NULL;
1848 CONF *conf = NULL;
1849 struct buffer *san_name = get_trash_chunk();
1850
1851 conf = NCONF_new(NULL);
1852 if (!conf) {
1853 failure = 1;
1854 goto cleanup;
1855 }
1856
1857 /* Build an extension based on the DNS entry above */
1858 chunk_appendf(san_name, "DNS:%s", servername);
1859 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
1860 if (!san_ext) {
1861 failure = 1;
1862 goto cleanup;
1863 }
1864
1865 /* Add the extension */
1866 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
1867 failure = 1;
1868 goto cleanup;
1869 }
1870
1871 /* Success */
1872 failure = 0;
1873
1874cleanup:
1875 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
1876 if (NULL != conf) NCONF_free(conf);
1877
1878 return failure;
1879}
1880
Christopher Faulet30548802015-06-11 13:39:32 +02001881/* Create a X509 certificate with the specified servername and serial. This
1882 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001883static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001884ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001885{
Shimi Gersner5846c492020-08-23 13:58:12 +03001886 X509 *cacert = bind_conf->ca_sign_ckch->cert;
1887 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001888 SSL_CTX *ssl_ctx = NULL;
1889 X509 *newcrt = NULL;
1890 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001891 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001892 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001893 X509_NAME *name;
1894 const EVP_MD *digest;
1895 X509V3_CTX ctx;
1896 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001897 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001898
Christopher Faulet48a83322017-07-28 16:56:09 +02001899 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05001900#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001901 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1902#else
1903 tmp_ssl = SSL_new(bind_conf->default_ctx);
1904 if (tmp_ssl)
1905 pkey = SSL_get_privatekey(tmp_ssl);
1906#endif
1907 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001908 goto mkcert_error;
1909
1910 /* Create the certificate */
1911 if (!(newcrt = X509_new()))
1912 goto mkcert_error;
1913
1914 /* Set version number for the certificate (X509v3) and the serial
1915 * number */
1916 if (X509_set_version(newcrt, 2L) != 1)
1917 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02001918 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001919
1920 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001921 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1922 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001923 goto mkcert_error;
1924
1925 /* set public key in the certificate */
1926 if (X509_set_pubkey(newcrt, pkey) != 1)
1927 goto mkcert_error;
1928
1929 /* Set issuer name from the CA */
1930 if (!(name = X509_get_subject_name(cacert)))
1931 goto mkcert_error;
1932 if (X509_set_issuer_name(newcrt, name) != 1)
1933 goto mkcert_error;
1934
1935 /* Set the subject name using the same, but the CN */
1936 name = X509_NAME_dup(name);
1937 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1938 (const unsigned char *)servername,
1939 -1, -1, 0) != 1) {
1940 X509_NAME_free(name);
1941 goto mkcert_error;
1942 }
1943 if (X509_set_subject_name(newcrt, name) != 1) {
1944 X509_NAME_free(name);
1945 goto mkcert_error;
1946 }
1947 X509_NAME_free(name);
1948
1949 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001950 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001951 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1952 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1953 X509_EXTENSION *ext;
1954
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001955 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001956 goto mkcert_error;
1957 if (!X509_add_ext(newcrt, ext, -1)) {
1958 X509_EXTENSION_free(ext);
1959 goto mkcert_error;
1960 }
1961 X509_EXTENSION_free(ext);
1962 }
1963
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001964 /* Add SAN extension */
1965 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
1966 goto mkcert_error;
1967 }
1968
Christopher Faulet31af49d2015-06-09 17:29:50 +02001969 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001970
1971 key_type = EVP_PKEY_base_id(capkey);
1972
1973 if (key_type == EVP_PKEY_DSA)
1974 digest = EVP_sha1();
1975 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001976 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001977 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02001978 digest = EVP_sha256();
1979 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05001980#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02001981 int nid;
1982
1983 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
1984 goto mkcert_error;
1985 if (!(digest = EVP_get_digestbynid(nid)))
1986 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02001987#else
1988 goto mkcert_error;
1989#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02001990 }
1991
Christopher Faulet31af49d2015-06-09 17:29:50 +02001992 if (!(X509_sign(newcrt, capkey, digest)))
1993 goto mkcert_error;
1994
1995 /* Create and set the new SSL_CTX */
1996 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
1997 goto mkcert_error;
1998 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
1999 goto mkcert_error;
2000 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2001 goto mkcert_error;
2002 if (!SSL_CTX_check_private_key(ssl_ctx))
2003 goto mkcert_error;
2004
Shimi Gersner5846c492020-08-23 13:58:12 +03002005 /* Build chaining the CA cert and the rest of the chain, keep these order */
2006#if defined(SSL_CTX_add1_chain_cert)
2007 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2008 goto mkcert_error;
2009 }
2010
2011 if (bind_conf->ca_sign_ckch->chain) {
2012 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2013 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2014 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2015 goto mkcert_error;
2016 }
2017 }
2018 }
2019#endif
2020
Christopher Faulet31af49d2015-06-09 17:29:50 +02002021 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002022
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002023#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002024 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002025#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002026#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2027 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002028 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002029 EC_KEY *ecc;
2030 int nid;
2031
2032 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2033 goto end;
2034 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2035 goto end;
2036 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2037 EC_KEY_free(ecc);
2038 }
2039#endif
2040 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002041 return ssl_ctx;
2042
2043 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002044 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002045 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002046 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2047 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002048 return NULL;
2049}
2050
Christopher Faulet7969a332015-10-09 11:15:03 +02002051SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002052ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02002053{
Willy Tarreau07d94e42018-09-20 10:57:52 +02002054 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01002055 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002056
Olivier Houchard66ab4982019-02-26 18:37:15 +01002057 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02002058}
2059
Christopher Faulet30548802015-06-11 13:39:32 +02002060/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002061 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002062SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002063ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002064{
2065 struct lru64 *lru = NULL;
2066
2067 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002068 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002069 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002070 if (lru && lru->domain) {
2071 if (ssl)
2072 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002073 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002074 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002075 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002076 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002077 }
2078 return NULL;
2079}
2080
Emeric Brun821bb9b2017-06-15 16:37:39 +02002081/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2082 * function is not thread-safe, it should only be used to check if a certificate
2083 * exists in the lru cache (with no warranty it will not be removed by another
2084 * thread). It is kept for backward compatibility. */
2085SSL_CTX *
2086ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2087{
2088 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2089}
2090
Christopher Fauletd2cab922015-07-28 16:03:47 +02002091/* Set a certificate int the LRU cache used to store generated
2092 * certificate. Return 0 on success, otherwise -1 */
2093int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002094ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002095{
2096 struct lru64 *lru = NULL;
2097
2098 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002099 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002100 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002101 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002102 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002103 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002104 }
Christopher Faulet30548802015-06-11 13:39:32 +02002105 if (lru->domain && lru->data)
2106 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002107 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002108 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002109 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002110 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002111 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002112}
2113
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002114/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002115unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002116ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002117{
2118 return XXH32(data, len, ssl_ctx_lru_seed);
2119}
2120
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002121/* Generate a cert and immediately assign it to the SSL session so that the cert's
2122 * refcount is maintained regardless of the cert's presence in the LRU cache.
2123 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002124static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002125ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002126{
Shimi Gersner5846c492020-08-23 13:58:12 +03002127 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002128 SSL_CTX *ssl_ctx = NULL;
2129 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002130 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002131
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002132 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002133 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002134 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002135 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002136 if (lru && lru->domain)
2137 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002138 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002139 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002140 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002141 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002142 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002143 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002144 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002145 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002146 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002147 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002148 SSL_set_SSL_CTX(ssl, ssl_ctx);
2149 /* No LRU cache, this CTX will be released as soon as the session dies */
2150 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002151 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002152 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002153 return 0;
2154}
2155static int
2156ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2157{
2158 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002159 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002160
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002161 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002162 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002163 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002164 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002165 }
2166 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002167}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002168#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002169
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002170#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002171
2172static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002173{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002174#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002175 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002176 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2177#endif
2178}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002179static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2180 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002181 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2182}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002183static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002184#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002185 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002186 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2187#endif
2188}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002189static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002190#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002191 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002192 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2193#endif
2194}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002195/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002196static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2197/* Unusable in this context. */
2198static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2199static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2200static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2201static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2202static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002203#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002204
2205static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2206 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002207 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2208}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002209static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2210 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2211 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2212}
2213static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2214 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002215 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2216}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002217static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2218 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2219 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2220}
2221static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2222 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002223 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2224}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002225static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2226 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2227 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2228}
2229static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2230 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002231 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2232}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002233static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2234 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2235 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2236}
2237static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002238#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002239 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002240 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2241#endif
2242}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002243static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002244#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002245 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2246 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002247#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002248}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002249#endif
2250static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2251static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002252
William Lallemand7fd8b452020-05-07 15:20:43 +02002253struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002254 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2255 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2256 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2257 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2258 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2259 {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 +02002260};
2261
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002262static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2263{
2264 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2265 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2266 SSL_set_SSL_CTX(ssl, ctx);
2267}
2268
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002269#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002270
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002271int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002272{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002273 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002274 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002275
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002276 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2277 return SSL_TLSEXT_ERR_OK;
2278 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002279}
2280
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002281#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002282int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002283{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002284 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002285#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002286int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002287{
2288#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002289 struct connection *conn;
2290 struct bind_conf *s;
2291 const uint8_t *extension_data;
2292 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002293 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002294
2295 char *wildp = NULL;
2296 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002297 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002298 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002299 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002300 int i;
2301
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002302 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002303 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002304
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002305#ifdef USE_QUIC
2306 if (conn->qc) {
2307 /* Look for the QUIC transport parameters. */
2308#ifdef OPENSSL_IS_BORINGSSL
2309 if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2310 &extension_data, &extension_len))
2311#else
2312 if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2313 &extension_data, &extension_len))
2314#endif
2315 goto abort;
2316
2317 if (!quic_transport_params_store(conn->qc, 0, extension_data,
2318 extension_data + extension_len))
2319 goto abort;
2320 }
2321#endif
2322
Olivier Houchard9679ac92017-10-27 14:58:08 +02002323 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002324 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002325#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002326 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2327 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002328#else
2329 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2330#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002331 /*
2332 * The server_name extension was given too much extensibility when it
2333 * was written, so parsing the normal case is a bit complex.
2334 */
2335 size_t len;
2336 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002337 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002338 /* Extract the length of the supplied list of names. */
2339 len = (*extension_data++) << 8;
2340 len |= *extension_data++;
2341 if (len + 2 != extension_len)
2342 goto abort;
2343 /*
2344 * The list in practice only has a single element, so we only consider
2345 * the first one.
2346 */
2347 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2348 goto abort;
2349 extension_len = len - 1;
2350 /* Now we can finally pull out the byte array with the actual hostname. */
2351 if (extension_len <= 2)
2352 goto abort;
2353 len = (*extension_data++) << 8;
2354 len |= *extension_data++;
2355 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2356 || memchr(extension_data, 0, len) != NULL)
2357 goto abort;
2358 servername = extension_data;
2359 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002360 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002361#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2362 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002363 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002364 }
2365#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002366 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002367 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002368 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002369 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002370 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002371 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002372 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002373 goto abort;
2374 }
2375
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002376 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002377#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002378 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002379#else
2380 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2381#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002382 uint8_t sign;
2383 size_t len;
2384 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002385 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002386 len = (*extension_data++) << 8;
2387 len |= *extension_data++;
2388 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002389 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002390 if (len % 2 != 0)
2391 goto abort;
2392 for (; len > 0; len -= 2) {
2393 extension_data++; /* hash */
2394 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002395 switch (sign) {
2396 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002397 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002398 break;
2399 case TLSEXT_signature_ecdsa:
2400 has_ecdsa_sig = 1;
2401 break;
2402 default:
2403 continue;
2404 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002405 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002406 break;
2407 }
2408 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002409 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002410 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002411 }
2412 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002413 const SSL_CIPHER *cipher;
2414 size_t len;
2415 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002416 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002417#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002418 len = ctx->cipher_suites_len;
2419 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002420#else
2421 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2422#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002423 if (len % 2 != 0)
2424 goto abort;
2425 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002426#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002427 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002428 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002429#else
2430 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2431#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002432 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002433 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002434 break;
2435 }
2436 }
2437 }
2438
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002439 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002440 trash.area[i] = tolower(servername[i]);
2441 if (!wildp && (trash.area[i] == '.'))
2442 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002443 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002444 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002445
William Lallemand150bfa82019-09-19 17:12:49 +02002446 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002447
William Lallemand94bd3192020-08-14 14:43:35 +02002448 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2449 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002450 for (i = 0; i < 2; i++) {
2451 if (i == 0) /* lookup in full qualified names */
2452 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002453 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002454 node = ebst_lookup(&s->sni_w_ctx, wildp);
2455 else
2456 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002457
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002458 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002459
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002460 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002461 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002462 struct sni_ctx *sni, *sni_tmp;
2463 int skip = 0;
2464
2465 if (i == 1 && wildp) { /* wildcard */
2466 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2467 sni = container_of(n, struct sni_ctx, name);
2468 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002469 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002470 skip = 1;
2471 break;
2472 }
2473 }
2474 if (skip)
2475 continue;
2476 }
2477
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002478 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002479 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002480 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002481 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002482 break;
2483 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002484 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002485 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002486 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002487 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002488 if (!node_anonymous)
2489 node_anonymous = n;
2490 break;
2491 }
2492 }
2493 }
William Lallemand94bd3192020-08-14 14:43:35 +02002494 }
2495 /* Once the certificates are found, select them depending on what is
2496 * supported in the client and by key_signature priority order: EDSA >
2497 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002498 if (has_ecdsa_sig && node_ecdsa)
2499 node = node_ecdsa;
2500 else if (has_rsa_sig && node_rsa)
2501 node = node_rsa;
2502 else if (node_anonymous)
2503 node = node_anonymous;
2504 else if (node_ecdsa)
2505 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2506 else
2507 node = node_rsa; /* no rsa signature case (far far away) */
2508
William Lallemand94bd3192020-08-14 14:43:35 +02002509 if (node) {
2510 /* switch ctx */
2511 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2512 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2513 if (conf) {
2514 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2515 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2516 if (conf->early_data)
2517 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002518 }
William Lallemand94bd3192020-08-14 14:43:35 +02002519 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2520 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002521 }
William Lallemand150bfa82019-09-19 17:12:49 +02002522
William Lallemand02010472019-10-18 11:02:19 +02002523 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002524#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002525 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002526 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002527 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002528 }
2529#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002530 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002531 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002532 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002533 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002534 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002535 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002536allow_early:
2537#ifdef OPENSSL_IS_BORINGSSL
2538 if (allow_early)
2539 SSL_set_early_data_enabled(ssl, 1);
2540#else
2541 if (!allow_early)
2542 SSL_set_max_early_data(ssl, 0);
2543#endif
2544 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002545 abort:
2546 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2547 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002548#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002549 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002550#else
2551 *al = SSL_AD_UNRECOGNIZED_NAME;
2552 return 0;
2553#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002554}
2555
2556#else /* OPENSSL_IS_BORINGSSL */
2557
Emeric Brunfc0421f2012-09-07 17:30:07 +02002558/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2559 * warning when no match is found, which implies the default (first) cert
2560 * will keep being used.
2561 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002562static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002563{
2564 const char *servername;
2565 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002566 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002567 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002568 int i;
2569 (void)al; /* shut gcc stupid warning */
2570
2571 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002572 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002573#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002574 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2575 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002576#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002577 if (s->strict_sni)
2578 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002579 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002580 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002581 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002582 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002583 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002584
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002585 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002586 if (!servername[i])
2587 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002588 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002589 if (!wildp && (trash.area[i] == '.'))
2590 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002591 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002592 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002593
William Lallemand150bfa82019-09-19 17:12:49 +02002594 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002595 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002596 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002597 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2598 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002599 if (!container_of(n, struct sni_ctx, name)->neg) {
2600 node = n;
2601 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002602 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002603 }
2604 if (!node && wildp) {
2605 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002606 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2607 /* lookup a not neg filter */
2608 if (!container_of(n, struct sni_ctx, name)->neg) {
2609 node = n;
2610 break;
2611 }
2612 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002613 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002614 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002615#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002616 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2617 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002618 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002619 return SSL_TLSEXT_ERR_OK;
2620 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002621#endif
William Lallemand21724f02019-11-04 17:56:13 +01002622 if (s->strict_sni) {
2623 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002624 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002625 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002626 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002627 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002628 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002629 }
2630
2631 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002632 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002633 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002634 return SSL_TLSEXT_ERR_OK;
2635}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002636#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002637#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2638
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002639#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002640
2641static DH * ssl_get_dh_1024(void)
2642{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002643 static unsigned char dh1024_p[]={
2644 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2645 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2646 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2647 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2648 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2649 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2650 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2651 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2652 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2653 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2654 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2655 };
2656 static unsigned char dh1024_g[]={
2657 0x02,
2658 };
2659
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002660 BIGNUM *p;
2661 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002662 DH *dh = DH_new();
2663 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002664 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2665 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002666
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002667 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002668 DH_free(dh);
2669 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002670 } else {
2671 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002672 }
2673 }
2674 return dh;
2675}
2676
2677static DH *ssl_get_dh_2048(void)
2678{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002679 static unsigned char dh2048_p[]={
2680 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2681 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2682 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2683 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2684 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2685 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2686 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2687 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2688 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2689 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2690 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2691 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2692 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2693 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2694 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2695 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2696 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2697 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2698 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2699 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2700 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2701 0xB7,0x1F,0x77,0xF3,
2702 };
2703 static unsigned char dh2048_g[]={
2704 0x02,
2705 };
2706
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002707 BIGNUM *p;
2708 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002709 DH *dh = DH_new();
2710 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002711 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2712 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002713
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002714 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002715 DH_free(dh);
2716 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002717 } else {
2718 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002719 }
2720 }
2721 return dh;
2722}
2723
2724static DH *ssl_get_dh_4096(void)
2725{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002726 static unsigned char dh4096_p[]={
2727 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2728 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2729 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2730 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2731 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2732 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2733 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2734 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2735 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2736 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2737 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2738 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2739 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2740 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2741 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2742 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2743 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2744 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2745 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2746 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2747 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2748 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2749 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2750 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2751 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2752 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2753 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2754 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2755 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2756 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2757 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2758 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2759 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2760 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2761 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2762 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2763 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2764 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2765 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2766 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2767 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2768 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2769 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002770 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002771 static unsigned char dh4096_g[]={
2772 0x02,
2773 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002774
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002775 BIGNUM *p;
2776 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002777 DH *dh = DH_new();
2778 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002779 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2780 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002781
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002782 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002783 DH_free(dh);
2784 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002785 } else {
2786 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002787 }
2788 }
2789 return dh;
2790}
2791
2792/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002793 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002794static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2795{
2796 DH *dh = NULL;
2797 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002798 int type;
2799
2800 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002801
2802 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2803 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2804 */
2805 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2806 keylen = EVP_PKEY_bits(pkey);
2807 }
2808
Willy Tarreauef934602016-12-22 23:12:01 +01002809 if (keylen > global_ssl.default_dh_param) {
2810 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002811 }
2812
Remi Gacogned3a341a2015-05-29 16:26:17 +02002813 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002814 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002815 }
2816 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002817 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002818 }
2819 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002820 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002821 }
2822
2823 return dh;
2824}
2825
Remi Gacogne47783ef2015-05-29 15:53:22 +02002826static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002827{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002828 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002829 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002830
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002831 if (in == NULL)
2832 goto end;
2833
Remi Gacogne47783ef2015-05-29 15:53:22 +02002834 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002835 goto end;
2836
Remi Gacogne47783ef2015-05-29 15:53:22 +02002837 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2838
2839end:
2840 if (in)
2841 BIO_free(in);
2842
Emeric Brune1b4ed42018-08-16 15:14:12 +02002843 ERR_clear_error();
2844
Remi Gacogne47783ef2015-05-29 15:53:22 +02002845 return dh;
2846}
2847
2848int ssl_sock_load_global_dh_param_from_file(const char *filename)
2849{
2850 global_dh = ssl_sock_get_dh_from_file(filename);
2851
2852 if (global_dh) {
2853 return 0;
2854 }
2855
2856 return -1;
2857}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002858#endif
2859
William Lallemand9117de92019-10-04 00:29:42 +02002860/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02002861static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02002862 struct bind_conf *s, struct ssl_bind_conf *conf,
2863 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002864{
2865 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002866 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002867
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002868 if (*name == '!') {
2869 neg = 1;
2870 name++;
2871 }
2872 if (*name == '*') {
2873 wild = 1;
2874 name++;
2875 }
2876 /* !* filter is a nop */
2877 if (neg && wild)
2878 return order;
2879 if (*name) {
2880 int j, len;
2881 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002882 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02002883 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002884 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02002885 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002886 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002887
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002888 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002889 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02002890 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002891 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02002892 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002893 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002894 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002895 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002896 sc->order = order++;
2897 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02002898 sc->wild = wild;
2899 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01002900 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02002901 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002902 }
2903 return order;
2904}
2905
William Lallemand6af03992019-07-23 15:00:54 +02002906/*
William Lallemand1d29c742019-10-04 00:53:29 +02002907 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
2908 * This function can't return an error.
2909 *
2910 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
2911 */
William Lallemandc756bbd2020-05-13 17:23:59 +02002912void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02002913{
2914
2915 struct sni_ctx *sc0, *sc0b, *sc1;
2916 struct ebmb_node *node;
2917
2918 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
2919
2920 /* ignore if sc0 was already inserted in a tree */
2921 if (sc0->name.node.leaf_p)
2922 continue;
2923
2924 /* Check for duplicates. */
2925 if (sc0->wild)
2926 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
2927 else
2928 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
2929
2930 for (; node; node = ebmb_next_dup(node)) {
2931 sc1 = ebmb_entry(node, struct sni_ctx, name);
2932 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
2933 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
2934 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02002935 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02002936 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002937 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02002938 break;
William Lallemand1d29c742019-10-04 00:53:29 +02002939 }
2940 }
2941
2942 /* if duplicate, ignore the insertion */
2943 if (!sc0)
2944 continue;
2945
2946 if (sc0->wild)
2947 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
2948 else
2949 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002950 }
William Lallemand21724f02019-11-04 17:56:13 +01002951
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002952 /* replace the default_ctx if required with the instance's ctx. */
2953 if (ckch_inst->is_default) {
2954 SSL_CTX_free(bind_conf->default_ctx);
2955 SSL_CTX_up_ref(ckch_inst->ctx);
2956 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02002957 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02002958 }
2959}
2960
2961/*
William Lallemande3af8fb2019-10-08 11:36:53 +02002962 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02002963 */
William Lallemande3af8fb2019-10-08 11:36:53 +02002964struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02002965
William Lallemand2954c472020-03-06 21:54:13 +01002966/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02002967struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02002968
Emeric Brun7a883362019-10-17 13:27:40 +02002969/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002970 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02002971 * DH parameter is loaded into the SSL_CTX and if there is no
2972 * DH parameter available in ckchs nor in global, the default
2973 * DH parameters are applied on the SSL_CTX.
2974 * Returns a bitfield containing the flags:
2975 * ERR_FATAL in any fatal error case
2976 * ERR_ALERT if a reason of the error is availabine in err
2977 * ERR_WARN if a warning is available into err
2978 * The value 0 means there is no error nor warning and
2979 * the operation succeed.
2980 */
William Lallemandfa892222019-07-23 16:06:08 +02002981#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02002982static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
2983 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02002984{
Emeric Brun7a883362019-10-17 13:27:40 +02002985 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02002986 DH *dh = NULL;
2987
William Lallemanda8c73742019-07-31 18:31:34 +02002988 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02002989 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02002990 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
2991 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
2992 err && *err ? *err : "", path);
2993#if defined(SSL_CTX_set_dh_auto)
2994 SSL_CTX_set_dh_auto(ctx, 1);
2995 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
2996 err && *err ? *err : "");
2997#else
2998 memprintf(err, "%s, DH ciphers won't be available.\n",
2999 err && *err ? *err : "");
3000#endif
3001 ret |= ERR_WARN;
3002 goto end;
3003 }
William Lallemandfa892222019-07-23 16:06:08 +02003004
3005 if (ssl_dh_ptr_index >= 0) {
3006 /* store a pointer to the DH params to avoid complaining about
3007 ssl-default-dh-param not being set for this SSL_CTX */
3008 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3009 }
3010 }
3011 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003012 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3013 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3014 err && *err ? *err : "", path);
3015#if defined(SSL_CTX_set_dh_auto)
3016 SSL_CTX_set_dh_auto(ctx, 1);
3017 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3018 err && *err ? *err : "");
3019#else
3020 memprintf(err, "%s, DH ciphers won't be available.\n",
3021 err && *err ? *err : "");
3022#endif
3023 ret |= ERR_WARN;
3024 goto end;
3025 }
William Lallemandfa892222019-07-23 16:06:08 +02003026 }
3027 else {
3028 /* Clear openssl global errors stack */
3029 ERR_clear_error();
3030
Willy Tarreau6d27a922020-11-05 19:38:05 +01003031 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003032 /* we are limited to DH parameter of 1024 bits anyway */
3033 if (local_dh_1024 == NULL)
3034 local_dh_1024 = ssl_get_dh_1024();
3035
Emeric Brun7a883362019-10-17 13:27:40 +02003036 if (local_dh_1024 == NULL) {
3037 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3038 err && *err ? *err : "", path);
3039 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003040 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003041 }
William Lallemandfa892222019-07-23 16:06:08 +02003042
Emeric Bruna9363eb2019-10-17 14:53:03 +02003043 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3044 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3045 err && *err ? *err : "", path);
3046#if defined(SSL_CTX_set_dh_auto)
3047 SSL_CTX_set_dh_auto(ctx, 1);
3048 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3049 err && *err ? *err : "");
3050#else
3051 memprintf(err, "%s, DH ciphers won't be available.\n",
3052 err && *err ? *err : "");
3053#endif
3054 ret |= ERR_WARN;
3055 goto end;
3056 }
William Lallemandfa892222019-07-23 16:06:08 +02003057 }
3058 else {
3059 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3060 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003061 }
3062
William Lallemandf9568fc2019-10-16 18:27:58 +02003063end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003064 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003065 return ret;
3066}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003067#endif
William Lallemandfa892222019-07-23 16:06:08 +02003068
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003069
3070/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003071 * Returns a bitfield containing the flags:
3072 * ERR_FATAL in any fatal error case
3073 * ERR_ALERT if the reason of the error is available in err
3074 * ERR_WARN if a warning is available into err
3075 * The value 0 means there is no error nor warning and
3076 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003077 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003078static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3079 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003080{
Emeric Bruna96b5822019-10-17 13:25:14 +02003081 int errcode = 0;
3082
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003083 if (find_chain == NULL) {
3084 errcode |= ERR_FATAL;
3085 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003086 }
3087
3088 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3089 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3090 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003091 errcode |= ERR_ALERT | ERR_FATAL;
3092 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003093 }
3094
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003095 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003096 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003097 } else {
3098 /* Find Certificate Chain in global */
3099 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003100 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003101 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003102 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003103 }
William Lallemand85888572020-02-27 14:48:35 +01003104
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003105 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003106 /* always put a null chain stack in the SSL_CTX so it does not
3107 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003108 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003109 }
3110
William Lallemandf187ce62020-06-02 18:27:20 +02003111 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003112#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003113 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003114 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3115 err && *err ? *err : "", path);
3116 errcode |= ERR_ALERT | ERR_FATAL;
3117 goto end;
3118 }
William Lallemandf187ce62020-06-02 18:27:20 +02003119#else
3120 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003121 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003122 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003123 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003124 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003125 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003126 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3127 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003128 X509_free(ca);
3129 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003130 errcode |= ERR_ALERT | ERR_FATAL;
3131 goto end;
3132 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003133 }
William Lallemandf187ce62020-06-02 18:27:20 +02003134#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003135
William Lallemand9a1d8392020-08-10 17:28:23 +02003136#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003137 /* remove the Root CA from the SSL_CTX if the option is activated */
3138 if (global_ssl.skip_self_issued_ca) {
3139 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3140 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3141 err && *err ? *err : "", path);
3142 errcode |= ERR_ALERT | ERR_FATAL;
3143 goto end;
3144 }
3145 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003146#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003147
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003148end:
3149 return errcode;
3150}
3151
3152
3153/* Loads the info in ckch into ctx
3154 * Returns a bitfield containing the flags:
3155 * ERR_FATAL in any fatal error case
3156 * ERR_ALERT if the reason of the error is available in err
3157 * ERR_WARN if a warning is available into err
3158 * The value 0 means there is no error nor warning and
3159 * the operation succeed.
3160 */
3161static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3162{
3163 int errcode = 0;
3164 STACK_OF(X509) *find_chain = NULL;
3165
3166 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3167 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3168 err && *err ? *err : "", path);
3169 errcode |= ERR_ALERT | ERR_FATAL;
3170 return errcode;
3171 }
3172
3173 /* Load certificate chain */
3174 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3175 if (errcode & ERR_CODE)
3176 goto end;
3177
William Lallemandfa892222019-07-23 16:06:08 +02003178#ifndef OPENSSL_NO_DH
3179 /* store a NULL pointer to indicate we have not yet loaded
3180 a custom DH param file */
3181 if (ssl_dh_ptr_index >= 0) {
3182 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3183 }
3184
Emeric Brun7a883362019-10-17 13:27:40 +02003185 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3186 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003187 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3188 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003189 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003190 }
3191#endif
3192
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003193#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003194 if (sctl_ex_index >= 0 && ckch->sctl) {
3195 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3196 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003197 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003198 errcode |= ERR_ALERT | ERR_FATAL;
3199 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003200 }
3201 }
3202#endif
3203
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003204#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003205 /* Load OCSP Info into context */
3206 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003207 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003208 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",
3209 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003210 errcode |= ERR_ALERT | ERR_FATAL;
3211 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003212 }
3213 }
William Lallemand246c0242019-10-11 08:59:13 +02003214#endif
3215
Emeric Bruna96b5822019-10-17 13:25:14 +02003216 end:
3217 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003218}
3219
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003220
3221/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3222 * Returns a bitfield containing the flags:
3223 * ERR_FATAL in any fatal error case
3224 * ERR_ALERT if the reason of the error is available in err
3225 * ERR_WARN if a warning is available into err
3226 * The value 0 means there is no error nor warning and
3227 * the operation succeed.
3228 */
3229static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3230 SSL_CTX *ctx, char **err)
3231{
3232 int errcode = 0;
3233 STACK_OF(X509) *find_chain = NULL;
3234
3235 /* Load the private key */
3236 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3237 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3238 err && *err ? *err : "", path);
3239 errcode |= ERR_ALERT | ERR_FATAL;
3240 }
3241
3242 /* Load certificate chain */
3243 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3244 if (errcode & ERR_CODE)
3245 goto end;
3246
3247 if (SSL_CTX_check_private_key(ctx) <= 0) {
3248 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3249 err && *err ? *err : "", path);
3250 errcode |= ERR_ALERT | ERR_FATAL;
3251 }
3252
3253end:
3254 return errcode;
3255}
3256
3257
William Lallemand614ca0d2019-10-07 13:52:11 +02003258/*
3259 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003260 *
3261 * Returns a bitfield containing the flags:
3262 * ERR_FATAL in any fatal error case
3263 * ERR_ALERT if the reason of the error is available in err
3264 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003265 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003266int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003267 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003268{
William Lallemandc9402072019-05-15 15:33:54 +02003269 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003270 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003271 int order = 0;
3272 X509_NAME *xname;
3273 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003274 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003275 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003276#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3277 STACK_OF(GENERAL_NAME) *names;
3278#endif
William Lallemand36b84632019-07-18 19:28:17 +02003279 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003280 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003281 int errcode = 0;
3282
3283 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003284
William Lallemande3af8fb2019-10-08 11:36:53 +02003285 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003286 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003287
William Lallemande3af8fb2019-10-08 11:36:53 +02003288 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003289
William Lallemandc9402072019-05-15 15:33:54 +02003290 ctx = SSL_CTX_new(SSLv23_server_method());
3291 if (!ctx) {
3292 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3293 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003294 errcode |= ERR_ALERT | ERR_FATAL;
3295 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003296 }
3297
Emeric Bruna96b5822019-10-17 13:25:14 +02003298 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3299 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003300 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003301
3302 ckch_inst = ckch_inst_new();
3303 if (!ckch_inst) {
3304 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3305 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003306 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003307 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003308 }
3309
William Lallemand36b84632019-07-18 19:28:17 +02003310 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003311 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003312 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003313 switch(EVP_PKEY_base_id(pkey)) {
3314 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003315 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003316 break;
3317 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003318 kinfo.sig = TLSEXT_signature_ecdsa;
3319 break;
3320 case EVP_PKEY_DSA:
3321 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003322 break;
3323 }
3324 EVP_PKEY_free(pkey);
3325 }
3326
Emeric Brun50bcecc2013-04-22 13:05:23 +02003327 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003328 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003329 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 +02003330 if (order < 0) {
3331 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003332 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003333 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003334 }
3335 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003336 }
3337 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003338#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003339 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003340 if (names) {
3341 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3342 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3343 if (name->type == GEN_DNS) {
3344 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003345 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003346 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003347 if (order < 0) {
3348 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003349 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003350 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003351 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003352 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003353 }
3354 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003355 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003356 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003357#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003358 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003359 i = -1;
3360 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3361 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003362 ASN1_STRING *value;
3363
3364 value = X509_NAME_ENTRY_get_data(entry);
3365 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003366 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003367 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003368 if (order < 0) {
3369 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003370 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003371 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003372 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003373 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003374 }
3375 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003376 /* we must not free the SSL_CTX anymore below, since it's already in
3377 * the tree, so it will be discovered and cleaned in time.
3378 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003379
Emeric Brunfc0421f2012-09-07 17:30:07 +02003380#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003381 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003382 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3383 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003384 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003385 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003386 }
3387#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003388 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003389 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003390 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003391 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003392 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003393 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003394 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003395
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003396 /* Always keep a reference to the newly constructed SSL_CTX in the
3397 * instance. This way if the instance has no SNIs, the SSL_CTX will
3398 * still be linked. */
3399 SSL_CTX_up_ref(ctx);
3400 ckch_inst->ctx = ctx;
3401
William Lallemand9117de92019-10-04 00:29:42 +02003402 /* everything succeed, the ckch instance can be used */
3403 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003404 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003405 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003406
William Lallemand02e19a52020-04-08 16:11:26 +02003407 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3408
Emeric Brun054563d2019-10-17 13:16:58 +02003409 *ckchi = ckch_inst;
3410 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003411
3412error:
3413 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003414 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003415 if (ckch_inst->is_default)
3416 SSL_CTX_free(ctx);
3417
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003418 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003419 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003420 }
William Lallemandd9199372019-10-04 15:37:05 +02003421 SSL_CTX_free(ctx);
3422
Emeric Brun054563d2019-10-17 13:16:58 +02003423 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003424}
3425
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003426
3427/*
3428 * This function allocate a ckch_inst that will be used on the backend side
3429 * (server line)
3430 *
3431 * Returns a bitfield containing the flags:
3432 * ERR_FATAL in any fatal error case
3433 * ERR_ALERT if the reason of the error is available in err
3434 * ERR_WARN if a warning is available into err
3435 */
3436int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003437 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003438{
3439 SSL_CTX *ctx;
3440 struct cert_key_and_chain *ckch;
3441 struct ckch_inst *ckch_inst = NULL;
3442 int errcode = 0;
3443
3444 *ckchi = NULL;
3445
3446 if (!ckchs || !ckchs->ckch)
3447 return ERR_FATAL;
3448
3449 ckch = ckchs->ckch;
3450
3451 ctx = SSL_CTX_new(SSLv23_client_method());
3452 if (!ctx) {
3453 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3454 err && *err ? *err : "", path);
3455 errcode |= ERR_ALERT | ERR_FATAL;
3456 goto error;
3457 }
3458
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003459 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3460 if (errcode & ERR_CODE)
3461 goto error;
3462
3463 ckch_inst = ckch_inst_new();
3464 if (!ckch_inst) {
3465 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3466 err && *err ? *err : "", path);
3467 errcode |= ERR_ALERT | ERR_FATAL;
3468 goto error;
3469 }
3470
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003471 /* everything succeed, the ckch instance can be used */
3472 ckch_inst->bind_conf = NULL;
3473 ckch_inst->ssl_conf = NULL;
3474 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003475 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003476 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003477
3478 *ckchi = ckch_inst;
3479 return errcode;
3480
3481error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003482 SSL_CTX_free(ctx);
3483
3484 return errcode;
3485}
3486
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003487/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003488static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3489 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003490 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003491{
Emeric Brun054563d2019-10-17 13:16:58 +02003492 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003493
3494 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003495 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 +02003496
Emeric Brun054563d2019-10-17 13:16:58 +02003497 if (errcode & ERR_CODE)
3498 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003499
William Lallemand24bde432020-03-09 16:48:43 +01003500 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003501
3502 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003503 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003504 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003505}
3506
William Lallemanddb26e2b2021-01-26 12:01:46 +01003507/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3508 * fill the SSL_CTX of the server.
3509 *
3510 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003511static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003512 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003513{
3514 int errcode = 0;
3515
3516 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003517 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003518
3519 if (errcode & ERR_CODE)
3520 return errcode;
3521
William Lallemanddb26e2b2021-01-26 12:01:46 +01003522 (*ckch_inst)->server = server;
3523 /* Keep the reference to the SSL_CTX in the server. */
3524 SSL_CTX_up_ref((*ckch_inst)->ctx);
3525 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003526 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003527 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003528 return errcode;
3529}
3530
William Lallemand6be66ec2020-03-06 22:26:32 +01003531
William Lallemand4c68bba2020-03-30 18:45:10 +02003532
3533
3534/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3535 * done once. Zero is returned if the operation fails. No error is returned
3536 * if the random is said as not implemented, because we expect that openssl
3537 * will use another method once needed.
3538 */
3539static int ssl_initialize_random()
3540{
3541 unsigned char random;
3542 static int random_initialized = 0;
3543
3544 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3545 random_initialized = 1;
3546
3547 return random_initialized;
3548}
3549
William Lallemand2954c472020-03-06 21:54:13 +01003550/* Load a crt-list file, this is done in 2 parts:
3551 * - store the content of the file in a crtlist structure with crtlist_entry structures
3552 * - generate the instances by iterating on entries in the crtlist struct
3553 *
3554 * Nothing is locked there, this function is used in the configuration parser.
3555 *
3556 * Returns a set of ERR_* flags possibly with an error in <err>.
3557 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003558int 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 +01003559{
3560 struct crtlist *crtlist = NULL;
3561 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003562 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003563 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003564 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003565 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003566
William Lallemand79d31ec2020-03-25 15:10:49 +01003567 bind_conf_node = malloc(sizeof(*bind_conf_node));
3568 if (!bind_conf_node) {
3569 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3570 cfgerr |= ERR_FATAL | ERR_ALERT;
3571 goto error;
3572 }
3573 bind_conf_node->next = NULL;
3574 bind_conf_node->bind_conf = bind_conf;
3575
William Lallemand41ca9302020-04-08 13:15:18 +02003576 /* strip trailing slashes, including first one */
3577 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3578 *end = 0;
3579
William Lallemand2954c472020-03-06 21:54:13 +01003580 /* look for an existing crtlist or create one */
3581 eb = ebst_lookup(&crtlists_tree, file);
3582 if (eb) {
3583 crtlist = ebmb_entry(eb, struct crtlist, node);
3584 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003585 /* load a crt-list OR a directory */
3586 if (dir)
3587 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3588 else
3589 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3590
William Lallemand2954c472020-03-06 21:54:13 +01003591 if (!(cfgerr & ERR_CODE))
3592 ebst_insert(&crtlists_tree, &crtlist->node);
3593 }
3594
3595 if (cfgerr & ERR_CODE) {
3596 cfgerr |= ERR_FATAL | ERR_ALERT;
3597 goto error;
3598 }
3599
3600 /* generates ckch instance from the crtlist_entry */
3601 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3602 struct ckch_store *store;
3603 struct ckch_inst *ckch_inst = NULL;
3604
3605 store = entry->node.key;
3606 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3607 if (cfgerr & ERR_CODE) {
3608 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3609 goto error;
3610 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003611 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003612 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003613 }
William Lallemand2954c472020-03-06 21:54:13 +01003614
William Lallemand79d31ec2020-03-25 15:10:49 +01003615 /* add the bind_conf to the list */
3616 bind_conf_node->next = crtlist->bind_conf;
3617 crtlist->bind_conf = bind_conf_node;
3618
William Lallemand2954c472020-03-06 21:54:13 +01003619 return cfgerr;
3620error:
3621 {
William Lallemand49398312020-03-30 17:01:33 +02003622 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003623 struct ckch_inst *inst, *s_inst;
3624
William Lallemand49398312020-03-30 17:01:33 +02003625 lastentry = entry; /* which entry we tried to generate last */
3626 if (lastentry) {
3627 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3628 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3629 break;
3630
3631 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003632
William Lallemand49398312020-03-30 17:01:33 +02003633 /* this was not generated for this bind_conf, skip */
3634 if (inst->bind_conf != bind_conf)
3635 continue;
3636
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003637 /* free the sni_ctx and instance */
3638 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003639 }
William Lallemand2954c472020-03-06 21:54:13 +01003640 }
William Lallemand2954c472020-03-06 21:54:13 +01003641 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003642 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003643 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003644 return cfgerr;
3645}
3646
William Lallemand06b22a82020-03-16 14:45:55 +01003647/* Returns a set of ERR_* flags possibly with an error in <err>. */
3648int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3649{
3650 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003651 int cfgerr = 0;
3652 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003653 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003654 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003655
3656 if ((ckchs = ckchs_lookup(path))) {
3657 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003658 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3659 found++;
3660 } else if (stat(path, &buf) == 0) {
3661 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003662 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003663 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003664 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003665 cfgerr |= ERR_ALERT | ERR_FATAL;
3666 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003667 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003668 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003669 }
3670 } else {
3671 /* stat failed, could be a bundle */
3672 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003673 char fp[MAXPATHLEN+1] = {0};
3674 int n = 0;
3675
3676 /* Load all possible certs and keys in separate ckch_store */
3677 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3678 struct stat buf;
3679 int ret;
3680
3681 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3682 if (ret > sizeof(fp))
3683 continue;
3684
3685 if ((ckchs = ckchs_lookup(fp))) {
3686 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003687 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003688 } else {
3689 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003690 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003691 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003692 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003693 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003694 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3695 }
3696 }
3697 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003698#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3699 if (found) {
3700 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3701 err && *err ? *err : "", path);
3702 cfgerr |= ERR_ALERT | ERR_FATAL;
3703 }
3704#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003705 }
3706 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003707 if (!found) {
3708 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3709 err && *err ? *err : "", path, strerror(errno));
3710 cfgerr |= ERR_ALERT | ERR_FATAL;
3711 }
William Lallemand06b22a82020-03-16 14:45:55 +01003712
3713 return cfgerr;
3714}
3715
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003716
3717/* Create a full ssl context and ckch instance that will be used for a specific
3718 * backend server (server configuration line).
3719 * Returns a set of ERR_* flags possibly with an error in <err>.
3720 */
3721int ssl_sock_load_srv_cert(char *path, struct server *server, char **err)
3722{
3723 struct stat buf;
3724 int cfgerr = 0;
3725 struct ckch_store *ckchs;
3726 int found = 0; /* did we found a file to load ? */
3727
3728 if ((ckchs = ckchs_lookup(path))) {
3729 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003730 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003731 found++;
3732 } else if (stat(path, &buf) == 0) {
3733 /* We do not manage directories on backend side. */
3734 if (S_ISDIR(buf.st_mode) == 0) {
3735 ++found;
3736 ckchs = ckchs_load_cert_file(path, err);
3737 if (!ckchs)
3738 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003739 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003740 }
3741 }
3742 if (!found) {
3743 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3744 err && *err ? *err : "", path, strerror(errno));
3745 cfgerr |= ERR_ALERT | ERR_FATAL;
3746 }
3747
3748 return cfgerr;
3749}
3750
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003751/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003752static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003753ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003754{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003755 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003756 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003757 SSL_OP_ALL | /* all known workarounds for bugs */
3758 SSL_OP_NO_SSLv2 |
3759 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003760 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003761 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003762 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003763 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003764 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003765 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003766 SSL_MODE_ENABLE_PARTIAL_WRITE |
3767 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003768 SSL_MODE_RELEASE_BUFFERS |
3769 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003770 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003771 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003772 int flags = MC_SSL_O_ALL;
3773 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003774 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003775
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003776 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003777 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003778
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003779 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003780 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3781 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3782 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003783 else
3784 flags = conf_ssl_methods->flags;
3785
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003786 min = conf_ssl_methods->min;
3787 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003788
3789 /* default minimum is TLSV12, */
3790 if (!min) {
3791 if (!max || (max >= default_min_ver)) {
3792 min = default_min_ver;
3793 } else {
3794 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). "
3795 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3796 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3797 min = max;
3798 }
3799 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003800 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003801 if (min)
3802 flags |= (methodVersions[min].flag - 1);
3803 if (max)
3804 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003805 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003806 min = max = CONF_TLSV_NONE;
3807 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003808 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003809 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003810 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003811 if (min) {
3812 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003813 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3814 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3815 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3816 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003817 hole = 0;
3818 }
3819 max = i;
3820 }
3821 else {
3822 min = max = i;
3823 }
3824 }
3825 else {
3826 if (min)
3827 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003828 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003829 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003830 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3831 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003832 cfgerr += 1;
3833 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003834 /* save real min/max in bind_conf */
3835 conf_ssl_methods->min = min;
3836 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003837
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003838#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003839 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003840 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003841 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003842 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003843 else
William Lallemandd0712f32020-06-11 17:34:00 +02003844 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
3845 /* clear every version flags in case SSL_CTX_new()
3846 * returns an SSL_CTX with disabled versions */
3847 SSL_CTX_clear_options(ctx, methodVersions[i].option);
3848
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003849 if (flags & methodVersions[i].flag)
3850 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02003851
3852 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003853#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003854 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003855 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3856 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003857#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003858
3859 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3860 options |= SSL_OP_NO_TICKET;
3861 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3862 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003863
3864#ifdef SSL_OP_NO_RENEGOTIATION
3865 options |= SSL_OP_NO_RENEGOTIATION;
3866#endif
3867
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003868 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003869
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05003870#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003871 if (global_ssl.async)
3872 mode |= SSL_MODE_ASYNC;
3873#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003874 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003875 if (global_ssl.life_time)
3876 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003877
3878#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3879#ifdef OPENSSL_IS_BORINGSSL
3880 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3881 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05003882#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01003883 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003884 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003885 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3886 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003887#else
3888 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003889#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003890 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003891#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003892 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003893}
3894
William Lallemand4f45bb92017-10-30 20:08:51 +01003895
3896static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3897{
3898 if (first == block) {
3899 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3900 if (first->len > 0)
3901 sh_ssl_sess_tree_delete(sh_ssl_sess);
3902 }
3903}
3904
3905/* return first block from sh_ssl_sess */
3906static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3907{
3908 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3909
3910}
3911
3912/* store a session into the cache
3913 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3914 * data: asn1 encoded session
3915 * data_len: asn1 encoded session length
3916 * Returns 1 id session was stored (else 0)
3917 */
3918static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3919{
3920 struct shared_block *first;
3921 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3922
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003923 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003924 if (!first) {
3925 /* Could not retrieve enough free blocks to store that session */
3926 return 0;
3927 }
3928
3929 /* STORE the key in the first elem */
3930 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3931 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3932 first->len = sizeof(struct sh_ssl_sess_hdr);
3933
3934 /* it returns the already existing node
3935 or current node if none, never returns null */
3936 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
3937 if (oldsh_ssl_sess != sh_ssl_sess) {
3938 /* NOTE: Row couldn't be in use because we lock read & write function */
3939 /* release the reserved row */
3940 shctx_row_dec_hot(ssl_shctx, first);
3941 /* replace the previous session already in the tree */
3942 sh_ssl_sess = oldsh_ssl_sess;
3943 /* ignore the previous session data, only use the header */
3944 first = sh_ssl_sess_first_block(sh_ssl_sess);
3945 shctx_row_inc_hot(ssl_shctx, first);
3946 first->len = sizeof(struct sh_ssl_sess_hdr);
3947 }
3948
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003949 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01003950 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003951 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01003952 }
3953
3954 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003955
3956 return 1;
3957}
William Lallemanded0b5ad2017-10-30 19:36:36 +01003958
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003959/* SSL callback used when a new session is created while connecting to a server */
3960static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
3961{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02003962 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003963 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003964
Willy Tarreau07d94e42018-09-20 10:57:52 +02003965 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003966
William Lallemand3ce6eed2021-02-08 10:43:44 +01003967 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
3968 * one cache per thread, it only prevents to flush it from the CLI in
3969 * another thread */
3970
Olivier Houcharde6060c52017-11-16 17:42:52 +01003971 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
3972 int len;
3973 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003974
Olivier Houcharde6060c52017-11-16 17:42:52 +01003975 len = i2d_SSL_SESSION(sess, NULL);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003976 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003977 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
3978 ptr = s->ssl_ctx.reused_sess[tid].ptr;
3979 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01003980 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
3981 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01003982 s->ssl_ctx.reused_sess[tid].allocated_size = len;
3983 }
3984 if (s->ssl_ctx.reused_sess[tid].ptr) {
3985 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
3986 &ptr);
3987 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01003988 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003989 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01003990 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003991 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003992 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003993 }
3994
3995 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003996}
3997
Olivier Houcharde6060c52017-11-16 17:42:52 +01003998
William Lallemanded0b5ad2017-10-30 19:36:36 +01003999/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004000int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004001{
4002 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4003 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4004 unsigned char *p;
4005 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004006 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004007 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004008
4009 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004010 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004011 * note: SSL_SESSION_set1_id is using
4012 * a memcpy so we need to use a different pointer
4013 * than sid_data or sid_ctx_data to avoid valgrind
4014 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004015 */
4016
4017 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004018
4019 /* copy value in an other buffer */
4020 memcpy(encid, sid_data, sid_length);
4021
4022 /* pad with 0 */
4023 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4024 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4025
4026 /* force length to zero to avoid ASN1 encoding */
4027 SSL_SESSION_set1_id(sess, encid, 0);
4028
4029 /* force length to zero to avoid ASN1 encoding */
4030 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004031
4032 /* check if buffer is large enough for the ASN1 encoded session */
4033 data_len = i2d_SSL_SESSION(sess, NULL);
4034 if (data_len > SHSESS_MAX_DATA_LEN)
4035 goto err;
4036
4037 p = encsess;
4038
4039 /* process ASN1 session encoding before the lock */
4040 i2d_SSL_SESSION(sess, &p);
4041
William Lallemanded0b5ad2017-10-30 19:36:36 +01004042
William Lallemanda3c77cf2017-10-30 23:44:40 +01004043 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004044 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004045 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004046 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004047err:
4048 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004049 SSL_SESSION_set1_id(sess, encid, sid_length);
4050 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004051
4052 return 0; /* do not increment session reference count */
4053}
4054
4055/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004056SSL_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 +01004057{
William Lallemand4f45bb92017-10-30 20:08:51 +01004058 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004059 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4060 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004061 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004062 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004063
Willy Tarreau4c19e992021-06-15 16:39:22 +02004064 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004065
4066 /* allow the session to be freed automatically by openssl */
4067 *do_copy = 0;
4068
4069 /* tree key is zeros padded sessionid */
4070 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4071 memcpy(tmpkey, key, key_len);
4072 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4073 key = tmpkey;
4074 }
4075
4076 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004077 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004078
4079 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004080 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4081 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004082 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004083 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004084 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004085 return NULL;
4086 }
4087
William Lallemand4f45bb92017-10-30 20:08:51 +01004088 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4089 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004090
William Lallemand4f45bb92017-10-30 20:08:51 +01004091 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 +01004092
William Lallemanda3c77cf2017-10-30 23:44:40 +01004093 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004094
4095 /* decode ASN1 session */
4096 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004097 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004098 /* Reset session id and session id contenxt */
4099 if (sess) {
4100 SSL_SESSION_set1_id(sess, key, key_len);
4101 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4102 }
4103
4104 return sess;
4105}
4106
William Lallemand4f45bb92017-10-30 20:08:51 +01004107
William Lallemanded0b5ad2017-10-30 19:36:36 +01004108/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004109void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004110{
William Lallemand4f45bb92017-10-30 20:08:51 +01004111 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004112 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4113 unsigned int sid_length;
4114 const unsigned char *sid_data;
4115 (void)ctx;
4116
4117 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4118 /* tree key is zeros padded sessionid */
4119 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4120 memcpy(tmpkey, sid_data, sid_length);
4121 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4122 sid_data = tmpkey;
4123 }
4124
William Lallemanda3c77cf2017-10-30 23:44:40 +01004125 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004126
4127 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004128 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4129 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004130 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004131 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004132 }
4133
4134 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004135 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004136}
4137
4138/* Set session cache mode to server and disable openssl internal cache.
4139 * Set shared cache callbacks on an ssl context.
4140 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004141void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004142{
4143 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4144
4145 if (!ssl_shctx) {
4146 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4147 return;
4148 }
4149
4150 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4151 SSL_SESS_CACHE_NO_INTERNAL |
4152 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4153
4154 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004155 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4156 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4157 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004158}
William Lallemand7d42ef52020-07-06 11:41:30 +02004159
4160/*
4161 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4162 *
4163 * The format is:
4164 * * <Label> <space> <ClientRandom> <space> <Secret>
4165 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4166 */
4167
William Lallemand722180a2021-06-09 16:46:12 +02004168#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004169void SSL_CTX_keylog(const SSL *ssl, const char *line)
4170{
4171 struct ssl_keylog *keylog;
4172 char *lastarg = NULL;
4173 char *dst = NULL;
4174
4175 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4176 if (!keylog)
4177 return;
4178
4179 lastarg = strrchr(line, ' ');
4180 if (lastarg == NULL || ++lastarg == NULL)
4181 return;
4182
4183 dst = pool_alloc(pool_head_ssl_keylog_str);
4184 if (!dst)
4185 return;
4186
4187 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4188 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4189
4190 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4191 if (keylog->client_random)
4192 goto error;
4193 keylog->client_random = dst;
4194
4195 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4196 if (keylog->client_early_traffic_secret)
4197 goto error;
4198 keylog->client_early_traffic_secret = dst;
4199
4200 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4201 if(keylog->client_handshake_traffic_secret)
4202 goto error;
4203 keylog->client_handshake_traffic_secret = dst;
4204
4205 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4206 if (keylog->server_handshake_traffic_secret)
4207 goto error;
4208 keylog->server_handshake_traffic_secret = dst;
4209
4210 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4211 if (keylog->client_traffic_secret_0)
4212 goto error;
4213 keylog->client_traffic_secret_0 = dst;
4214
4215 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4216 if (keylog->server_traffic_secret_0)
4217 goto error;
4218 keylog->server_traffic_secret_0 = dst;
4219
4220 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4221 if (keylog->early_exporter_secret)
4222 goto error;
4223 keylog->early_exporter_secret = dst;
4224
4225 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4226 if (keylog->exporter_secret)
4227 goto error;
4228 keylog->exporter_secret = dst;
4229 } else {
4230 goto error;
4231 }
4232
4233 return;
4234
4235error:
4236 pool_free(pool_head_ssl_keylog_str, dst);
4237
4238 return;
4239}
4240#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004241
William Lallemand8b453912019-11-21 15:48:10 +01004242/*
4243 * This function applies the SSL configuration on a SSL_CTX
4244 * It returns an error code and fills the <err> buffer
4245 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004246static 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 +01004247{
4248 struct proxy *curproxy = bind_conf->frontend;
4249 int cfgerr = 0;
4250 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004251 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004252 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004253#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004254 const char *conf_ciphersuites;
4255#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004256 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004257
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004258 if (ssl_conf) {
4259 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4260 int i, min, max;
4261 int flags = MC_SSL_O_ALL;
4262
4263 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004264 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4265 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004266 if (min)
4267 flags |= (methodVersions[min].flag - 1);
4268 if (max)
4269 flags |= ~((methodVersions[max].flag << 1) - 1);
4270 min = max = CONF_TLSV_NONE;
4271 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4272 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4273 if (min)
4274 max = i;
4275 else
4276 min = max = i;
4277 }
4278 /* save real min/max */
4279 conf_ssl_methods->min = min;
4280 conf_ssl_methods->max = max;
4281 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004282 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4283 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004284 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004285 }
4286 }
4287
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004288 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004289 case SSL_SOCK_VERIFY_NONE:
4290 verify = SSL_VERIFY_NONE;
4291 break;
4292 case SSL_SOCK_VERIFY_OPTIONAL:
4293 verify = SSL_VERIFY_PEER;
4294 break;
4295 case SSL_SOCK_VERIFY_REQUIRED:
4296 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4297 break;
4298 }
4299 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4300 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004301 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 +01004302 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 +01004303 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 +01004304 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004305 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004306 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004307 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004308 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004309 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004310 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004311 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4312 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4313 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4314 cfgerr |= ERR_ALERT | ERR_FATAL;
4315 }
4316 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004317 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004318 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 +02004319 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004320 }
Emeric Brun850efd52014-01-29 12:24:34 +01004321 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004322 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4323 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004324 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004325 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004326#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004327 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004328 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4329
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004330 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004331 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4332 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004333 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004334 }
Emeric Brun561e5742012-10-02 15:20:55 +02004335 else {
4336 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4337 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004338 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004339#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004340 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004341 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004342#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004343 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004344 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004345 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4346 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004347 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004348 }
4349 }
4350#endif
4351
William Lallemand4f45bb92017-10-30 20:08:51 +01004352 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004353 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4354 if (conf_ciphers &&
4355 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004356 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4357 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004358 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004359 }
4360
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004361#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004362 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4363 if (conf_ciphersuites &&
4364 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004365 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4366 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004367 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004368 }
4369#endif
4370
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004371#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004372 /* If tune.ssl.default-dh-param has not been set,
4373 neither has ssl-default-dh-file and no static DH
4374 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004375 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004376 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004377 (ssl_dh_ptr_index == -1 ||
4378 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004379 /* default to dh-param 2048 */
4380 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004381 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004382
Willy Tarreauef934602016-12-22 23:12:01 +01004383 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004384 if (local_dh_1024 == NULL) {
4385 local_dh_1024 = ssl_get_dh_1024();
4386 }
Willy Tarreauef934602016-12-22 23:12:01 +01004387 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004388 if (local_dh_2048 == NULL) {
4389 local_dh_2048 = ssl_get_dh_2048();
4390 }
Willy Tarreauef934602016-12-22 23:12:01 +01004391 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004392 if (local_dh_4096 == NULL) {
4393 local_dh_4096 = ssl_get_dh_4096();
4394 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004395 }
4396 }
4397 }
4398#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004399
Emeric Brunfc0421f2012-09-07 17:30:07 +02004400 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004401#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004402 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004403#endif
William Lallemand722180a2021-06-09 16:46:12 +02004404#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004405 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4406#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004407
Bernard Spil13c53f82018-02-15 13:34:58 +01004408#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004409 ssl_conf_cur = NULL;
4410 if (ssl_conf && ssl_conf->npn_str)
4411 ssl_conf_cur = ssl_conf;
4412 else if (bind_conf->ssl_conf.npn_str)
4413 ssl_conf_cur = &bind_conf->ssl_conf;
4414 if (ssl_conf_cur)
4415 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004416#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004417#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004418 ssl_conf_cur = NULL;
4419 if (ssl_conf && ssl_conf->alpn_str)
4420 ssl_conf_cur = ssl_conf;
4421 else if (bind_conf->ssl_conf.alpn_str)
4422 ssl_conf_cur = &bind_conf->ssl_conf;
4423 if (ssl_conf_cur)
4424 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004425#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004426#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004427 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4428 if (conf_curves) {
4429 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004430 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4431 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004432 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004433 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004434 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004435 }
4436#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004437#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004438 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004439 int i;
4440 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004441#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004442 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004443 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4444 NULL);
4445
4446 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004447 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004448 return cfgerr;
4449 }
4450#else
4451 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4452 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4453 ECDHE_DEFAULT_CURVE);
4454#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004455
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004456 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004457 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004458 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4459 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004460 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004461 }
4462 else {
4463 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4464 EC_KEY_free(ecdh);
4465 }
4466 }
4467#endif
4468
Emeric Brunfc0421f2012-09-07 17:30:07 +02004469 return cfgerr;
4470}
4471
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004472
4473/*
4474 * Prepare the SSL_CTX based on the bind line configuration.
4475 * Since the CA file loading is made depending on the verify option of the bind
4476 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4477 * If we want to create a link between the CA file entry and the corresponding
4478 * ckch instance (for CA file hot update), it needs to be done after
4479 * ssl_sock_prepare_ctx.
4480 * Returns 0 in case of success.
4481 */
4482int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4483 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4484{
4485 int errcode = 0;
4486
4487 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4488 if (!errcode && ckch_inst)
4489 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4490
4491 return errcode;
4492}
4493
Evan Broderbe554312013-06-27 00:05:25 -07004494static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4495{
4496 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4497 size_t prefixlen, suffixlen;
4498
4499 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004500 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004501 return 1;
4502
Evan Broderbe554312013-06-27 00:05:25 -07004503 /* The rest of this logic is based on RFC 6125, section 6.4.3
4504 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4505
Emeric Bruna848dae2013-10-08 11:27:28 +02004506 pattern_wildcard = NULL;
4507 pattern_left_label_end = pattern;
4508 while (*pattern_left_label_end != '.') {
4509 switch (*pattern_left_label_end) {
4510 case 0:
4511 /* End of label not found */
4512 return 0;
4513 case '*':
4514 /* If there is more than one wildcards */
4515 if (pattern_wildcard)
4516 return 0;
4517 pattern_wildcard = pattern_left_label_end;
4518 break;
4519 }
4520 pattern_left_label_end++;
4521 }
4522
4523 /* If it's not trivial and there is no wildcard, it can't
4524 * match */
4525 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004526 return 0;
4527
4528 /* Make sure all labels match except the leftmost */
4529 hostname_left_label_end = strchr(hostname, '.');
4530 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004531 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004532 return 0;
4533
4534 /* Make sure the leftmost label of the hostname is long enough
4535 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004536 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004537 return 0;
4538
4539 /* Finally compare the string on either side of the
4540 * wildcard */
4541 prefixlen = pattern_wildcard - pattern;
4542 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004543 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4544 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004545 return 0;
4546
4547 return 1;
4548}
4549
4550static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4551{
4552 SSL *ssl;
4553 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004554 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004555 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004556 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004557
4558 int depth;
4559 X509 *cert;
4560 STACK_OF(GENERAL_NAME) *alt_names;
4561 int i;
4562 X509_NAME *cert_subject;
4563 char *str;
4564
4565 if (ok == 0)
4566 return ok;
4567
4568 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004569 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004570 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004571
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004572 /* We're checking if the provided hostnames match the desired one. The
4573 * desired hostname comes from the SNI we presented if any, or if not
4574 * provided then it may have been explicitly stated using a "verifyhost"
4575 * directive. If neither is set, we don't care about the name so the
4576 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004577 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004578 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004579 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004580 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004581 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004582 if (!servername)
4583 return ok;
4584 }
Evan Broderbe554312013-06-27 00:05:25 -07004585
4586 /* We only need to verify the CN on the actual server cert,
4587 * not the indirect CAs */
4588 depth = X509_STORE_CTX_get_error_depth(ctx);
4589 if (depth != 0)
4590 return ok;
4591
4592 /* At this point, the cert is *not* OK unless we can find a
4593 * hostname match */
4594 ok = 0;
4595
4596 cert = X509_STORE_CTX_get_current_cert(ctx);
4597 /* It seems like this might happen if verify peer isn't set */
4598 if (!cert)
4599 return ok;
4600
4601 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4602 if (alt_names) {
4603 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4604 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4605 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004606#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004607 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4608#else
Evan Broderbe554312013-06-27 00:05:25 -07004609 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004610#endif
Evan Broderbe554312013-06-27 00:05:25 -07004611 ok = ssl_sock_srv_hostcheck(str, servername);
4612 OPENSSL_free(str);
4613 }
4614 }
4615 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004616 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004617 }
4618
4619 cert_subject = X509_get_subject_name(cert);
4620 i = -1;
4621 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4622 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004623 ASN1_STRING *value;
4624 value = X509_NAME_ENTRY_get_data(entry);
4625 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004626 ok = ssl_sock_srv_hostcheck(str, servername);
4627 OPENSSL_free(str);
4628 }
4629 }
4630
Willy Tarreau71d058c2017-07-26 20:09:56 +02004631 /* report the mismatch and indicate if SNI was used or not */
4632 if (!ok && !conn->err_code)
4633 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004634 return ok;
4635}
4636
Emeric Brun94324a42012-10-11 14:00:19 +02004637/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004638int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004639{
4640 int cfgerr = 0;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004641 SSL_CTX *ctx = srv->ssl_ctx.ctx;
Emeric Brun94324a42012-10-11 14:00:19 +02004642
Thierry Fournier383085f2013-01-24 14:15:43 +01004643 /* Make sure openssl opens /dev/urandom before the chroot */
4644 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004645 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004646 cfgerr++;
4647 }
4648
Willy Tarreaufce03112015-01-15 21:32:40 +01004649 /* Automatic memory computations need to know we use SSL there */
4650 global.ssl_used_backend = 1;
4651
4652 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004653 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004654 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004655 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02004656 cfgerr++;
4657 return cfgerr;
4658 }
4659 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004660 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004661 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004662
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004663 /* The context will be uninitialized if there wasn't any "cert" option
4664 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004665 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004666 ctx = SSL_CTX_new(SSLv23_client_method());
4667 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004668 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004669 cfgerr++;
4670 return cfgerr;
4671 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004672
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004673 srv->ssl_ctx.ctx = ctx;
4674 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004675
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004676 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 +01004677
4678 return cfgerr;
4679}
4680
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004681/* Initialize an SSL context that will be used on the backend side.
4682 * Returns an error count.
4683 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004684static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004685{
4686 struct proxy *curproxy = srv->proxy;
4687 int cfgerr = 0;
4688 long options =
4689 SSL_OP_ALL | /* all known workarounds for bugs */
4690 SSL_OP_NO_SSLv2 |
4691 SSL_OP_NO_COMPRESSION;
4692 long mode =
4693 SSL_MODE_ENABLE_PARTIAL_WRITE |
4694 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4695 SSL_MODE_RELEASE_BUFFERS |
4696 SSL_MODE_SMALL_BUFFERS;
4697 int verify = SSL_VERIFY_NONE;
4698 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4699 int i, min, max, hole;
4700 int flags = MC_SSL_O_ALL;
4701
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004702 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004703 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
4704 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004705 else
4706 flags = conf_ssl_methods->flags;
4707
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004708 /* Real min and max should be determinate with configuration and openssl's capabilities */
4709 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004710 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004711 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004712 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004713
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004714 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004715 min = max = CONF_TLSV_NONE;
4716 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004717 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004718 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004719 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004720 if (min) {
4721 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004722 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01004723 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4724 proxy_type_str(curproxy), curproxy->id, srv->id,
4725 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004726 hole = 0;
4727 }
4728 max = i;
4729 }
4730 else {
4731 min = max = i;
4732 }
4733 }
4734 else {
4735 if (min)
4736 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004737 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004738 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004739 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004740 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004741 cfgerr += 1;
4742 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004743
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004744#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004745 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004746 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004747 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004748 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004749 else
4750 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4751 if (flags & methodVersions[i].flag)
4752 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004753#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004754 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004755 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4756 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004757#endif
4758
4759 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4760 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004761 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004762
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004763#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004764 if (global_ssl.async)
4765 mode |= SSL_MODE_ASYNC;
4766#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004767 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004768
Emeric Brun850efd52014-01-29 12:24:34 +01004769 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4770 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004771 switch (srv->ssl_ctx.verify) {
4772 case SSL_SOCK_VERIFY_NONE:
4773 verify = SSL_VERIFY_NONE;
4774 break;
4775 case SSL_SOCK_VERIFY_REQUIRED:
4776 verify = SSL_VERIFY_PEER;
4777 break;
4778 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004779 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004780 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004781 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004782 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004783 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004784 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004785 ha_alert("unable to set CA file '%s'.\n",
4786 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004787 cfgerr++;
4788 }
4789 }
Emeric Brun850efd52014-01-29 12:24:34 +01004790 else {
4791 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004792 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 +01004793 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004794 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01004795 cfgerr++;
4796 }
Emeric Brunef42d922012-10-11 16:11:36 +02004797#ifdef X509_V_FLAG_CRL_CHECK
4798 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004799 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02004800
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004801 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004802 ha_alert("unable to configure CRL file '%s'.\n",
4803 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004804 cfgerr++;
4805 }
4806 else {
4807 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4808 }
4809 }
4810#endif
4811 }
4812
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004813 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
4814 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004815 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004816 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004817 ha_alert("unable to set SSL cipher list to '%s'.\n",
4818 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004819 cfgerr++;
4820 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004821
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004822#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004823 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004824 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004825 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
4826 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004827 cfgerr++;
4828 }
4829#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004830#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4831 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004832 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01004833#endif
4834#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4835 if (srv->ssl_ctx.alpn_str)
4836 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4837#endif
4838
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004839
4840 return cfgerr;
4841}
4842
4843/*
4844 * Prepare the frontend's SSL_CTX based on the server line configuration.
4845 * Since the CA file loading is made depending on the verify option of the
4846 * server line, the link between the SSL_CTX and the CA file tree entry is
4847 * made here.
4848 * If we want to create a link between the CA file entry and the corresponding
4849 * ckch instance (for CA file hot update), it needs to be done after
4850 * ssl_sock_prepare_srv_ssl_ctx.
4851 * Returns an error count.
4852 */
4853int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
4854 struct ckch_inst *ckch_inst)
4855{
4856 int cfgerr = 0;
4857
4858 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
4859 if (!cfgerr && ckch_inst)
4860 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02004861
4862 return cfgerr;
4863}
4864
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004865
Frédéric Lécailleec216522020-11-23 14:33:30 +01004866/*
4867 * Create an initial CTX used to start the SSL connections.
4868 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
4869 * Returns 0 if succeeded, or something >0 if not.
4870 */
4871#ifdef USE_QUIC
4872static int ssl_initial_ctx(struct bind_conf *bind_conf)
4873{
4874 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
4875 return ssl_quic_initial_ctx(bind_conf);
4876 else
4877 return ssl_sock_initial_ctx(bind_conf);
4878}
4879#else
4880static int ssl_initial_ctx(struct bind_conf *bind_conf)
4881{
4882 return ssl_sock_initial_ctx(bind_conf);
4883}
4884#endif
4885
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004886/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004887 * be NULL, in which case nothing is done. Returns the number of errors
4888 * encountered.
4889 */
Willy Tarreau03209342016-12-22 17:08:28 +01004890int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004891{
4892 struct ebmb_node *node;
4893 struct sni_ctx *sni;
4894 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01004895 int errcode = 0;
4896 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004897
Willy Tarreaufce03112015-01-15 21:32:40 +01004898 /* Automatic memory computations need to know we use SSL there */
4899 global.ssl_used_frontend = 1;
4900
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004901 /* Make sure openssl opens /dev/urandom before the chroot */
4902 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004903 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004904 err++;
4905 }
4906 /* Create initial_ctx used to start the ssl connection before do switchctx */
4907 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01004908 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004909 /* It should not be necessary to call this function, but it's
4910 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01004911 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004912 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
4913 }
4914 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02004915 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 +01004916 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004917
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004918 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004919 while (node) {
4920 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004921 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004922 /* only initialize the CTX on its first occurrence and
4923 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004924 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
4925 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004926 node = ebmb_next(node);
4927 }
4928
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004929 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004930 while (node) {
4931 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01004932 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004933 /* only initialize the CTX on its first occurrence and
4934 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004935 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004936 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004937 node = ebmb_next(node);
4938 }
William Lallemand8b453912019-11-21 15:48:10 +01004939
4940 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004941 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004942 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004943 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004944 err++;
4945 }
4946
4947 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004948 return err;
4949}
4950
Willy Tarreau55d37912016-12-21 23:38:39 +01004951/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4952 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4953 * alerts are directly emitted since the rest of the stack does it below.
4954 */
4955int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4956{
4957 struct proxy *px = bind_conf->frontend;
4958 int alloc_ctx;
4959 int err;
4960
4961 if (!bind_conf->is_ssl) {
4962 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004963 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4964 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004965 }
4966 return 0;
4967 }
4968 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004969 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004970 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4971 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004972 }
4973 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004974 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4975 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004976 return -1;
4977 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004978 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004979 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004980 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004981 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004982 sizeof(*sh_ssl_sess_tree),
4983 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004984 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004985 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4986 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");
4987 else
4988 ha_alert("Unable to allocate SSL session cache.\n");
4989 return -1;
4990 }
4991 /* free block callback */
4992 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4993 /* init the root tree within the extra space */
4994 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4995 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004996 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004997 err = 0;
4998 /* initialize all certificate contexts */
4999 err += ssl_sock_prepare_all_ctx(bind_conf);
5000
5001 /* initialize CA variables if the certificates generation is enabled */
5002 err += ssl_sock_load_ca(bind_conf);
5003
5004 return -err;
5005}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005006
5007/* release ssl context allocated for servers. */
5008void ssl_sock_free_srv_ctx(struct server *srv)
5009{
Olivier Houchardc7566002018-11-20 23:33:50 +01005010#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5011 if (srv->ssl_ctx.alpn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005012 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005013#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005014#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01005015 if (srv->ssl_ctx.npn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005016 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005017#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005018 if (srv->ssl_ctx.reused_sess) {
5019 int i;
5020
5021 for (i = 0; i < global.nbthread; i++)
Willy Tarreaue709e822021-02-26 21:06:32 +01005022 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
5023 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005024 }
5025
Willy Tarreaue709e822021-02-26 21:06:32 +01005026 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005027 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005028 srv->ssl_ctx.ctx = NULL;
5029 }
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005030}
5031
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005032/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005033 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5034 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005035void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005036{
5037 struct ebmb_node *node, *back;
5038 struct sni_ctx *sni;
5039
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005040 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005041 while (node) {
5042 sni = ebmb_entry(node, struct sni_ctx, name);
5043 back = ebmb_next(node);
5044 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005045 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005046 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005047 free(sni);
5048 node = back;
5049 }
5050
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005051 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005052 while (node) {
5053 sni = ebmb_entry(node, struct sni_ctx, name);
5054 back = ebmb_next(node);
5055 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005056 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005057 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005058 free(sni);
5059 node = back;
5060 }
William Lallemandb2408692020-06-24 09:54:29 +02005061
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005062 SSL_CTX_free(bind_conf->initial_ctx);
5063 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005064 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005065 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005066 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005067 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005068}
William Lallemandb2408692020-06-24 09:54:29 +02005069
5070
5071void ssl_sock_deinit()
5072{
5073 crtlist_deinit(); /* must be free'd before the ckchs */
5074 ckch_deinit();
5075}
5076REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005077
Willy Tarreau795cdab2016-12-22 17:30:54 +01005078/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5079void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5080{
5081 ssl_sock_free_ca(bind_conf);
5082 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005083 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005084 free(bind_conf->ca_sign_file);
5085 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005086 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005087 free(bind_conf->keys_ref->filename);
5088 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005089 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005090 free(bind_conf->keys_ref);
5091 }
5092 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005093 bind_conf->ca_sign_pass = NULL;
5094 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005095}
5096
Christopher Faulet31af49d2015-06-09 17:29:50 +02005097/* Load CA cert file and private key used to generate certificates */
5098int
Willy Tarreau03209342016-12-22 17:08:28 +01005099ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005100{
Willy Tarreau03209342016-12-22 17:08:28 +01005101 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005102 struct cert_key_and_chain *ckch = NULL;
5103 int ret = 0;
5104 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005105
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005106 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005107 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005108
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005109#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005110 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005111 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005112 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005113 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005114 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005115#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005116
Christopher Faulet31af49d2015-06-09 17:29:50 +02005117 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005118 ha_alert("Proxy '%s': cannot enable certificate generation, "
5119 "no CA certificate File configured at [%s:%d].\n",
5120 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005121 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005122 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005123
Shimi Gersner5846c492020-08-23 13:58:12 +03005124 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005125 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005126 if (!ckch) {
5127 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5128 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5129 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005130 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005131
5132 /* Try to parse file */
5133 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5134 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5135 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005136 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005137 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005138 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005139
5140 /* Fail if missing cert or pkey */
5141 if ((!ckch->cert) || (!ckch->key)) {
5142 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5143 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5144 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005145 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005146
Shimi Gersner5846c492020-08-23 13:58:12 +03005147 /* Final assignment to bind */
5148 bind_conf->ca_sign_ckch = ckch;
5149 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005150
Shimi Gersner5846c492020-08-23 13:58:12 +03005151 failed:
5152 if (ckch) {
5153 ssl_sock_free_cert_key_and_chain_contents(ckch);
5154 free(ckch);
5155 }
5156
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005157 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005158 ret++;
5159 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005160}
5161
5162/* Release CA cert and private key used to generate certificated */
5163void
5164ssl_sock_free_ca(struct bind_conf *bind_conf)
5165{
Shimi Gersner5846c492020-08-23 13:58:12 +03005166 if (bind_conf->ca_sign_ckch) {
5167 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005168 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005169 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005170}
5171
Emeric Brun46591952012-05-18 15:47:34 +02005172/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005173 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5174 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5175 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5176 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005177 * 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 +01005178 * as parameters to this function.
5179 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5180 * CO_ER_SSL_NO_MEM.
5181 */
5182int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5183 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5184{
5185 int retry = 1;
5186
5187 retry:
5188 /* Alloc a new SSL session. */
5189 *ssl = SSL_new(ssl_ctx);
5190 if (!*ssl) {
5191 if (!retry--)
5192 goto err;
5193
5194 pool_gc(NULL);
5195 goto retry;
5196 }
5197
5198 *bio = BIO_new(bio_meth);
5199 if (!*bio) {
5200 SSL_free(*ssl);
5201 *ssl = NULL;
5202 if (!retry--)
5203 goto err;
5204
5205 pool_gc(NULL);
5206 goto retry;
5207 }
5208
5209 BIO_set_data(*bio, ctx);
5210 SSL_set_bio(*ssl, *bio, *bio);
5211
5212 /* set connection pointer. */
5213 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5214 SSL_free(*ssl);
5215 *ssl = NULL;
5216 if (!retry--)
5217 goto err;
5218
5219 pool_gc(NULL);
5220 goto retry;
5221 }
5222
5223 return 0;
5224
5225 err:
5226 conn->err_code = CO_ER_SSL_NO_MEM;
5227 return -1;
5228}
5229
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005230/* This function is called when all the XPRT have been initialized. We can
5231 * now attempt to start the SSL handshake.
5232 */
5233static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5234{
5235 struct ssl_sock_ctx *ctx = xprt_ctx;
5236
5237 if (ctx->xprt->start) {
5238 int ret;
5239
5240 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5241 if (ret < 0)
5242 return ret;
5243 }
5244 tasklet_wakeup(ctx->wait_event.tasklet);
5245
5246 return 0;
5247}
5248
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005249/*
Emeric Brun46591952012-05-18 15:47:34 +02005250 * This function is called if SSL * context is not yet allocated. The function
5251 * is designed to be called before any other data-layer operation and sets the
5252 * handshake flag on the connection. It is safe to call it multiple times.
5253 * It returns 0 on success and -1 in error case.
5254 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005255static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005256{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005257 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005258 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005259 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005260 return 0;
5261
Olivier Houchard66ab4982019-02-26 18:37:15 +01005262 ctx = pool_alloc(ssl_sock_ctx_pool);
5263 if (!ctx) {
5264 conn->err_code = CO_ER_SSL_NO_MEM;
5265 return -1;
5266 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005267 ctx->wait_event.tasklet = tasklet_new();
5268 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005269 conn->err_code = CO_ER_SSL_NO_MEM;
5270 pool_free(ssl_sock_ctx_pool, ctx);
5271 return -1;
5272 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005273 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5274 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005275 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005276 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005277 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005278 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005279 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005280 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005281 ctx->xprt_st = 0;
5282 ctx->xprt_ctx = NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005283
5284 /* Only work with sockets for now, this should be adapted when we'll
5285 * add QUIC support.
5286 */
5287 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005288 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005289 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5290 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005291 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005292
Willy Tarreau20879a02012-12-03 16:32:10 +01005293 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5294 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005295 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005296 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005297
Emeric Brun46591952012-05-18 15:47:34 +02005298 /* If it is in client mode initiate SSL session
5299 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005300 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005301 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5302 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005303 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005304
Olivier Houchard66ab4982019-02-26 18:37:15 +01005305 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005306 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005307 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5308 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5309 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 +01005310 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005311 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005312 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005313 } else if (sess) {
5314 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005315 }
5316 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005317 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005318
Emeric Brun46591952012-05-18 15:47:34 +02005319 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005320 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005321
Willy Tarreau4781b152021-04-06 13:53:36 +02005322 _HA_ATOMIC_INC(&sslconns);
5323 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005324 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005325 return 0;
5326 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005327 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005328 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005329
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005330 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5331 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005332 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005333
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005334#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005335 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005336 b_alloc(&ctx->early_buf);
5337 SSL_set_max_early_data(ctx->ssl,
5338 /* Only allow early data if we managed to allocate
5339 * a buffer.
5340 */
5341 (!b_is_null(&ctx->early_buf)) ?
5342 global.tune.bufsize - global.tune.maxrewrite : 0);
5343 }
5344#endif
5345
Olivier Houchard66ab4982019-02-26 18:37:15 +01005346 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005347
Emeric Brun46591952012-05-18 15:47:34 +02005348 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005349 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005350#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005351 if (bc->ssl_conf.early_data)
5352 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005353#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005354
Willy Tarreau4781b152021-04-06 13:53:36 +02005355 _HA_ATOMIC_INC(&sslconns);
5356 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005357 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005358 return 0;
5359 }
5360 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005361 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005362err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005363 if (ctx && ctx->wait_event.tasklet)
5364 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005365 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005366 return -1;
5367}
5368
5369
5370/* This is the callback which is used when an SSL handshake is pending. It
5371 * updates the FD status if it wants some polling before being called again.
5372 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5373 * otherwise it returns non-zero and removes itself from the connection's
5374 * flags (the bit is provided in <flag> by the caller).
5375 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005376static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005377{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005378 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005379 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005380 struct ssl_counters *counters = NULL;
5381 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005382 struct listener *li;
5383 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005384 socklen_t lskerr;
5385 int skerr;
5386
Emeric Brun46591952012-05-18 15:47:34 +02005387
Willy Tarreau3c728722014-01-23 13:50:42 +01005388 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005389 return 0;
5390
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005391 /* get counters */
5392 switch (obj_type(conn->target)) {
5393 case OBJ_TYPE_LISTENER:
5394 li = objt_listener(conn->target);
5395 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5396 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5397 &ssl_stats_module);
5398 break;
5399
5400 case OBJ_TYPE_SERVER:
5401 srv = objt_server(conn->target);
5402 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5403 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5404 &ssl_stats_module);
5405 break;
5406
5407 default:
5408 break;
5409 }
5410
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005411 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005412 goto out_error;
5413
Willy Tarreau06300382021-02-02 15:42:25 +01005414 /* don't start calculating a handshake on a dead connection */
5415 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5416 goto out_error;
5417
5418 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5419 * status from the lower layers, so let's check the FD directly. Ideally
5420 * the xprt layers should provide some status indicating their knowledge
5421 * of shutdowns or error.
5422 */
5423 skerr = 0;
5424 lskerr = sizeof(skerr);
5425 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5426 skerr != 0)
5427 goto out_error;
5428
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005429#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005430 /*
5431 * Check if we have early data. If we do, we have to read them
5432 * before SSL_do_handshake() is called, And there's no way to
5433 * detect early data, except to try to read them
5434 */
5435 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005436 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005437
Olivier Houchard54907bb2019-12-19 15:02:39 +01005438 while (1) {
5439 ret = SSL_read_early_data(ctx->ssl,
5440 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5441 &read_data);
5442 if (ret == SSL_READ_EARLY_DATA_ERROR)
5443 goto check_error;
5444 if (read_data > 0) {
5445 conn->flags |= CO_FL_EARLY_DATA;
5446 b_add(&ctx->early_buf, read_data);
5447 }
5448 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5449 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5450 if (!b_data(&ctx->early_buf))
5451 b_free(&ctx->early_buf);
5452 break;
5453 }
5454 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005455 }
5456#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005457 /* If we use SSL_do_handshake to process a reneg initiated by
5458 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5459 * Usually SSL_write and SSL_read are used and process implicitly
5460 * the reneg handshake.
5461 * Here we use SSL_peek as a workaround for reneg.
5462 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005463 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005464 char c;
5465
Olivier Houchard66ab4982019-02-26 18:37:15 +01005466 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005467 if (ret <= 0) {
5468 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005469 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005470
Emeric Brun674b7432012-11-08 19:21:55 +01005471 if (ret == SSL_ERROR_WANT_WRITE) {
5472 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005473 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005474 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005475 return 0;
5476 }
5477 else if (ret == SSL_ERROR_WANT_READ) {
5478 /* handshake may have been completed but we have
5479 * no more data to read.
5480 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005481 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005482 ret = 1;
5483 goto reneg_ok;
5484 }
5485 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005486 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005487 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005488 return 0;
5489 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005490#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005491 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005492 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005493 return 0;
5494 }
5495#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005496 else if (ret == SSL_ERROR_SYSCALL) {
5497 /* if errno is null, then connection was successfully established */
5498 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5499 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005500 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005501#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5502 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005503 conn->err_code = CO_ER_SSL_HANDSHAKE;
5504#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005505 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005506#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005507 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005508 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005509 empty_handshake = state == TLS_ST_BEFORE;
5510#else
Lukas Tribus49799162019-07-08 14:29:15 +02005511 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5512 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005513#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005514 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005515 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005516 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005517 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5518 else
5519 conn->err_code = CO_ER_SSL_EMPTY;
5520 }
5521 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005522 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005523 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5524 else
5525 conn->err_code = CO_ER_SSL_ABORT;
5526 }
5527 }
5528 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005529 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005530 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005531 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005532 conn->err_code = CO_ER_SSL_HANDSHAKE;
5533 }
Lukas Tribus49799162019-07-08 14:29:15 +02005534#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005535 }
Emeric Brun674b7432012-11-08 19:21:55 +01005536 goto out_error;
5537 }
5538 else {
5539 /* Fail on all other handshake errors */
5540 /* Note: OpenSSL may leave unread bytes in the socket's
5541 * buffer, causing an RST to be emitted upon close() on
5542 * TCP sockets. We first try to drain possibly pending
5543 * data to avoid this as much as possible.
5544 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005545 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005546 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005547 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005548 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005549 goto out_error;
5550 }
5551 }
5552 /* read some data: consider handshake completed */
5553 goto reneg_ok;
5554 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005555 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005556check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005557 if (ret != 1) {
5558 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005559 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005560
5561 if (ret == SSL_ERROR_WANT_WRITE) {
5562 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005563 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005564 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005565 return 0;
5566 }
5567 else if (ret == SSL_ERROR_WANT_READ) {
5568 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005569 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005570 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5571 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005572 return 0;
5573 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005574#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005575 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005576 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005577 return 0;
5578 }
5579#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005580 else if (ret == SSL_ERROR_SYSCALL) {
5581 /* if errno is null, then connection was successfully established */
5582 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5583 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005584 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005585#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5586 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005587 conn->err_code = CO_ER_SSL_HANDSHAKE;
5588#else
5589 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005590#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005591 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005592 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005593 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005594#else
Lukas Tribus49799162019-07-08 14:29:15 +02005595 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5596 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005597#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005598 if (empty_handshake) {
5599 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005600 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005601 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5602 else
5603 conn->err_code = CO_ER_SSL_EMPTY;
5604 }
5605 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005606 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005607 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5608 else
5609 conn->err_code = CO_ER_SSL_ABORT;
5610 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005611 }
5612 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005613 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005614 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5615 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005616 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005617 }
Lukas Tribus49799162019-07-08 14:29:15 +02005618#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005619 }
Willy Tarreau89230192012-09-28 20:22:13 +02005620 goto out_error;
5621 }
Emeric Brun46591952012-05-18 15:47:34 +02005622 else {
5623 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005624 /* Note: OpenSSL may leave unread bytes in the socket's
5625 * buffer, causing an RST to be emitted upon close() on
5626 * TCP sockets. We first try to drain possibly pending
5627 * data to avoid this as much as possible.
5628 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005629 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005630 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005631 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005632 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005633 goto out_error;
5634 }
5635 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005636#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005637 else {
5638 /*
5639 * If the server refused the early data, we have to send a
5640 * 425 to the client, as we no longer have the data to sent
5641 * them again.
5642 */
5643 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005644 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005645 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5646 goto out_error;
5647 }
5648 }
5649 }
5650#endif
5651
Emeric Brun46591952012-05-18 15:47:34 +02005652
Emeric Brun674b7432012-11-08 19:21:55 +01005653reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005654
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005655#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005656 /* ASYNC engine API doesn't support moving read/write
5657 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005658 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005659 */
5660 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005661 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005662#endif
Emeric Brun46591952012-05-18 15:47:34 +02005663 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005664 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005665 if (objt_server(conn->target)) {
5666 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5667 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5668 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005669 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005670 else {
5671 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5672 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5673 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5674 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005675
Willy Tarreau42995282020-11-06 13:19:18 +01005676 if (counters) {
5677 ++counters->sess;
5678 ++counters_px->sess;
5679 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005680 }
Willy Tarreau42995282020-11-06 13:19:18 +01005681 else if (counters) {
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005682 ++counters->reused_sess;
5683 ++counters_px->reused_sess;
Emeric Brun46591952012-05-18 15:47:34 +02005684 }
5685
5686 /* The connection is now established at both layers, it's time to leave */
5687 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5688 return 1;
5689
5690 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005691 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005692 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005693 ERR_clear_error();
5694
Emeric Brun9fa89732012-10-04 17:09:56 +02005695 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005696 if (objt_server(conn->target)) {
5697 struct server *s = __objt_server(conn->target);
5698 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5699 * one cache per thread, it only prevents to flush it from the CLI in
5700 * another thread */
5701
5702 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005703 if (s->ssl_ctx.reused_sess[tid].ptr)
5704 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005705 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005706 }
5707
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005708 if (counters) {
5709 ++counters->failed_handshake;
5710 ++counters_px->failed_handshake;
5711 }
5712
Emeric Brun46591952012-05-18 15:47:34 +02005713 /* Fail on all other handshake errors */
5714 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005715 if (!conn->err_code)
5716 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005717 return 0;
5718}
5719
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005720/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5721 * event subscriber <es> is not allowed to change from a previous call as long
5722 * as at least one event is still subscribed. The <event_type> must only be a
5723 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5724 * unless the transport layer was already released.
5725 */
5726static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005727{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005728 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005729
Olivier Houchard0ff28652019-06-24 18:57:39 +02005730 if (!ctx)
5731 return -1;
5732
Willy Tarreau113d52b2020-01-10 09:20:26 +01005733 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005734 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005735
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005736 ctx->subs = es;
5737 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005738
5739 /* we may have to subscribe to lower layers for new events */
5740 event_type &= ~ctx->wait_event.events;
5741 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5742 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005743 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005744}
5745
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005746/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5747 * The <es> pointer is not allowed to differ from the one passed to the
5748 * subscribe() call. It always returns zero.
5749 */
5750static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005751{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005752 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005753
Willy Tarreau113d52b2020-01-10 09:20:26 +01005754 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005755 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005756
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005757 es->events &= ~event_type;
5758 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005759 ctx->subs = NULL;
5760
5761 /* If we subscribed, and we're not doing the handshake,
5762 * then we subscribed because the upper layer asked for it,
5763 * as the upper layer is no longer interested, we can
5764 * unsubscribe too.
5765 */
5766 event_type &= ctx->wait_event.events;
5767 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5768 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005769
5770 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005771}
5772
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005773/* The connection has been taken over, so destroy the old tasklet and create
5774 * a new one. The original thread ID must be passed into orig_tid
5775 * It should be called with the takeover lock for the old thread held.
5776 * Returns 0 on success, and -1 on failure
5777 */
5778static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
5779{
5780 struct ssl_sock_ctx *ctx = xprt_ctx;
5781 struct tasklet *tl = tasklet_new();
5782
5783 if (!tl)
5784 return -1;
5785
5786 ctx->wait_event.tasklet->context = NULL;
5787 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
5788 ctx->wait_event.tasklet = tl;
5789 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5790 ctx->wait_event.tasklet->context = ctx;
5791 return 0;
5792}
5793
Willy Tarreau41491682021-03-02 17:29:56 +01005794/* notify the next xprt that the connection is about to become idle and that it
5795 * may be stolen at any time after the function returns and that any tasklet in
5796 * the chain must be careful before dereferencing its context.
5797 */
5798static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
5799{
5800 struct ssl_sock_ctx *ctx = xprt_ctx;
5801
5802 if (!ctx || !ctx->wait_event.tasklet)
5803 return;
5804
5805 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5806 if (ctx->xprt)
5807 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
5808}
5809
5810/* notify the next xprt that the connection is not idle anymore and that it may
5811 * not be stolen before the next xprt_set_idle().
5812 */
5813static void ssl_set_used(struct connection *conn, void *xprt_ctx)
5814{
5815 struct ssl_sock_ctx *ctx = xprt_ctx;
5816
5817 if (!ctx || !ctx->wait_event.tasklet)
5818 return;
5819
5820 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5821 if (ctx->xprt)
5822 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
5823}
5824
Olivier Houchard2e055482019-05-27 19:50:12 +02005825/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5826 * Returns 0 on success, and non-zero on failure.
5827 */
5828static 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)
5829{
5830 struct ssl_sock_ctx *ctx = xprt_ctx;
5831
5832 if (oldxprt_ops != NULL)
5833 *oldxprt_ops = ctx->xprt;
5834 if (oldxprt_ctx != NULL)
5835 *oldxprt_ctx = ctx->xprt_ctx;
5836 ctx->xprt = toadd_ops;
5837 ctx->xprt_ctx = toadd_ctx;
5838 return 0;
5839}
5840
Olivier Houchard5149b592019-05-23 17:47:36 +02005841/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5842 * return 0, otherwise just call the remove_xprt method from the underlying
5843 * XPRT.
5844 */
5845static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5846{
5847 struct ssl_sock_ctx *ctx = xprt_ctx;
5848
5849 if (ctx->xprt_ctx == toremove_ctx) {
5850 ctx->xprt_ctx = newctx;
5851 ctx->xprt = newops;
5852 return 0;
5853 }
5854 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
5855}
5856
Willy Tarreau144f84a2021-03-02 16:09:26 +01005857struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02005858{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005859 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005860 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005861 struct connection *conn;
5862 int conn_in_list;
5863 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005864
Willy Tarreau41491682021-03-02 17:29:56 +01005865 if (state & TASK_F_USR1) {
5866 /* the tasklet was idling on an idle connection, it might have
5867 * been stolen, let's be careful!
5868 */
5869 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5870 if (tl->context == NULL) {
5871 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5872 tasklet_free(tl);
5873 return NULL;
5874 }
5875 conn = ctx->conn;
5876 conn_in_list = conn->flags & CO_FL_LIST_MASK;
5877 if (conn_in_list)
5878 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005879 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01005880 } else {
5881 conn = ctx->conn;
5882 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005883 }
Willy Tarreau41491682021-03-02 17:29:56 +01005884
Olivier Houchardea8dd942019-05-20 14:02:16 +02005885 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01005886 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005887 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005888 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
5889 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01005890 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005891 }
5892 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005893 /* If we had an error, or the handshake is done and I/O is available,
5894 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01005895 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02005896 * we can't be sure conn_fd_handler() will be called again.
5897 */
5898 if ((ctx->conn->flags & CO_FL_ERROR) ||
5899 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005900 int woke = 0;
5901
5902 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005903 if (ctx->subs) {
5904 tasklet_wakeup(ctx->subs->tasklet);
5905 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005906 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005907 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005908 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005909
Olivier Houchardea8dd942019-05-20 14:02:16 +02005910 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01005911 * upper layers know. If we have no mux, create it,
5912 * and once we have a mux, call its wake method if we didn't
5913 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02005914 */
5915 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01005916 if (!ctx->conn->mux)
5917 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005918 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005919 ret = ctx->conn->mux->wake(ctx->conn);
5920 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005921 }
5922 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005923#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005924 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005925 else if (b_data(&ctx->early_buf) && ctx->subs &&
5926 ctx->subs->events & SUB_RETRY_RECV) {
5927 tasklet_wakeup(ctx->subs->tasklet);
5928 ctx->subs->events &= ~SUB_RETRY_RECV;
5929 if (!ctx->subs->events)
5930 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005931 }
5932#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005933leave:
5934 if (!ret && conn_in_list) {
5935 struct server *srv = objt_server(conn->target);
5936
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005937 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005938 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005939 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005940 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005941 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005942 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005943 }
Willy Tarreau74163142021-03-13 11:30:19 +01005944 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005945}
5946
Emeric Brun46591952012-05-18 15:47:34 +02005947/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005948 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005949 * buffer wraps, in which case a second call may be performed. The connection's
5950 * flags are updated with whatever special event is detected (error, read0,
5951 * empty). The caller is responsible for taking care of those events and
5952 * avoiding the call if inappropriate. The function does not call the
5953 * connection's polling update function, so the caller is responsible for this.
5954 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005955static 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 +02005956{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005957 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005958 ssize_t ret;
5959 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005960
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005961 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005962 goto out_error;
5963
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005964#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005965 if (b_data(&ctx->early_buf)) {
5966 try = b_contig_space(buf);
5967 if (try > b_data(&ctx->early_buf))
5968 try = b_data(&ctx->early_buf);
5969 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
5970 b_add(buf, try);
5971 b_del(&ctx->early_buf, try);
5972 if (b_data(&ctx->early_buf) == 0)
5973 b_free(&ctx->early_buf);
5974 return try;
5975 }
5976#endif
5977
Willy Tarreau911db9b2020-01-23 16:27:54 +01005978 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005979 /* a handshake was requested */
5980 return 0;
5981
Emeric Brun46591952012-05-18 15:47:34 +02005982 /* read the largest possible block. For this, we perform only one call
5983 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5984 * in which case we accept to do it once again. A new attempt is made on
5985 * EINTR too.
5986 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005987 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005988
Willy Tarreau591d4452018-06-15 17:21:00 +02005989 try = b_contig_space(buf);
5990 if (!try)
5991 break;
5992
Willy Tarreauabf08d92014-01-14 11:31:27 +01005993 if (try > count)
5994 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005995
Olivier Houchard66ab4982019-02-26 18:37:15 +01005996 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005997
Emeric Brune1f38db2012-09-03 20:36:47 +02005998 if (conn->flags & CO_FL_ERROR) {
5999 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006000 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006001 }
Emeric Brun46591952012-05-18 15:47:34 +02006002 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006003 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006004 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006005 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006006 }
Emeric Brun46591952012-05-18 15:47:34 +02006007 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006008 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006009 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006010 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006011 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006012 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006013#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006014 /* Async mode can be re-enabled, because we're leaving data state.*/
6015 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006016 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006017#endif
Emeric Brun46591952012-05-18 15:47:34 +02006018 break;
6019 }
6020 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006021 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006022 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6023 SUB_RETRY_RECV,
6024 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006025 /* handshake is running, and it may need to re-enable read */
6026 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006027#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006028 /* Async mode can be re-enabled, because we're leaving data state.*/
6029 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006030 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006031#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006032 break;
6033 }
Emeric Brun46591952012-05-18 15:47:34 +02006034 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006035 } else if (ret == SSL_ERROR_ZERO_RETURN)
6036 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006037 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6038 * stack before shutting down the connection for
6039 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006040 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6041 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006042 /* otherwise it's a real error */
6043 goto out_error;
6044 }
6045 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006046 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006047 return done;
6048
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006049 clear_ssl_error:
6050 /* Clear openssl global errors stack */
6051 ssl_sock_dump_errors(conn);
6052 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006053 read0:
6054 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006055 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006056
Emeric Brun46591952012-05-18 15:47:34 +02006057 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006058 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006059 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006060 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006061 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006062 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006063}
6064
6065
Willy Tarreau787db9a2018-06-14 18:31:46 +02006066/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6067 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6068 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006069 * Only one call to send() is performed, unless the buffer wraps, in which case
6070 * a second call may be performed. The connection's flags are updated with
6071 * whatever special event is detected (error, empty). The caller is responsible
6072 * for taking care of those events and avoiding the call if inappropriate. The
6073 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006074 * is responsible for this. The buffer's output is not adjusted, it's up to the
6075 * caller to take care of this. It's up to the caller to update the buffer's
6076 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006077 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006078static 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 +02006079{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006080 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006081 ssize_t ret;
6082 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006083
6084 done = 0;
6085
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006086 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006087 goto out_error;
6088
Willy Tarreau911db9b2020-01-23 16:27:54 +01006089 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006090 /* a handshake was requested */
6091 return 0;
6092
6093 /* send the largest possible block. For this we perform only one call
6094 * to send() unless the buffer wraps and we exactly fill the first hunk,
6095 * in which case we accept to do it once again.
6096 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006097 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006098#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006099 size_t written_data;
6100#endif
6101
Willy Tarreau787db9a2018-06-14 18:31:46 +02006102 try = b_contig_data(buf, done);
6103 if (try > count)
6104 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006105
Willy Tarreau7bed9452014-02-02 02:00:24 +01006106 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006107 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006108 global_ssl.max_record && try > global_ssl.max_record) {
6109 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006110 }
6111 else {
6112 /* we need to keep the information about the fact that
6113 * we're not limiting the upcoming send(), because if it
6114 * fails, we'll have to retry with at least as many data.
6115 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006116 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006117 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006118
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006119#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006120 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006121 unsigned int max_early;
6122
Olivier Houchard522eea72017-11-03 16:27:47 +01006123 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006124 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006125 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006126 if (SSL_get0_session(ctx->ssl))
6127 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006128 else
6129 max_early = 0;
6130 }
6131
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006132 if (try + ctx->sent_early_data > max_early) {
6133 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006134 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006135 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006136 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006137 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006138 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006139 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006140 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006141 if (ret == 1) {
6142 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006143 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006144 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006145 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006146 /* Initiate the handshake, now */
6147 tasklet_wakeup(ctx->wait_event.tasklet);
6148 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006149
Olivier Houchardc2aae742017-09-22 18:26:28 +02006150 }
6151
6152 } else
6153#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006154 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006155
Emeric Brune1f38db2012-09-03 20:36:47 +02006156 if (conn->flags & CO_FL_ERROR) {
6157 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006158 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006159 }
Emeric Brun46591952012-05-18 15:47:34 +02006160 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006161 /* A send succeeded, so we can consider ourself connected */
6162 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006163 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006164 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006165 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006166 }
6167 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006168 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006169
Emeric Brun46591952012-05-18 15:47:34 +02006170 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006171 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006172 /* handshake is running, and it may need to re-enable write */
6173 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006174 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006175#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006176 /* Async mode can be re-enabled, because we're leaving data state.*/
6177 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006178 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006179#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006180 break;
6181 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006182
Emeric Brun46591952012-05-18 15:47:34 +02006183 break;
6184 }
6185 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006186 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006187 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006188 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6189 SUB_RETRY_RECV,
6190 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006191#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006192 /* Async mode can be re-enabled, because we're leaving data state.*/
6193 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006194 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006195#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006196 break;
6197 }
Emeric Brun46591952012-05-18 15:47:34 +02006198 goto out_error;
6199 }
6200 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006201 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006202 return done;
6203
6204 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006205 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006206 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006207 ERR_clear_error();
6208
Emeric Brun46591952012-05-18 15:47:34 +02006209 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006210 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006211}
6212
Willy Tarreau832e2422021-05-13 10:11:03 +02006213void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006214
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006215 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006216
Olivier Houchardea8dd942019-05-20 14:02:16 +02006217
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006218 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006219 if (ctx->wait_event.events != 0)
6220 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6221 ctx->wait_event.events,
6222 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006223 if (ctx->subs) {
6224 ctx->subs->events = 0;
6225 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006226 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006227
Olivier Houchard692c1d02019-05-23 18:41:47 +02006228 if (ctx->xprt->close)
6229 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006230#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006231 if (global_ssl.async) {
6232 OSSL_ASYNC_FD all_fd[32], afd;
6233 size_t num_all_fds = 0;
6234 int i;
6235
Olivier Houchard66ab4982019-02-26 18:37:15 +01006236 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006237 if (num_all_fds > 32) {
6238 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6239 return;
6240 }
6241
Olivier Houchard66ab4982019-02-26 18:37:15 +01006242 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006243
6244 /* If an async job is pending, we must try to
6245 to catch the end using polling before calling
6246 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006247 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006248 for (i=0 ; i < num_all_fds ; i++) {
6249 /* switch on an handler designed to
6250 * handle the SSL_free
6251 */
6252 afd = all_fd[i];
6253 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006254 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006255 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006256 /* To ensure that the fd cache won't be used
6257 * and we'll catch a real RD event.
6258 */
6259 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006260 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006261 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006262 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006263 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006264 return;
6265 }
Emeric Brun3854e012017-05-17 20:42:48 +02006266 /* Else we can remove the fds from the fdtab
6267 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006268 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006269 * because the fd is owned by the engine.
6270 * the engine is responsible to close
6271 */
6272 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006273 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006274 }
6275#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006276 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006277 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006278 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006279 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006280 _HA_ATOMIC_DEC(&sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006281 }
Emeric Brun46591952012-05-18 15:47:34 +02006282}
6283
6284/* This function tries to perform a clean shutdown on an SSL connection, and in
6285 * any case, flags the connection as reusable if no handshake was in progress.
6286 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006287static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006288{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006289 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006290
Willy Tarreau911db9b2020-01-23 16:27:54 +01006291 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006292 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006293 if (!clean)
6294 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006295 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006296 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006297 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006298 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006299 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006300 ERR_clear_error();
6301 }
Emeric Brun46591952012-05-18 15:47:34 +02006302}
6303
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006304
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006305/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006306int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6307{
6308 struct ssl_sock_ctx *ctx;
6309 X509 *crt;
6310
6311 if (!ssl_sock_is_ssl(conn))
6312 return 0;
6313
6314 ctx = conn->xprt_ctx;
6315
6316 crt = SSL_get_certificate(ctx->ssl);
6317 if (!crt)
6318 return 0;
6319
6320 return cert_get_pkey_algo(crt, out);
6321}
6322
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006323/* used for ppv2 cert signature (can be used for logging) */
6324const char *ssl_sock_get_cert_sig(struct connection *conn)
6325{
Christopher Faulet82004142019-09-10 10:12:03 +02006326 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006327
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006328 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6329 X509 *crt;
6330
6331 if (!ssl_sock_is_ssl(conn))
6332 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006333 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006334 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006335 if (!crt)
6336 return NULL;
6337 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6338 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6339}
6340
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006341/* used for ppv2 authority */
6342const char *ssl_sock_get_sni(struct connection *conn)
6343{
6344#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006345 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006346
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006347 if (!ssl_sock_is_ssl(conn))
6348 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006349 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006350 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006351#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006352 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006353#endif
6354}
6355
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006356/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006357const char *ssl_sock_get_cipher_name(struct connection *conn)
6358{
Christopher Faulet82004142019-09-10 10:12:03 +02006359 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006360
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006361 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006362 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006363 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006364 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006365}
6366
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006367/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006368const char *ssl_sock_get_proto_version(struct connection *conn)
6369{
Christopher Faulet82004142019-09-10 10:12:03 +02006370 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006371
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006372 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006373 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006374 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006375 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006376}
6377
Olivier Houchardab28a322018-12-21 19:45:40 +01006378void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6379{
6380#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006381 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006382
Olivier Houcharde488ea82019-06-28 14:10:33 +02006383 if (!ssl_sock_is_ssl(conn))
6384 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006385 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006386 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006387#endif
6388}
6389
Willy Tarreau119a4082016-12-22 21:58:38 +01006390/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6391 * to disable SNI.
6392 */
Willy Tarreau63076412015-07-10 11:33:32 +02006393void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6394{
6395#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006396 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006397
Willy Tarreau119a4082016-12-22 21:58:38 +01006398 char *prev_name;
6399
Willy Tarreau63076412015-07-10 11:33:32 +02006400 if (!ssl_sock_is_ssl(conn))
6401 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006402 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02006403
Willy Tarreau119a4082016-12-22 21:58:38 +01006404 /* if the SNI changes, we must destroy the reusable context so that a
6405 * new connection will present a new SNI. As an optimization we could
6406 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6407 * server.
6408 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006409 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006410 if ((!prev_name && hostname) ||
6411 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006412 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006413
Olivier Houchard66ab4982019-02-26 18:37:15 +01006414 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006415#endif
6416}
6417
Emeric Brun0abf8362014-06-24 18:26:41 +02006418/* Extract peer certificate's common name into the chunk dest
6419 * Returns
6420 * the len of the extracted common name
6421 * or 0 if no CN found in DN
6422 * or -1 on error case (i.e. no peer certificate)
6423 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006424int ssl_sock_get_remote_common_name(struct connection *conn,
6425 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006426{
Christopher Faulet82004142019-09-10 10:12:03 +02006427 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006428 X509 *crt = NULL;
6429 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006430 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006431 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006432 .area = (char *)&find_cn,
6433 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006434 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006435 int result = -1;
David Safb76832014-05-08 23:42:08 -04006436
6437 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006438 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006439 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006440
6441 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006442 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006443 if (!crt)
6444 goto out;
6445
6446 name = X509_get_subject_name(crt);
6447 if (!name)
6448 goto out;
David Safb76832014-05-08 23:42:08 -04006449
Emeric Brun0abf8362014-06-24 18:26:41 +02006450 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6451out:
David Safb76832014-05-08 23:42:08 -04006452 if (crt)
6453 X509_free(crt);
6454
6455 return result;
6456}
6457
Dave McCowan328fb582014-07-30 10:39:13 -04006458/* returns 1 if client passed a certificate for this session, 0 if not */
6459int ssl_sock_get_cert_used_sess(struct connection *conn)
6460{
Christopher Faulet82004142019-09-10 10:12:03 +02006461 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006462 X509 *crt = NULL;
6463
6464 if (!ssl_sock_is_ssl(conn))
6465 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006466 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006467
6468 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006469 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006470 if (!crt)
6471 return 0;
6472
6473 X509_free(crt);
6474 return 1;
6475}
6476
6477/* returns 1 if client passed a certificate for this connection, 0 if not */
6478int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006479{
Christopher Faulet82004142019-09-10 10:12:03 +02006480 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006481
David Safb76832014-05-08 23:42:08 -04006482 if (!ssl_sock_is_ssl(conn))
6483 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006484 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006485 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006486}
6487
6488/* returns result from SSL verify */
6489unsigned int ssl_sock_get_verify_result(struct connection *conn)
6490{
Christopher Faulet82004142019-09-10 10:12:03 +02006491 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006492
David Safb76832014-05-08 23:42:08 -04006493 if (!ssl_sock_is_ssl(conn))
6494 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006495 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006496 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006497}
6498
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006499/* Returns the application layer protocol name in <str> and <len> when known.
6500 * Zero is returned if the protocol name was not found, otherwise non-zero is
6501 * returned. The string is allocated in the SSL context and doesn't have to be
6502 * freed by the caller. NPN is also checked if available since older versions
6503 * of openssl (1.0.1) which are more common in field only support this one.
6504 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006505static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006506{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006507#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6508 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006509 struct ssl_sock_ctx *ctx = xprt_ctx;
6510 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006511 return 0;
6512
6513 *str = NULL;
6514
6515#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006516 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006517 if (*str)
6518 return 1;
6519#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006520#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006521 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006522 if (*str)
6523 return 1;
6524#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006525#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006526 return 0;
6527}
6528
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006529/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006530int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006531{
6532 X509 *ca;
6533 X509_NAME *name = NULL;
6534 ASN1_OCTET_STRING *skid = NULL;
6535 STACK_OF(X509) *chain = NULL;
6536 struct issuer_chain *issuer;
6537 struct eb64_node *node;
6538 char *path;
6539 u64 key;
6540 int ret = 0;
6541
6542 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6543 if (chain == NULL) {
6544 chain = sk_X509_new_null();
6545 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6546 name = X509_get_subject_name(ca);
6547 }
6548 if (!sk_X509_push(chain, ca)) {
6549 X509_free(ca);
6550 goto end;
6551 }
6552 }
6553 if (!chain) {
6554 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6555 goto end;
6556 }
6557 if (!skid) {
6558 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6559 goto end;
6560 }
6561 if (!name) {
6562 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6563 goto end;
6564 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006565 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006566 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006567 issuer = container_of(node, typeof(*issuer), node);
6568 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6569 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6570 goto end;
6571 }
6572 }
6573 issuer = calloc(1, sizeof *issuer);
6574 path = strdup(fp);
6575 if (!issuer || !path) {
6576 free(issuer);
6577 free(path);
6578 goto end;
6579 }
6580 issuer->node.key = key;
6581 issuer->path = path;
6582 issuer->chain = chain;
6583 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006584 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006585 ret = 1;
6586 end:
6587 if (skid)
6588 ASN1_OCTET_STRING_free(skid);
6589 if (chain)
6590 sk_X509_pop_free(chain, X509_free);
6591 return ret;
6592}
6593
William Lallemandda8584c2020-05-14 10:14:37 +02006594 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006595{
6596 AUTHORITY_KEYID *akid;
6597 struct issuer_chain *issuer = NULL;
6598
6599 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006600 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006601 struct eb64_node *node;
6602 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006603 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006604 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6605 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6606 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6607 issuer = ti;
6608 break;
6609 }
6610 }
6611 AUTHORITY_KEYID_free(akid);
6612 }
6613 return issuer;
6614}
6615
William Lallemanddad31052020-05-14 17:47:32 +02006616void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006617{
6618 struct eb64_node *node, *back;
6619 struct issuer_chain *issuer;
6620
William Lallemande0f3fd52020-02-25 14:53:06 +01006621 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006622 while (node) {
6623 issuer = container_of(node, typeof(*issuer), node);
6624 back = eb64_next(node);
6625 eb64_delete(node);
6626 free(issuer->path);
6627 sk_X509_pop_free(issuer->chain, X509_free);
6628 free(issuer);
6629 node = back;
6630 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006631}
6632
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006633#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006634static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006635 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006636
Emeric Brun3854e012017-05-17 20:42:48 +02006637 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006638 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006639 err_code = ERR_ABORT;
6640 }
6641 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006642}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006643#endif
6644
Willy Tarreaude5675a2021-01-20 14:41:29 +01006645/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006646 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006647 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006648static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006649{
6650 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006651 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006652
6653 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006654 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006655
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006656 if (sctx->conn != conn) {
6657 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6658 ret = 1;
6659 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006660 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6661
6662 if (sctx->xprt) {
6663 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6664 if (sctx->xprt_ctx)
6665 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6666 }
6667
6668 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006669
6670 /* as soon as a shutdown is reported the lower layer unregisters its
6671 * subscriber, so the situations below are transient and rare enough to
6672 * be reported as suspicious. In any case they shouldn't last.
6673 */
6674 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6675 ret = 1;
6676 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6677 ret = 1;
6678
Willy Tarreaude5675a2021-01-20 14:41:29 +01006679 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6680 if (sctx->subs) {
6681 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006682 if (sctx->subs->tasklet->calls >= 1000000)
6683 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006684 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6685 sctx->subs->tasklet->calls,
6686 sctx->subs->tasklet->context);
6687 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6688 chunk_appendf(&trash, ")");
6689 }
6690 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6691 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006692 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006693}
6694
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006695#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02006696/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006697 * each reference. The variable <ref> must point to the current node's list
6698 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02006699 */
William Lallemand32af2032016-10-29 18:09:35 +02006700static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006701struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02006702{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006703 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006704 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02006705
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006706 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006707 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006708 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02006709
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006710 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02006711}
6712
6713static inline
6714struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6715{
6716 int id;
6717 char *error;
6718
6719 /* If the reference starts by a '#', this is numeric id. */
6720 if (reference[0] == '#') {
6721 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6722 id = strtol(reference + 1, &error, 10);
6723 if (*error != '\0')
6724 return NULL;
6725
6726 /* Perform the unique id lookup. */
6727 return tlskeys_ref_lookupid(id);
6728 }
6729
6730 /* Perform the string lookup. */
6731 return tlskeys_ref_lookup(reference);
6732}
6733#endif
6734
6735
6736#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6737
6738static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6739
6740static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6741 return cli_io_handler_tlskeys_files(appctx);
6742}
6743
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006744/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6745 * (next index to be dumped), and cli.p0 (next key reference).
6746 */
William Lallemand32af2032016-10-29 18:09:35 +02006747static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6748
6749 struct stream_interface *si = appctx->owner;
6750
6751 switch (appctx->st2) {
6752 case STAT_ST_INIT:
6753 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006754 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006755 * later and restart at the state "STAT_ST_INIT".
6756 */
6757 chunk_reset(&trash);
6758
6759 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6760 chunk_appendf(&trash, "# id secret\n");
6761 else
6762 chunk_appendf(&trash, "# id (file)\n");
6763
Willy Tarreau06d80a92017-10-19 14:32:15 +02006764 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006765 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006766 return 0;
6767 }
6768
William Lallemand32af2032016-10-29 18:09:35 +02006769 /* Now, we start the browsing of the references lists.
6770 * Note that the following call to LIST_ELEM return bad pointer. The only
6771 * available field of this pointer is <list>. It is used with the function
6772 * tlskeys_list_get_next() for retruning the first available entry
6773 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006774 if (appctx->ctx.cli.p0 == NULL)
6775 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006776
6777 appctx->st2 = STAT_ST_LIST;
6778 /* fall through */
6779
6780 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006781 while (appctx->ctx.cli.p0) {
6782 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006783
6784 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006785 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006786 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006787
6788 if (appctx->ctx.cli.i1 == 0)
6789 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6790
William Lallemand32af2032016-10-29 18:09:35 +02006791 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006792 int head;
6793
6794 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6795 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006796 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006797 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006798
6799 chunk_reset(t2);
6800 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006801 if (ref->key_size_bits == 128) {
6802 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6803 sizeof(struct tls_sess_key_128),
6804 t2->area, t2->size);
6805 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6806 t2->area);
6807 }
6808 else if (ref->key_size_bits == 256) {
6809 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6810 sizeof(struct tls_sess_key_256),
6811 t2->area, t2->size);
6812 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6813 t2->area);
6814 }
6815 else {
6816 /* This case should never happen */
6817 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6818 }
William Lallemand32af2032016-10-29 18:09:35 +02006819
Willy Tarreau06d80a92017-10-19 14:32:15 +02006820 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006821 /* let's try again later from this stream. We add ourselves into
6822 * this stream's users so that it can remove us upon termination.
6823 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006824 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006825 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006826 return 0;
6827 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006828 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006829 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006830 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006831 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006832 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006833 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006834 /* let's try again later from this stream. We add ourselves into
6835 * this stream's users so that it can remove us upon termination.
6836 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006837 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006838 return 0;
6839 }
6840
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006841 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006842 break;
6843
6844 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006845 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006846 }
6847
6848 appctx->st2 = STAT_ST_FIN;
6849 /* fall through */
6850
6851 default:
6852 appctx->st2 = STAT_ST_FIN;
6853 return 1;
6854 }
6855 return 0;
6856}
6857
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006858/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006859static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006860{
William Lallemand32af2032016-10-29 18:09:35 +02006861 /* no parameter, shows only file list */
6862 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006863 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006864 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006865 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006866 }
6867
6868 if (args[2][0] == '*') {
6869 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006870 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006871 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006872 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006873 if (!appctx->ctx.cli.p0)
6874 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006875 }
William Lallemand32af2032016-10-29 18:09:35 +02006876 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006877 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006878}
6879
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006880static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006881{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006882 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006883 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006884
William Lallemand32af2032016-10-29 18:09:35 +02006885 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006886 if (!*args[3] || !*args[4])
6887 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 +02006888
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006889 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006890 if (!ref)
6891 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006892
Willy Tarreau1c913e42018-08-22 05:26:57 +02006893 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006894 if (ret < 0)
6895 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01006896
Willy Tarreau1c913e42018-08-22 05:26:57 +02006897 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02006898 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
6899 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006900
Willy Tarreau9d008692019-08-09 11:21:01 +02006901 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006902}
William Lallemandd4f946c2019-12-05 10:26:40 +01006903#endif
William Lallemand419e6342020-04-08 12:05:39 +02006904
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006905static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006906{
6907#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
6908 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006909 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006910
6911 if (!payload)
6912 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02006913
6914 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006915 if (!*payload)
6916 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006917
6918 /* remove \r and \n from the payload */
6919 for (i = 0, j = 0; payload[i]; i++) {
6920 if (payload[i] == '\r' || payload[i] == '\n')
6921 continue;
6922 payload[j++] = payload[i];
6923 }
6924 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006925
Willy Tarreau1c913e42018-08-22 05:26:57 +02006926 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006927 if (ret < 0)
6928 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006929
Willy Tarreau1c913e42018-08-22 05:26:57 +02006930 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02006931 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02006932 if (err)
6933 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
6934 else
6935 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006936 }
Willy Tarreau9d008692019-08-09 11:21:01 +02006937
6938 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006939#else
Willy Tarreau9d008692019-08-09 11:21:01 +02006940 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 +02006941#endif
6942
Elliot Otchet71f82972020-01-15 08:12:14 -05006943}
6944
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02006945
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02006946#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 +02006947static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
6948#endif
6949
6950/* parsing function for 'show ssl ocsp-response [id]' */
6951static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
6952{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02006953#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 +02006954 if (*args[3]) {
6955 struct certificate_ocsp *ocsp = NULL;
6956 char *key = NULL;
6957 int key_length = 0;
6958
6959 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
6960 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
6961 }
6962
6963 if (parse_binary(args[3], &key, &key_length, NULL)) {
6964
6965 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
6966 memcpy(full_key, key, key_length);
6967
6968 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
6969 }
6970 if (key)
6971 ha_free(&key);
6972
6973 if (!ocsp) {
6974 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
6975 }
6976
6977 appctx->ctx.cli.p0 = ocsp;
6978 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
6979 }
6980
6981 return 0;
6982
6983#else
6984 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
6985#endif
6986}
6987
6988
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02006989#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 +02006990/*
6991 * This function dumps the details of an OCSP_CERTID. It is based on
6992 * ocsp_certid_print in OpenSSL.
6993 */
6994static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
6995{
6996 ASN1_OCTET_STRING *piNameHash = NULL;
6997 ASN1_OCTET_STRING *piKeyHash = NULL;
6998 ASN1_INTEGER *pSerial = NULL;
6999
7000 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7001
7002 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7003 indent += 2;
7004 BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, "");
7005 i2a_ASN1_STRING(bp, piNameHash, 0);
7006 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7007 i2a_ASN1_STRING(bp, piKeyHash, 0);
7008 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7009 i2a_ASN1_INTEGER(bp, pSerial);
7010 BIO_printf(bp, "\n");
7011 }
7012 return 1;
7013}
7014#endif
7015
7016/*
7017 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7018 * is managed in cli_io_handler_show_ocspresponse_detail.
7019 */
7020static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7021{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007022#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 +02007023 struct buffer *trash = alloc_trash_chunk();
7024 struct buffer *tmp = NULL;
7025 struct ebmb_node *node;
7026 struct stream_interface *si = appctx->owner;
7027 struct certificate_ocsp *ocsp = NULL;
7028 BIO *bio = NULL;
7029 int write = -1;
7030
7031 if (trash == NULL)
7032 return 1;
7033
7034 tmp = alloc_trash_chunk();
7035 if (!tmp)
7036 goto end;
7037
7038 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7039 goto end;
7040
7041 if (!appctx->ctx.cli.p0) {
7042 chunk_appendf(trash, "# Certificate IDs\n");
7043 node = ebmb_first(&cert_ocsp_tree);
7044 } else {
7045 node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key;
7046 }
7047
7048 while (node) {
7049 OCSP_CERTID *certid = NULL;
7050 const unsigned char *p = NULL;
7051 int i;
7052
7053 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7054
7055 /* Dump the key in hexadecimal */
7056 chunk_appendf(trash, "Certificate ID key : ");
7057 for (i = 0; i < ocsp->key_length; ++i) {
7058 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7059 }
7060 chunk_appendf(trash, "\n");
7061
7062 p = ocsp->key_data;
7063
7064 /* Decode the certificate ID (serialized into the key). */
7065 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
7066
7067 /* Dump the CERTID info */
7068 ocsp_certid_print(bio, certid, 1);
7069 write = BIO_read(bio, tmp->area, tmp->size-1);
7070 tmp->area[write] = '\0';
7071
7072 chunk_appendf(trash, "%s\n", tmp->area);
7073
7074 node = ebmb_next(node);
7075 if (ci_putchk(si_ic(si), trash) == -1) {
7076 si_rx_room_blk(si);
7077 goto yield;
7078 }
7079 }
7080
7081end:
7082 appctx->ctx.cli.p0 = NULL;
7083 if (trash)
7084 free_trash_chunk(trash);
7085 if (tmp)
7086 free_trash_chunk(tmp);
7087 if (bio)
7088 BIO_free(bio);
7089 return 1;
7090
7091yield:
7092
7093 if (trash)
7094 free_trash_chunk(trash);
7095 if (tmp)
7096 free_trash_chunk(tmp);
7097 if (bio)
7098 BIO_free(bio);
7099 appctx->ctx.cli.p0 = ocsp;
7100 return 0;
7101#else
7102 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7103#endif
7104}
7105
7106
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007107#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 +02007108/*
7109 * Dump the details about an OCSP response in DER format stored in
7110 * <ocsp_response> into buffer <out>.
7111 * Returns 0 in case of success.
7112 */
7113int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7114{
7115 BIO *bio = NULL;
7116 int write = -1;
7117 OCSP_RESPONSE *resp;
7118 const unsigned char *p;
7119
7120 if (!ocsp_response)
7121 return -1;
7122
7123 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7124 return -1;
7125
7126 p = (const unsigned char*)ocsp_response->area;
7127
7128 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7129 if (!resp) {
7130 chunk_appendf(out, "Unable to parse OCSP response");
7131 return -1;
7132 }
7133
7134 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
7135 write = BIO_read(bio, out->area, out->size - 1);
7136 out->area[write] = '\0';
7137 out->data = write;
7138 }
7139
7140 if (bio)
7141 BIO_free(bio);
7142
7143 return 0;
7144}
7145
7146/*
7147 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7148 * Returns 0 in case of success.
7149 */
7150int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7151{
7152 struct certificate_ocsp *ocsp;
7153
7154 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7155 if (!ocsp)
7156 return -1;
7157
7158 return ssl_ocsp_response_print(&ocsp->response, out);
7159}
7160
7161
7162/* IO handler of details "show ssl ocsp-response <id>". */
7163static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7164{
7165 struct buffer *trash = alloc_trash_chunk();
7166 struct certificate_ocsp *ocsp = NULL;
7167 struct stream_interface *si = appctx->owner;
7168
7169 ocsp = appctx->ctx.cli.p0;
7170
7171 if (trash == NULL)
7172 return 1;
7173
7174 ssl_ocsp_response_print(&ocsp->response, trash);
7175
7176 if (ci_putchk(si_ic(si), trash) == -1) {
7177 si_rx_room_blk(si);
7178 goto yield;
7179 }
7180 appctx->ctx.cli.p0 = NULL;
7181 if (trash)
7182 free_trash_chunk(trash);
7183 return 1;
7184
7185yield:
7186 if (trash)
7187 free_trash_chunk(trash);
7188
7189 return 0;
7190}
7191#endif
7192
William Lallemand32af2032016-10-29 18:09:35 +02007193/* register cli keywords */
7194static struct cli_kw_list cli_kws = {{ },{
7195#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007196 { { "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 },
7197 { { "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 +02007198#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007199 { { "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 +02007200
7201 { { "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 +02007202 { { NULL }, NULL, NULL, NULL }
7203}};
7204
Willy Tarreau0108d902018-11-25 19:14:37 +01007205INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007206
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007207/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007208struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007209 .snd_buf = ssl_sock_from_buf,
7210 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007211 .subscribe = ssl_subscribe,
7212 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007213 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007214 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007215 .rcv_pipe = NULL,
7216 .snd_pipe = NULL,
7217 .shutr = NULL,
7218 .shutw = ssl_sock_shutw,
7219 .close = ssl_sock_close,
7220 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007221 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007222 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007223 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007224 .prepare_srv = ssl_sock_prepare_srv_ctx,
7225 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007226 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007227 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007228 .set_idle = ssl_set_idle,
7229 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007230 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007231 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007232};
7233
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007234enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7235 struct session *sess, struct stream *s, int flags)
7236{
7237 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007238 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007239
7240 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007241 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007242
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007243 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007244 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007245 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007246 s->req.flags |= CF_READ_NULL;
7247 return ACT_RET_YIELD;
7248 }
7249 }
7250 return (ACT_RET_CONT);
7251}
7252
7253static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7254{
7255 rule->action_ptr = ssl_action_wait_for_hs;
7256
7257 return ACT_RET_PRS_OK;
7258}
7259
7260static struct action_kw_list http_req_actions = {ILH, {
7261 { "wait-for-handshake", ssl_parse_wait_for_hs },
7262 { /* END */ }
7263}};
7264
Willy Tarreau0108d902018-11-25 19:14:37 +01007265INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7266
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007267#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007268
7269static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7270{
7271 if (ptr) {
7272 chunk_destroy(ptr);
7273 free(ptr);
7274 }
7275}
7276
7277#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007278
7279#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7280static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7281{
7282 struct ocsp_cbk_arg *ocsp_arg;
7283
7284 if (ptr) {
7285 ocsp_arg = ptr;
7286
7287 if (ocsp_arg->is_single) {
7288 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7289 ocsp_arg->s_ocsp = NULL;
7290 } else {
7291 int i;
7292
7293 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7294 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7295 ocsp_arg->m_ocsp[i] = NULL;
7296 }
7297 }
7298 free(ocsp_arg);
7299 }
7300}
7301#endif
7302
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007303static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7304{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007305 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007306}
William Lallemand7d42ef52020-07-06 11:41:30 +02007307
William Lallemand722180a2021-06-09 16:46:12 +02007308#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007309static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7310{
7311 struct ssl_keylog *keylog;
7312
7313 if (!ptr)
7314 return;
7315
7316 keylog = ptr;
7317
7318 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7319 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7320 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7321 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7322 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7323 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7324 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7325 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7326
7327 pool_free(pool_head_ssl_keylog, ptr);
7328}
7329#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007330
Emeric Brun46591952012-05-18 15:47:34 +02007331__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007332static void __ssl_sock_init(void)
7333{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007334#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007335 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007336 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007337#endif
Emeric Brun46591952012-05-18 15:47:34 +02007338
Willy Tarreauef934602016-12-22 23:12:01 +01007339 if (global_ssl.listen_default_ciphers)
7340 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7341 if (global_ssl.connect_default_ciphers)
7342 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007343#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007344 if (global_ssl.listen_default_ciphersuites)
7345 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7346 if (global_ssl.connect_default_ciphersuites)
7347 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7348#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007349
Willy Tarreau13e14102016-12-22 20:25:26 +01007350 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007351#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007352 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007353#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007354#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007355 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007356 n = sk_SSL_COMP_num(cm);
7357 while (n--) {
7358 (void) sk_SSL_COMP_pop(cm);
7359 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007360#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007361
Willy Tarreau5db847a2019-05-09 14:13:35 +02007362#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007363 ssl_locking_init();
7364#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007365#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007366 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7367#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007368
7369#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7370 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7371#endif
7372
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007373 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007374 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
William Lallemand722180a2021-06-09 16:46:12 +02007375#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007376 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7377#endif
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007378#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007379 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007380 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007381#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007382#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7383 hap_register_post_check(tlskeys_finalize_config);
7384#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007385
7386 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7387 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7388
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007389 hap_register_post_deinit(ssl_free_global_issuers);
7390
Willy Tarreau80713382018-11-26 10:19:54 +01007391#ifndef OPENSSL_NO_DH
7392 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7393 hap_register_post_deinit(ssl_free_dh);
7394#endif
7395#ifndef OPENSSL_NO_ENGINE
7396 hap_register_post_deinit(ssl_free_engines);
7397#endif
7398 /* Load SSL string for the verbose & debug mode. */
7399 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007400 ha_meth = BIO_meth_new(0x666, "ha methods");
7401 BIO_meth_set_write(ha_meth, ha_ssl_write);
7402 BIO_meth_set_read(ha_meth, ha_ssl_read);
7403 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7404 BIO_meth_set_create(ha_meth, ha_ssl_new);
7405 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7406 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7407 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007408
7409 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007410
Dragan Dosen9ac98092020-05-11 15:51:45 +02007411 /* Try to register dedicated SSL/TLS protocol message callbacks for
7412 * heartbleed attack (CVE-2014-0160) and clienthello.
7413 */
7414 hap_register_post_check(ssl_sock_register_msg_callbacks);
7415
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007416 /* Try to free all callbacks that were registered by using
7417 * ssl_sock_register_msg_callback().
7418 */
7419 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007420}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007421
Willy Tarreau80713382018-11-26 10:19:54 +01007422/* Compute and register the version string */
7423static void ssl_register_build_options()
7424{
7425 char *ptr = NULL;
7426 int i;
7427
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007428 memprintf(&ptr, "Built with OpenSSL version : "
7429#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007430 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007431#else /* OPENSSL_IS_BORINGSSL */
7432 OPENSSL_VERSION_TEXT
7433 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007434 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007435 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007436#endif
7437 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007438#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007439 "no (library version too old)"
7440#elif defined(OPENSSL_NO_TLSEXT)
7441 "no (disabled via OPENSSL_NO_TLSEXT)"
7442#else
7443 "yes"
7444#endif
7445 "", ptr);
7446
7447 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7448#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7449 "yes"
7450#else
7451#ifdef OPENSSL_NO_TLSEXT
7452 "no (because of OPENSSL_NO_TLSEXT)"
7453#else
7454 "no (version might be too old, 0.9.8f min needed)"
7455#endif
7456#endif
7457 "", ptr);
7458
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007459 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7460 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7461 if (methodVersions[i].option)
7462 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007463
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007464 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007465}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007466
Willy Tarreau80713382018-11-26 10:19:54 +01007467INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007468
Emeric Brun46591952012-05-18 15:47:34 +02007469
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007470#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007471void ssl_free_engines(void) {
7472 struct ssl_engine_list *wl, *wlb;
7473 /* free up engine list */
7474 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7475 ENGINE_finish(wl->e);
7476 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007477 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007478 free(wl);
7479 }
7480}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007481#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007482
Remi Gacogned3a23c32015-05-28 16:39:47 +02007483#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007484void ssl_free_dh(void) {
7485 if (local_dh_1024) {
7486 DH_free(local_dh_1024);
7487 local_dh_1024 = NULL;
7488 }
7489 if (local_dh_2048) {
7490 DH_free(local_dh_2048);
7491 local_dh_2048 = NULL;
7492 }
7493 if (local_dh_4096) {
7494 DH_free(local_dh_4096);
7495 local_dh_4096 = NULL;
7496 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007497 if (global_dh) {
7498 DH_free(global_dh);
7499 global_dh = NULL;
7500 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007501}
7502#endif
7503
7504__attribute__((destructor))
7505static void __ssl_sock_deinit(void)
7506{
7507#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007508 if (ssl_ctx_lru_tree) {
7509 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007510 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007511 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007512#endif
7513
Willy Tarreau5db847a2019-05-09 14:13:35 +02007514#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007515 ERR_remove_state(0);
7516 ERR_free_strings();
7517
7518 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007519#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007520
Willy Tarreau5db847a2019-05-09 14:13:35 +02007521#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007522 CRYPTO_cleanup_all_ex_data();
7523#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007524 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007525}
7526
William Dauchyf6370442020-11-14 19:25:33 +01007527/* Activate ssl on server <s>.
7528 * do nothing if there is no change to apply
7529 *
7530 * Must be called with the server lock held.
7531 */
7532void ssl_sock_set_srv(struct server *s, signed char use_ssl)
7533{
7534 if (s->use_ssl == use_ssl)
7535 return;
7536
7537 s->use_ssl = use_ssl;
7538 if (s->use_ssl == 1)
7539 s->xprt = &ssl_sock;
7540 else
7541 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
7542}
7543
Emeric Brun46591952012-05-18 15:47:34 +02007544/*
7545 * Local variables:
7546 * c-indent-level: 8
7547 * c-basic-offset: 8
7548 * End:
7549 */