blob: 8f9f535401327ce165748da6ce99cccc2008f799 [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,
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500130#ifdef HAVE_OPENSSL_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{
322 X509_STORE *store;
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
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500440#ifdef HAVE_OPENSSL_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
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500516#ifdef HAVE_OPENSSL_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 }
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500561#ifdef HAVE_OPENSSL_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));
639 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200640 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100641 nb_engines++;
642 if (global_ssl.async)
643 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000644 return 0;
645
646fail_set_method:
647 /* release the functional reference from ENGINE_init() */
648 ENGINE_finish(engine);
649
650fail_init:
651 /* release the structural reference from ENGINE_by_id() */
652 ENGINE_free(engine);
653
654fail_get:
655 return err_code;
656}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200657#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000658
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500659#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200660/*
661 * openssl async fd handler
662 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200663void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000664{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200665 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000666
Emeric Brun3854e012017-05-17 20:42:48 +0200667 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000668 * to poll this fd until it is requested
669 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000670 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000671 fd_cant_recv(fd);
672
673 /* crypto engine is available, let's notify the associated
674 * connection that it can pursue its processing.
675 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200676 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000677}
678
Emeric Brun3854e012017-05-17 20:42:48 +0200679/*
680 * openssl async delayed SSL_free handler
681 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200682void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000683{
684 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200685 OSSL_ASYNC_FD all_fd[32];
686 size_t num_all_fds = 0;
687 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000688
Emeric Brun3854e012017-05-17 20:42:48 +0200689 /* We suppose that the async job for a same SSL *
690 * are serialized. So if we are awake it is
691 * because the running job has just finished
692 * and we can remove all async fds safely
693 */
694 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
695 if (num_all_fds > 32) {
696 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
697 return;
698 }
699
700 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
701 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200702 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200703
704 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000705 SSL_free(ssl);
Willy Tarreau4781b152021-04-06 13:53:36 +0200706 _HA_ATOMIC_DEC(&sslconns);
707 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000708}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000709/*
Emeric Brun3854e012017-05-17 20:42:48 +0200710 * function used to manage a returned SSL_ERROR_WANT_ASYNC
711 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000712 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200713static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000714{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100715 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200716 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200717 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000718 size_t num_add_fds = 0;
719 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200720 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000721
722 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
723 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200724 if (num_add_fds > 32 || num_del_fds > 32) {
725 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 +0000726 return;
727 }
728
Emeric Brun3854e012017-05-17 20:42:48 +0200729 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000730
Emeric Brun3854e012017-05-17 20:42:48 +0200731 /* We remove unused fds from the fdtab */
732 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200733 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000734
Emeric Brun3854e012017-05-17 20:42:48 +0200735 /* We add new fds to the fdtab */
736 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200737 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000738 }
739
Emeric Brun3854e012017-05-17 20:42:48 +0200740 num_add_fds = 0;
741 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
742 if (num_add_fds > 32) {
743 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
744 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000745 }
Emeric Brun3854e012017-05-17 20:42:48 +0200746
747 /* We activate the polling for all known async fds */
748 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000749 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200750 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000751 /* To ensure that the fd cache won't be used
752 * We'll prefer to catch a real RD event
753 * because handling an EAGAIN on this fd will
754 * result in a context switch and also
755 * some engines uses a fd in blocking mode.
756 */
757 fd_cant_recv(add_fd[i]);
758 }
Emeric Brun3854e012017-05-17 20:42:48 +0200759
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000760}
761#endif
762
William Lallemand104a7a62019-10-14 14:14:59 +0200763#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200764/*
765 * This function returns the number of seconds elapsed
766 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
767 * date presented un ASN1_GENERALIZEDTIME.
768 *
769 * In parsing error case, it returns -1.
770 */
771static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
772{
773 long epoch;
774 char *p, *end;
775 const unsigned short month_offset[12] = {
776 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
777 };
778 int year, month;
779
780 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
781
782 p = (char *)d->data;
783 end = p + d->length;
784
785 if (end - p < 4) return -1;
786 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
787 p += 4;
788 if (end - p < 2) return -1;
789 month = 10 * (p[0] - '0') + p[1] - '0';
790 if (month < 1 || month > 12) return -1;
791 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
792 We consider leap years and the current month (<marsh or not) */
793 epoch = ( ((year - 1970) * 365)
794 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
795 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
796 + month_offset[month-1]
797 ) * 24 * 60 * 60;
798 p += 2;
799 if (end - p < 2) return -1;
800 /* Add the number of seconds of completed days of current month */
801 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
802 p += 2;
803 if (end - p < 2) return -1;
804 /* Add the completed hours of the current day */
805 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
806 p += 2;
807 if (end - p < 2) return -1;
808 /* Add the completed minutes of the current hour */
809 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
810 p += 2;
811 if (p == end) return -1;
812 /* Test if there is available seconds */
813 if (p[0] < '0' || p[0] > '9')
814 goto nosec;
815 if (end - p < 2) return -1;
816 /* Add the seconds of the current minute */
817 epoch += 10 * (p[0] - '0') + p[1] - '0';
818 p += 2;
819 if (p == end) return -1;
820 /* Ignore seconds float part if present */
821 if (p[0] == '.') {
822 do {
823 if (++p == end) return -1;
824 } while (p[0] >= '0' && p[0] <= '9');
825 }
826
827nosec:
828 if (p[0] == 'Z') {
829 if (end - p != 1) return -1;
830 return epoch;
831 }
832 else if (p[0] == '+') {
833 if (end - p != 5) return -1;
834 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700835 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 +0200836 }
837 else if (p[0] == '-') {
838 if (end - p != 5) return -1;
839 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700840 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 +0200841 }
842
843 return -1;
844}
845
William Lallemand104a7a62019-10-14 14:14:59 +0200846/*
847 * struct alignment works here such that the key.key is the same as key_data
848 * Do not change the placement of key_data
849 */
850struct certificate_ocsp {
851 struct ebmb_node key;
852 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
853 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200854 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200855 long expire;
856};
857
858struct ocsp_cbk_arg {
859 int is_single;
860 int single_kt;
861 union {
862 struct certificate_ocsp *s_ocsp;
863 /*
864 * m_ocsp will have multiple entries dependent on key type
865 * Entry 0 - DSA
866 * Entry 1 - ECDSA
867 * Entry 2 - RSA
868 */
869 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
870 };
871};
872
Emeric Brun1d3865b2014-06-20 15:37:32 +0200873static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200874
875/* This function starts to check if the OCSP response (in DER format) contained
876 * in chunk 'ocsp_response' is valid (else exits on error).
877 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
878 * contained in the OCSP Response and exits on error if no match.
879 * If it's a valid OCSP Response:
880 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
881 * pointed by 'ocsp'.
882 * If 'ocsp' is NULL, the function looks up into the OCSP response's
883 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
884 * from the response) and exits on error if not found. Finally, If an OCSP response is
885 * already present in the container, it will be overwritten.
886 *
887 * Note: OCSP response containing more than one OCSP Single response is not
888 * considered valid.
889 *
890 * Returns 0 on success, 1 in error case.
891 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200892static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
893 struct certificate_ocsp *ocsp,
894 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200895{
896 OCSP_RESPONSE *resp;
897 OCSP_BASICRESP *bs = NULL;
898 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200899 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200900 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200901 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200902 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200903 int reason;
904 int ret = 1;
905
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200906 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
907 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200908 if (!resp) {
909 memprintf(err, "Unable to parse OCSP response");
910 goto out;
911 }
912
913 rc = OCSP_response_status(resp);
914 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
915 memprintf(err, "OCSP response status not successful");
916 goto out;
917 }
918
919 bs = OCSP_response_get1_basic(resp);
920 if (!bs) {
921 memprintf(err, "Failed to get basic response from OCSP Response");
922 goto out;
923 }
924
925 count_sr = OCSP_resp_count(bs);
926 if (count_sr > 1) {
927 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
928 goto out;
929 }
930
931 sr = OCSP_resp_get0(bs, 0);
932 if (!sr) {
933 memprintf(err, "Failed to get OCSP single response");
934 goto out;
935 }
936
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200937 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
938
Emeric Brun4147b2e2014-06-16 18:36:30 +0200939 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200940 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200941 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200942 goto out;
943 }
944
Emeric Brun13a6b482014-06-20 15:44:34 +0200945 if (!nextupd) {
946 memprintf(err, "OCSP single response: missing nextupdate");
947 goto out;
948 }
949
Emeric Brunc8b27b62014-06-19 14:16:17 +0200950 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200951 if (!rc) {
952 memprintf(err, "OCSP single response: no longer valid.");
953 goto out;
954 }
955
956 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200957 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200958 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
959 goto out;
960 }
961 }
962
963 if (!ocsp) {
964 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
965 unsigned char *p;
966
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200967 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200968 if (!rc) {
969 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
970 goto out;
971 }
972
973 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
974 memprintf(err, "OCSP single response: Certificate ID too long");
975 goto out;
976 }
977
978 p = key;
979 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200980 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200981 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
982 if (!ocsp) {
983 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
984 goto out;
985 }
986 }
987
988 /* According to comments on "chunk_dup", the
989 previous chunk buffer will be freed */
990 if (!chunk_dup(&ocsp->response, ocsp_response)) {
991 memprintf(err, "OCSP response: Memory allocation error");
992 goto out;
993 }
994
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200995 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
996
Emeric Brun4147b2e2014-06-16 18:36:30 +0200997 ret = 0;
998out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +0100999 ERR_clear_error();
1000
Emeric Brun4147b2e2014-06-16 18:36:30 +02001001 if (bs)
1002 OCSP_BASICRESP_free(bs);
1003
1004 if (resp)
1005 OCSP_RESPONSE_free(resp);
1006
1007 return ret;
1008}
1009/*
1010 * External function use to update the OCSP response in the OCSP response's
1011 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1012 * to update in DER format.
1013 *
1014 * Returns 0 on success, 1 in error case.
1015 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001016int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001017{
1018 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1019}
1020
William Lallemand4a660132019-10-14 14:51:41 +02001021#endif
1022
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001023#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1024static 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)
1025{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001026 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001027 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001028 struct connection *conn;
1029 int head;
1030 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001031 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001032
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001033 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001034 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001035 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1036
1037 keys = ref->tlskeys;
1038 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001039
1040 if (enc) {
1041 memcpy(key_name, keys[head].name, 16);
1042
1043 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001044 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001045
Emeric Brun9e754772019-01-10 17:51:55 +01001046 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001047
Emeric Brun9e754772019-01-10 17:51:55 +01001048 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1049 goto end;
1050
Willy Tarreau9356dac2019-05-10 09:22:53 +02001051 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001052 ret = 1;
1053 }
1054 else if (ref->key_size_bits == 256 ) {
1055
1056 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1057 goto end;
1058
Willy Tarreau9356dac2019-05-10 09:22:53 +02001059 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001060 ret = 1;
1061 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001062 } else {
1063 for (i = 0; i < TLS_TICKETS_NO; i++) {
1064 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1065 goto found;
1066 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001067 ret = 0;
1068 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001069
Christopher Faulet16f45c82018-02-16 11:23:49 +01001070 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001071 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001072 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 +01001073 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1074 goto end;
1075 /* 2 for key renewal, 1 if current key is still valid */
1076 ret = i ? 2 : 1;
1077 }
1078 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001079 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 +01001080 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1081 goto end;
1082 /* 2 for key renewal, 1 if current key is still valid */
1083 ret = i ? 2 : 1;
1084 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001085 }
Emeric Brun9e754772019-01-10 17:51:55 +01001086
Christopher Faulet16f45c82018-02-16 11:23:49 +01001087 end:
1088 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1089 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001090}
1091
1092struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1093{
1094 struct tls_keys_ref *ref;
1095
1096 list_for_each_entry(ref, &tlskeys_reference, list)
1097 if (ref->filename && strcmp(filename, ref->filename) == 0)
1098 return ref;
1099 return NULL;
1100}
1101
1102struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1103{
1104 struct tls_keys_ref *ref;
1105
1106 list_for_each_entry(ref, &tlskeys_reference, list)
1107 if (ref->unique_id == unique_id)
1108 return ref;
1109 return NULL;
1110}
1111
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001112/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001113 * match existing ones, this function returns -1
1114 * else it returns 0 on success.
1115 */
1116int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001117 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001118{
Emeric Brun9e754772019-01-10 17:51:55 +01001119 if (ref->key_size_bits == 128) {
1120 if (tlskey->data != sizeof(struct tls_sess_key_128))
1121 return -1;
1122 }
1123 else if (ref->key_size_bits == 256) {
1124 if (tlskey->data != sizeof(struct tls_sess_key_256))
1125 return -1;
1126 }
1127 else
1128 return -1;
1129
Christopher Faulet16f45c82018-02-16 11:23:49 +01001130 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001131 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1132 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001133 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1134 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001135
1136 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001137}
1138
Willy Tarreau83061a82018-07-13 11:56:34 +02001139int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001140{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001141 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1142
1143 if(!ref) {
1144 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1145 return 1;
1146 }
Emeric Brun9e754772019-01-10 17:51:55 +01001147 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1148 memprintf(err, "Invalid key size");
1149 return 1;
1150 }
1151
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001152 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001153}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001154
1155/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001156 * automatic ids. It's called just after the basic checks. It returns
1157 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001158 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001159static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001160{
1161 int i = 0;
1162 struct tls_keys_ref *ref, *ref2, *ref3;
1163 struct list tkr = LIST_HEAD_INIT(tkr);
1164
1165 list_for_each_entry(ref, &tlskeys_reference, list) {
1166 if (ref->unique_id == -1) {
1167 /* Look for the first free id. */
1168 while (1) {
1169 list_for_each_entry(ref2, &tlskeys_reference, list) {
1170 if (ref2->unique_id == i) {
1171 i++;
1172 break;
1173 }
1174 }
1175 if (&ref2->list == &tlskeys_reference)
1176 break;
1177 }
1178
1179 /* Uses the unique id and increment it for the next entry. */
1180 ref->unique_id = i;
1181 i++;
1182 }
1183 }
1184
1185 /* This sort the reference list by id. */
1186 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001187 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001188 list_for_each_entry(ref3, &tkr, list) {
1189 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001190 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001191 break;
1192 }
1193 }
1194 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001195 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001196 }
1197
1198 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001199 LIST_INSERT(&tkr, &tlskeys_reference);
1200 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001201 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001202}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001203#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1204
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001205#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001206int ocsp_ex_index = -1;
1207
yanbzhube2774d2015-12-10 15:07:30 -05001208int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1209{
1210 switch (evp_keytype) {
1211 case EVP_PKEY_RSA:
1212 return 2;
1213 case EVP_PKEY_DSA:
1214 return 0;
1215 case EVP_PKEY_EC:
1216 return 1;
1217 }
1218
1219 return -1;
1220}
1221
Emeric Brun4147b2e2014-06-16 18:36:30 +02001222/*
1223 * Callback used to set OCSP status extension content in server hello.
1224 */
1225int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1226{
yanbzhube2774d2015-12-10 15:07:30 -05001227 struct certificate_ocsp *ocsp;
1228 struct ocsp_cbk_arg *ocsp_arg;
1229 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001230 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001231 EVP_PKEY *ssl_pkey;
1232 int key_type;
1233 int index;
1234
William Lallemand76b4a122020-08-04 17:41:39 +02001235 ctx = SSL_get_SSL_CTX(ssl);
1236 if (!ctx)
1237 return SSL_TLSEXT_ERR_NOACK;
1238
1239 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1240 if (!ocsp_arg)
1241 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001242
1243 ssl_pkey = SSL_get_privatekey(ssl);
1244 if (!ssl_pkey)
1245 return SSL_TLSEXT_ERR_NOACK;
1246
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001247 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001248
1249 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1250 ocsp = ocsp_arg->s_ocsp;
1251 else {
1252 /* For multiple certs per context, we have to find the correct OCSP response based on
1253 * the certificate type
1254 */
1255 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1256
1257 if (index < 0)
1258 return SSL_TLSEXT_ERR_NOACK;
1259
1260 ocsp = ocsp_arg->m_ocsp[index];
1261
1262 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001263
1264 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001265 !ocsp->response.area ||
1266 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001267 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001268 return SSL_TLSEXT_ERR_NOACK;
1269
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001270 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001271 if (!ssl_buf)
1272 return SSL_TLSEXT_ERR_NOACK;
1273
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001274 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1275 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001276
1277 return SSL_TLSEXT_ERR_OK;
1278}
1279
William Lallemand4a660132019-10-14 14:51:41 +02001280#endif
1281
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001282#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001283
1284
1285/*
1286 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1287 * used anymore. Also removes it from the tree if free'd.
1288 */
1289static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1290{
1291 if (!ocsp)
1292 return;
1293
1294 ocsp->refcount--;
1295 if (ocsp->refcount <= 0) {
1296 ebmb_delete(&ocsp->key);
1297 chunk_destroy(&ocsp->response);
1298 free(ocsp);
1299 }
1300}
1301
1302
Emeric Brun4147b2e2014-06-16 18:36:30 +02001303/*
1304 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001305 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1306 * status extension, the issuer's certificate is mandatory. It should be
1307 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001308 *
William Lallemand246c0242019-10-11 08:59:13 +02001309 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1310 * OCSP response. If file is empty or content is not a valid OCSP response,
1311 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1312 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001313 *
1314 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001315 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001316 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001317static 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 +02001318{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001319 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001320 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001321 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001322 struct certificate_ocsp *ocsp = NULL, *iocsp;
1323 char *warn = NULL;
1324 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001325 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001326
Emeric Brun4147b2e2014-06-16 18:36:30 +02001327
William Lallemand246c0242019-10-11 08:59:13 +02001328 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001329 if (!x)
1330 goto out;
1331
William Lallemand246c0242019-10-11 08:59:13 +02001332 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001333 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1334 if (chain) {
1335 /* check if one of the certificate of the chain is the issuer */
1336 for (i = 0; i < sk_X509_num(chain); i++) {
1337 X509 *ti = sk_X509_value(chain, i);
1338 if (X509_check_issued(ti, x) == X509_V_OK) {
1339 issuer = ti;
1340 break;
1341 }
1342 }
1343 }
William Lallemand246c0242019-10-11 08:59:13 +02001344 if (!issuer)
1345 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001346
1347 cid = OCSP_cert_to_id(0, x, issuer);
1348 if (!cid)
1349 goto out;
1350
1351 i = i2d_OCSP_CERTID(cid, NULL);
1352 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1353 goto out;
1354
Vincent Bernat02779b62016-04-03 13:48:43 +02001355 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001356 if (!ocsp)
1357 goto out;
1358
1359 p = ocsp->key_data;
1360 i2d_OCSP_CERTID(cid, &p);
1361
1362 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1363 if (iocsp == ocsp)
1364 ocsp = NULL;
1365
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001366#ifndef SSL_CTX_get_tlsext_status_cb
1367# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1368 *cb = (void (*) (void))ctx->tlsext_status_cb;
1369#endif
1370 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1371
1372 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001373 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001374 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001375
William Lallemanda560c062020-07-31 11:43:20 +02001376 cb_arg = calloc(1, sizeof(*cb_arg));
1377 if (!cb_arg)
1378 goto out;
1379
yanbzhube2774d2015-12-10 15:07:30 -05001380 cb_arg->is_single = 1;
1381 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001382 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001383
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001384 pkey = X509_get_pubkey(x);
1385 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1386 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001387
1388 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001389 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 */
1390
yanbzhube2774d2015-12-10 15:07:30 -05001391 } else {
1392 /*
1393 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1394 * Update that cb_arg with the new cert's staple
1395 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001396 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001397 struct certificate_ocsp *tmp_ocsp;
1398 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001399 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001400 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001401
William Lallemand76b4a122020-08-04 17:41:39 +02001402 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001403
1404 /*
1405 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1406 * the order of operations below matter, take care when changing it
1407 */
1408 tmp_ocsp = cb_arg->s_ocsp;
1409 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1410 cb_arg->s_ocsp = NULL;
1411 cb_arg->m_ocsp[index] = tmp_ocsp;
1412 cb_arg->is_single = 0;
1413 cb_arg->single_kt = 0;
1414
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001415 pkey = X509_get_pubkey(x);
1416 key_type = EVP_PKEY_base_id(pkey);
1417 EVP_PKEY_free(pkey);
1418
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001419 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001420 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001421 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001422 iocsp->refcount++;
1423 }
yanbzhube2774d2015-12-10 15:07:30 -05001424 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001425
1426 ret = 0;
1427
1428 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001429 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001430 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001431 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001432 }
1433
1434out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001435 if (cid)
1436 OCSP_CERTID_free(cid);
1437
1438 if (ocsp)
1439 free(ocsp);
1440
1441 if (warn)
1442 free(warn);
1443
Emeric Brun4147b2e2014-06-16 18:36:30 +02001444 return ret;
1445}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001446#endif
1447
1448#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001449static 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 +02001450{
William Lallemand4a660132019-10-14 14:51:41 +02001451 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 +02001452}
1453#endif
1454
William Lallemand4a660132019-10-14 14:51:41 +02001455
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001456#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001457
1458#define CT_EXTENSION_TYPE 18
1459
William Lallemand03c331c2020-05-13 10:10:01 +02001460int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001461
1462int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1463{
Willy Tarreau83061a82018-07-13 11:56:34 +02001464 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001465
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001466 *out = (unsigned char *) sctl->area;
1467 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001468
1469 return 1;
1470}
1471
1472int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1473{
1474 return 1;
1475}
1476
William Lallemanda17f4112019-10-10 15:16:44 +02001477static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001478{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001479 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001480
William Lallemanda17f4112019-10-10 15:16:44 +02001481 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 +01001482 goto out;
1483
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001484 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1485
1486 ret = 0;
1487
1488out:
1489 return ret;
1490}
1491
1492#endif
1493
Emeric Brune1f38db2012-09-03 20:36:47 +02001494void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1495{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001496 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001497 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001498 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001499 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001500
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001501#ifndef SSL_OP_NO_RENEGOTIATION
1502 /* Please note that BoringSSL defines this macro to zero so don't
1503 * change this to #if and do not assign a default value to this macro!
1504 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001505 if (where & SSL_CB_HANDSHAKE_START) {
1506 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001507 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 +02001508 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001509 conn->err_code = CO_ER_SSL_RENEG;
1510 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001511 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001512#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001513
1514 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001515 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001516 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001517 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001518 consider that the buffering was activated,
1519 so we rise the output buffer size from 4k
1520 to 16k */
1521 write_bio = SSL_get_wbio(ssl);
1522 if (write_bio != SSL_get_rbio(ssl)) {
1523 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001524 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001525 }
1526 }
1527 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001528}
1529
Emeric Brune64aef12012-09-21 13:15:06 +02001530/* Callback is called for each certificate of the chain during a verify
1531 ok is set to 1 if preverify detect no error on current certificate.
1532 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001533int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001534{
1535 SSL *ssl;
1536 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001537 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001538 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001539
1540 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001541 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001542
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001543 ctx = conn->xprt_ctx;
1544
1545 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001546
Emeric Brun81c00f02012-09-21 14:31:21 +02001547 if (ok) /* no errors */
1548 return ok;
1549
1550 depth = X509_STORE_CTX_get_error_depth(x_store);
1551 err = X509_STORE_CTX_get_error(x_store);
1552
1553 /* check if CA error needs to be ignored */
1554 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001555 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1556 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1557 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001558 }
1559
Willy Tarreau731248f2020-02-04 14:02:02 +01001560 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001561 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001562 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001563 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001564 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001565
Willy Tarreau20879a02012-12-03 16:32:10 +01001566 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001567 return 0;
1568 }
1569
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001570 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1571 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001572
Emeric Brun81c00f02012-09-21 14:31:21 +02001573 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001574 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001575 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001576 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001577 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001578 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001579
Willy Tarreau20879a02012-12-03 16:32:10 +01001580 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001581 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001582}
1583
Dragan Dosen9ac98092020-05-11 15:51:45 +02001584#ifdef TLS1_RT_HEARTBEAT
1585static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1586 int content_type, const void *buf, size_t len,
1587 SSL *ssl)
1588{
1589 /* test heartbeat received (write_p is set to 0
1590 for a received record) */
1591 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1592 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1593 const unsigned char *p = buf;
1594 unsigned int payload;
1595
1596 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1597
1598 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1599 if (*p != TLS1_HB_REQUEST)
1600 return;
1601
1602 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1603 goto kill_it;
1604
1605 payload = (p[1] * 256) + p[2];
1606 if (3 + payload + 16 <= len)
1607 return; /* OK no problem */
1608 kill_it:
1609 /* We have a clear heartbleed attack (CVE-2014-0160), the
1610 * advertised payload is larger than the advertised packet
1611 * length, so we have garbage in the buffer between the
1612 * payload and the end of the buffer (p+len). We can't know
1613 * if the SSL stack is patched, and we don't know if we can
1614 * safely wipe out the area between p+3+len and payload.
1615 * So instead, we prevent the response from being sent by
1616 * setting the max_send_fragment to 0 and we report an SSL
1617 * error, which will kill this connection. It will be reported
1618 * above as SSL_ERROR_SSL while an other handshake failure with
1619 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1620 */
1621 ssl->max_send_fragment = 0;
1622 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1623 }
1624}
1625#endif
1626
1627static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1628 int content_type, const void *buf, size_t len,
1629 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001630{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001631 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001632 unsigned char *msg;
1633 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001634 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001635
1636 /* This function is called for "from client" and "to server"
1637 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001638 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001639 */
1640
1641 /* "write_p" is set to 0 is the bytes are received messages,
1642 * otherwise it is set to 1.
1643 */
1644 if (write_p != 0)
1645 return;
1646
1647 /* content_type contains the type of message received or sent
1648 * according with the SSL/TLS protocol spec. This message is
1649 * encoded with one byte. The value 256 (two bytes) is used
1650 * for designing the SSL/TLS record layer. According with the
1651 * rfc6101, the expected message (other than 256) are:
1652 * - change_cipher_spec(20)
1653 * - alert(21)
1654 * - handshake(22)
1655 * - application_data(23)
1656 * - (255)
1657 * We are interessed by the handshake and specially the client
1658 * hello.
1659 */
1660 if (content_type != 22)
1661 return;
1662
1663 /* The message length is at least 4 bytes, containing the
1664 * message type and the message length.
1665 */
1666 if (len < 4)
1667 return;
1668
1669 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001670 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001671 * - hello_request(0)
1672 * - client_hello(1)
1673 * - server_hello(2)
1674 * - certificate(11)
1675 * - server_key_exchange (12)
1676 * - certificate_request(13)
1677 * - server_hello_done(14)
1678 * We are interested by the client hello.
1679 */
1680 msg = (unsigned char *)buf;
1681 if (msg[0] != 1)
1682 return;
1683
1684 /* Next three bytes are the length of the message. The total length
1685 * must be this decoded length + 4. If the length given as argument
1686 * is not the same, we abort the protocol dissector.
1687 */
1688 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1689 if (len < rec_len + 4)
1690 return;
1691 msg += 4;
1692 end = msg + rec_len;
1693 if (end < msg)
1694 return;
1695
1696 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1697 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001698 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1699 */
1700 msg += 1 + 1 + 4 + 28;
1701 if (msg > end)
1702 return;
1703
1704 /* Next, is session id:
1705 * if present, we have to jump by length + 1 for the size information
1706 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001707 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001708 if (msg[0] > 0)
1709 msg += msg[0];
1710 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001711 if (msg > end)
1712 return;
1713
1714 /* Next two bytes are the ciphersuite length. */
1715 if (msg + 2 > end)
1716 return;
1717 rec_len = (msg[0] << 8) + msg[1];
1718 msg += 2;
1719 if (msg + rec_len > end || msg + rec_len < msg)
1720 return;
1721
Willy Tarreaub454e902021-03-22 15:09:41 +01001722 capture = pool_alloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001723 if (!capture)
1724 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001725 /* Compute the xxh64 of the ciphersuite. */
1726 capture->xxh64 = XXH64(msg, rec_len, 0);
1727
1728 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001729 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1730 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001731 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001732
1733 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001734}
William Lallemand7d42ef52020-07-06 11:41:30 +02001735
1736
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05001737#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001738static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1739 int content_type, const void *buf, size_t len,
1740 SSL *ssl)
1741{
1742 struct ssl_keylog *keylog;
1743
1744 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1745 return;
1746
Willy Tarreauf208ac02021-03-22 21:10:12 +01001747 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001748 if (!keylog)
1749 return;
1750
William Lallemand7d42ef52020-07-06 11:41:30 +02001751 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1752 pool_free(pool_head_ssl_keylog, keylog);
1753 return;
1754 }
1755}
1756#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001757
Emeric Brun29f037d2014-04-25 19:05:36 +02001758/* Callback is called for ssl protocol analyse */
1759void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1760{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001761 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1762 struct ssl_sock_msg_callback *cbk;
1763
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001764 /* Try to call all callback functions that were registered by using
1765 * ssl_sock_register_msg_callback().
1766 */
1767 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1768 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1769 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001770}
1771
Bernard Spil13c53f82018-02-15 13:34:58 +01001772#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001773static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1774 const unsigned char *in, unsigned int inlen,
1775 void *arg)
1776{
1777 struct server *srv = arg;
1778
1779 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1780 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1781 return SSL_TLSEXT_ERR_OK;
1782 return SSL_TLSEXT_ERR_NOACK;
1783}
1784#endif
1785
1786#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001787/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001788 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001789 */
1790static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1791 unsigned int *len, void *arg)
1792{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001793 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001794
1795 *data = (const unsigned char *)conf->npn_str;
1796 *len = conf->npn_len;
1797 return SSL_TLSEXT_ERR_OK;
1798}
1799#endif
1800
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001801#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001802/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001803 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001804 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001805static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1806 unsigned char *outlen,
1807 const unsigned char *server,
1808 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001809{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001810 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001811
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001812 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1813 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1814 return SSL_TLSEXT_ERR_NOACK;
1815 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001816 return SSL_TLSEXT_ERR_OK;
1817}
1818#endif
1819
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001820#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001821#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001822
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001823/* Configure a DNS SAN extenion on a certificate. */
1824int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
1825 int failure = 0;
1826 X509_EXTENSION *san_ext = NULL;
1827 CONF *conf = NULL;
1828 struct buffer *san_name = get_trash_chunk();
1829
1830 conf = NCONF_new(NULL);
1831 if (!conf) {
1832 failure = 1;
1833 goto cleanup;
1834 }
1835
1836 /* Build an extension based on the DNS entry above */
1837 chunk_appendf(san_name, "DNS:%s", servername);
1838 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
1839 if (!san_ext) {
1840 failure = 1;
1841 goto cleanup;
1842 }
1843
1844 /* Add the extension */
1845 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
1846 failure = 1;
1847 goto cleanup;
1848 }
1849
1850 /* Success */
1851 failure = 0;
1852
1853cleanup:
1854 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
1855 if (NULL != conf) NCONF_free(conf);
1856
1857 return failure;
1858}
1859
Christopher Faulet30548802015-06-11 13:39:32 +02001860/* Create a X509 certificate with the specified servername and serial. This
1861 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001862static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001863ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001864{
Shimi Gersner5846c492020-08-23 13:58:12 +03001865 X509 *cacert = bind_conf->ca_sign_ckch->cert;
1866 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001867 SSL_CTX *ssl_ctx = NULL;
1868 X509 *newcrt = NULL;
1869 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001870 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001871 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001872 X509_NAME *name;
1873 const EVP_MD *digest;
1874 X509V3_CTX ctx;
1875 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001876 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001877
Christopher Faulet48a83322017-07-28 16:56:09 +02001878 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05001879#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001880 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1881#else
1882 tmp_ssl = SSL_new(bind_conf->default_ctx);
1883 if (tmp_ssl)
1884 pkey = SSL_get_privatekey(tmp_ssl);
1885#endif
1886 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001887 goto mkcert_error;
1888
1889 /* Create the certificate */
1890 if (!(newcrt = X509_new()))
1891 goto mkcert_error;
1892
1893 /* Set version number for the certificate (X509v3) and the serial
1894 * number */
1895 if (X509_set_version(newcrt, 2L) != 1)
1896 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02001897 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001898
1899 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001900 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1901 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001902 goto mkcert_error;
1903
1904 /* set public key in the certificate */
1905 if (X509_set_pubkey(newcrt, pkey) != 1)
1906 goto mkcert_error;
1907
1908 /* Set issuer name from the CA */
1909 if (!(name = X509_get_subject_name(cacert)))
1910 goto mkcert_error;
1911 if (X509_set_issuer_name(newcrt, name) != 1)
1912 goto mkcert_error;
1913
1914 /* Set the subject name using the same, but the CN */
1915 name = X509_NAME_dup(name);
1916 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1917 (const unsigned char *)servername,
1918 -1, -1, 0) != 1) {
1919 X509_NAME_free(name);
1920 goto mkcert_error;
1921 }
1922 if (X509_set_subject_name(newcrt, name) != 1) {
1923 X509_NAME_free(name);
1924 goto mkcert_error;
1925 }
1926 X509_NAME_free(name);
1927
1928 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001929 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001930 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1931 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1932 X509_EXTENSION *ext;
1933
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001934 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001935 goto mkcert_error;
1936 if (!X509_add_ext(newcrt, ext, -1)) {
1937 X509_EXTENSION_free(ext);
1938 goto mkcert_error;
1939 }
1940 X509_EXTENSION_free(ext);
1941 }
1942
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001943 /* Add SAN extension */
1944 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
1945 goto mkcert_error;
1946 }
1947
Christopher Faulet31af49d2015-06-09 17:29:50 +02001948 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001949
1950 key_type = EVP_PKEY_base_id(capkey);
1951
1952 if (key_type == EVP_PKEY_DSA)
1953 digest = EVP_sha1();
1954 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001955 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001956 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02001957 digest = EVP_sha256();
1958 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05001959#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02001960 int nid;
1961
1962 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
1963 goto mkcert_error;
1964 if (!(digest = EVP_get_digestbynid(nid)))
1965 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02001966#else
1967 goto mkcert_error;
1968#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02001969 }
1970
Christopher Faulet31af49d2015-06-09 17:29:50 +02001971 if (!(X509_sign(newcrt, capkey, digest)))
1972 goto mkcert_error;
1973
1974 /* Create and set the new SSL_CTX */
1975 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
1976 goto mkcert_error;
1977 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
1978 goto mkcert_error;
1979 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
1980 goto mkcert_error;
1981 if (!SSL_CTX_check_private_key(ssl_ctx))
1982 goto mkcert_error;
1983
Shimi Gersner5846c492020-08-23 13:58:12 +03001984 /* Build chaining the CA cert and the rest of the chain, keep these order */
1985#if defined(SSL_CTX_add1_chain_cert)
1986 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
1987 goto mkcert_error;
1988 }
1989
1990 if (bind_conf->ca_sign_ckch->chain) {
1991 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
1992 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
1993 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
1994 goto mkcert_error;
1995 }
1996 }
1997 }
1998#endif
1999
Christopher Faulet31af49d2015-06-09 17:29:50 +02002000 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002001
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002002#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002003 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002004#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002005#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2006 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002007 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002008 EC_KEY *ecc;
2009 int nid;
2010
2011 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2012 goto end;
2013 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2014 goto end;
2015 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2016 EC_KEY_free(ecc);
2017 }
2018#endif
2019 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002020 return ssl_ctx;
2021
2022 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002023 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002024 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002025 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2026 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002027 return NULL;
2028}
2029
Christopher Faulet7969a332015-10-09 11:15:03 +02002030SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002031ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02002032{
Willy Tarreau07d94e42018-09-20 10:57:52 +02002033 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01002034 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002035
Olivier Houchard66ab4982019-02-26 18:37:15 +01002036 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02002037}
2038
Christopher Faulet30548802015-06-11 13:39:32 +02002039/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002040 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002041SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002042ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002043{
2044 struct lru64 *lru = NULL;
2045
2046 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002047 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002048 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002049 if (lru && lru->domain) {
2050 if (ssl)
2051 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002052 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002053 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002054 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002055 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002056 }
2057 return NULL;
2058}
2059
Emeric Brun821bb9b2017-06-15 16:37:39 +02002060/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2061 * function is not thread-safe, it should only be used to check if a certificate
2062 * exists in the lru cache (with no warranty it will not be removed by another
2063 * thread). It is kept for backward compatibility. */
2064SSL_CTX *
2065ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2066{
2067 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2068}
2069
Christopher Fauletd2cab922015-07-28 16:03:47 +02002070/* Set a certificate int the LRU cache used to store generated
2071 * certificate. Return 0 on success, otherwise -1 */
2072int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002073ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002074{
2075 struct lru64 *lru = NULL;
2076
2077 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002078 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002079 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002080 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002081 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002082 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002083 }
Christopher Faulet30548802015-06-11 13:39:32 +02002084 if (lru->domain && lru->data)
2085 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002086 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002087 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002088 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002089 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002090 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002091}
2092
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002093/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002094unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002095ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002096{
2097 return XXH32(data, len, ssl_ctx_lru_seed);
2098}
2099
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002100/* Generate a cert and immediately assign it to the SSL session so that the cert's
2101 * refcount is maintained regardless of the cert's presence in the LRU cache.
2102 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002103static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002104ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002105{
Shimi Gersner5846c492020-08-23 13:58:12 +03002106 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002107 SSL_CTX *ssl_ctx = NULL;
2108 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002109 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002110
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002111 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002112 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002113 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002114 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002115 if (lru && lru->domain)
2116 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002117 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002118 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002119 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002120 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002121 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002122 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002123 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002124 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002125 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002126 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002127 SSL_set_SSL_CTX(ssl, ssl_ctx);
2128 /* No LRU cache, this CTX will be released as soon as the session dies */
2129 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002130 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002131 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002132 return 0;
2133}
2134static int
2135ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2136{
2137 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002138 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002139
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002140 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002141 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002142 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002143 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002144 }
2145 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002146}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002147#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002148
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002149#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002150
2151static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002152{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002153#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002154 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002155 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2156#endif
2157}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002158static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2159 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002160 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2161}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002162static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002163#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002164 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002165 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2166#endif
2167}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002168static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002169#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002170 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002171 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2172#endif
2173}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002174/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002175static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2176/* Unusable in this context. */
2177static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2178static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2179static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2180static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2181static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002182#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002183
2184static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2185 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002186 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2187}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002188static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2189 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2190 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2191}
2192static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2193 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002194 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2195}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002196static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2197 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2198 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2199}
2200static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2201 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002202 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2203}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002204static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2205 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2206 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2207}
2208static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2209 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002210 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2211}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002212static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2213 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2214 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2215}
2216static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002217#if SSL_OP_NO_TLSv1_3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002218 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002219 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2220#endif
2221}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002222static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
2223#if SSL_OP_NO_TLSv1_3
2224 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2225 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002226#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002227}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002228#endif
2229static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2230static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002231
William Lallemand7fd8b452020-05-07 15:20:43 +02002232struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002233 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2234 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2235 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2236 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2237 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2238 {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 +02002239};
2240
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002241static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2242{
2243 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2244 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2245 SSL_set_SSL_CTX(ssl, ctx);
2246}
2247
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002248#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002249
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002250int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002251{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002252 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002253 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002254
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002255 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2256 return SSL_TLSEXT_ERR_OK;
2257 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002258}
2259
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002260#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002261int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002262{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002263 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002264#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002265int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002266{
2267#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002268 struct connection *conn;
2269 struct bind_conf *s;
2270 const uint8_t *extension_data;
2271 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002272 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002273
2274 char *wildp = NULL;
2275 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002276 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002277 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002278 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002279 int i;
2280
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002281 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002282 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002283
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002284#ifdef USE_QUIC
2285 if (conn->qc) {
2286 /* Look for the QUIC transport parameters. */
2287#ifdef OPENSSL_IS_BORINGSSL
2288 if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2289 &extension_data, &extension_len))
2290#else
2291 if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2292 &extension_data, &extension_len))
2293#endif
2294 goto abort;
2295
2296 if (!quic_transport_params_store(conn->qc, 0, extension_data,
2297 extension_data + extension_len))
2298 goto abort;
2299 }
2300#endif
2301
Olivier Houchard9679ac92017-10-27 14:58:08 +02002302 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002303 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002304#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002305 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2306 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002307#else
2308 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2309#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002310 /*
2311 * The server_name extension was given too much extensibility when it
2312 * was written, so parsing the normal case is a bit complex.
2313 */
2314 size_t len;
2315 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002316 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002317 /* Extract the length of the supplied list of names. */
2318 len = (*extension_data++) << 8;
2319 len |= *extension_data++;
2320 if (len + 2 != extension_len)
2321 goto abort;
2322 /*
2323 * The list in practice only has a single element, so we only consider
2324 * the first one.
2325 */
2326 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2327 goto abort;
2328 extension_len = len - 1;
2329 /* Now we can finally pull out the byte array with the actual hostname. */
2330 if (extension_len <= 2)
2331 goto abort;
2332 len = (*extension_data++) << 8;
2333 len |= *extension_data++;
2334 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2335 || memchr(extension_data, 0, len) != NULL)
2336 goto abort;
2337 servername = extension_data;
2338 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002339 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002340#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2341 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002342 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002343 }
2344#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002345 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002346 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002347 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002348 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002349 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002350 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002351 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002352 goto abort;
2353 }
2354
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002355 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002356#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002357 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002358#else
2359 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2360#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002361 uint8_t sign;
2362 size_t len;
2363 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002364 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002365 len = (*extension_data++) << 8;
2366 len |= *extension_data++;
2367 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002368 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002369 if (len % 2 != 0)
2370 goto abort;
2371 for (; len > 0; len -= 2) {
2372 extension_data++; /* hash */
2373 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002374 switch (sign) {
2375 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002376 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002377 break;
2378 case TLSEXT_signature_ecdsa:
2379 has_ecdsa_sig = 1;
2380 break;
2381 default:
2382 continue;
2383 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002384 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002385 break;
2386 }
2387 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002388 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002389 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002390 }
2391 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002392 const SSL_CIPHER *cipher;
2393 size_t len;
2394 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002395 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002396#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002397 len = ctx->cipher_suites_len;
2398 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002399#else
2400 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2401#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002402 if (len % 2 != 0)
2403 goto abort;
2404 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002405#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002406 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002407 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002408#else
2409 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2410#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002411 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002412 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002413 break;
2414 }
2415 }
2416 }
2417
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002418 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002419 trash.area[i] = tolower(servername[i]);
2420 if (!wildp && (trash.area[i] == '.'))
2421 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002422 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002423 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002424
William Lallemand150bfa82019-09-19 17:12:49 +02002425 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002426
William Lallemand94bd3192020-08-14 14:43:35 +02002427 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2428 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002429 for (i = 0; i < 2; i++) {
2430 if (i == 0) /* lookup in full qualified names */
2431 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002432 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002433 node = ebst_lookup(&s->sni_w_ctx, wildp);
2434 else
2435 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002436
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002437 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002438
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002439 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002440 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002441 struct sni_ctx *sni, *sni_tmp;
2442 int skip = 0;
2443
2444 if (i == 1 && wildp) { /* wildcard */
2445 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2446 sni = container_of(n, struct sni_ctx, name);
2447 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002448 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002449 skip = 1;
2450 break;
2451 }
2452 }
2453 if (skip)
2454 continue;
2455 }
2456
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002457 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002458 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002459 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002460 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002461 break;
2462 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002463 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002464 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002465 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002466 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002467 if (!node_anonymous)
2468 node_anonymous = n;
2469 break;
2470 }
2471 }
2472 }
William Lallemand94bd3192020-08-14 14:43:35 +02002473 }
2474 /* Once the certificates are found, select them depending on what is
2475 * supported in the client and by key_signature priority order: EDSA >
2476 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002477 if (has_ecdsa_sig && node_ecdsa)
2478 node = node_ecdsa;
2479 else if (has_rsa_sig && node_rsa)
2480 node = node_rsa;
2481 else if (node_anonymous)
2482 node = node_anonymous;
2483 else if (node_ecdsa)
2484 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2485 else
2486 node = node_rsa; /* no rsa signature case (far far away) */
2487
William Lallemand94bd3192020-08-14 14:43:35 +02002488 if (node) {
2489 /* switch ctx */
2490 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2491 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2492 if (conf) {
2493 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2494 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2495 if (conf->early_data)
2496 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002497 }
William Lallemand94bd3192020-08-14 14:43:35 +02002498 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2499 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002500 }
William Lallemand150bfa82019-09-19 17:12:49 +02002501
William Lallemand02010472019-10-18 11:02:19 +02002502 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002503#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002504 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002505 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002506 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002507 }
2508#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002509 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002510 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002511 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002512 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002513 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002514 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002515allow_early:
2516#ifdef OPENSSL_IS_BORINGSSL
2517 if (allow_early)
2518 SSL_set_early_data_enabled(ssl, 1);
2519#else
2520 if (!allow_early)
2521 SSL_set_max_early_data(ssl, 0);
2522#endif
2523 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002524 abort:
2525 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2526 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002527#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002528 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002529#else
2530 *al = SSL_AD_UNRECOGNIZED_NAME;
2531 return 0;
2532#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002533}
2534
2535#else /* OPENSSL_IS_BORINGSSL */
2536
Emeric Brunfc0421f2012-09-07 17:30:07 +02002537/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2538 * warning when no match is found, which implies the default (first) cert
2539 * will keep being used.
2540 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002541static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002542{
2543 const char *servername;
2544 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002545 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002546 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002547 int i;
2548 (void)al; /* shut gcc stupid warning */
2549
2550 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002551 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002552#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002553 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2554 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002555#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002556 if (s->strict_sni)
2557 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002558 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002559 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002560 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002561 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002562 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002563
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002564 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002565 if (!servername[i])
2566 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002567 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002568 if (!wildp && (trash.area[i] == '.'))
2569 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002570 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002571 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002572
William Lallemand150bfa82019-09-19 17:12:49 +02002573 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002574 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002575 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002576 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2577 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002578 if (!container_of(n, struct sni_ctx, name)->neg) {
2579 node = n;
2580 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002581 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002582 }
2583 if (!node && wildp) {
2584 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002585 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2586 /* lookup a not neg filter */
2587 if (!container_of(n, struct sni_ctx, name)->neg) {
2588 node = n;
2589 break;
2590 }
2591 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002592 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002593 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002594#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002595 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2596 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002597 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002598 return SSL_TLSEXT_ERR_OK;
2599 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002600#endif
William Lallemand21724f02019-11-04 17:56:13 +01002601 if (s->strict_sni) {
2602 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002603 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002604 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002605 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002606 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002607 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002608 }
2609
2610 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002611 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002612 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002613 return SSL_TLSEXT_ERR_OK;
2614}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002615#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002616#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2617
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002618#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002619
2620static DH * ssl_get_dh_1024(void)
2621{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002622 static unsigned char dh1024_p[]={
2623 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2624 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2625 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2626 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2627 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2628 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2629 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2630 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2631 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2632 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2633 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2634 };
2635 static unsigned char dh1024_g[]={
2636 0x02,
2637 };
2638
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002639 BIGNUM *p;
2640 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002641 DH *dh = DH_new();
2642 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002643 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2644 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002645
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002646 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002647 DH_free(dh);
2648 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002649 } else {
2650 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002651 }
2652 }
2653 return dh;
2654}
2655
2656static DH *ssl_get_dh_2048(void)
2657{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002658 static unsigned char dh2048_p[]={
2659 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2660 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2661 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2662 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2663 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2664 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2665 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2666 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2667 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2668 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2669 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2670 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2671 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2672 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2673 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2674 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2675 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2676 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2677 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2678 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2679 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2680 0xB7,0x1F,0x77,0xF3,
2681 };
2682 static unsigned char dh2048_g[]={
2683 0x02,
2684 };
2685
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002686 BIGNUM *p;
2687 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002688 DH *dh = DH_new();
2689 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002690 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2691 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002692
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002693 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002694 DH_free(dh);
2695 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002696 } else {
2697 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002698 }
2699 }
2700 return dh;
2701}
2702
2703static DH *ssl_get_dh_4096(void)
2704{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002705 static unsigned char dh4096_p[]={
2706 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2707 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2708 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2709 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2710 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2711 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2712 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2713 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2714 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2715 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2716 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2717 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2718 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2719 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2720 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2721 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2722 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2723 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2724 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2725 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2726 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2727 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2728 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2729 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2730 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2731 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2732 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2733 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2734 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2735 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2736 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2737 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2738 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2739 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2740 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2741 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2742 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2743 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2744 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2745 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2746 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2747 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2748 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002749 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002750 static unsigned char dh4096_g[]={
2751 0x02,
2752 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002753
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002754 BIGNUM *p;
2755 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002756 DH *dh = DH_new();
2757 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002758 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2759 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002760
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002761 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002762 DH_free(dh);
2763 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002764 } else {
2765 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002766 }
2767 }
2768 return dh;
2769}
2770
2771/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002772 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002773static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2774{
2775 DH *dh = NULL;
2776 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002777 int type;
2778
2779 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002780
2781 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2782 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2783 */
2784 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2785 keylen = EVP_PKEY_bits(pkey);
2786 }
2787
Willy Tarreauef934602016-12-22 23:12:01 +01002788 if (keylen > global_ssl.default_dh_param) {
2789 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002790 }
2791
Remi Gacogned3a341a2015-05-29 16:26:17 +02002792 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002793 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002794 }
2795 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002796 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002797 }
2798 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002799 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002800 }
2801
2802 return dh;
2803}
2804
Remi Gacogne47783ef2015-05-29 15:53:22 +02002805static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002806{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002807 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002808 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002809
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002810 if (in == NULL)
2811 goto end;
2812
Remi Gacogne47783ef2015-05-29 15:53:22 +02002813 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002814 goto end;
2815
Remi Gacogne47783ef2015-05-29 15:53:22 +02002816 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2817
2818end:
2819 if (in)
2820 BIO_free(in);
2821
Emeric Brune1b4ed42018-08-16 15:14:12 +02002822 ERR_clear_error();
2823
Remi Gacogne47783ef2015-05-29 15:53:22 +02002824 return dh;
2825}
2826
2827int ssl_sock_load_global_dh_param_from_file(const char *filename)
2828{
2829 global_dh = ssl_sock_get_dh_from_file(filename);
2830
2831 if (global_dh) {
2832 return 0;
2833 }
2834
2835 return -1;
2836}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002837#endif
2838
William Lallemand9117de92019-10-04 00:29:42 +02002839/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02002840static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02002841 struct bind_conf *s, struct ssl_bind_conf *conf,
2842 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002843{
2844 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002845 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002846
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002847 if (*name == '!') {
2848 neg = 1;
2849 name++;
2850 }
2851 if (*name == '*') {
2852 wild = 1;
2853 name++;
2854 }
2855 /* !* filter is a nop */
2856 if (neg && wild)
2857 return order;
2858 if (*name) {
2859 int j, len;
2860 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002861 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02002862 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002863 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02002864 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002865 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002866
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002867 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002868 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02002869 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002870 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02002871 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002872 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002873 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002874 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002875 sc->order = order++;
2876 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02002877 sc->wild = wild;
2878 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01002879 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02002880 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002881 }
2882 return order;
2883}
2884
William Lallemand6af03992019-07-23 15:00:54 +02002885/*
William Lallemand1d29c742019-10-04 00:53:29 +02002886 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
2887 * This function can't return an error.
2888 *
2889 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
2890 */
William Lallemandc756bbd2020-05-13 17:23:59 +02002891void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02002892{
2893
2894 struct sni_ctx *sc0, *sc0b, *sc1;
2895 struct ebmb_node *node;
2896
2897 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
2898
2899 /* ignore if sc0 was already inserted in a tree */
2900 if (sc0->name.node.leaf_p)
2901 continue;
2902
2903 /* Check for duplicates. */
2904 if (sc0->wild)
2905 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
2906 else
2907 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
2908
2909 for (; node; node = ebmb_next_dup(node)) {
2910 sc1 = ebmb_entry(node, struct sni_ctx, name);
2911 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
2912 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
2913 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02002914 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02002915 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002916 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02002917 break;
William Lallemand1d29c742019-10-04 00:53:29 +02002918 }
2919 }
2920
2921 /* if duplicate, ignore the insertion */
2922 if (!sc0)
2923 continue;
2924
2925 if (sc0->wild)
2926 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
2927 else
2928 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002929 }
William Lallemand21724f02019-11-04 17:56:13 +01002930
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002931 /* replace the default_ctx if required with the instance's ctx. */
2932 if (ckch_inst->is_default) {
2933 SSL_CTX_free(bind_conf->default_ctx);
2934 SSL_CTX_up_ref(ckch_inst->ctx);
2935 bind_conf->default_ctx = ckch_inst->ctx;
William Lallemand1d29c742019-10-04 00:53:29 +02002936 }
2937}
2938
2939/*
William Lallemande3af8fb2019-10-08 11:36:53 +02002940 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02002941 */
William Lallemande3af8fb2019-10-08 11:36:53 +02002942struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02002943
William Lallemand2954c472020-03-06 21:54:13 +01002944/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02002945struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02002946
Emeric Brun7a883362019-10-17 13:27:40 +02002947/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002948 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02002949 * DH parameter is loaded into the SSL_CTX and if there is no
2950 * DH parameter available in ckchs nor in global, the default
2951 * DH parameters are applied on the SSL_CTX.
2952 * Returns a bitfield containing the flags:
2953 * ERR_FATAL in any fatal error case
2954 * ERR_ALERT if a reason of the error is availabine in err
2955 * ERR_WARN if a warning is available into err
2956 * The value 0 means there is no error nor warning and
2957 * the operation succeed.
2958 */
William Lallemandfa892222019-07-23 16:06:08 +02002959#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02002960static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
2961 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02002962{
Emeric Brun7a883362019-10-17 13:27:40 +02002963 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02002964 DH *dh = NULL;
2965
William Lallemanda8c73742019-07-31 18:31:34 +02002966 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02002967 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02002968 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
2969 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
2970 err && *err ? *err : "", path);
2971#if defined(SSL_CTX_set_dh_auto)
2972 SSL_CTX_set_dh_auto(ctx, 1);
2973 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
2974 err && *err ? *err : "");
2975#else
2976 memprintf(err, "%s, DH ciphers won't be available.\n",
2977 err && *err ? *err : "");
2978#endif
2979 ret |= ERR_WARN;
2980 goto end;
2981 }
William Lallemandfa892222019-07-23 16:06:08 +02002982
2983 if (ssl_dh_ptr_index >= 0) {
2984 /* store a pointer to the DH params to avoid complaining about
2985 ssl-default-dh-param not being set for this SSL_CTX */
2986 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
2987 }
2988 }
2989 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02002990 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
2991 memprintf(err, "%sunable to use the global DH parameter for certificate '%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 else {
3006 /* Clear openssl global errors stack */
3007 ERR_clear_error();
3008
Willy Tarreau6d27a922020-11-05 19:38:05 +01003009 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003010 /* we are limited to DH parameter of 1024 bits anyway */
3011 if (local_dh_1024 == NULL)
3012 local_dh_1024 = ssl_get_dh_1024();
3013
Emeric Brun7a883362019-10-17 13:27:40 +02003014 if (local_dh_1024 == NULL) {
3015 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3016 err && *err ? *err : "", path);
3017 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003018 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003019 }
William Lallemandfa892222019-07-23 16:06:08 +02003020
Emeric Bruna9363eb2019-10-17 14:53:03 +02003021 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3022 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3023 err && *err ? *err : "", path);
3024#if defined(SSL_CTX_set_dh_auto)
3025 SSL_CTX_set_dh_auto(ctx, 1);
3026 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3027 err && *err ? *err : "");
3028#else
3029 memprintf(err, "%s, DH ciphers won't be available.\n",
3030 err && *err ? *err : "");
3031#endif
3032 ret |= ERR_WARN;
3033 goto end;
3034 }
William Lallemandfa892222019-07-23 16:06:08 +02003035 }
3036 else {
3037 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3038 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003039 }
3040
William Lallemandf9568fc2019-10-16 18:27:58 +02003041end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003042 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003043 return ret;
3044}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003045#endif
William Lallemandfa892222019-07-23 16:06:08 +02003046
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003047
3048/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003049 * Returns a bitfield containing the flags:
3050 * ERR_FATAL in any fatal error case
3051 * ERR_ALERT if the reason of the error is available in err
3052 * ERR_WARN if a warning is available into err
3053 * The value 0 means there is no error nor warning and
3054 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003055 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003056static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3057 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003058{
Emeric Bruna96b5822019-10-17 13:25:14 +02003059 int errcode = 0;
3060
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003061 if (find_chain == NULL) {
3062 errcode |= ERR_FATAL;
3063 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003064 }
3065
3066 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3067 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3068 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003069 errcode |= ERR_ALERT | ERR_FATAL;
3070 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003071 }
3072
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003073 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003074 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003075 } else {
3076 /* Find Certificate Chain in global */
3077 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003078 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003079 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003080 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003081 }
William Lallemand85888572020-02-27 14:48:35 +01003082
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003083 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003084 /* always put a null chain stack in the SSL_CTX so it does not
3085 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003086 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003087 }
3088
William Lallemandf187ce62020-06-02 18:27:20 +02003089 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003090#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003091 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003092 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3093 err && *err ? *err : "", path);
3094 errcode |= ERR_ALERT | ERR_FATAL;
3095 goto end;
3096 }
William Lallemandf187ce62020-06-02 18:27:20 +02003097#else
3098 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003099 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003100 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003101 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003102 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003103 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003104 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3105 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003106 X509_free(ca);
3107 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003108 errcode |= ERR_ALERT | ERR_FATAL;
3109 goto end;
3110 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003111 }
William Lallemandf187ce62020-06-02 18:27:20 +02003112#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003113
William Lallemand9a1d8392020-08-10 17:28:23 +02003114#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003115 /* remove the Root CA from the SSL_CTX if the option is activated */
3116 if (global_ssl.skip_self_issued_ca) {
3117 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3118 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3119 err && *err ? *err : "", path);
3120 errcode |= ERR_ALERT | ERR_FATAL;
3121 goto end;
3122 }
3123 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003124#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003125
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003126end:
3127 return errcode;
3128}
3129
3130
3131/* Loads the info in ckch into ctx
3132 * Returns a bitfield containing the flags:
3133 * ERR_FATAL in any fatal error case
3134 * ERR_ALERT if the reason of the error is available in err
3135 * ERR_WARN if a warning is available into err
3136 * The value 0 means there is no error nor warning and
3137 * the operation succeed.
3138 */
3139static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3140{
3141 int errcode = 0;
3142 STACK_OF(X509) *find_chain = NULL;
3143
3144 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3145 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3146 err && *err ? *err : "", path);
3147 errcode |= ERR_ALERT | ERR_FATAL;
3148 return errcode;
3149 }
3150
3151 /* Load certificate chain */
3152 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3153 if (errcode & ERR_CODE)
3154 goto end;
3155
William Lallemandfa892222019-07-23 16:06:08 +02003156#ifndef OPENSSL_NO_DH
3157 /* store a NULL pointer to indicate we have not yet loaded
3158 a custom DH param file */
3159 if (ssl_dh_ptr_index >= 0) {
3160 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3161 }
3162
Emeric Brun7a883362019-10-17 13:27:40 +02003163 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3164 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003165 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3166 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003167 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003168 }
3169#endif
3170
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003171#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003172 if (sctl_ex_index >= 0 && ckch->sctl) {
3173 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3174 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003175 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003176 errcode |= ERR_ALERT | ERR_FATAL;
3177 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003178 }
3179 }
3180#endif
3181
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003182#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003183 /* Load OCSP Info into context */
3184 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003185 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003186 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",
3187 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003188 errcode |= ERR_ALERT | ERR_FATAL;
3189 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003190 }
3191 }
William Lallemand246c0242019-10-11 08:59:13 +02003192#endif
3193
Emeric Bruna96b5822019-10-17 13:25:14 +02003194 end:
3195 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003196}
3197
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003198
3199/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3200 * Returns a bitfield containing the flags:
3201 * ERR_FATAL in any fatal error case
3202 * ERR_ALERT if the reason of the error is available in err
3203 * ERR_WARN if a warning is available into err
3204 * The value 0 means there is no error nor warning and
3205 * the operation succeed.
3206 */
3207static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3208 SSL_CTX *ctx, char **err)
3209{
3210 int errcode = 0;
3211 STACK_OF(X509) *find_chain = NULL;
3212
3213 /* Load the private key */
3214 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3215 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3216 err && *err ? *err : "", path);
3217 errcode |= ERR_ALERT | ERR_FATAL;
3218 }
3219
3220 /* Load certificate chain */
3221 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3222 if (errcode & ERR_CODE)
3223 goto end;
3224
3225 if (SSL_CTX_check_private_key(ctx) <= 0) {
3226 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3227 err && *err ? *err : "", path);
3228 errcode |= ERR_ALERT | ERR_FATAL;
3229 }
3230
3231end:
3232 return errcode;
3233}
3234
3235
William Lallemand614ca0d2019-10-07 13:52:11 +02003236/*
3237 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003238 *
3239 * Returns a bitfield containing the flags:
3240 * ERR_FATAL in any fatal error case
3241 * ERR_ALERT if the reason of the error is available in err
3242 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003243 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003244int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003245 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003246{
William Lallemandc9402072019-05-15 15:33:54 +02003247 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003248 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003249 int order = 0;
3250 X509_NAME *xname;
3251 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003252 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003253 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003254#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3255 STACK_OF(GENERAL_NAME) *names;
3256#endif
William Lallemand36b84632019-07-18 19:28:17 +02003257 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003258 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003259 int errcode = 0;
3260
3261 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003262
William Lallemande3af8fb2019-10-08 11:36:53 +02003263 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003264 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003265
William Lallemande3af8fb2019-10-08 11:36:53 +02003266 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003267
William Lallemandc9402072019-05-15 15:33:54 +02003268 ctx = SSL_CTX_new(SSLv23_server_method());
3269 if (!ctx) {
3270 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3271 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003272 errcode |= ERR_ALERT | ERR_FATAL;
3273 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003274 }
3275
Emeric Bruna96b5822019-10-17 13:25:14 +02003276 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3277 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003278 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003279
3280 ckch_inst = ckch_inst_new();
3281 if (!ckch_inst) {
3282 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3283 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003284 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003285 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003286 }
3287
William Lallemand36b84632019-07-18 19:28:17 +02003288 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003289 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003290 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003291 switch(EVP_PKEY_base_id(pkey)) {
3292 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003293 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003294 break;
3295 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003296 kinfo.sig = TLSEXT_signature_ecdsa;
3297 break;
3298 case EVP_PKEY_DSA:
3299 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003300 break;
3301 }
3302 EVP_PKEY_free(pkey);
3303 }
3304
Emeric Brun50bcecc2013-04-22 13:05:23 +02003305 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003306 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003307 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 +02003308 if (order < 0) {
3309 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003310 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003311 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003312 }
3313 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003314 }
3315 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003316#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003317 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003318 if (names) {
3319 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3320 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3321 if (name->type == GEN_DNS) {
3322 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003323 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003324 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003325 if (order < 0) {
3326 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003327 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003328 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003329 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003330 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003331 }
3332 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003333 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003334 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003335#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003336 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003337 i = -1;
3338 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3339 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003340 ASN1_STRING *value;
3341
3342 value = X509_NAME_ENTRY_get_data(entry);
3343 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003344 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003345 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003346 if (order < 0) {
3347 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003348 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003349 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003350 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003351 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003352 }
3353 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003354 /* we must not free the SSL_CTX anymore below, since it's already in
3355 * the tree, so it will be discovered and cleaned in time.
3356 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003357
Emeric Brunfc0421f2012-09-07 17:30:07 +02003358#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003359 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003360 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3361 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003362 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003363 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003364 }
3365#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003366 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003367 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003368 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003369 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003370 SSL_CTX_up_ref(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003371 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003372
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003373 /* Always keep a reference to the newly constructed SSL_CTX in the
3374 * instance. This way if the instance has no SNIs, the SSL_CTX will
3375 * still be linked. */
3376 SSL_CTX_up_ref(ctx);
3377 ckch_inst->ctx = ctx;
3378
William Lallemand9117de92019-10-04 00:29:42 +02003379 /* everything succeed, the ckch instance can be used */
3380 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003381 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003382 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003383
William Lallemand02e19a52020-04-08 16:11:26 +02003384 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3385
Emeric Brun054563d2019-10-17 13:16:58 +02003386 *ckchi = ckch_inst;
3387 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003388
3389error:
3390 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003391 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003392 if (ckch_inst->is_default)
3393 SSL_CTX_free(ctx);
3394
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003395 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003396 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003397 }
William Lallemandd9199372019-10-04 15:37:05 +02003398 SSL_CTX_free(ctx);
3399
Emeric Brun054563d2019-10-17 13:16:58 +02003400 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003401}
3402
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003403
3404/*
3405 * This function allocate a ckch_inst that will be used on the backend side
3406 * (server line)
3407 *
3408 * Returns a bitfield containing the flags:
3409 * ERR_FATAL in any fatal error case
3410 * ERR_ALERT if the reason of the error is available in err
3411 * ERR_WARN if a warning is available into err
3412 */
3413int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003414 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003415{
3416 SSL_CTX *ctx;
3417 struct cert_key_and_chain *ckch;
3418 struct ckch_inst *ckch_inst = NULL;
3419 int errcode = 0;
3420
3421 *ckchi = NULL;
3422
3423 if (!ckchs || !ckchs->ckch)
3424 return ERR_FATAL;
3425
3426 ckch = ckchs->ckch;
3427
3428 ctx = SSL_CTX_new(SSLv23_client_method());
3429 if (!ctx) {
3430 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3431 err && *err ? *err : "", path);
3432 errcode |= ERR_ALERT | ERR_FATAL;
3433 goto error;
3434 }
3435
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003436 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3437 if (errcode & ERR_CODE)
3438 goto error;
3439
3440 ckch_inst = ckch_inst_new();
3441 if (!ckch_inst) {
3442 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3443 err && *err ? *err : "", path);
3444 errcode |= ERR_ALERT | ERR_FATAL;
3445 goto error;
3446 }
3447
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003448 /* everything succeed, the ckch instance can be used */
3449 ckch_inst->bind_conf = NULL;
3450 ckch_inst->ssl_conf = NULL;
3451 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003452 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003453 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003454
3455 *ckchi = ckch_inst;
3456 return errcode;
3457
3458error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003459 SSL_CTX_free(ctx);
3460
3461 return errcode;
3462}
3463
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003464/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003465static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3466 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003467 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003468{
Emeric Brun054563d2019-10-17 13:16:58 +02003469 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003470
3471 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003472 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 +02003473
Emeric Brun054563d2019-10-17 13:16:58 +02003474 if (errcode & ERR_CODE)
3475 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003476
William Lallemand24bde432020-03-09 16:48:43 +01003477 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003478
3479 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003480 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003481 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003482}
3483
William Lallemanddb26e2b2021-01-26 12:01:46 +01003484/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3485 * fill the SSL_CTX of the server.
3486 *
3487 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003488static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003489 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003490{
3491 int errcode = 0;
3492
3493 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003494 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003495
3496 if (errcode & ERR_CODE)
3497 return errcode;
3498
William Lallemanddb26e2b2021-01-26 12:01:46 +01003499 (*ckch_inst)->server = server;
3500 /* Keep the reference to the SSL_CTX in the server. */
3501 SSL_CTX_up_ref((*ckch_inst)->ctx);
3502 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003503 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003504 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003505 return errcode;
3506}
3507
William Lallemand6be66ec2020-03-06 22:26:32 +01003508
William Lallemand4c68bba2020-03-30 18:45:10 +02003509
3510
3511/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3512 * done once. Zero is returned if the operation fails. No error is returned
3513 * if the random is said as not implemented, because we expect that openssl
3514 * will use another method once needed.
3515 */
3516static int ssl_initialize_random()
3517{
3518 unsigned char random;
3519 static int random_initialized = 0;
3520
3521 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3522 random_initialized = 1;
3523
3524 return random_initialized;
3525}
3526
William Lallemand2954c472020-03-06 21:54:13 +01003527/* Load a crt-list file, this is done in 2 parts:
3528 * - store the content of the file in a crtlist structure with crtlist_entry structures
3529 * - generate the instances by iterating on entries in the crtlist struct
3530 *
3531 * Nothing is locked there, this function is used in the configuration parser.
3532 *
3533 * Returns a set of ERR_* flags possibly with an error in <err>.
3534 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003535int 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 +01003536{
3537 struct crtlist *crtlist = NULL;
3538 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003539 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003540 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003541 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003542 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003543
William Lallemand79d31ec2020-03-25 15:10:49 +01003544 bind_conf_node = malloc(sizeof(*bind_conf_node));
3545 if (!bind_conf_node) {
3546 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3547 cfgerr |= ERR_FATAL | ERR_ALERT;
3548 goto error;
3549 }
3550 bind_conf_node->next = NULL;
3551 bind_conf_node->bind_conf = bind_conf;
3552
William Lallemand41ca9302020-04-08 13:15:18 +02003553 /* strip trailing slashes, including first one */
3554 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3555 *end = 0;
3556
William Lallemand2954c472020-03-06 21:54:13 +01003557 /* look for an existing crtlist or create one */
3558 eb = ebst_lookup(&crtlists_tree, file);
3559 if (eb) {
3560 crtlist = ebmb_entry(eb, struct crtlist, node);
3561 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003562 /* load a crt-list OR a directory */
3563 if (dir)
3564 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3565 else
3566 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3567
William Lallemand2954c472020-03-06 21:54:13 +01003568 if (!(cfgerr & ERR_CODE))
3569 ebst_insert(&crtlists_tree, &crtlist->node);
3570 }
3571
3572 if (cfgerr & ERR_CODE) {
3573 cfgerr |= ERR_FATAL | ERR_ALERT;
3574 goto error;
3575 }
3576
3577 /* generates ckch instance from the crtlist_entry */
3578 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3579 struct ckch_store *store;
3580 struct ckch_inst *ckch_inst = NULL;
3581
3582 store = entry->node.key;
3583 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3584 if (cfgerr & ERR_CODE) {
3585 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3586 goto error;
3587 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003588 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003589 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003590 }
William Lallemand2954c472020-03-06 21:54:13 +01003591
William Lallemand79d31ec2020-03-25 15:10:49 +01003592 /* add the bind_conf to the list */
3593 bind_conf_node->next = crtlist->bind_conf;
3594 crtlist->bind_conf = bind_conf_node;
3595
William Lallemand2954c472020-03-06 21:54:13 +01003596 return cfgerr;
3597error:
3598 {
William Lallemand49398312020-03-30 17:01:33 +02003599 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003600 struct ckch_inst *inst, *s_inst;
3601
William Lallemand49398312020-03-30 17:01:33 +02003602 lastentry = entry; /* which entry we tried to generate last */
3603 if (lastentry) {
3604 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3605 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3606 break;
3607
3608 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003609
William Lallemand49398312020-03-30 17:01:33 +02003610 /* this was not generated for this bind_conf, skip */
3611 if (inst->bind_conf != bind_conf)
3612 continue;
3613
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003614 /* free the sni_ctx and instance */
3615 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003616 }
William Lallemand2954c472020-03-06 21:54:13 +01003617 }
William Lallemand2954c472020-03-06 21:54:13 +01003618 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003619 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003620 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003621 return cfgerr;
3622}
3623
William Lallemand06b22a82020-03-16 14:45:55 +01003624/* Returns a set of ERR_* flags possibly with an error in <err>. */
3625int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3626{
3627 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003628 int cfgerr = 0;
3629 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003630 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003631 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003632
3633 if ((ckchs = ckchs_lookup(path))) {
3634 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003635 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3636 found++;
3637 } else if (stat(path, &buf) == 0) {
3638 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003639 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003640 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003641 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003642 cfgerr |= ERR_ALERT | ERR_FATAL;
3643 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003644 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003645 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003646 }
3647 } else {
3648 /* stat failed, could be a bundle */
3649 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003650 char fp[MAXPATHLEN+1] = {0};
3651 int n = 0;
3652
3653 /* Load all possible certs and keys in separate ckch_store */
3654 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3655 struct stat buf;
3656 int ret;
3657
3658 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3659 if (ret > sizeof(fp))
3660 continue;
3661
3662 if ((ckchs = ckchs_lookup(fp))) {
3663 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003664 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003665 } else {
3666 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003667 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003668 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003669 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003670 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003671 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3672 }
3673 }
3674 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003675#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3676 if (found) {
3677 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3678 err && *err ? *err : "", path);
3679 cfgerr |= ERR_ALERT | ERR_FATAL;
3680 }
3681#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003682 }
3683 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003684 if (!found) {
3685 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3686 err && *err ? *err : "", path, strerror(errno));
3687 cfgerr |= ERR_ALERT | ERR_FATAL;
3688 }
William Lallemand06b22a82020-03-16 14:45:55 +01003689
3690 return cfgerr;
3691}
3692
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003693
3694/* Create a full ssl context and ckch instance that will be used for a specific
3695 * backend server (server configuration line).
3696 * Returns a set of ERR_* flags possibly with an error in <err>.
3697 */
3698int ssl_sock_load_srv_cert(char *path, struct server *server, char **err)
3699{
3700 struct stat buf;
3701 int cfgerr = 0;
3702 struct ckch_store *ckchs;
3703 int found = 0; /* did we found a file to load ? */
3704
3705 if ((ckchs = ckchs_lookup(path))) {
3706 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003707 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003708 found++;
3709 } else if (stat(path, &buf) == 0) {
3710 /* We do not manage directories on backend side. */
3711 if (S_ISDIR(buf.st_mode) == 0) {
3712 ++found;
3713 ckchs = ckchs_load_cert_file(path, err);
3714 if (!ckchs)
3715 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003716 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003717 }
3718 }
3719 if (!found) {
3720 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3721 err && *err ? *err : "", path, strerror(errno));
3722 cfgerr |= ERR_ALERT | ERR_FATAL;
3723 }
3724
3725 return cfgerr;
3726}
3727
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003728/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003729static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003730ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003731{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003732 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003733 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003734 SSL_OP_ALL | /* all known workarounds for bugs */
3735 SSL_OP_NO_SSLv2 |
3736 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003737 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003738 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003739 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003740 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003741 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003742 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003743 SSL_MODE_ENABLE_PARTIAL_WRITE |
3744 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003745 SSL_MODE_RELEASE_BUFFERS |
3746 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003747 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003748 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003749 int flags = MC_SSL_O_ALL;
3750 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003751 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003752
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003753 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003754 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003755
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003756 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003757 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3758 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3759 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003760 else
3761 flags = conf_ssl_methods->flags;
3762
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003763 min = conf_ssl_methods->min;
3764 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003765
3766 /* default minimum is TLSV12, */
3767 if (!min) {
3768 if (!max || (max >= default_min_ver)) {
3769 min = default_min_ver;
3770 } else {
3771 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). "
3772 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3773 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3774 min = max;
3775 }
3776 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003777 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003778 if (min)
3779 flags |= (methodVersions[min].flag - 1);
3780 if (max)
3781 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003782 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003783 min = max = CONF_TLSV_NONE;
3784 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003785 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003786 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003787 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003788 if (min) {
3789 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003790 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3791 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3792 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3793 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003794 hole = 0;
3795 }
3796 max = i;
3797 }
3798 else {
3799 min = max = i;
3800 }
3801 }
3802 else {
3803 if (min)
3804 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003805 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003806 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003807 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3808 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003809 cfgerr += 1;
3810 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003811 /* save real min/max in bind_conf */
3812 conf_ssl_methods->min = min;
3813 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003814
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003815#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003816 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003817 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003818 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003819 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003820 else
William Lallemandd0712f32020-06-11 17:34:00 +02003821 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
3822 /* clear every version flags in case SSL_CTX_new()
3823 * returns an SSL_CTX with disabled versions */
3824 SSL_CTX_clear_options(ctx, methodVersions[i].option);
3825
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003826 if (flags & methodVersions[i].flag)
3827 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02003828
3829 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003830#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003831 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003832 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3833 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003834#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003835
3836 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3837 options |= SSL_OP_NO_TICKET;
3838 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3839 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003840
3841#ifdef SSL_OP_NO_RENEGOTIATION
3842 options |= SSL_OP_NO_RENEGOTIATION;
3843#endif
3844
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003845 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003846
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05003847#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003848 if (global_ssl.async)
3849 mode |= SSL_MODE_ASYNC;
3850#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003851 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003852 if (global_ssl.life_time)
3853 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003854
3855#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3856#ifdef OPENSSL_IS_BORINGSSL
3857 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3858 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05003859#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01003860 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003861 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003862 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3863 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003864#else
3865 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003866#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003867 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003868#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003869 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003870}
3871
William Lallemand4f45bb92017-10-30 20:08:51 +01003872
3873static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3874{
3875 if (first == block) {
3876 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3877 if (first->len > 0)
3878 sh_ssl_sess_tree_delete(sh_ssl_sess);
3879 }
3880}
3881
3882/* return first block from sh_ssl_sess */
3883static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3884{
3885 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3886
3887}
3888
3889/* store a session into the cache
3890 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3891 * data: asn1 encoded session
3892 * data_len: asn1 encoded session length
3893 * Returns 1 id session was stored (else 0)
3894 */
3895static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3896{
3897 struct shared_block *first;
3898 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3899
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003900 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003901 if (!first) {
3902 /* Could not retrieve enough free blocks to store that session */
3903 return 0;
3904 }
3905
3906 /* STORE the key in the first elem */
3907 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3908 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3909 first->len = sizeof(struct sh_ssl_sess_hdr);
3910
3911 /* it returns the already existing node
3912 or current node if none, never returns null */
3913 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
3914 if (oldsh_ssl_sess != sh_ssl_sess) {
3915 /* NOTE: Row couldn't be in use because we lock read & write function */
3916 /* release the reserved row */
3917 shctx_row_dec_hot(ssl_shctx, first);
3918 /* replace the previous session already in the tree */
3919 sh_ssl_sess = oldsh_ssl_sess;
3920 /* ignore the previous session data, only use the header */
3921 first = sh_ssl_sess_first_block(sh_ssl_sess);
3922 shctx_row_inc_hot(ssl_shctx, first);
3923 first->len = sizeof(struct sh_ssl_sess_hdr);
3924 }
3925
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003926 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01003927 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003928 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01003929 }
3930
3931 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003932
3933 return 1;
3934}
William Lallemanded0b5ad2017-10-30 19:36:36 +01003935
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003936/* SSL callback used when a new session is created while connecting to a server */
3937static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
3938{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02003939 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003940 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003941
Willy Tarreau07d94e42018-09-20 10:57:52 +02003942 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003943
William Lallemand3ce6eed2021-02-08 10:43:44 +01003944 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
3945 * one cache per thread, it only prevents to flush it from the CLI in
3946 * another thread */
3947
Olivier Houcharde6060c52017-11-16 17:42:52 +01003948 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
3949 int len;
3950 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003951
Olivier Houcharde6060c52017-11-16 17:42:52 +01003952 len = i2d_SSL_SESSION(sess, NULL);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003953 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003954 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
3955 ptr = s->ssl_ctx.reused_sess[tid].ptr;
3956 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01003957 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
3958 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01003959 s->ssl_ctx.reused_sess[tid].allocated_size = len;
3960 }
3961 if (s->ssl_ctx.reused_sess[tid].ptr) {
3962 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
3963 &ptr);
3964 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01003965 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003966 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01003967 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003968 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003969 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003970 }
3971
3972 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003973}
3974
Olivier Houcharde6060c52017-11-16 17:42:52 +01003975
William Lallemanded0b5ad2017-10-30 19:36:36 +01003976/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01003977int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01003978{
3979 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
3980 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
3981 unsigned char *p;
3982 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02003983 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003984 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003985
3986 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003987 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02003988 * note: SSL_SESSION_set1_id is using
3989 * a memcpy so we need to use a different pointer
3990 * than sid_data or sid_ctx_data to avoid valgrind
3991 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01003992 */
3993
3994 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02003995
3996 /* copy value in an other buffer */
3997 memcpy(encid, sid_data, sid_length);
3998
3999 /* pad with 0 */
4000 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4001 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4002
4003 /* force length to zero to avoid ASN1 encoding */
4004 SSL_SESSION_set1_id(sess, encid, 0);
4005
4006 /* force length to zero to avoid ASN1 encoding */
4007 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004008
4009 /* check if buffer is large enough for the ASN1 encoded session */
4010 data_len = i2d_SSL_SESSION(sess, NULL);
4011 if (data_len > SHSESS_MAX_DATA_LEN)
4012 goto err;
4013
4014 p = encsess;
4015
4016 /* process ASN1 session encoding before the lock */
4017 i2d_SSL_SESSION(sess, &p);
4018
William Lallemanded0b5ad2017-10-30 19:36:36 +01004019
William Lallemanda3c77cf2017-10-30 23:44:40 +01004020 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004021 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004022 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004023 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004024err:
4025 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004026 SSL_SESSION_set1_id(sess, encid, sid_length);
4027 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004028
4029 return 0; /* do not increment session reference count */
4030}
4031
4032/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004033SSL_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 +01004034{
William Lallemand4f45bb92017-10-30 20:08:51 +01004035 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004036 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4037 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004038 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004039 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004040
4041 global.shctx_lookups++;
4042
4043 /* allow the session to be freed automatically by openssl */
4044 *do_copy = 0;
4045
4046 /* tree key is zeros padded sessionid */
4047 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4048 memcpy(tmpkey, key, key_len);
4049 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4050 key = tmpkey;
4051 }
4052
4053 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004054 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004055
4056 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004057 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4058 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004059 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004060 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004061 global.shctx_misses++;
4062 return NULL;
4063 }
4064
William Lallemand4f45bb92017-10-30 20:08:51 +01004065 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4066 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004067
William Lallemand4f45bb92017-10-30 20:08:51 +01004068 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 +01004069
William Lallemanda3c77cf2017-10-30 23:44:40 +01004070 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004071
4072 /* decode ASN1 session */
4073 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004074 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004075 /* Reset session id and session id contenxt */
4076 if (sess) {
4077 SSL_SESSION_set1_id(sess, key, key_len);
4078 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4079 }
4080
4081 return sess;
4082}
4083
William Lallemand4f45bb92017-10-30 20:08:51 +01004084
William Lallemanded0b5ad2017-10-30 19:36:36 +01004085/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004086void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004087{
William Lallemand4f45bb92017-10-30 20:08:51 +01004088 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004089 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4090 unsigned int sid_length;
4091 const unsigned char *sid_data;
4092 (void)ctx;
4093
4094 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4095 /* tree key is zeros padded sessionid */
4096 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4097 memcpy(tmpkey, sid_data, sid_length);
4098 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4099 sid_data = tmpkey;
4100 }
4101
William Lallemanda3c77cf2017-10-30 23:44:40 +01004102 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004103
4104 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004105 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4106 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004107 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004108 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004109 }
4110
4111 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004112 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004113}
4114
4115/* Set session cache mode to server and disable openssl internal cache.
4116 * Set shared cache callbacks on an ssl context.
4117 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004118void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004119{
4120 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4121
4122 if (!ssl_shctx) {
4123 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4124 return;
4125 }
4126
4127 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4128 SSL_SESS_CACHE_NO_INTERNAL |
4129 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4130
4131 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004132 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4133 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4134 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004135}
William Lallemand7d42ef52020-07-06 11:41:30 +02004136
4137/*
4138 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4139 *
4140 * The format is:
4141 * * <Label> <space> <ClientRandom> <space> <Secret>
4142 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4143 */
4144
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05004145#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004146void SSL_CTX_keylog(const SSL *ssl, const char *line)
4147{
4148 struct ssl_keylog *keylog;
4149 char *lastarg = NULL;
4150 char *dst = NULL;
4151
4152 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4153 if (!keylog)
4154 return;
4155
4156 lastarg = strrchr(line, ' ');
4157 if (lastarg == NULL || ++lastarg == NULL)
4158 return;
4159
4160 dst = pool_alloc(pool_head_ssl_keylog_str);
4161 if (!dst)
4162 return;
4163
4164 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4165 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4166
4167 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4168 if (keylog->client_random)
4169 goto error;
4170 keylog->client_random = dst;
4171
4172 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4173 if (keylog->client_early_traffic_secret)
4174 goto error;
4175 keylog->client_early_traffic_secret = dst;
4176
4177 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4178 if(keylog->client_handshake_traffic_secret)
4179 goto error;
4180 keylog->client_handshake_traffic_secret = dst;
4181
4182 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4183 if (keylog->server_handshake_traffic_secret)
4184 goto error;
4185 keylog->server_handshake_traffic_secret = dst;
4186
4187 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4188 if (keylog->client_traffic_secret_0)
4189 goto error;
4190 keylog->client_traffic_secret_0 = dst;
4191
4192 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4193 if (keylog->server_traffic_secret_0)
4194 goto error;
4195 keylog->server_traffic_secret_0 = dst;
4196
4197 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4198 if (keylog->early_exporter_secret)
4199 goto error;
4200 keylog->early_exporter_secret = dst;
4201
4202 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4203 if (keylog->exporter_secret)
4204 goto error;
4205 keylog->exporter_secret = dst;
4206 } else {
4207 goto error;
4208 }
4209
4210 return;
4211
4212error:
4213 pool_free(pool_head_ssl_keylog_str, dst);
4214
4215 return;
4216}
4217#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004218
William Lallemand8b453912019-11-21 15:48:10 +01004219/*
4220 * This function applies the SSL configuration on a SSL_CTX
4221 * It returns an error code and fills the <err> buffer
4222 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004223static 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 +01004224{
4225 struct proxy *curproxy = bind_conf->frontend;
4226 int cfgerr = 0;
4227 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004228 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004229 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004230#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004231 const char *conf_ciphersuites;
4232#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004233 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004234
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004235 if (ssl_conf) {
4236 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4237 int i, min, max;
4238 int flags = MC_SSL_O_ALL;
4239
4240 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004241 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4242 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004243 if (min)
4244 flags |= (methodVersions[min].flag - 1);
4245 if (max)
4246 flags |= ~((methodVersions[max].flag << 1) - 1);
4247 min = max = CONF_TLSV_NONE;
4248 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4249 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4250 if (min)
4251 max = i;
4252 else
4253 min = max = i;
4254 }
4255 /* save real min/max */
4256 conf_ssl_methods->min = min;
4257 conf_ssl_methods->max = max;
4258 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004259 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4260 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004261 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004262 }
4263 }
4264
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004265 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004266 case SSL_SOCK_VERIFY_NONE:
4267 verify = SSL_VERIFY_NONE;
4268 break;
4269 case SSL_SOCK_VERIFY_OPTIONAL:
4270 verify = SSL_VERIFY_PEER;
4271 break;
4272 case SSL_SOCK_VERIFY_REQUIRED:
4273 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4274 break;
4275 }
4276 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4277 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004278 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 +01004279 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 +01004280 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 +01004281 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004282 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004283 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004284 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004285 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004286 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004287 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004288 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4289 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4290 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4291 cfgerr |= ERR_ALERT | ERR_FATAL;
4292 }
4293 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004294 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004295 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 +02004296 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004297 }
Emeric Brun850efd52014-01-29 12:24:34 +01004298 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004299 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4300 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004301 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004302 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004303#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004304 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004305 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4306
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004307 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004308 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4309 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004310 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004311 }
Emeric Brun561e5742012-10-02 15:20:55 +02004312 else {
4313 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4314 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004315 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004316#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004317 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004318 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004319#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004320 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004321 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004322 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation 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;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004325 }
4326 }
4327#endif
4328
William Lallemand4f45bb92017-10-30 20:08:51 +01004329 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004330 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4331 if (conf_ciphers &&
4332 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004333 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4334 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004335 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004336 }
4337
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004338#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004339 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4340 if (conf_ciphersuites &&
4341 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004342 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4343 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004344 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004345 }
4346#endif
4347
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004348#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004349 /* If tune.ssl.default-dh-param has not been set,
4350 neither has ssl-default-dh-file and no static DH
4351 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004352 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004353 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004354 (ssl_dh_ptr_index == -1 ||
4355 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004356 /* default to dh-param 2048 */
4357 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004358 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004359
Willy Tarreauef934602016-12-22 23:12:01 +01004360 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004361 if (local_dh_1024 == NULL) {
4362 local_dh_1024 = ssl_get_dh_1024();
4363 }
Willy Tarreauef934602016-12-22 23:12:01 +01004364 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004365 if (local_dh_2048 == NULL) {
4366 local_dh_2048 = ssl_get_dh_2048();
4367 }
Willy Tarreauef934602016-12-22 23:12:01 +01004368 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004369 if (local_dh_4096 == NULL) {
4370 local_dh_4096 = ssl_get_dh_4096();
4371 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004372 }
4373 }
4374 }
4375#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004376
Emeric Brunfc0421f2012-09-07 17:30:07 +02004377 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004378#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004379 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004380#endif
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05004381#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004382 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4383#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004384
Bernard Spil13c53f82018-02-15 13:34:58 +01004385#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004386 ssl_conf_cur = NULL;
4387 if (ssl_conf && ssl_conf->npn_str)
4388 ssl_conf_cur = ssl_conf;
4389 else if (bind_conf->ssl_conf.npn_str)
4390 ssl_conf_cur = &bind_conf->ssl_conf;
4391 if (ssl_conf_cur)
4392 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004393#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004394#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004395 ssl_conf_cur = NULL;
4396 if (ssl_conf && ssl_conf->alpn_str)
4397 ssl_conf_cur = ssl_conf;
4398 else if (bind_conf->ssl_conf.alpn_str)
4399 ssl_conf_cur = &bind_conf->ssl_conf;
4400 if (ssl_conf_cur)
4401 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004402#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004403#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004404 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4405 if (conf_curves) {
4406 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004407 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4408 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004409 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004410 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004411 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004412 }
4413#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004414#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004415 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004416 int i;
4417 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004418#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004419 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004420 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4421 NULL);
4422
4423 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004424 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004425 return cfgerr;
4426 }
4427#else
4428 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4429 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4430 ECDHE_DEFAULT_CURVE);
4431#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004432
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004433 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004434 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004435 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4436 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004437 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004438 }
4439 else {
4440 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4441 EC_KEY_free(ecdh);
4442 }
4443 }
4444#endif
4445
Emeric Brunfc0421f2012-09-07 17:30:07 +02004446 return cfgerr;
4447}
4448
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004449
4450/*
4451 * Prepare the SSL_CTX based on the bind line configuration.
4452 * Since the CA file loading is made depending on the verify option of the bind
4453 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4454 * If we want to create a link between the CA file entry and the corresponding
4455 * ckch instance (for CA file hot update), it needs to be done after
4456 * ssl_sock_prepare_ctx.
4457 * Returns 0 in case of success.
4458 */
4459int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4460 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4461{
4462 int errcode = 0;
4463
4464 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4465 if (!errcode && ckch_inst)
4466 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4467
4468 return errcode;
4469}
4470
Evan Broderbe554312013-06-27 00:05:25 -07004471static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4472{
4473 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4474 size_t prefixlen, suffixlen;
4475
4476 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004477 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004478 return 1;
4479
Evan Broderbe554312013-06-27 00:05:25 -07004480 /* The rest of this logic is based on RFC 6125, section 6.4.3
4481 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4482
Emeric Bruna848dae2013-10-08 11:27:28 +02004483 pattern_wildcard = NULL;
4484 pattern_left_label_end = pattern;
4485 while (*pattern_left_label_end != '.') {
4486 switch (*pattern_left_label_end) {
4487 case 0:
4488 /* End of label not found */
4489 return 0;
4490 case '*':
4491 /* If there is more than one wildcards */
4492 if (pattern_wildcard)
4493 return 0;
4494 pattern_wildcard = pattern_left_label_end;
4495 break;
4496 }
4497 pattern_left_label_end++;
4498 }
4499
4500 /* If it's not trivial and there is no wildcard, it can't
4501 * match */
4502 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004503 return 0;
4504
4505 /* Make sure all labels match except the leftmost */
4506 hostname_left_label_end = strchr(hostname, '.');
4507 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004508 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004509 return 0;
4510
4511 /* Make sure the leftmost label of the hostname is long enough
4512 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004513 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004514 return 0;
4515
4516 /* Finally compare the string on either side of the
4517 * wildcard */
4518 prefixlen = pattern_wildcard - pattern;
4519 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004520 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4521 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004522 return 0;
4523
4524 return 1;
4525}
4526
4527static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4528{
4529 SSL *ssl;
4530 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004531 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004532 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004533 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004534
4535 int depth;
4536 X509 *cert;
4537 STACK_OF(GENERAL_NAME) *alt_names;
4538 int i;
4539 X509_NAME *cert_subject;
4540 char *str;
4541
4542 if (ok == 0)
4543 return ok;
4544
4545 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004546 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004547 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004548
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004549 /* We're checking if the provided hostnames match the desired one. The
4550 * desired hostname comes from the SNI we presented if any, or if not
4551 * provided then it may have been explicitly stated using a "verifyhost"
4552 * directive. If neither is set, we don't care about the name so the
4553 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004554 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004555 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004556 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004557 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004558 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004559 if (!servername)
4560 return ok;
4561 }
Evan Broderbe554312013-06-27 00:05:25 -07004562
4563 /* We only need to verify the CN on the actual server cert,
4564 * not the indirect CAs */
4565 depth = X509_STORE_CTX_get_error_depth(ctx);
4566 if (depth != 0)
4567 return ok;
4568
4569 /* At this point, the cert is *not* OK unless we can find a
4570 * hostname match */
4571 ok = 0;
4572
4573 cert = X509_STORE_CTX_get_current_cert(ctx);
4574 /* It seems like this might happen if verify peer isn't set */
4575 if (!cert)
4576 return ok;
4577
4578 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4579 if (alt_names) {
4580 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4581 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4582 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004583#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004584 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4585#else
Evan Broderbe554312013-06-27 00:05:25 -07004586 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004587#endif
Evan Broderbe554312013-06-27 00:05:25 -07004588 ok = ssl_sock_srv_hostcheck(str, servername);
4589 OPENSSL_free(str);
4590 }
4591 }
4592 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004593 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004594 }
4595
4596 cert_subject = X509_get_subject_name(cert);
4597 i = -1;
4598 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4599 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004600 ASN1_STRING *value;
4601 value = X509_NAME_ENTRY_get_data(entry);
4602 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004603 ok = ssl_sock_srv_hostcheck(str, servername);
4604 OPENSSL_free(str);
4605 }
4606 }
4607
Willy Tarreau71d058c2017-07-26 20:09:56 +02004608 /* report the mismatch and indicate if SNI was used or not */
4609 if (!ok && !conn->err_code)
4610 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004611 return ok;
4612}
4613
Emeric Brun94324a42012-10-11 14:00:19 +02004614/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004615int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004616{
Willy Tarreau03209342016-12-22 17:08:28 +01004617 struct proxy *curproxy = srv->proxy;
Emeric Brun94324a42012-10-11 14:00:19 +02004618 int cfgerr = 0;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004619 SSL_CTX *ctx = srv->ssl_ctx.ctx;
Emeric Brun94324a42012-10-11 14:00:19 +02004620
Thierry Fournier383085f2013-01-24 14:15:43 +01004621 /* Make sure openssl opens /dev/urandom before the chroot */
4622 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004623 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004624 cfgerr++;
4625 }
4626
Willy Tarreaufce03112015-01-15 21:32:40 +01004627 /* Automatic memory computations need to know we use SSL there */
4628 global.ssl_used_backend = 1;
4629
4630 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004631 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004632 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004633 ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n",
4634 curproxy->id, srv->id,
4635 srv->conf.file, srv->conf.line);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004636 cfgerr++;
4637 return cfgerr;
4638 }
4639 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004640 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004641 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004642
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004643 /* The context will be uninitialized if there wasn't any "cert" option
4644 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004645 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004646 ctx = SSL_CTX_new(SSLv23_client_method());
4647 if (!ctx) {
4648 ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n",
4649 proxy_type_str(curproxy), curproxy->id,
4650 srv->id);
4651 cfgerr++;
4652 return cfgerr;
4653 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004654
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004655 srv->ssl_ctx.ctx = ctx;
4656 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004657
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004658 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 +01004659
4660 return cfgerr;
4661}
4662
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004663/* Initialize an SSL context that will be used on the backend side.
4664 * Returns an error count.
4665 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004666static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004667{
4668 struct proxy *curproxy = srv->proxy;
4669 int cfgerr = 0;
4670 long options =
4671 SSL_OP_ALL | /* all known workarounds for bugs */
4672 SSL_OP_NO_SSLv2 |
4673 SSL_OP_NO_COMPRESSION;
4674 long mode =
4675 SSL_MODE_ENABLE_PARTIAL_WRITE |
4676 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4677 SSL_MODE_RELEASE_BUFFERS |
4678 SSL_MODE_SMALL_BUFFERS;
4679 int verify = SSL_VERIFY_NONE;
4680 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4681 int i, min, max, hole;
4682 int flags = MC_SSL_O_ALL;
4683
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004684 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004685 ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. "
4686 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4687 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004688 else
4689 flags = conf_ssl_methods->flags;
4690
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004691 /* Real min and max should be determinate with configuration and openssl's capabilities */
4692 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004693 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004694 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004695 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004696
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004697 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004698 min = max = CONF_TLSV_NONE;
4699 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004700 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004701 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004702 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004703 if (min) {
4704 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004705 ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. "
4706 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4707 proxy_type_str(curproxy), curproxy->id, srv->id,
4708 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004709 hole = 0;
4710 }
4711 max = i;
4712 }
4713 else {
4714 min = max = i;
4715 }
4716 }
4717 else {
4718 if (min)
4719 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004720 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004721 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004722 ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
4723 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004724 cfgerr += 1;
4725 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004726
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004727#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004728 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004729 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004730 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004731 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004732 else
4733 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4734 if (flags & methodVersions[i].flag)
4735 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004736#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004737 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004738 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4739 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004740#endif
4741
4742 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4743 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004744 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004745
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004746#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004747 if (global_ssl.async)
4748 mode |= SSL_MODE_ASYNC;
4749#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004750 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004751
Emeric Brun850efd52014-01-29 12:24:34 +01004752 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4753 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004754 switch (srv->ssl_ctx.verify) {
4755 case SSL_SOCK_VERIFY_NONE:
4756 verify = SSL_VERIFY_NONE;
4757 break;
4758 case SSL_SOCK_VERIFY_REQUIRED:
4759 verify = SSL_VERIFY_PEER;
4760 break;
4761 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004762 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004763 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004764 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004765 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004766 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004767 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004768 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to set CA file '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004769 curproxy->id, srv->id,
4770 srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004771 cfgerr++;
4772 }
4773 }
Emeric Brun850efd52014-01-29 12:24:34 +01004774 else {
4775 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004776 ha_alert("Proxy '%s', server '%s' [%s:%d] 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",
4777 curproxy->id, srv->id,
4778 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004779 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01004780 ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n",
4781 curproxy->id, srv->id,
4782 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004783 cfgerr++;
4784 }
Emeric Brunef42d922012-10-11 16:11:36 +02004785#ifdef X509_V_FLAG_CRL_CHECK
4786 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004787 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02004788
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004789 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004790 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n",
4791 curproxy->id, srv->id,
4792 srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004793 cfgerr++;
4794 }
4795 else {
4796 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4797 }
4798 }
4799#endif
4800 }
4801
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004802 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
4803 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004804 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004805 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004806 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n",
4807 curproxy->id, srv->id,
4808 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004809 cfgerr++;
4810 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004811
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004812#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004813 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004814 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004815 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n",
4816 curproxy->id, srv->id,
4817 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites);
4818 cfgerr++;
4819 }
4820#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004821#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4822 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004823 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01004824#endif
4825#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4826 if (srv->ssl_ctx.alpn_str)
4827 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4828#endif
4829
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004830
4831 return cfgerr;
4832}
4833
4834/*
4835 * Prepare the frontend's SSL_CTX based on the server line configuration.
4836 * Since the CA file loading is made depending on the verify option of the
4837 * server line, the link between the SSL_CTX and the CA file tree entry is
4838 * made here.
4839 * If we want to create a link between the CA file entry and the corresponding
4840 * ckch instance (for CA file hot update), it needs to be done after
4841 * ssl_sock_prepare_srv_ssl_ctx.
4842 * Returns an error count.
4843 */
4844int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
4845 struct ckch_inst *ckch_inst)
4846{
4847 int cfgerr = 0;
4848
4849 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
4850 if (!cfgerr && ckch_inst)
4851 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02004852
4853 return cfgerr;
4854}
4855
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004856
Frédéric Lécailleec216522020-11-23 14:33:30 +01004857/*
4858 * Create an initial CTX used to start the SSL connections.
4859 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
4860 * Returns 0 if succeeded, or something >0 if not.
4861 */
4862#ifdef USE_QUIC
4863static int ssl_initial_ctx(struct bind_conf *bind_conf)
4864{
4865 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
4866 return ssl_quic_initial_ctx(bind_conf);
4867 else
4868 return ssl_sock_initial_ctx(bind_conf);
4869}
4870#else
4871static int ssl_initial_ctx(struct bind_conf *bind_conf)
4872{
4873 return ssl_sock_initial_ctx(bind_conf);
4874}
4875#endif
4876
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004877/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004878 * be NULL, in which case nothing is done. Returns the number of errors
4879 * encountered.
4880 */
Willy Tarreau03209342016-12-22 17:08:28 +01004881int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004882{
4883 struct ebmb_node *node;
4884 struct sni_ctx *sni;
4885 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01004886 int errcode = 0;
4887 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004888
Willy Tarreaufce03112015-01-15 21:32:40 +01004889 /* Automatic memory computations need to know we use SSL there */
4890 global.ssl_used_frontend = 1;
4891
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004892 /* Make sure openssl opens /dev/urandom before the chroot */
4893 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004894 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004895 err++;
4896 }
4897 /* Create initial_ctx used to start the ssl connection before do switchctx */
4898 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01004899 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004900 /* It should not be necessary to call this function, but it's
4901 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01004902 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004903 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
4904 }
4905 if (bind_conf->default_ctx) {
4906 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, NULL, &errmsg);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004907 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004908
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004909 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004910 while (node) {
4911 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004912 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004913 /* only initialize the CTX on its first occurrence and
4914 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004915 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
4916 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004917 node = ebmb_next(node);
4918 }
4919
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004920 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004921 while (node) {
4922 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01004923 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004924 /* only initialize the CTX on its first occurrence and
4925 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004926 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004927 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004928 node = ebmb_next(node);
4929 }
William Lallemand8b453912019-11-21 15:48:10 +01004930
4931 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004932 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004933 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004934 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004935 err++;
4936 }
4937
4938 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004939 return err;
4940}
4941
Willy Tarreau55d37912016-12-21 23:38:39 +01004942/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4943 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4944 * alerts are directly emitted since the rest of the stack does it below.
4945 */
4946int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4947{
4948 struct proxy *px = bind_conf->frontend;
4949 int alloc_ctx;
4950 int err;
4951
4952 if (!bind_conf->is_ssl) {
4953 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004954 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4955 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004956 }
4957 return 0;
4958 }
4959 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004960 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004961 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4962 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004963 }
4964 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004965 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4966 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004967 return -1;
4968 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004969 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004970 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004971 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004972 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004973 sizeof(*sh_ssl_sess_tree),
4974 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004975 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004976 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4977 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");
4978 else
4979 ha_alert("Unable to allocate SSL session cache.\n");
4980 return -1;
4981 }
4982 /* free block callback */
4983 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4984 /* init the root tree within the extra space */
4985 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4986 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004987 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004988 err = 0;
4989 /* initialize all certificate contexts */
4990 err += ssl_sock_prepare_all_ctx(bind_conf);
4991
4992 /* initialize CA variables if the certificates generation is enabled */
4993 err += ssl_sock_load_ca(bind_conf);
4994
4995 return -err;
4996}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004997
4998/* release ssl context allocated for servers. */
4999void ssl_sock_free_srv_ctx(struct server *srv)
5000{
Olivier Houchardc7566002018-11-20 23:33:50 +01005001#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5002 if (srv->ssl_ctx.alpn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005003 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005004#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005005#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01005006 if (srv->ssl_ctx.npn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005007 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005008#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005009 if (srv->ssl_ctx.reused_sess) {
5010 int i;
5011
5012 for (i = 0; i < global.nbthread; i++)
Willy Tarreaue709e822021-02-26 21:06:32 +01005013 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
5014 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005015 }
5016
Willy Tarreaue709e822021-02-26 21:06:32 +01005017 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005018 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005019 srv->ssl_ctx.ctx = NULL;
5020 }
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005021}
5022
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005023/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005024 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5025 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005026void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005027{
5028 struct ebmb_node *node, *back;
5029 struct sni_ctx *sni;
5030
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005031 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005032 while (node) {
5033 sni = ebmb_entry(node, struct sni_ctx, name);
5034 back = ebmb_next(node);
5035 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005036 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005037 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005038 free(sni);
5039 node = back;
5040 }
5041
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005042 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005043 while (node) {
5044 sni = ebmb_entry(node, struct sni_ctx, name);
5045 back = ebmb_next(node);
5046 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005047 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005048 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005049 free(sni);
5050 node = back;
5051 }
William Lallemandb2408692020-06-24 09:54:29 +02005052
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005053 SSL_CTX_free(bind_conf->initial_ctx);
5054 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005055 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005056 bind_conf->default_ctx = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005057 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005058}
William Lallemandb2408692020-06-24 09:54:29 +02005059
5060
5061void ssl_sock_deinit()
5062{
5063 crtlist_deinit(); /* must be free'd before the ckchs */
5064 ckch_deinit();
5065}
5066REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005067
Willy Tarreau795cdab2016-12-22 17:30:54 +01005068/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5069void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5070{
5071 ssl_sock_free_ca(bind_conf);
5072 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005073 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005074 free(bind_conf->ca_sign_file);
5075 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005076 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005077 free(bind_conf->keys_ref->filename);
5078 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005079 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005080 free(bind_conf->keys_ref);
5081 }
5082 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005083 bind_conf->ca_sign_pass = NULL;
5084 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005085}
5086
Christopher Faulet31af49d2015-06-09 17:29:50 +02005087/* Load CA cert file and private key used to generate certificates */
5088int
Willy Tarreau03209342016-12-22 17:08:28 +01005089ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005090{
Willy Tarreau03209342016-12-22 17:08:28 +01005091 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005092 struct cert_key_and_chain *ckch = NULL;
5093 int ret = 0;
5094 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005095
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005096 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005097 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005098
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005099#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005100 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005101 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005102 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005103 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005104 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005105#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005106
Christopher Faulet31af49d2015-06-09 17:29:50 +02005107 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005108 ha_alert("Proxy '%s': cannot enable certificate generation, "
5109 "no CA certificate File configured at [%s:%d].\n",
5110 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005111 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005112 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005113
Shimi Gersner5846c492020-08-23 13:58:12 +03005114 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005115 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005116 if (!ckch) {
5117 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5118 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5119 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005120 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005121
5122 /* Try to parse file */
5123 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5124 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5125 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005126 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005127 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005128 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005129
5130 /* Fail if missing cert or pkey */
5131 if ((!ckch->cert) || (!ckch->key)) {
5132 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5133 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5134 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005135 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005136
Shimi Gersner5846c492020-08-23 13:58:12 +03005137 /* Final assignment to bind */
5138 bind_conf->ca_sign_ckch = ckch;
5139 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005140
Shimi Gersner5846c492020-08-23 13:58:12 +03005141 failed:
5142 if (ckch) {
5143 ssl_sock_free_cert_key_and_chain_contents(ckch);
5144 free(ckch);
5145 }
5146
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005147 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005148 ret++;
5149 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005150}
5151
5152/* Release CA cert and private key used to generate certificated */
5153void
5154ssl_sock_free_ca(struct bind_conf *bind_conf)
5155{
Shimi Gersner5846c492020-08-23 13:58:12 +03005156 if (bind_conf->ca_sign_ckch) {
5157 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005158 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005159 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005160}
5161
Emeric Brun46591952012-05-18 15:47:34 +02005162/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005163 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5164 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5165 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5166 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005167 * 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 +01005168 * as parameters to this function.
5169 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5170 * CO_ER_SSL_NO_MEM.
5171 */
5172int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5173 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5174{
5175 int retry = 1;
5176
5177 retry:
5178 /* Alloc a new SSL session. */
5179 *ssl = SSL_new(ssl_ctx);
5180 if (!*ssl) {
5181 if (!retry--)
5182 goto err;
5183
5184 pool_gc(NULL);
5185 goto retry;
5186 }
5187
5188 *bio = BIO_new(bio_meth);
5189 if (!*bio) {
5190 SSL_free(*ssl);
5191 *ssl = NULL;
5192 if (!retry--)
5193 goto err;
5194
5195 pool_gc(NULL);
5196 goto retry;
5197 }
5198
5199 BIO_set_data(*bio, ctx);
5200 SSL_set_bio(*ssl, *bio, *bio);
5201
5202 /* set connection pointer. */
5203 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5204 SSL_free(*ssl);
5205 *ssl = NULL;
5206 if (!retry--)
5207 goto err;
5208
5209 pool_gc(NULL);
5210 goto retry;
5211 }
5212
5213 return 0;
5214
5215 err:
5216 conn->err_code = CO_ER_SSL_NO_MEM;
5217 return -1;
5218}
5219
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005220/* This function is called when all the XPRT have been initialized. We can
5221 * now attempt to start the SSL handshake.
5222 */
5223static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5224{
5225 struct ssl_sock_ctx *ctx = xprt_ctx;
5226
5227 if (ctx->xprt->start) {
5228 int ret;
5229
5230 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5231 if (ret < 0)
5232 return ret;
5233 }
5234 tasklet_wakeup(ctx->wait_event.tasklet);
5235
5236 return 0;
5237}
5238
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005239/*
Emeric Brun46591952012-05-18 15:47:34 +02005240 * This function is called if SSL * context is not yet allocated. The function
5241 * is designed to be called before any other data-layer operation and sets the
5242 * handshake flag on the connection. It is safe to call it multiple times.
5243 * It returns 0 on success and -1 in error case.
5244 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005245static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005246{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005247 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005248 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005249 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005250 return 0;
5251
Olivier Houchard66ab4982019-02-26 18:37:15 +01005252 ctx = pool_alloc(ssl_sock_ctx_pool);
5253 if (!ctx) {
5254 conn->err_code = CO_ER_SSL_NO_MEM;
5255 return -1;
5256 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005257 ctx->wait_event.tasklet = tasklet_new();
5258 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005259 conn->err_code = CO_ER_SSL_NO_MEM;
5260 pool_free(ssl_sock_ctx_pool, ctx);
5261 return -1;
5262 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005263 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5264 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005265 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005266 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005267 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005268 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005269 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005270 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005271 ctx->xprt_st = 0;
5272 ctx->xprt_ctx = NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005273
5274 /* Only work with sockets for now, this should be adapted when we'll
5275 * add QUIC support.
5276 */
5277 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005278 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005279 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5280 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005281 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005282
Willy Tarreau20879a02012-12-03 16:32:10 +01005283 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5284 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005285 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005286 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005287
Emeric Brun46591952012-05-18 15:47:34 +02005288 /* If it is in client mode initiate SSL session
5289 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005290 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005291 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5292 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005293 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005294
Olivier Houchard66ab4982019-02-26 18:37:15 +01005295 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005296 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005297 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5298 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5299 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 +01005300 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005301 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005302 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005303 } else if (sess) {
5304 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005305 }
5306 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005307 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005308
Emeric Brun46591952012-05-18 15:47:34 +02005309 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005310 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005311
Willy Tarreau4781b152021-04-06 13:53:36 +02005312 _HA_ATOMIC_INC(&sslconns);
5313 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005314 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005315 return 0;
5316 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005317 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005318 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005319
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005320 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5321 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005322 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005323
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005324#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005325 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005326 b_alloc(&ctx->early_buf);
5327 SSL_set_max_early_data(ctx->ssl,
5328 /* Only allow early data if we managed to allocate
5329 * a buffer.
5330 */
5331 (!b_is_null(&ctx->early_buf)) ?
5332 global.tune.bufsize - global.tune.maxrewrite : 0);
5333 }
5334#endif
5335
Olivier Houchard66ab4982019-02-26 18:37:15 +01005336 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005337
Emeric Brun46591952012-05-18 15:47:34 +02005338 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005339 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005340#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005341 if (bc->ssl_conf.early_data)
5342 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005343#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005344
Willy Tarreau4781b152021-04-06 13:53:36 +02005345 _HA_ATOMIC_INC(&sslconns);
5346 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005347 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005348 return 0;
5349 }
5350 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005351 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005352err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005353 if (ctx && ctx->wait_event.tasklet)
5354 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005355 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005356 return -1;
5357}
5358
5359
5360/* This is the callback which is used when an SSL handshake is pending. It
5361 * updates the FD status if it wants some polling before being called again.
5362 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5363 * otherwise it returns non-zero and removes itself from the connection's
5364 * flags (the bit is provided in <flag> by the caller).
5365 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005366static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005367{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005368 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005369 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005370 struct ssl_counters *counters = NULL;
5371 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005372 struct listener *li;
5373 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005374 socklen_t lskerr;
5375 int skerr;
5376
Emeric Brun46591952012-05-18 15:47:34 +02005377
Willy Tarreau3c728722014-01-23 13:50:42 +01005378 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005379 return 0;
5380
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005381 /* get counters */
5382 switch (obj_type(conn->target)) {
5383 case OBJ_TYPE_LISTENER:
5384 li = objt_listener(conn->target);
5385 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5386 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5387 &ssl_stats_module);
5388 break;
5389
5390 case OBJ_TYPE_SERVER:
5391 srv = objt_server(conn->target);
5392 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5393 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5394 &ssl_stats_module);
5395 break;
5396
5397 default:
5398 break;
5399 }
5400
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005401 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005402 goto out_error;
5403
Willy Tarreau06300382021-02-02 15:42:25 +01005404 /* don't start calculating a handshake on a dead connection */
5405 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5406 goto out_error;
5407
5408 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5409 * status from the lower layers, so let's check the FD directly. Ideally
5410 * the xprt layers should provide some status indicating their knowledge
5411 * of shutdowns or error.
5412 */
5413 skerr = 0;
5414 lskerr = sizeof(skerr);
5415 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5416 skerr != 0)
5417 goto out_error;
5418
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005419#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005420 /*
5421 * Check if we have early data. If we do, we have to read them
5422 * before SSL_do_handshake() is called, And there's no way to
5423 * detect early data, except to try to read them
5424 */
5425 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005426 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005427
Olivier Houchard54907bb2019-12-19 15:02:39 +01005428 while (1) {
5429 ret = SSL_read_early_data(ctx->ssl,
5430 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5431 &read_data);
5432 if (ret == SSL_READ_EARLY_DATA_ERROR)
5433 goto check_error;
5434 if (read_data > 0) {
5435 conn->flags |= CO_FL_EARLY_DATA;
5436 b_add(&ctx->early_buf, read_data);
5437 }
5438 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5439 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5440 if (!b_data(&ctx->early_buf))
5441 b_free(&ctx->early_buf);
5442 break;
5443 }
5444 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005445 }
5446#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005447 /* If we use SSL_do_handshake to process a reneg initiated by
5448 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5449 * Usually SSL_write and SSL_read are used and process implicitly
5450 * the reneg handshake.
5451 * Here we use SSL_peek as a workaround for reneg.
5452 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005453 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005454 char c;
5455
Olivier Houchard66ab4982019-02-26 18:37:15 +01005456 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005457 if (ret <= 0) {
5458 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005459 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005460
Emeric Brun674b7432012-11-08 19:21:55 +01005461 if (ret == SSL_ERROR_WANT_WRITE) {
5462 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005463 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005464 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005465 return 0;
5466 }
5467 else if (ret == SSL_ERROR_WANT_READ) {
5468 /* handshake may have been completed but we have
5469 * no more data to read.
5470 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005471 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005472 ret = 1;
5473 goto reneg_ok;
5474 }
5475 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005476 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005477 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005478 return 0;
5479 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005480#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005481 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005482 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005483 return 0;
5484 }
5485#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005486 else if (ret == SSL_ERROR_SYSCALL) {
5487 /* if errno is null, then connection was successfully established */
5488 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5489 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005490 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005491#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5492 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005493 conn->err_code = CO_ER_SSL_HANDSHAKE;
5494#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005495 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005496#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005497 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005498 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005499 empty_handshake = state == TLS_ST_BEFORE;
5500#else
Lukas Tribus49799162019-07-08 14:29:15 +02005501 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5502 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005503#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005504 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005505 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005506 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005507 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5508 else
5509 conn->err_code = CO_ER_SSL_EMPTY;
5510 }
5511 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005512 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005513 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5514 else
5515 conn->err_code = CO_ER_SSL_ABORT;
5516 }
5517 }
5518 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005519 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005520 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005521 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005522 conn->err_code = CO_ER_SSL_HANDSHAKE;
5523 }
Lukas Tribus49799162019-07-08 14:29:15 +02005524#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005525 }
Emeric Brun674b7432012-11-08 19:21:55 +01005526 goto out_error;
5527 }
5528 else {
5529 /* Fail on all other handshake errors */
5530 /* Note: OpenSSL may leave unread bytes in the socket's
5531 * buffer, causing an RST to be emitted upon close() on
5532 * TCP sockets. We first try to drain possibly pending
5533 * data to avoid this as much as possible.
5534 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005535 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005536 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005537 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005538 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005539 goto out_error;
5540 }
5541 }
5542 /* read some data: consider handshake completed */
5543 goto reneg_ok;
5544 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005545 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005546check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005547 if (ret != 1) {
5548 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005549 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005550
5551 if (ret == SSL_ERROR_WANT_WRITE) {
5552 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005553 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005554 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005555 return 0;
5556 }
5557 else if (ret == SSL_ERROR_WANT_READ) {
5558 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005559 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005560 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5561 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005562 return 0;
5563 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005564#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005565 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005566 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005567 return 0;
5568 }
5569#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005570 else if (ret == SSL_ERROR_SYSCALL) {
5571 /* if errno is null, then connection was successfully established */
5572 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5573 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005574 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005575#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5576 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005577 conn->err_code = CO_ER_SSL_HANDSHAKE;
5578#else
5579 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005580#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005581 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005582 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005583 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005584#else
Lukas Tribus49799162019-07-08 14:29:15 +02005585 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5586 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005587#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005588 if (empty_handshake) {
5589 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005590 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005591 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5592 else
5593 conn->err_code = CO_ER_SSL_EMPTY;
5594 }
5595 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005596 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005597 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5598 else
5599 conn->err_code = CO_ER_SSL_ABORT;
5600 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005601 }
5602 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005603 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005604 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5605 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005606 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005607 }
Lukas Tribus49799162019-07-08 14:29:15 +02005608#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005609 }
Willy Tarreau89230192012-09-28 20:22:13 +02005610 goto out_error;
5611 }
Emeric Brun46591952012-05-18 15:47:34 +02005612 else {
5613 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005614 /* Note: OpenSSL may leave unread bytes in the socket's
5615 * buffer, causing an RST to be emitted upon close() on
5616 * TCP sockets. We first try to drain possibly pending
5617 * data to avoid this as much as possible.
5618 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005619 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005620 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005621 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005622 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005623 goto out_error;
5624 }
5625 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005626#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005627 else {
5628 /*
5629 * If the server refused the early data, we have to send a
5630 * 425 to the client, as we no longer have the data to sent
5631 * them again.
5632 */
5633 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005634 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005635 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5636 goto out_error;
5637 }
5638 }
5639 }
5640#endif
5641
Emeric Brun46591952012-05-18 15:47:34 +02005642
Emeric Brun674b7432012-11-08 19:21:55 +01005643reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005644
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005645#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005646 /* ASYNC engine API doesn't support moving read/write
5647 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005648 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005649 */
5650 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005651 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005652#endif
Emeric Brun46591952012-05-18 15:47:34 +02005653 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005654 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005655 if (objt_server(conn->target)) {
5656 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5657 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5658 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005659 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005660 else {
5661 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5662 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5663 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5664 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005665
Willy Tarreau42995282020-11-06 13:19:18 +01005666 if (counters) {
5667 ++counters->sess;
5668 ++counters_px->sess;
5669 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005670 }
Willy Tarreau42995282020-11-06 13:19:18 +01005671 else if (counters) {
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005672 ++counters->reused_sess;
5673 ++counters_px->reused_sess;
Emeric Brun46591952012-05-18 15:47:34 +02005674 }
5675
5676 /* The connection is now established at both layers, it's time to leave */
5677 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5678 return 1;
5679
5680 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005681 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005682 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005683 ERR_clear_error();
5684
Emeric Brun9fa89732012-10-04 17:09:56 +02005685 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005686 if (objt_server(conn->target)) {
5687 struct server *s = __objt_server(conn->target);
5688 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5689 * one cache per thread, it only prevents to flush it from the CLI in
5690 * another thread */
5691
5692 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005693 if (s->ssl_ctx.reused_sess[tid].ptr)
5694 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005695 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005696 }
5697
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005698 if (counters) {
5699 ++counters->failed_handshake;
5700 ++counters_px->failed_handshake;
5701 }
5702
Emeric Brun46591952012-05-18 15:47:34 +02005703 /* Fail on all other handshake errors */
5704 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005705 if (!conn->err_code)
5706 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005707 return 0;
5708}
5709
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005710/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5711 * event subscriber <es> is not allowed to change from a previous call as long
5712 * as at least one event is still subscribed. The <event_type> must only be a
5713 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5714 * unless the transport layer was already released.
5715 */
5716static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005717{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005718 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005719
Olivier Houchard0ff28652019-06-24 18:57:39 +02005720 if (!ctx)
5721 return -1;
5722
Willy Tarreau113d52b2020-01-10 09:20:26 +01005723 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005724 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005725
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005726 ctx->subs = es;
5727 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005728
5729 /* we may have to subscribe to lower layers for new events */
5730 event_type &= ~ctx->wait_event.events;
5731 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5732 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005733 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005734}
5735
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005736/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5737 * The <es> pointer is not allowed to differ from the one passed to the
5738 * subscribe() call. It always returns zero.
5739 */
5740static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005741{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005742 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005743
Willy Tarreau113d52b2020-01-10 09:20:26 +01005744 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005745 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005746
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005747 es->events &= ~event_type;
5748 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005749 ctx->subs = NULL;
5750
5751 /* If we subscribed, and we're not doing the handshake,
5752 * then we subscribed because the upper layer asked for it,
5753 * as the upper layer is no longer interested, we can
5754 * unsubscribe too.
5755 */
5756 event_type &= ctx->wait_event.events;
5757 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5758 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005759
5760 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005761}
5762
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005763/* The connection has been taken over, so destroy the old tasklet and create
5764 * a new one. The original thread ID must be passed into orig_tid
5765 * It should be called with the takeover lock for the old thread held.
5766 * Returns 0 on success, and -1 on failure
5767 */
5768static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
5769{
5770 struct ssl_sock_ctx *ctx = xprt_ctx;
5771 struct tasklet *tl = tasklet_new();
5772
5773 if (!tl)
5774 return -1;
5775
5776 ctx->wait_event.tasklet->context = NULL;
5777 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
5778 ctx->wait_event.tasklet = tl;
5779 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5780 ctx->wait_event.tasklet->context = ctx;
5781 return 0;
5782}
5783
Willy Tarreau41491682021-03-02 17:29:56 +01005784/* notify the next xprt that the connection is about to become idle and that it
5785 * may be stolen at any time after the function returns and that any tasklet in
5786 * the chain must be careful before dereferencing its context.
5787 */
5788static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
5789{
5790 struct ssl_sock_ctx *ctx = xprt_ctx;
5791
5792 if (!ctx || !ctx->wait_event.tasklet)
5793 return;
5794
5795 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5796 if (ctx->xprt)
5797 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
5798}
5799
5800/* notify the next xprt that the connection is not idle anymore and that it may
5801 * not be stolen before the next xprt_set_idle().
5802 */
5803static void ssl_set_used(struct connection *conn, void *xprt_ctx)
5804{
5805 struct ssl_sock_ctx *ctx = xprt_ctx;
5806
5807 if (!ctx || !ctx->wait_event.tasklet)
5808 return;
5809
5810 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5811 if (ctx->xprt)
5812 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
5813}
5814
Olivier Houchard2e055482019-05-27 19:50:12 +02005815/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5816 * Returns 0 on success, and non-zero on failure.
5817 */
5818static 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)
5819{
5820 struct ssl_sock_ctx *ctx = xprt_ctx;
5821
5822 if (oldxprt_ops != NULL)
5823 *oldxprt_ops = ctx->xprt;
5824 if (oldxprt_ctx != NULL)
5825 *oldxprt_ctx = ctx->xprt_ctx;
5826 ctx->xprt = toadd_ops;
5827 ctx->xprt_ctx = toadd_ctx;
5828 return 0;
5829}
5830
Olivier Houchard5149b592019-05-23 17:47:36 +02005831/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5832 * return 0, otherwise just call the remove_xprt method from the underlying
5833 * XPRT.
5834 */
5835static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5836{
5837 struct ssl_sock_ctx *ctx = xprt_ctx;
5838
5839 if (ctx->xprt_ctx == toremove_ctx) {
5840 ctx->xprt_ctx = newctx;
5841 ctx->xprt = newops;
5842 return 0;
5843 }
5844 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
5845}
5846
Willy Tarreau144f84a2021-03-02 16:09:26 +01005847struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02005848{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005849 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005850 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005851 struct connection *conn;
5852 int conn_in_list;
5853 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005854
Willy Tarreau41491682021-03-02 17:29:56 +01005855 if (state & TASK_F_USR1) {
5856 /* the tasklet was idling on an idle connection, it might have
5857 * been stolen, let's be careful!
5858 */
5859 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5860 if (tl->context == NULL) {
5861 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5862 tasklet_free(tl);
5863 return NULL;
5864 }
5865 conn = ctx->conn;
5866 conn_in_list = conn->flags & CO_FL_LIST_MASK;
5867 if (conn_in_list)
5868 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005869 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01005870 } else {
5871 conn = ctx->conn;
5872 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005873 }
Willy Tarreau41491682021-03-02 17:29:56 +01005874
Olivier Houchardea8dd942019-05-20 14:02:16 +02005875 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01005876 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005877 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005878 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
5879 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01005880 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005881 }
5882 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005883 /* If we had an error, or the handshake is done and I/O is available,
5884 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01005885 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02005886 * we can't be sure conn_fd_handler() will be called again.
5887 */
5888 if ((ctx->conn->flags & CO_FL_ERROR) ||
5889 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005890 int woke = 0;
5891
5892 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005893 if (ctx->subs) {
5894 tasklet_wakeup(ctx->subs->tasklet);
5895 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005896 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005897 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005898 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005899
Olivier Houchardea8dd942019-05-20 14:02:16 +02005900 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01005901 * upper layers know. If we have no mux, create it,
5902 * and once we have a mux, call its wake method if we didn't
5903 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02005904 */
5905 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01005906 if (!ctx->conn->mux)
5907 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005908 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005909 ret = ctx->conn->mux->wake(ctx->conn);
5910 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005911 }
5912 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005913#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005914 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005915 else if (b_data(&ctx->early_buf) && ctx->subs &&
5916 ctx->subs->events & SUB_RETRY_RECV) {
5917 tasklet_wakeup(ctx->subs->tasklet);
5918 ctx->subs->events &= ~SUB_RETRY_RECV;
5919 if (!ctx->subs->events)
5920 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005921 }
5922#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005923leave:
5924 if (!ret && conn_in_list) {
5925 struct server *srv = objt_server(conn->target);
5926
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005927 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005928 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005929 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005930 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005931 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005932 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005933 }
Willy Tarreau74163142021-03-13 11:30:19 +01005934 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005935}
5936
Emeric Brun46591952012-05-18 15:47:34 +02005937/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005938 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005939 * buffer wraps, in which case a second call may be performed. The connection's
5940 * flags are updated with whatever special event is detected (error, read0,
5941 * empty). The caller is responsible for taking care of those events and
5942 * avoiding the call if inappropriate. The function does not call the
5943 * connection's polling update function, so the caller is responsible for this.
5944 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005945static 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 +02005946{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005947 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005948 ssize_t ret;
5949 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005950
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005951 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005952 goto out_error;
5953
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005954#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005955 if (b_data(&ctx->early_buf)) {
5956 try = b_contig_space(buf);
5957 if (try > b_data(&ctx->early_buf))
5958 try = b_data(&ctx->early_buf);
5959 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
5960 b_add(buf, try);
5961 b_del(&ctx->early_buf, try);
5962 if (b_data(&ctx->early_buf) == 0)
5963 b_free(&ctx->early_buf);
5964 return try;
5965 }
5966#endif
5967
Willy Tarreau911db9b2020-01-23 16:27:54 +01005968 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005969 /* a handshake was requested */
5970 return 0;
5971
Emeric Brun46591952012-05-18 15:47:34 +02005972 /* read the largest possible block. For this, we perform only one call
5973 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5974 * in which case we accept to do it once again. A new attempt is made on
5975 * EINTR too.
5976 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005977 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005978
Willy Tarreau591d4452018-06-15 17:21:00 +02005979 try = b_contig_space(buf);
5980 if (!try)
5981 break;
5982
Willy Tarreauabf08d92014-01-14 11:31:27 +01005983 if (try > count)
5984 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005985
Olivier Houchard66ab4982019-02-26 18:37:15 +01005986 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005987
Emeric Brune1f38db2012-09-03 20:36:47 +02005988 if (conn->flags & CO_FL_ERROR) {
5989 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005990 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005991 }
Emeric Brun46591952012-05-18 15:47:34 +02005992 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02005993 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005994 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005995 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005996 }
Emeric Brun46591952012-05-18 15:47:34 +02005997 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005998 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005999 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006000 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006001 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006002 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006003#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006004 /* Async mode can be re-enabled, because we're leaving data state.*/
6005 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006006 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006007#endif
Emeric Brun46591952012-05-18 15:47:34 +02006008 break;
6009 }
6010 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006011 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006012 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6013 SUB_RETRY_RECV,
6014 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006015 /* handshake is running, and it may need to re-enable read */
6016 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006017#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006018 /* Async mode can be re-enabled, because we're leaving data state.*/
6019 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006020 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006021#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006022 break;
6023 }
Emeric Brun46591952012-05-18 15:47:34 +02006024 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006025 } else if (ret == SSL_ERROR_ZERO_RETURN)
6026 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006027 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6028 * stack before shutting down the connection for
6029 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006030 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6031 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006032 /* otherwise it's a real error */
6033 goto out_error;
6034 }
6035 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006036 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006037 return done;
6038
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006039 clear_ssl_error:
6040 /* Clear openssl global errors stack */
6041 ssl_sock_dump_errors(conn);
6042 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006043 read0:
6044 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006045 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006046
Emeric Brun46591952012-05-18 15:47:34 +02006047 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006048 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006049 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006050 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006051 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006052 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006053}
6054
6055
Willy Tarreau787db9a2018-06-14 18:31:46 +02006056/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6057 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6058 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006059 * Only one call to send() is performed, unless the buffer wraps, in which case
6060 * a second call may be performed. The connection's flags are updated with
6061 * whatever special event is detected (error, empty). The caller is responsible
6062 * for taking care of those events and avoiding the call if inappropriate. The
6063 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006064 * is responsible for this. The buffer's output is not adjusted, it's up to the
6065 * caller to take care of this. It's up to the caller to update the buffer's
6066 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006067 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006068static 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 +02006069{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006070 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006071 ssize_t ret;
6072 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006073
6074 done = 0;
6075
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006076 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006077 goto out_error;
6078
Willy Tarreau911db9b2020-01-23 16:27:54 +01006079 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006080 /* a handshake was requested */
6081 return 0;
6082
6083 /* send the largest possible block. For this we perform only one call
6084 * to send() unless the buffer wraps and we exactly fill the first hunk,
6085 * in which case we accept to do it once again.
6086 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006087 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006088#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006089 size_t written_data;
6090#endif
6091
Willy Tarreau787db9a2018-06-14 18:31:46 +02006092 try = b_contig_data(buf, done);
6093 if (try > count)
6094 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006095
Willy Tarreau7bed9452014-02-02 02:00:24 +01006096 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006097 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006098 global_ssl.max_record && try > global_ssl.max_record) {
6099 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006100 }
6101 else {
6102 /* we need to keep the information about the fact that
6103 * we're not limiting the upcoming send(), because if it
6104 * fails, we'll have to retry with at least as many data.
6105 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006106 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006107 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006108
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006109#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006110 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006111 unsigned int max_early;
6112
Olivier Houchard522eea72017-11-03 16:27:47 +01006113 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006114 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006115 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006116 if (SSL_get0_session(ctx->ssl))
6117 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006118 else
6119 max_early = 0;
6120 }
6121
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006122 if (try + ctx->sent_early_data > max_early) {
6123 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006124 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006125 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006126 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006127 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006128 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006129 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006130 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006131 if (ret == 1) {
6132 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006133 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006134 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006135 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006136 /* Initiate the handshake, now */
6137 tasklet_wakeup(ctx->wait_event.tasklet);
6138 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006139
Olivier Houchardc2aae742017-09-22 18:26:28 +02006140 }
6141
6142 } else
6143#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006144 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006145
Emeric Brune1f38db2012-09-03 20:36:47 +02006146 if (conn->flags & CO_FL_ERROR) {
6147 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006148 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006149 }
Emeric Brun46591952012-05-18 15:47:34 +02006150 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006151 /* A send succeeded, so we can consider ourself connected */
6152 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006153 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006154 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006155 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006156 }
6157 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006158 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006159
Emeric Brun46591952012-05-18 15:47:34 +02006160 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006161 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006162 /* handshake is running, and it may need to re-enable write */
6163 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006164 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006165#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006166 /* Async mode can be re-enabled, because we're leaving data state.*/
6167 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006168 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006169#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006170 break;
6171 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006172
Emeric Brun46591952012-05-18 15:47:34 +02006173 break;
6174 }
6175 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006176 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006177 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006178 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6179 SUB_RETRY_RECV,
6180 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006181#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006182 /* Async mode can be re-enabled, because we're leaving data state.*/
6183 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006184 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006185#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006186 break;
6187 }
Emeric Brun46591952012-05-18 15:47:34 +02006188 goto out_error;
6189 }
6190 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006191 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006192 return done;
6193
6194 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006195 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006196 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006197 ERR_clear_error();
6198
Emeric Brun46591952012-05-18 15:47:34 +02006199 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006200 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006201}
6202
Willy Tarreau832e2422021-05-13 10:11:03 +02006203void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006204
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006205 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006206
Olivier Houchardea8dd942019-05-20 14:02:16 +02006207
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006208 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006209 if (ctx->wait_event.events != 0)
6210 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6211 ctx->wait_event.events,
6212 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006213 if (ctx->subs) {
6214 ctx->subs->events = 0;
6215 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006216 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006217
Olivier Houchard692c1d02019-05-23 18:41:47 +02006218 if (ctx->xprt->close)
6219 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006220#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006221 if (global_ssl.async) {
6222 OSSL_ASYNC_FD all_fd[32], afd;
6223 size_t num_all_fds = 0;
6224 int i;
6225
Olivier Houchard66ab4982019-02-26 18:37:15 +01006226 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006227 if (num_all_fds > 32) {
6228 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6229 return;
6230 }
6231
Olivier Houchard66ab4982019-02-26 18:37:15 +01006232 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006233
6234 /* If an async job is pending, we must try to
6235 to catch the end using polling before calling
6236 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006237 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006238 for (i=0 ; i < num_all_fds ; i++) {
6239 /* switch on an handler designed to
6240 * handle the SSL_free
6241 */
6242 afd = all_fd[i];
6243 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006244 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006245 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006246 /* To ensure that the fd cache won't be used
6247 * and we'll catch a real RD event.
6248 */
6249 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006250 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006251 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006252 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006253 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006254 return;
6255 }
Emeric Brun3854e012017-05-17 20:42:48 +02006256 /* Else we can remove the fds from the fdtab
6257 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006258 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006259 * because the fd is owned by the engine.
6260 * the engine is responsible to close
6261 */
6262 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006263 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006264 }
6265#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006266 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006267 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006268 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006269 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006270 _HA_ATOMIC_DEC(&sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006271 }
Emeric Brun46591952012-05-18 15:47:34 +02006272}
6273
6274/* This function tries to perform a clean shutdown on an SSL connection, and in
6275 * any case, flags the connection as reusable if no handshake was in progress.
6276 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006277static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006278{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006279 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006280
Willy Tarreau911db9b2020-01-23 16:27:54 +01006281 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006282 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006283 if (!clean)
6284 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006285 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006286 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006287 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006288 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006289 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006290 ERR_clear_error();
6291 }
Emeric Brun46591952012-05-18 15:47:34 +02006292}
6293
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006294
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006295/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006296int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6297{
6298 struct ssl_sock_ctx *ctx;
6299 X509 *crt;
6300
6301 if (!ssl_sock_is_ssl(conn))
6302 return 0;
6303
6304 ctx = conn->xprt_ctx;
6305
6306 crt = SSL_get_certificate(ctx->ssl);
6307 if (!crt)
6308 return 0;
6309
6310 return cert_get_pkey_algo(crt, out);
6311}
6312
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006313/* used for ppv2 cert signature (can be used for logging) */
6314const char *ssl_sock_get_cert_sig(struct connection *conn)
6315{
Christopher Faulet82004142019-09-10 10:12:03 +02006316 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006317
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006318 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6319 X509 *crt;
6320
6321 if (!ssl_sock_is_ssl(conn))
6322 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006323 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006324 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006325 if (!crt)
6326 return NULL;
6327 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6328 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6329}
6330
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006331/* used for ppv2 authority */
6332const char *ssl_sock_get_sni(struct connection *conn)
6333{
6334#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006335 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006336
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006337 if (!ssl_sock_is_ssl(conn))
6338 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006339 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006340 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006341#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006342 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006343#endif
6344}
6345
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006346/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006347const char *ssl_sock_get_cipher_name(struct connection *conn)
6348{
Christopher Faulet82004142019-09-10 10:12:03 +02006349 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006350
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006351 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006352 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006353 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006354 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006355}
6356
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006357/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006358const char *ssl_sock_get_proto_version(struct connection *conn)
6359{
Christopher Faulet82004142019-09-10 10:12:03 +02006360 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006361
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006362 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006363 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006364 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006365 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006366}
6367
Olivier Houchardab28a322018-12-21 19:45:40 +01006368void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6369{
6370#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006371 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006372
Olivier Houcharde488ea82019-06-28 14:10:33 +02006373 if (!ssl_sock_is_ssl(conn))
6374 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006375 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006376 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006377#endif
6378}
6379
Willy Tarreau119a4082016-12-22 21:58:38 +01006380/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6381 * to disable SNI.
6382 */
Willy Tarreau63076412015-07-10 11:33:32 +02006383void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6384{
6385#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006386 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006387
Willy Tarreau119a4082016-12-22 21:58:38 +01006388 char *prev_name;
6389
Willy Tarreau63076412015-07-10 11:33:32 +02006390 if (!ssl_sock_is_ssl(conn))
6391 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006392 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02006393
Willy Tarreau119a4082016-12-22 21:58:38 +01006394 /* if the SNI changes, we must destroy the reusable context so that a
6395 * new connection will present a new SNI. As an optimization we could
6396 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6397 * server.
6398 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006399 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006400 if ((!prev_name && hostname) ||
6401 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006402 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006403
Olivier Houchard66ab4982019-02-26 18:37:15 +01006404 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006405#endif
6406}
6407
Emeric Brun0abf8362014-06-24 18:26:41 +02006408/* Extract peer certificate's common name into the chunk dest
6409 * Returns
6410 * the len of the extracted common name
6411 * or 0 if no CN found in DN
6412 * or -1 on error case (i.e. no peer certificate)
6413 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006414int ssl_sock_get_remote_common_name(struct connection *conn,
6415 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006416{
Christopher Faulet82004142019-09-10 10:12:03 +02006417 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006418 X509 *crt = NULL;
6419 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006420 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006421 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006422 .area = (char *)&find_cn,
6423 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006424 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006425 int result = -1;
David Safb76832014-05-08 23:42:08 -04006426
6427 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006428 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006429 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006430
6431 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006432 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006433 if (!crt)
6434 goto out;
6435
6436 name = X509_get_subject_name(crt);
6437 if (!name)
6438 goto out;
David Safb76832014-05-08 23:42:08 -04006439
Emeric Brun0abf8362014-06-24 18:26:41 +02006440 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6441out:
David Safb76832014-05-08 23:42:08 -04006442 if (crt)
6443 X509_free(crt);
6444
6445 return result;
6446}
6447
Dave McCowan328fb582014-07-30 10:39:13 -04006448/* returns 1 if client passed a certificate for this session, 0 if not */
6449int ssl_sock_get_cert_used_sess(struct connection *conn)
6450{
Christopher Faulet82004142019-09-10 10:12:03 +02006451 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006452 X509 *crt = NULL;
6453
6454 if (!ssl_sock_is_ssl(conn))
6455 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006456 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006457
6458 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006459 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006460 if (!crt)
6461 return 0;
6462
6463 X509_free(crt);
6464 return 1;
6465}
6466
6467/* returns 1 if client passed a certificate for this connection, 0 if not */
6468int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006469{
Christopher Faulet82004142019-09-10 10:12:03 +02006470 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006471
David Safb76832014-05-08 23:42:08 -04006472 if (!ssl_sock_is_ssl(conn))
6473 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006474 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006475 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006476}
6477
6478/* returns result from SSL verify */
6479unsigned int ssl_sock_get_verify_result(struct connection *conn)
6480{
Christopher Faulet82004142019-09-10 10:12:03 +02006481 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006482
David Safb76832014-05-08 23:42:08 -04006483 if (!ssl_sock_is_ssl(conn))
6484 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006485 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006486 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006487}
6488
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006489/* Returns the application layer protocol name in <str> and <len> when known.
6490 * Zero is returned if the protocol name was not found, otherwise non-zero is
6491 * returned. The string is allocated in the SSL context and doesn't have to be
6492 * freed by the caller. NPN is also checked if available since older versions
6493 * of openssl (1.0.1) which are more common in field only support this one.
6494 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006495static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006496{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006497#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6498 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006499 struct ssl_sock_ctx *ctx = xprt_ctx;
6500 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006501 return 0;
6502
6503 *str = NULL;
6504
6505#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006506 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006507 if (*str)
6508 return 1;
6509#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006510#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006511 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006512 if (*str)
6513 return 1;
6514#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006515#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006516 return 0;
6517}
6518
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006519/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006520int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006521{
6522 X509 *ca;
6523 X509_NAME *name = NULL;
6524 ASN1_OCTET_STRING *skid = NULL;
6525 STACK_OF(X509) *chain = NULL;
6526 struct issuer_chain *issuer;
6527 struct eb64_node *node;
6528 char *path;
6529 u64 key;
6530 int ret = 0;
6531
6532 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6533 if (chain == NULL) {
6534 chain = sk_X509_new_null();
6535 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6536 name = X509_get_subject_name(ca);
6537 }
6538 if (!sk_X509_push(chain, ca)) {
6539 X509_free(ca);
6540 goto end;
6541 }
6542 }
6543 if (!chain) {
6544 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6545 goto end;
6546 }
6547 if (!skid) {
6548 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6549 goto end;
6550 }
6551 if (!name) {
6552 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6553 goto end;
6554 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006555 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006556 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006557 issuer = container_of(node, typeof(*issuer), node);
6558 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6559 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6560 goto end;
6561 }
6562 }
6563 issuer = calloc(1, sizeof *issuer);
6564 path = strdup(fp);
6565 if (!issuer || !path) {
6566 free(issuer);
6567 free(path);
6568 goto end;
6569 }
6570 issuer->node.key = key;
6571 issuer->path = path;
6572 issuer->chain = chain;
6573 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006574 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006575 ret = 1;
6576 end:
6577 if (skid)
6578 ASN1_OCTET_STRING_free(skid);
6579 if (chain)
6580 sk_X509_pop_free(chain, X509_free);
6581 return ret;
6582}
6583
William Lallemandda8584c2020-05-14 10:14:37 +02006584 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006585{
6586 AUTHORITY_KEYID *akid;
6587 struct issuer_chain *issuer = NULL;
6588
6589 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006590 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006591 struct eb64_node *node;
6592 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006593 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006594 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6595 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6596 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6597 issuer = ti;
6598 break;
6599 }
6600 }
6601 AUTHORITY_KEYID_free(akid);
6602 }
6603 return issuer;
6604}
6605
William Lallemanddad31052020-05-14 17:47:32 +02006606void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006607{
6608 struct eb64_node *node, *back;
6609 struct issuer_chain *issuer;
6610
William Lallemande0f3fd52020-02-25 14:53:06 +01006611 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006612 while (node) {
6613 issuer = container_of(node, typeof(*issuer), node);
6614 back = eb64_next(node);
6615 eb64_delete(node);
6616 free(issuer->path);
6617 sk_X509_pop_free(issuer->chain, X509_free);
6618 free(issuer);
6619 node = back;
6620 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006621}
6622
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006623#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006624static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006625 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006626
Emeric Brun3854e012017-05-17 20:42:48 +02006627 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006628 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006629 err_code = ERR_ABORT;
6630 }
6631 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006632}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006633#endif
6634
Willy Tarreaude5675a2021-01-20 14:41:29 +01006635/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006636 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006637 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006638static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006639{
6640 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006641 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006642
6643 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006644 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006645
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006646 if (sctx->conn != conn) {
6647 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6648 ret = 1;
6649 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006650 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6651
6652 if (sctx->xprt) {
6653 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6654 if (sctx->xprt_ctx)
6655 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6656 }
6657
6658 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006659
6660 /* as soon as a shutdown is reported the lower layer unregisters its
6661 * subscriber, so the situations below are transient and rare enough to
6662 * be reported as suspicious. In any case they shouldn't last.
6663 */
6664 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6665 ret = 1;
6666 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6667 ret = 1;
6668
Willy Tarreaude5675a2021-01-20 14:41:29 +01006669 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6670 if (sctx->subs) {
6671 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006672 if (sctx->subs->tasklet->calls >= 1000000)
6673 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006674 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6675 sctx->subs->tasklet->calls,
6676 sctx->subs->tasklet->context);
6677 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6678 chunk_appendf(&trash, ")");
6679 }
6680 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6681 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006682 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006683}
6684
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006685#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02006686/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006687 * each reference. The variable <ref> must point to the current node's list
6688 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02006689 */
William Lallemand32af2032016-10-29 18:09:35 +02006690static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006691struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02006692{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006693 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006694 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02006695
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006696 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006697 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006698 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02006699
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006700 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02006701}
6702
6703static inline
6704struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6705{
6706 int id;
6707 char *error;
6708
6709 /* If the reference starts by a '#', this is numeric id. */
6710 if (reference[0] == '#') {
6711 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6712 id = strtol(reference + 1, &error, 10);
6713 if (*error != '\0')
6714 return NULL;
6715
6716 /* Perform the unique id lookup. */
6717 return tlskeys_ref_lookupid(id);
6718 }
6719
6720 /* Perform the string lookup. */
6721 return tlskeys_ref_lookup(reference);
6722}
6723#endif
6724
6725
6726#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6727
6728static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6729
6730static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6731 return cli_io_handler_tlskeys_files(appctx);
6732}
6733
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006734/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6735 * (next index to be dumped), and cli.p0 (next key reference).
6736 */
William Lallemand32af2032016-10-29 18:09:35 +02006737static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6738
6739 struct stream_interface *si = appctx->owner;
6740
6741 switch (appctx->st2) {
6742 case STAT_ST_INIT:
6743 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006744 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006745 * later and restart at the state "STAT_ST_INIT".
6746 */
6747 chunk_reset(&trash);
6748
6749 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6750 chunk_appendf(&trash, "# id secret\n");
6751 else
6752 chunk_appendf(&trash, "# id (file)\n");
6753
Willy Tarreau06d80a92017-10-19 14:32:15 +02006754 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006755 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006756 return 0;
6757 }
6758
William Lallemand32af2032016-10-29 18:09:35 +02006759 /* Now, we start the browsing of the references lists.
6760 * Note that the following call to LIST_ELEM return bad pointer. The only
6761 * available field of this pointer is <list>. It is used with the function
6762 * tlskeys_list_get_next() for retruning the first available entry
6763 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006764 if (appctx->ctx.cli.p0 == NULL)
6765 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006766
6767 appctx->st2 = STAT_ST_LIST;
6768 /* fall through */
6769
6770 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006771 while (appctx->ctx.cli.p0) {
6772 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006773
6774 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006775 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006776 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006777
6778 if (appctx->ctx.cli.i1 == 0)
6779 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6780
William Lallemand32af2032016-10-29 18:09:35 +02006781 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006782 int head;
6783
6784 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6785 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006786 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006787 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006788
6789 chunk_reset(t2);
6790 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006791 if (ref->key_size_bits == 128) {
6792 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6793 sizeof(struct tls_sess_key_128),
6794 t2->area, t2->size);
6795 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6796 t2->area);
6797 }
6798 else if (ref->key_size_bits == 256) {
6799 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6800 sizeof(struct tls_sess_key_256),
6801 t2->area, t2->size);
6802 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6803 t2->area);
6804 }
6805 else {
6806 /* This case should never happen */
6807 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6808 }
William Lallemand32af2032016-10-29 18:09:35 +02006809
Willy Tarreau06d80a92017-10-19 14:32:15 +02006810 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006811 /* let's try again later from this stream. We add ourselves into
6812 * this stream's users so that it can remove us upon termination.
6813 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006814 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006815 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006816 return 0;
6817 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006818 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006819 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006820 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006821 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006822 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006823 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006824 /* let's try again later from this stream. We add ourselves into
6825 * this stream's users so that it can remove us upon termination.
6826 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006827 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006828 return 0;
6829 }
6830
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006831 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006832 break;
6833
6834 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006835 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006836 }
6837
6838 appctx->st2 = STAT_ST_FIN;
6839 /* fall through */
6840
6841 default:
6842 appctx->st2 = STAT_ST_FIN;
6843 return 1;
6844 }
6845 return 0;
6846}
6847
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006848/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006849static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006850{
William Lallemand32af2032016-10-29 18:09:35 +02006851 /* no parameter, shows only file list */
6852 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006853 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006854 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006855 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006856 }
6857
6858 if (args[2][0] == '*') {
6859 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006860 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006861 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006862 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006863 if (!appctx->ctx.cli.p0)
6864 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006865 }
William Lallemand32af2032016-10-29 18:09:35 +02006866 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006867 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006868}
6869
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006870static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006871{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006872 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006873 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006874
William Lallemand32af2032016-10-29 18:09:35 +02006875 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006876 if (!*args[3] || !*args[4])
6877 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 +02006878
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006879 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006880 if (!ref)
6881 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006882
Willy Tarreau1c913e42018-08-22 05:26:57 +02006883 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006884 if (ret < 0)
6885 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01006886
Willy Tarreau1c913e42018-08-22 05:26:57 +02006887 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02006888 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
6889 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006890
Willy Tarreau9d008692019-08-09 11:21:01 +02006891 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006892}
William Lallemandd4f946c2019-12-05 10:26:40 +01006893#endif
William Lallemand419e6342020-04-08 12:05:39 +02006894
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006895static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006896{
6897#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
6898 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006899 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006900
6901 if (!payload)
6902 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02006903
6904 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006905 if (!*payload)
6906 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006907
6908 /* remove \r and \n from the payload */
6909 for (i = 0, j = 0; payload[i]; i++) {
6910 if (payload[i] == '\r' || payload[i] == '\n')
6911 continue;
6912 payload[j++] = payload[i];
6913 }
6914 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006915
Willy Tarreau1c913e42018-08-22 05:26:57 +02006916 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006917 if (ret < 0)
6918 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006919
Willy Tarreau1c913e42018-08-22 05:26:57 +02006920 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02006921 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02006922 if (err)
6923 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
6924 else
6925 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006926 }
Willy Tarreau9d008692019-08-09 11:21:01 +02006927
6928 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006929#else
Willy Tarreau9d008692019-08-09 11:21:01 +02006930 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 +02006931#endif
6932
Elliot Otchet71f82972020-01-15 08:12:14 -05006933}
6934
William Lallemand32af2032016-10-29 18:09:35 +02006935/* register cli keywords */
6936static struct cli_kw_list cli_kws = {{ },{
6937#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02006938 { { "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 },
6939 { { "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 +02006940#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02006941 { { "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 },
William Lallemand32af2032016-10-29 18:09:35 +02006942 { { NULL }, NULL, NULL, NULL }
6943}};
6944
Willy Tarreau0108d902018-11-25 19:14:37 +01006945INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02006946
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02006947/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02006948struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02006949 .snd_buf = ssl_sock_from_buf,
6950 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01006951 .subscribe = ssl_subscribe,
6952 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02006953 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02006954 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02006955 .rcv_pipe = NULL,
6956 .snd_pipe = NULL,
6957 .shutr = NULL,
6958 .shutw = ssl_sock_shutw,
6959 .close = ssl_sock_close,
6960 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01006961 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01006962 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01006963 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01006964 .prepare_srv = ssl_sock_prepare_srv_ctx,
6965 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006966 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006967 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01006968 .set_idle = ssl_set_idle,
6969 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01006970 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01006971 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02006972};
6973
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006974enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
6975 struct session *sess, struct stream *s, int flags)
6976{
6977 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006978 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006979
6980 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006981 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006982
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006983 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006984 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006985 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006986 s->req.flags |= CF_READ_NULL;
6987 return ACT_RET_YIELD;
6988 }
6989 }
6990 return (ACT_RET_CONT);
6991}
6992
6993static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
6994{
6995 rule->action_ptr = ssl_action_wait_for_hs;
6996
6997 return ACT_RET_PRS_OK;
6998}
6999
7000static struct action_kw_list http_req_actions = {ILH, {
7001 { "wait-for-handshake", ssl_parse_wait_for_hs },
7002 { /* END */ }
7003}};
7004
Willy Tarreau0108d902018-11-25 19:14:37 +01007005INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7006
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007007#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007008
7009static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7010{
7011 if (ptr) {
7012 chunk_destroy(ptr);
7013 free(ptr);
7014 }
7015}
7016
7017#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007018
7019#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7020static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7021{
7022 struct ocsp_cbk_arg *ocsp_arg;
7023
7024 if (ptr) {
7025 ocsp_arg = ptr;
7026
7027 if (ocsp_arg->is_single) {
7028 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7029 ocsp_arg->s_ocsp = NULL;
7030 } else {
7031 int i;
7032
7033 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7034 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7035 ocsp_arg->m_ocsp[i] = NULL;
7036 }
7037 }
7038 free(ocsp_arg);
7039 }
7040}
7041#endif
7042
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007043static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7044{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007045 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007046}
William Lallemand7d42ef52020-07-06 11:41:30 +02007047
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05007048#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007049static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7050{
7051 struct ssl_keylog *keylog;
7052
7053 if (!ptr)
7054 return;
7055
7056 keylog = ptr;
7057
7058 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7059 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7060 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7061 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7062 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7063 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7064 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7065 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7066
7067 pool_free(pool_head_ssl_keylog, ptr);
7068}
7069#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007070
Emeric Brun46591952012-05-18 15:47:34 +02007071__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007072static void __ssl_sock_init(void)
7073{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007074#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007075 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007076 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007077#endif
Emeric Brun46591952012-05-18 15:47:34 +02007078
Willy Tarreauef934602016-12-22 23:12:01 +01007079 if (global_ssl.listen_default_ciphers)
7080 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7081 if (global_ssl.connect_default_ciphers)
7082 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007083#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007084 if (global_ssl.listen_default_ciphersuites)
7085 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7086 if (global_ssl.connect_default_ciphersuites)
7087 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7088#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007089
Willy Tarreau13e14102016-12-22 20:25:26 +01007090 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007091#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007092 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007093#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007094#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007095 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007096 n = sk_SSL_COMP_num(cm);
7097 while (n--) {
7098 (void) sk_SSL_COMP_pop(cm);
7099 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007100#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007101
Willy Tarreau5db847a2019-05-09 14:13:35 +02007102#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007103 ssl_locking_init();
7104#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007105#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007106 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7107#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007108
7109#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7110 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7111#endif
7112
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007113 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007114 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05007115#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007116 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7117#endif
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007118#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007119 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007120 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007121#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007122#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7123 hap_register_post_check(tlskeys_finalize_config);
7124#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007125
7126 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7127 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7128
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007129 hap_register_post_deinit(ssl_free_global_issuers);
7130
Willy Tarreau80713382018-11-26 10:19:54 +01007131#ifndef OPENSSL_NO_DH
7132 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7133 hap_register_post_deinit(ssl_free_dh);
7134#endif
7135#ifndef OPENSSL_NO_ENGINE
7136 hap_register_post_deinit(ssl_free_engines);
7137#endif
7138 /* Load SSL string for the verbose & debug mode. */
7139 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007140 ha_meth = BIO_meth_new(0x666, "ha methods");
7141 BIO_meth_set_write(ha_meth, ha_ssl_write);
7142 BIO_meth_set_read(ha_meth, ha_ssl_read);
7143 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7144 BIO_meth_set_create(ha_meth, ha_ssl_new);
7145 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7146 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7147 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007148
7149 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007150
Dragan Dosen9ac98092020-05-11 15:51:45 +02007151 /* Try to register dedicated SSL/TLS protocol message callbacks for
7152 * heartbleed attack (CVE-2014-0160) and clienthello.
7153 */
7154 hap_register_post_check(ssl_sock_register_msg_callbacks);
7155
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007156 /* Try to free all callbacks that were registered by using
7157 * ssl_sock_register_msg_callback().
7158 */
7159 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007160}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007161
Willy Tarreau80713382018-11-26 10:19:54 +01007162/* Compute and register the version string */
7163static void ssl_register_build_options()
7164{
7165 char *ptr = NULL;
7166 int i;
7167
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007168 memprintf(&ptr, "Built with OpenSSL version : "
7169#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007170 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007171#else /* OPENSSL_IS_BORINGSSL */
7172 OPENSSL_VERSION_TEXT
7173 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007174 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007175 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007176#endif
7177 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007178#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007179 "no (library version too old)"
7180#elif defined(OPENSSL_NO_TLSEXT)
7181 "no (disabled via OPENSSL_NO_TLSEXT)"
7182#else
7183 "yes"
7184#endif
7185 "", ptr);
7186
7187 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7188#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7189 "yes"
7190#else
7191#ifdef OPENSSL_NO_TLSEXT
7192 "no (because of OPENSSL_NO_TLSEXT)"
7193#else
7194 "no (version might be too old, 0.9.8f min needed)"
7195#endif
7196#endif
7197 "", ptr);
7198
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007199 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7200 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7201 if (methodVersions[i].option)
7202 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007203
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007204 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007205}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007206
Willy Tarreau80713382018-11-26 10:19:54 +01007207INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007208
Emeric Brun46591952012-05-18 15:47:34 +02007209
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007210#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007211void ssl_free_engines(void) {
7212 struct ssl_engine_list *wl, *wlb;
7213 /* free up engine list */
7214 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7215 ENGINE_finish(wl->e);
7216 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007217 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007218 free(wl);
7219 }
7220}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007221#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007222
Remi Gacogned3a23c32015-05-28 16:39:47 +02007223#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007224void ssl_free_dh(void) {
7225 if (local_dh_1024) {
7226 DH_free(local_dh_1024);
7227 local_dh_1024 = NULL;
7228 }
7229 if (local_dh_2048) {
7230 DH_free(local_dh_2048);
7231 local_dh_2048 = NULL;
7232 }
7233 if (local_dh_4096) {
7234 DH_free(local_dh_4096);
7235 local_dh_4096 = NULL;
7236 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007237 if (global_dh) {
7238 DH_free(global_dh);
7239 global_dh = NULL;
7240 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007241}
7242#endif
7243
7244__attribute__((destructor))
7245static void __ssl_sock_deinit(void)
7246{
7247#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007248 if (ssl_ctx_lru_tree) {
7249 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007250 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007251 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007252#endif
7253
Willy Tarreau5db847a2019-05-09 14:13:35 +02007254#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007255 ERR_remove_state(0);
7256 ERR_free_strings();
7257
7258 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007259#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007260
Willy Tarreau5db847a2019-05-09 14:13:35 +02007261#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007262 CRYPTO_cleanup_all_ex_data();
7263#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007264 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007265}
7266
William Dauchyf6370442020-11-14 19:25:33 +01007267/* Activate ssl on server <s>.
7268 * do nothing if there is no change to apply
7269 *
7270 * Must be called with the server lock held.
7271 */
7272void ssl_sock_set_srv(struct server *s, signed char use_ssl)
7273{
7274 if (s->use_ssl == use_ssl)
7275 return;
7276
7277 s->use_ssl = use_ssl;
7278 if (s->use_ssl == 1)
7279 s->xprt = &ssl_sock;
7280 else
7281 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
7282}
7283
Emeric Brun46591952012-05-18 15:47:34 +02007284/*
7285 * Local variables:
7286 * c-indent-level: 8
7287 * c-basic-offset: 8
7288 * End:
7289 */