blob: b8914a78d2a56cbf0bd79cff61f800b90bca03ff [file] [log] [blame]
yanbzhu08ce6ab2015-12-02 13:01:29 -05001
Emeric Brun46591952012-05-18 15:47:34 +02002/*
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003 * SSL/TLS transport layer over SOCK_STREAM sockets
Emeric Brun46591952012-05-18 15:47:34 +02004 *
5 * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Willy Tarreau69845df2012-09-10 09:43:09 +020012 * Acknowledgement:
13 * We'd like to specially thank the Stud project authors for a very clean
14 * and well documented code which helped us understand how the OpenSSL API
15 * ought to be used in non-blocking mode. This is one difficult part which
16 * is not easy to get from the OpenSSL doc, and reading the Stud code made
17 * it much more obvious than the examples in the OpenSSL package. Keep up
18 * the good works, guys !
19 *
20 * Stud is an extremely efficient and scalable SSL/TLS proxy which combines
21 * particularly well with haproxy. For more info about this project, visit :
22 * https://github.com/bumptech/stud
23 *
Emeric Brun46591952012-05-18 15:47:34 +020024 */
25
Willy Tarreau8d164dc2019-05-10 09:35:00 +020026/* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */
Emeric Brun46591952012-05-18 15:47:34 +020027#define _GNU_SOURCE
Emeric Brunfc0421f2012-09-07 17:30:07 +020028#include <ctype.h>
29#include <dirent.h>
Emeric Brun46591952012-05-18 15:47:34 +020030#include <errno.h>
31#include <fcntl.h>
32#include <stdio.h>
33#include <stdlib.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020034#include <string.h>
35#include <unistd.h>
Emeric Brun46591952012-05-18 15:47:34 +020036
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020040#include <netdb.h>
Emeric Brun46591952012-05-18 15:47:34 +020041#include <netinet/tcp.h>
42
Willy Tarreaub2551052020-06-09 09:07:15 +020043#include <import/ebpttree.h>
44#include <import/ebsttree.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020045#include <import/lru.h>
46#include <import/xxhash.h>
47
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/api.h>
49#include <haproxy/arg.h>
50#include <haproxy/base64.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020051#include <haproxy/channel.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020052#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020053#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020054#include <haproxy/connection.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020055#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020056#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020057#include <haproxy/fd.h>
58#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020059#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020060#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020061#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020062#include <haproxy/log.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +020063#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020064#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020066#include <haproxy/proxy.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020067#include <haproxy/server.h>
Willy Tarreau334099c2020-06-03 18:38:48 +020068#include <haproxy/shctx.h>
Willy Tarreau47d7f902020-06-04 14:25:47 +020069#include <haproxy/ssl_ckch.h>
Willy Tarreau52d88722020-06-04 14:29:23 +020070#include <haproxy/ssl_crtlist.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020071#include <haproxy/ssl_sock.h>
Willy Tarreaub2bd8652020-06-04 14:21:22 +020072#include <haproxy/ssl_utils.h>
Amaury Denoyelle9963fa72020-11-03 17:10:00 +010073#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020075#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020076#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020077#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020078#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020080#include <haproxy/vars.h>
Frédéric Lécailleec216522020-11-23 14:33:30 +010081#include <haproxy/xprt_quic.h>
Emeric Brun46591952012-05-18 15:47:34 +020082
Emeric Brun46591952012-05-18 15:47:34 +020083
Willy Tarreau9356dac2019-05-10 09:22:53 +020084/* ***** READ THIS before adding code here! *****
85 *
86 * Due to API incompatibilities between multiple OpenSSL versions and their
87 * derivatives, it's often tempting to add macros to (re-)define certain
88 * symbols. Please do not do this here, and do it in common/openssl-compat.h
89 * exclusively so that the whole code consistently uses the same macros.
90 *
91 * Whenever possible if a macro is missing in certain versions, it's better
92 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
93 */
94
Willy Tarreau71b734c2014-01-28 15:19:44 +010095int sslconns = 0;
96int totalsslconns = 0;
Emeric Brunece0c332017-12-06 13:51:49 +010097int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +020098
William Lallemande0f3fd52020-02-25 14:53:06 +010099static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
100
William Lallemand7fd8b452020-05-07 15:20:43 +0200101struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100102#ifdef LISTEN_DEFAULT_CIPHERS
103 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
104#endif
105#ifdef CONNECT_DEFAULT_CIPHERS
106 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
107#endif
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +0500108#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200109 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200110 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
111#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100112 .listen_default_ssloptions = BC_SSL_O_NONE,
113 .connect_default_ssloptions = SRV_SSL_O_NONE,
114
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200115 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
116 .listen_default_sslmethods.min = CONF_TLSV_NONE,
117 .listen_default_sslmethods.max = CONF_TLSV_NONE,
118 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
119 .connect_default_sslmethods.min = CONF_TLSV_NONE,
120 .connect_default_sslmethods.max = CONF_TLSV_NONE,
121
Willy Tarreauef934602016-12-22 23:12:01 +0100122#ifdef DEFAULT_SSL_MAX_RECORD
123 .max_record = DEFAULT_SSL_MAX_RECORD,
124#endif
125 .default_dh_param = SSL_DEFAULT_DH_PARAM,
126 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100127 .capture_cipherlist = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100128 .extra_files = SSL_GF_ALL,
William Lallemand8e8581e2020-10-20 17:36:46 +0200129 .extra_files_noext = 0,
William Lallemand722180a2021-06-09 16:46:12 +0200130#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200131 .keylog = 0
132#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100133};
134
Olivier Houcharda8955d52019-04-07 22:00:38 +0200135static BIO_METHOD *ha_meth;
136
Olivier Houchard66ab4982019-02-26 18:37:15 +0100137DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
138
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100139/* ssl stats module */
140enum {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100141 SSL_ST_SESS,
142 SSL_ST_REUSED_SESS,
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100143 SSL_ST_FAILED_HANDSHAKE,
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100144
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100145 SSL_ST_STATS_COUNT /* must be the last member of the enum */
146};
147
148static struct name_desc ssl_stats[] = {
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100149 [SSL_ST_SESS] = { .name = "ssl_sess",
150 .desc = "Total number of ssl sessions established" },
151 [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess",
152 .desc = "Total number of ssl sessions reused" },
153 [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake",
154 .desc = "Total number of failed handshake" },
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100155};
156
157static struct ssl_counters {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100158 long long sess;
159 long long reused_sess;
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100160 long long failed_handshake;
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100161} ssl_counters;
162
163static void ssl_fill_stats(void *data, struct field *stats)
164{
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100165 struct ssl_counters *counters = data;
166
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100167 stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess);
168 stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess);
169 stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake);
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100170}
171
172static struct stats_module ssl_stats_module = {
173 .name = "ssl",
174 .fill_stats = ssl_fill_stats,
175 .stats = ssl_stats,
176 .stats_count = SSL_ST_STATS_COUNT,
177 .counters = &ssl_counters,
178 .counters_size = sizeof(ssl_counters),
179 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV),
180 .clearable = 1,
181};
182
183INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module);
184
Willy Tarreau691d5032021-01-20 14:55:01 +0100185/* ssl_sock_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100186struct task *ssl_sock_io_cb(struct task *, void *, unsigned int);
Olivier Houchard000694c2019-05-23 14:45:12 +0200187static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200188
Olivier Houcharda8955d52019-04-07 22:00:38 +0200189/* Methods to implement OpenSSL BIO */
190static int ha_ssl_write(BIO *h, const char *buf, int num)
191{
192 struct buffer tmpbuf;
193 struct ssl_sock_ctx *ctx;
194 int ret;
195
196 ctx = BIO_get_data(h);
197 tmpbuf.size = num;
198 tmpbuf.area = (void *)(uintptr_t)buf;
199 tmpbuf.data = num;
200 tmpbuf.head = 0;
201 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200202 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200203 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200204 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200205 } else if (ret == 0)
206 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200207 return ret;
208}
209
210static int ha_ssl_gets(BIO *h, char *buf, int size)
211{
212
213 return 0;
214}
215
216static int ha_ssl_puts(BIO *h, const char *str)
217{
218
219 return ha_ssl_write(h, str, strlen(str));
220}
221
222static int ha_ssl_read(BIO *h, char *buf, int size)
223{
224 struct buffer tmpbuf;
225 struct ssl_sock_ctx *ctx;
226 int ret;
227
228 ctx = BIO_get_data(h);
229 tmpbuf.size = size;
230 tmpbuf.area = buf;
231 tmpbuf.data = 0;
232 tmpbuf.head = 0;
233 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200234 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200235 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200236 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200237 } else if (ret == 0)
238 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200239
240 return ret;
241}
242
243static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
244{
245 int ret = 0;
246 switch (cmd) {
247 case BIO_CTRL_DUP:
248 case BIO_CTRL_FLUSH:
249 ret = 1;
250 break;
251 }
252 return ret;
253}
254
255static int ha_ssl_new(BIO *h)
256{
257 BIO_set_init(h, 1);
258 BIO_set_data(h, NULL);
259 BIO_clear_flags(h, ~0);
260 return 1;
261}
262
263static int ha_ssl_free(BIO *data)
264{
265
266 return 1;
267}
268
269
Willy Tarreau5db847a2019-05-09 14:13:35 +0200270#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100271
Emeric Brun821bb9b2017-06-15 16:37:39 +0200272static HA_RWLOCK_T *ssl_rwlocks;
273
274
275unsigned long ssl_id_function(void)
276{
277 return (unsigned long)tid;
278}
279
280void ssl_locking_function(int mode, int n, const char * file, int line)
281{
282 if (mode & CRYPTO_LOCK) {
283 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100284 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200285 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100286 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200287 }
288 else {
289 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100290 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200291 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100292 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200293 }
294}
295
296static int ssl_locking_init(void)
297{
298 int i;
299
300 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
301 if (!ssl_rwlocks)
302 return -1;
303
304 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100305 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200306
307 CRYPTO_set_id_callback(ssl_id_function);
308 CRYPTO_set_locking_callback(ssl_locking_function);
309
310 return 0;
311}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100312
Emeric Brun821bb9b2017-06-15 16:37:39 +0200313#endif
314
Willy Tarreauaf613e82020-06-05 08:40:51 +0200315__decl_thread(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200316
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100317
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200318
319/* mimic what X509_STORE_load_locations do with store_ctx */
320static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
321{
Remi Tricot-Le Bretond75b99e2021-05-17 11:45:55 +0200322 X509_STORE *store = NULL;
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +0100323 struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0);
324 if (ca_e)
325 store = ca_e->ca_store;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200326 if (store_ctx && store) {
327 int i;
328 X509_OBJECT *obj;
329 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
330 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
331 obj = sk_X509_OBJECT_value(objs, i);
332 switch (X509_OBJECT_get_type(obj)) {
333 case X509_LU_X509:
334 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
335 break;
336 case X509_LU_CRL:
337 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
338 break;
339 default:
340 break;
341 }
342 }
343 return 1;
344 }
345 return 0;
346}
347
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500348/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200349static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
350{
351 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
352 return ssl_set_cert_crl_file(store_ctx, path);
353}
354
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200355/*
356 Extract CA_list from CA_file already in tree.
357 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
358 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
359*/
360static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
361{
362 struct ebmb_node *eb;
363 struct cafile_entry *ca_e;
364
365 eb = ebst_lookup(&cafile_tree, path);
366 if (!eb)
367 return NULL;
368 ca_e = ebmb_entry(eb, struct cafile_entry, node);
369
370 if (ca_e->ca_list == NULL) {
371 int i;
372 unsigned long key;
373 struct eb_root ca_name_tree = EB_ROOT;
374 struct eb64_node *node, *back;
375 struct {
376 struct eb64_node node;
377 X509_NAME *xname;
378 } *ca_name;
379 STACK_OF(X509_OBJECT) *objs;
380 STACK_OF(X509_NAME) *skn;
381 X509 *x;
382 X509_NAME *xn;
383
384 skn = sk_X509_NAME_new_null();
385 /* take x509 from cafile_tree */
386 objs = X509_STORE_get0_objects(ca_e->ca_store);
387 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
388 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
389 if (!x)
390 continue;
391 xn = X509_get_subject_name(x);
392 if (!xn)
393 continue;
394 /* Check for duplicates. */
395 key = X509_NAME_hash(xn);
396 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
397 node && ca_name == NULL;
398 node = eb64_next(node)) {
399 ca_name = container_of(node, typeof(*ca_name), node);
400 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
401 ca_name = NULL;
402 }
403 /* find a duplicate */
404 if (ca_name)
405 continue;
406 ca_name = calloc(1, sizeof *ca_name);
407 xn = X509_NAME_dup(xn);
408 if (!ca_name ||
409 !xn ||
410 !sk_X509_NAME_push(skn, xn)) {
411 free(ca_name);
412 X509_NAME_free(xn);
413 sk_X509_NAME_pop_free(skn, X509_NAME_free);
414 sk_X509_NAME_free(skn);
415 skn = NULL;
416 break;
417 }
418 ca_name->node.key = key;
419 ca_name->xname = xn;
420 eb64_insert(&ca_name_tree, &ca_name->node);
421 }
422 ca_e->ca_list = skn;
423 /* remove temporary ca_name tree */
424 node = eb64_first(&ca_name_tree);
425 while (node) {
426 ca_name = container_of(node, typeof(*ca_name), node);
427 back = eb64_next(node);
428 eb64_delete(node);
429 free(ca_name);
430 node = back;
431 }
432 }
433 return ca_e->ca_list;
434}
435
Willy Tarreauff882702021-04-10 17:23:00 +0200436struct pool_head *pool_head_ssl_capture __read_mostly = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200437int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100438int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100439
William Lallemand722180a2021-06-09 16:46:12 +0200440#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200441int ssl_keylog_index = -1;
Willy Tarreauff882702021-04-10 17:23:00 +0200442struct pool_head *pool_head_ssl_keylog __read_mostly = NULL;
443struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL;
William Lallemand7d42ef52020-07-06 11:41:30 +0200444#endif
445
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +0200446int ssl_client_crt_ref_index = -1;
447
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200448#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
449struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
450#endif
451
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200452#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200453unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000454struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
455struct ssl_engine_list {
456 struct list list;
457 ENGINE *e;
458};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200459#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000460
Remi Gacogne8de54152014-07-15 11:36:40 +0200461#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200462static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200463static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200464static DH *local_dh_1024 = NULL;
465static DH *local_dh_2048 = NULL;
466static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100467static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200468#endif /* OPENSSL_NO_DH */
469
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100470#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200471/* X509V3 Extensions that will be added on generated certificates */
472#define X509V3_EXT_SIZE 5
473static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
474 "basicConstraints",
475 "nsComment",
476 "subjectKeyIdentifier",
477 "authorityKeyIdentifier",
478 "keyUsage",
479};
480static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
481 "CA:FALSE",
482 "\"OpenSSL Generated Certificate\"",
483 "hash",
484 "keyid,issuer:always",
485 "nonRepudiation,digitalSignature,keyEncipherment"
486};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200487/* LRU cache to store generated certificate */
488static struct lru64_head *ssl_ctx_lru_tree = NULL;
489static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200490static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100491__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200492
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200493#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
494
yanbzhube2774d2015-12-10 15:07:30 -0500495/* The order here matters for picking a default context,
496 * keep the most common keytype at the bottom of the list
497 */
498const char *SSL_SOCK_KEYTYPE_NAMES[] = {
499 "dsa",
500 "ecdsa",
501 "rsa"
502};
yanbzhube2774d2015-12-10 15:07:30 -0500503
William Lallemandc3cd35f2017-11-28 11:04:43 +0100504static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100505static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
506
Dragan Dosen9ac98092020-05-11 15:51:45 +0200507/* Dedicated callback functions for heartbeat and clienthello.
508 */
509#ifdef TLS1_RT_HEARTBEAT
510static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
511 int content_type, const void *buf, size_t len,
512 SSL *ssl);
513#endif
514static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
515 int content_type, const void *buf, size_t len,
516 SSL *ssl);
517
William Lallemand722180a2021-06-09 16:46:12 +0200518#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200519static void ssl_init_keylog(struct connection *conn, int write_p, int version,
520 int content_type, const void *buf, size_t len,
521 SSL *ssl);
522#endif
523
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200524/* List head of all registered SSL/TLS protocol message callbacks. */
525struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
526
527/* Registers the function <func> in order to be called on SSL/TLS protocol
528 * message processing. It will return 0 if the function <func> is not set
529 * or if it fails to allocate memory.
530 */
531int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
532{
533 struct ssl_sock_msg_callback *cbk;
534
535 if (!func)
536 return 0;
537
538 cbk = calloc(1, sizeof(*cbk));
539 if (!cbk) {
540 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
541 return 0;
542 }
543
544 cbk->func = func;
545
Willy Tarreau2b718102021-04-21 07:32:39 +0200546 LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200547
548 return 1;
549}
550
Dragan Dosen9ac98092020-05-11 15:51:45 +0200551/* Used to register dedicated SSL/TLS protocol message callbacks.
552 */
553static int ssl_sock_register_msg_callbacks(void)
554{
555#ifdef TLS1_RT_HEARTBEAT
556 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
557 return ERR_ABORT;
558#endif
559 if (global_ssl.capture_cipherlist > 0) {
560 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
561 return ERR_ABORT;
562 }
William Lallemand722180a2021-06-09 16:46:12 +0200563#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200564 if (global_ssl.keylog > 0) {
565 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
566 return ERR_ABORT;
567 }
568#endif
569
Christopher Fauletfc633b62020-11-06 15:24:23 +0100570 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200571}
572
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200573/* Used to free all SSL/TLS protocol message callbacks that were
574 * registered by using ssl_sock_register_msg_callback().
575 */
576static void ssl_sock_unregister_msg_callbacks(void)
577{
578 struct ssl_sock_msg_callback *cbk, *cbkback;
579
580 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200581 LIST_DELETE(&cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200582 free(cbk);
583 }
584}
585
Dragan Doseneb607fe2020-05-11 17:17:06 +0200586SSL *ssl_sock_get_ssl_object(struct connection *conn)
587{
588 if (!ssl_sock_is_ssl(conn))
589 return NULL;
590
591 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
592}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100593/*
594 * This function gives the detail of the SSL error. It is used only
595 * if the debug mode and the verbose mode are activated. It dump all
596 * the SSL error until the stack was empty.
597 */
598static forceinline void ssl_sock_dump_errors(struct connection *conn)
599{
600 unsigned long ret;
601
602 if (unlikely(global.mode & MODE_DEBUG)) {
603 while(1) {
604 ret = ERR_get_error();
605 if (ret == 0)
606 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100607 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
608 conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100609 ERR_func_error_string(ret), ERR_reason_error_string(ret));
610 }
611 }
612}
613
yanbzhube2774d2015-12-10 15:07:30 -0500614
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200615#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200616int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000617{
618 int err_code = ERR_ABORT;
619 ENGINE *engine;
620 struct ssl_engine_list *el;
621
622 /* grab the structural reference to the engine */
623 engine = ENGINE_by_id(engine_id);
624 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100625 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000626 goto fail_get;
627 }
628
629 if (!ENGINE_init(engine)) {
630 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100631 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000632 goto fail_init;
633 }
634
635 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100636 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000637 goto fail_set_method;
638 }
639
640 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200641 if (!el)
642 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000643 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200644 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100645 nb_engines++;
646 if (global_ssl.async)
647 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000648 return 0;
649
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200650fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000651fail_set_method:
652 /* release the functional reference from ENGINE_init() */
653 ENGINE_finish(engine);
654
655fail_init:
656 /* release the structural reference from ENGINE_by_id() */
657 ENGINE_free(engine);
658
659fail_get:
660 return err_code;
661}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200662#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000663
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500664#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200665/*
666 * openssl async fd handler
667 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200668void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000669{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200670 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000671
Emeric Brun3854e012017-05-17 20:42:48 +0200672 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000673 * to poll this fd until it is requested
674 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000675 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000676 fd_cant_recv(fd);
677
678 /* crypto engine is available, let's notify the associated
679 * connection that it can pursue its processing.
680 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200681 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000682}
683
Emeric Brun3854e012017-05-17 20:42:48 +0200684/*
685 * openssl async delayed SSL_free handler
686 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200687void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000688{
689 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200690 OSSL_ASYNC_FD all_fd[32];
691 size_t num_all_fds = 0;
692 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000693
Emeric Brun3854e012017-05-17 20:42:48 +0200694 /* We suppose that the async job for a same SSL *
695 * are serialized. So if we are awake it is
696 * because the running job has just finished
697 * and we can remove all async fds safely
698 */
699 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
700 if (num_all_fds > 32) {
701 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
702 return;
703 }
704
705 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
706 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200707 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200708
709 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000710 SSL_free(ssl);
Willy Tarreau4781b152021-04-06 13:53:36 +0200711 _HA_ATOMIC_DEC(&sslconns);
712 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000713}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000714/*
Emeric Brun3854e012017-05-17 20:42:48 +0200715 * function used to manage a returned SSL_ERROR_WANT_ASYNC
716 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000717 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200718static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000719{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100720 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200721 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200722 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000723 size_t num_add_fds = 0;
724 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200725 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000726
727 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
728 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200729 if (num_add_fds > 32 || num_del_fds > 32) {
730 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 +0000731 return;
732 }
733
Emeric Brun3854e012017-05-17 20:42:48 +0200734 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000735
Emeric Brun3854e012017-05-17 20:42:48 +0200736 /* We remove unused fds from the fdtab */
737 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200738 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000739
Emeric Brun3854e012017-05-17 20:42:48 +0200740 /* We add new fds to the fdtab */
741 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200742 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000743 }
744
Emeric Brun3854e012017-05-17 20:42:48 +0200745 num_add_fds = 0;
746 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
747 if (num_add_fds > 32) {
748 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
749 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000750 }
Emeric Brun3854e012017-05-17 20:42:48 +0200751
752 /* We activate the polling for all known async fds */
753 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000754 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200755 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000756 /* To ensure that the fd cache won't be used
757 * We'll prefer to catch a real RD event
758 * because handling an EAGAIN on this fd will
759 * result in a context switch and also
760 * some engines uses a fd in blocking mode.
761 */
762 fd_cant_recv(add_fd[i]);
763 }
Emeric Brun3854e012017-05-17 20:42:48 +0200764
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000765}
766#endif
767
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200768#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP && !defined HAVE_ASN1_TIME_TO_TM)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200769/*
770 * This function returns the number of seconds elapsed
771 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
772 * date presented un ASN1_GENERALIZEDTIME.
773 *
774 * In parsing error case, it returns -1.
775 */
776static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
777{
778 long epoch;
779 char *p, *end;
780 const unsigned short month_offset[12] = {
781 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
782 };
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +0200783 unsigned long year, month;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200784
785 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
786
787 p = (char *)d->data;
788 end = p + d->length;
789
790 if (end - p < 4) return -1;
791 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
792 p += 4;
793 if (end - p < 2) return -1;
794 month = 10 * (p[0] - '0') + p[1] - '0';
795 if (month < 1 || month > 12) return -1;
796 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
797 We consider leap years and the current month (<marsh or not) */
798 epoch = ( ((year - 1970) * 365)
799 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
800 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
801 + month_offset[month-1]
802 ) * 24 * 60 * 60;
803 p += 2;
804 if (end - p < 2) return -1;
805 /* Add the number of seconds of completed days of current month */
806 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
807 p += 2;
808 if (end - p < 2) return -1;
809 /* Add the completed hours of the current day */
810 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
811 p += 2;
812 if (end - p < 2) return -1;
813 /* Add the completed minutes of the current hour */
814 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
815 p += 2;
816 if (p == end) return -1;
817 /* Test if there is available seconds */
818 if (p[0] < '0' || p[0] > '9')
819 goto nosec;
820 if (end - p < 2) return -1;
821 /* Add the seconds of the current minute */
822 epoch += 10 * (p[0] - '0') + p[1] - '0';
823 p += 2;
824 if (p == end) return -1;
825 /* Ignore seconds float part if present */
826 if (p[0] == '.') {
827 do {
828 if (++p == end) return -1;
829 } while (p[0] >= '0' && p[0] <= '9');
830 }
831
832nosec:
833 if (p[0] == 'Z') {
834 if (end - p != 1) return -1;
835 return epoch;
836 }
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 else if (p[0] == '-') {
843 if (end - p != 5) return -1;
844 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700845 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 +0200846 }
847
848 return -1;
849}
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200850#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200851
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200852#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
William Lallemand104a7a62019-10-14 14:14:59 +0200853/*
854 * struct alignment works here such that the key.key is the same as key_data
855 * Do not change the placement of key_data
856 */
857struct certificate_ocsp {
858 struct ebmb_node key;
859 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +0200860 unsigned int key_length;
William Lallemand104a7a62019-10-14 14:14:59 +0200861 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200862 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200863 long expire;
864};
865
866struct ocsp_cbk_arg {
867 int is_single;
868 int single_kt;
869 union {
870 struct certificate_ocsp *s_ocsp;
871 /*
872 * m_ocsp will have multiple entries dependent on key type
873 * Entry 0 - DSA
874 * Entry 1 - ECDSA
875 * Entry 2 - RSA
876 */
877 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
878 };
879};
880
Emeric Brun1d3865b2014-06-20 15:37:32 +0200881static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200882
883/* This function starts to check if the OCSP response (in DER format) contained
884 * in chunk 'ocsp_response' is valid (else exits on error).
885 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
886 * contained in the OCSP Response and exits on error if no match.
887 * If it's a valid OCSP Response:
888 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
889 * pointed by 'ocsp'.
890 * If 'ocsp' is NULL, the function looks up into the OCSP response's
891 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
892 * from the response) and exits on error if not found. Finally, If an OCSP response is
893 * already present in the container, it will be overwritten.
894 *
895 * Note: OCSP response containing more than one OCSP Single response is not
896 * considered valid.
897 *
898 * Returns 0 on success, 1 in error case.
899 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200900static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
901 struct certificate_ocsp *ocsp,
902 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200903{
904 OCSP_RESPONSE *resp;
905 OCSP_BASICRESP *bs = NULL;
906 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200907 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200908 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200909 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200910 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200911 int reason;
912 int ret = 1;
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +0200913#ifdef HAVE_ASN1_TIME_TO_TM
914 struct tm nextupd_tm = {0};
915#endif
Emeric Brun4147b2e2014-06-16 18:36:30 +0200916
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200917 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
918 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200919 if (!resp) {
920 memprintf(err, "Unable to parse OCSP response");
921 goto out;
922 }
923
924 rc = OCSP_response_status(resp);
925 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
926 memprintf(err, "OCSP response status not successful");
927 goto out;
928 }
929
930 bs = OCSP_response_get1_basic(resp);
931 if (!bs) {
932 memprintf(err, "Failed to get basic response from OCSP Response");
933 goto out;
934 }
935
936 count_sr = OCSP_resp_count(bs);
937 if (count_sr > 1) {
938 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
939 goto out;
940 }
941
942 sr = OCSP_resp_get0(bs, 0);
943 if (!sr) {
944 memprintf(err, "Failed to get OCSP single response");
945 goto out;
946 }
947
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200948 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
949
Emeric Brun4147b2e2014-06-16 18:36:30 +0200950 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200951 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200952 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200953 goto out;
954 }
955
Emeric Brun13a6b482014-06-20 15:44:34 +0200956 if (!nextupd) {
957 memprintf(err, "OCSP single response: missing nextupdate");
958 goto out;
959 }
960
Emeric Brunc8b27b62014-06-19 14:16:17 +0200961 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200962 if (!rc) {
963 memprintf(err, "OCSP single response: no longer valid.");
964 goto out;
965 }
966
967 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200968 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200969 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
970 goto out;
971 }
972 }
973
974 if (!ocsp) {
975 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
976 unsigned char *p;
977
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200978 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200979 if (!rc) {
980 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
981 goto out;
982 }
983
984 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
985 memprintf(err, "OCSP single response: Certificate ID too long");
986 goto out;
987 }
988
989 p = key;
990 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200991 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200992 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
993 if (!ocsp) {
994 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
995 goto out;
996 }
997 }
998
999 /* According to comments on "chunk_dup", the
1000 previous chunk buffer will be freed */
1001 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1002 memprintf(err, "OCSP response: Memory allocation error");
1003 goto out;
1004 }
1005
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001006#ifdef HAVE_ASN1_TIME_TO_TM
1007 if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) {
1008 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1009 goto out;
1010 }
1011 ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW;
1012#else
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001013 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +02001014 if (ocsp->expire < 0) {
1015 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1016 goto out;
1017 }
Remi Tricot-Le Breton69164932021-06-11 10:28:09 +02001018#endif
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001019
Emeric Brun4147b2e2014-06-16 18:36:30 +02001020 ret = 0;
1021out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001022 ERR_clear_error();
1023
Emeric Brun4147b2e2014-06-16 18:36:30 +02001024 if (bs)
1025 OCSP_BASICRESP_free(bs);
1026
1027 if (resp)
1028 OCSP_RESPONSE_free(resp);
1029
1030 return ret;
1031}
1032/*
1033 * External function use to update the OCSP response in the OCSP response's
1034 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1035 * to update in DER format.
1036 *
1037 * Returns 0 on success, 1 in error case.
1038 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001039int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001040{
1041 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1042}
1043
William Lallemand4a660132019-10-14 14:51:41 +02001044#endif
1045
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001046#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1047static 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)
1048{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001049 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001050 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001051 struct connection *conn;
1052 int head;
1053 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001054 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001055
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001056 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001057 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001058 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1059
1060 keys = ref->tlskeys;
1061 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001062
1063 if (enc) {
1064 memcpy(key_name, keys[head].name, 16);
1065
1066 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001067 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001068
Emeric Brun9e754772019-01-10 17:51:55 +01001069 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001070
Emeric Brun9e754772019-01-10 17:51:55 +01001071 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1072 goto end;
1073
Willy Tarreau9356dac2019-05-10 09:22:53 +02001074 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001075 ret = 1;
1076 }
1077 else if (ref->key_size_bits == 256 ) {
1078
1079 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1080 goto end;
1081
Willy Tarreau9356dac2019-05-10 09:22:53 +02001082 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001083 ret = 1;
1084 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001085 } else {
1086 for (i = 0; i < TLS_TICKETS_NO; i++) {
1087 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1088 goto found;
1089 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001090 ret = 0;
1091 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001092
Christopher Faulet16f45c82018-02-16 11:23:49 +01001093 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001094 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001095 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 +01001096 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1097 goto end;
1098 /* 2 for key renewal, 1 if current key is still valid */
1099 ret = i ? 2 : 1;
1100 }
1101 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001102 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 +01001103 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1104 goto end;
1105 /* 2 for key renewal, 1 if current key is still valid */
1106 ret = i ? 2 : 1;
1107 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001108 }
Emeric Brun9e754772019-01-10 17:51:55 +01001109
Christopher Faulet16f45c82018-02-16 11:23:49 +01001110 end:
1111 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1112 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001113}
1114
1115struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1116{
1117 struct tls_keys_ref *ref;
1118
1119 list_for_each_entry(ref, &tlskeys_reference, list)
1120 if (ref->filename && strcmp(filename, ref->filename) == 0)
1121 return ref;
1122 return NULL;
1123}
1124
1125struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1126{
1127 struct tls_keys_ref *ref;
1128
1129 list_for_each_entry(ref, &tlskeys_reference, list)
1130 if (ref->unique_id == unique_id)
1131 return ref;
1132 return NULL;
1133}
1134
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001135/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001136 * match existing ones, this function returns -1
1137 * else it returns 0 on success.
1138 */
1139int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001140 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001141{
Emeric Brun9e754772019-01-10 17:51:55 +01001142 if (ref->key_size_bits == 128) {
1143 if (tlskey->data != sizeof(struct tls_sess_key_128))
1144 return -1;
1145 }
1146 else if (ref->key_size_bits == 256) {
1147 if (tlskey->data != sizeof(struct tls_sess_key_256))
1148 return -1;
1149 }
1150 else
1151 return -1;
1152
Christopher Faulet16f45c82018-02-16 11:23:49 +01001153 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001154 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1155 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001156 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1157 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001158
1159 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001160}
1161
Willy Tarreau83061a82018-07-13 11:56:34 +02001162int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001163{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001164 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1165
1166 if(!ref) {
1167 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1168 return 1;
1169 }
Emeric Brun9e754772019-01-10 17:51:55 +01001170 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1171 memprintf(err, "Invalid key size");
1172 return 1;
1173 }
1174
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001175 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001176}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001177
1178/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001179 * automatic ids. It's called just after the basic checks. It returns
1180 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001181 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001182static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001183{
1184 int i = 0;
1185 struct tls_keys_ref *ref, *ref2, *ref3;
1186 struct list tkr = LIST_HEAD_INIT(tkr);
1187
1188 list_for_each_entry(ref, &tlskeys_reference, list) {
1189 if (ref->unique_id == -1) {
1190 /* Look for the first free id. */
1191 while (1) {
1192 list_for_each_entry(ref2, &tlskeys_reference, list) {
1193 if (ref2->unique_id == i) {
1194 i++;
1195 break;
1196 }
1197 }
1198 if (&ref2->list == &tlskeys_reference)
1199 break;
1200 }
1201
1202 /* Uses the unique id and increment it for the next entry. */
1203 ref->unique_id = i;
1204 i++;
1205 }
1206 }
1207
1208 /* This sort the reference list by id. */
1209 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001210 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001211 list_for_each_entry(ref3, &tkr, list) {
1212 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001213 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001214 break;
1215 }
1216 }
1217 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001218 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001219 }
1220
1221 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001222 LIST_INSERT(&tkr, &tlskeys_reference);
1223 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001224 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001225}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001226#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1227
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001228#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001229int ocsp_ex_index = -1;
1230
yanbzhube2774d2015-12-10 15:07:30 -05001231int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1232{
1233 switch (evp_keytype) {
1234 case EVP_PKEY_RSA:
1235 return 2;
1236 case EVP_PKEY_DSA:
1237 return 0;
1238 case EVP_PKEY_EC:
1239 return 1;
1240 }
1241
1242 return -1;
1243}
1244
Emeric Brun4147b2e2014-06-16 18:36:30 +02001245/*
1246 * Callback used to set OCSP status extension content in server hello.
1247 */
1248int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1249{
yanbzhube2774d2015-12-10 15:07:30 -05001250 struct certificate_ocsp *ocsp;
1251 struct ocsp_cbk_arg *ocsp_arg;
1252 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001253 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001254 EVP_PKEY *ssl_pkey;
1255 int key_type;
1256 int index;
1257
William Lallemand76b4a122020-08-04 17:41:39 +02001258 ctx = SSL_get_SSL_CTX(ssl);
1259 if (!ctx)
1260 return SSL_TLSEXT_ERR_NOACK;
1261
1262 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1263 if (!ocsp_arg)
1264 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001265
1266 ssl_pkey = SSL_get_privatekey(ssl);
1267 if (!ssl_pkey)
1268 return SSL_TLSEXT_ERR_NOACK;
1269
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001270 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001271
1272 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1273 ocsp = ocsp_arg->s_ocsp;
1274 else {
1275 /* For multiple certs per context, we have to find the correct OCSP response based on
1276 * the certificate type
1277 */
1278 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1279
1280 if (index < 0)
1281 return SSL_TLSEXT_ERR_NOACK;
1282
1283 ocsp = ocsp_arg->m_ocsp[index];
1284
1285 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001286
1287 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001288 !ocsp->response.area ||
1289 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001290 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001291 return SSL_TLSEXT_ERR_NOACK;
1292
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001293 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001294 if (!ssl_buf)
1295 return SSL_TLSEXT_ERR_NOACK;
1296
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001297 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1298 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001299
1300 return SSL_TLSEXT_ERR_OK;
1301}
1302
William Lallemand4a660132019-10-14 14:51:41 +02001303#endif
1304
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001305#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001306
1307
1308/*
1309 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1310 * used anymore. Also removes it from the tree if free'd.
1311 */
1312static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1313{
1314 if (!ocsp)
1315 return;
1316
1317 ocsp->refcount--;
1318 if (ocsp->refcount <= 0) {
1319 ebmb_delete(&ocsp->key);
1320 chunk_destroy(&ocsp->response);
1321 free(ocsp);
1322 }
1323}
1324
1325
Emeric Brun4147b2e2014-06-16 18:36:30 +02001326/*
1327 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001328 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1329 * status extension, the issuer's certificate is mandatory. It should be
1330 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001331 *
William Lallemand246c0242019-10-11 08:59:13 +02001332 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1333 * OCSP response. If file is empty or content is not a valid OCSP response,
1334 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1335 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001336 *
1337 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001338 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001339 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001340static 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 +02001341{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001342 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001343 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001344 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001345 struct certificate_ocsp *ocsp = NULL, *iocsp;
1346 char *warn = NULL;
1347 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001348 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001349
Emeric Brun4147b2e2014-06-16 18:36:30 +02001350
William Lallemand246c0242019-10-11 08:59:13 +02001351 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001352 if (!x)
1353 goto out;
1354
William Lallemand246c0242019-10-11 08:59:13 +02001355 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001356 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1357 if (chain) {
1358 /* check if one of the certificate of the chain is the issuer */
1359 for (i = 0; i < sk_X509_num(chain); i++) {
1360 X509 *ti = sk_X509_value(chain, i);
1361 if (X509_check_issued(ti, x) == X509_V_OK) {
1362 issuer = ti;
1363 break;
1364 }
1365 }
1366 }
William Lallemand246c0242019-10-11 08:59:13 +02001367 if (!issuer)
1368 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001369
1370 cid = OCSP_cert_to_id(0, x, issuer);
1371 if (!cid)
1372 goto out;
1373
1374 i = i2d_OCSP_CERTID(cid, NULL);
1375 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1376 goto out;
1377
Vincent Bernat02779b62016-04-03 13:48:43 +02001378 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001379 if (!ocsp)
1380 goto out;
1381
1382 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001383 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001384
1385 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1386 if (iocsp == ocsp)
1387 ocsp = NULL;
1388
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001389#ifndef SSL_CTX_get_tlsext_status_cb
1390# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1391 *cb = (void (*) (void))ctx->tlsext_status_cb;
1392#endif
1393 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1394
1395 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001396 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001397 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001398
William Lallemanda560c062020-07-31 11:43:20 +02001399 cb_arg = calloc(1, sizeof(*cb_arg));
1400 if (!cb_arg)
1401 goto out;
1402
yanbzhube2774d2015-12-10 15:07:30 -05001403 cb_arg->is_single = 1;
1404 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001405 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001406
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001407 pkey = X509_get_pubkey(x);
1408 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1409 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001410
1411 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001412 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 */
1413
yanbzhube2774d2015-12-10 15:07:30 -05001414 } else {
1415 /*
1416 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1417 * Update that cb_arg with the new cert's staple
1418 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001419 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001420 struct certificate_ocsp *tmp_ocsp;
1421 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001422 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001423 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001424
William Lallemand76b4a122020-08-04 17:41:39 +02001425 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001426
1427 /*
1428 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1429 * the order of operations below matter, take care when changing it
1430 */
1431 tmp_ocsp = cb_arg->s_ocsp;
1432 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1433 cb_arg->s_ocsp = NULL;
1434 cb_arg->m_ocsp[index] = tmp_ocsp;
1435 cb_arg->is_single = 0;
1436 cb_arg->single_kt = 0;
1437
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001438 pkey = X509_get_pubkey(x);
1439 key_type = EVP_PKEY_base_id(pkey);
1440 EVP_PKEY_free(pkey);
1441
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001442 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001443 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001444 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001445 iocsp->refcount++;
1446 }
yanbzhube2774d2015-12-10 15:07:30 -05001447 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001448
1449 ret = 0;
1450
1451 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001452 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001453 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001454 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001455 }
1456
1457out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001458 if (cid)
1459 OCSP_CERTID_free(cid);
1460
1461 if (ocsp)
1462 free(ocsp);
1463
1464 if (warn)
1465 free(warn);
1466
Emeric Brun4147b2e2014-06-16 18:36:30 +02001467 return ret;
1468}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001469#endif
1470
1471#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001472static 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 +02001473{
William Lallemand4a660132019-10-14 14:51:41 +02001474 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 +02001475}
1476#endif
1477
William Lallemand4a660132019-10-14 14:51:41 +02001478
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001479#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001480
1481#define CT_EXTENSION_TYPE 18
1482
William Lallemand03c331c2020-05-13 10:10:01 +02001483int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001484
1485int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1486{
Willy Tarreau83061a82018-07-13 11:56:34 +02001487 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001488
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001489 *out = (unsigned char *) sctl->area;
1490 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001491
1492 return 1;
1493}
1494
1495int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1496{
1497 return 1;
1498}
1499
William Lallemanda17f4112019-10-10 15:16:44 +02001500static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001501{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001502 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001503
William Lallemanda17f4112019-10-10 15:16:44 +02001504 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 +01001505 goto out;
1506
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001507 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1508
1509 ret = 0;
1510
1511out:
1512 return ret;
1513}
1514
1515#endif
1516
Emeric Brune1f38db2012-09-03 20:36:47 +02001517void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1518{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001519 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001520 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001521 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001522 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001523
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001524#ifndef SSL_OP_NO_RENEGOTIATION
1525 /* Please note that BoringSSL defines this macro to zero so don't
1526 * change this to #if and do not assign a default value to this macro!
1527 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001528 if (where & SSL_CB_HANDSHAKE_START) {
1529 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001530 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 +02001531 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001532 conn->err_code = CO_ER_SSL_RENEG;
1533 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001534 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001535#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001536
1537 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001538 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001539 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001540 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001541 consider that the buffering was activated,
1542 so we rise the output buffer size from 4k
1543 to 16k */
1544 write_bio = SSL_get_wbio(ssl);
1545 if (write_bio != SSL_get_rbio(ssl)) {
1546 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001547 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001548 }
1549 }
1550 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001551}
1552
Emeric Brune64aef12012-09-21 13:15:06 +02001553/* Callback is called for each certificate of the chain during a verify
1554 ok is set to 1 if preverify detect no error on current certificate.
1555 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001556int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001557{
1558 SSL *ssl;
1559 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001560 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001561 int err, depth;
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001562 X509 *client_crt;
1563 STACK_OF(X509) *certs;
Emeric Brune64aef12012-09-21 13:15:06 +02001564
1565 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001566 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001567 client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001568
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001569 ctx = conn->xprt_ctx;
1570
1571 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001572
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001573 depth = X509_STORE_CTX_get_error_depth(x_store);
1574 err = X509_STORE_CTX_get_error(x_store);
1575
Emeric Brun81c00f02012-09-21 14:31:21 +02001576 if (ok) /* no errors */
1577 return ok;
1578
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001579 /* Keep a reference to the client's certificate in order to be able to
1580 * dump some fetches values in a log even when the verification process
1581 * fails. */
1582 if (depth == 0) {
1583 X509_free(client_crt);
1584 client_crt = X509_STORE_CTX_get0_cert(x_store);
1585 if (client_crt) {
1586 X509_up_ref(client_crt);
1587 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
1588 }
1589 }
1590 else {
1591 /* An error occurred on a CA certificate of the certificate
1592 * chain, we might never call this verify callback on the client
1593 * certificate's depth (which is 0) so we try to store the
1594 * reference right now. */
Remi Tricot-Le Bretonf95c2952021-08-20 09:51:23 +02001595 certs = X509_STORE_CTX_get1_chain(x_store);
1596 if (certs) {
1597 client_crt = sk_X509_value(certs, 0);
1598 if (client_crt) {
1599 X509_up_ref(client_crt);
1600 SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt);
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02001601 }
1602 sk_X509_pop_free(certs, X509_free);
1603 }
1604 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001605
1606 /* check if CA error needs to be ignored */
1607 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001608 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1609 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1610 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001611 }
1612
Willy Tarreau731248f2020-02-04 14:02:02 +01001613 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001614 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001615 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001616 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001617 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001618
Willy Tarreau20879a02012-12-03 16:32:10 +01001619 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001620 return 0;
1621 }
1622
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001623 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1624 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001625
Emeric Brun81c00f02012-09-21 14:31:21 +02001626 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001627 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001628 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001629 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001630 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001631 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001632
Willy Tarreau20879a02012-12-03 16:32:10 +01001633 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001634 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001635}
1636
Dragan Dosen9ac98092020-05-11 15:51:45 +02001637#ifdef TLS1_RT_HEARTBEAT
1638static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1639 int content_type, const void *buf, size_t len,
1640 SSL *ssl)
1641{
1642 /* test heartbeat received (write_p is set to 0
1643 for a received record) */
1644 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1645 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1646 const unsigned char *p = buf;
1647 unsigned int payload;
1648
1649 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1650
1651 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1652 if (*p != TLS1_HB_REQUEST)
1653 return;
1654
1655 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1656 goto kill_it;
1657
1658 payload = (p[1] * 256) + p[2];
1659 if (3 + payload + 16 <= len)
1660 return; /* OK no problem */
1661 kill_it:
1662 /* We have a clear heartbleed attack (CVE-2014-0160), the
1663 * advertised payload is larger than the advertised packet
1664 * length, so we have garbage in the buffer between the
1665 * payload and the end of the buffer (p+len). We can't know
1666 * if the SSL stack is patched, and we don't know if we can
1667 * safely wipe out the area between p+3+len and payload.
1668 * So instead, we prevent the response from being sent by
1669 * setting the max_send_fragment to 0 and we report an SSL
1670 * error, which will kill this connection. It will be reported
1671 * above as SSL_ERROR_SSL while an other handshake failure with
1672 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1673 */
1674 ssl->max_send_fragment = 0;
1675 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1676 }
1677}
1678#endif
1679
1680static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1681 int content_type, const void *buf, size_t len,
1682 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001683{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001684 struct ssl_capture *capture;
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001685 uchar *msg;
1686 uchar *end;
1687 uchar *extensions_end;
1688 uchar *ec_start = NULL;
1689 uchar *ec_formats_start = NULL;
1690 uchar *list_end;
1691 ushort protocol_version;
1692 ushort extension_id;
1693 ushort ec_len = 0;
1694 uchar ec_formats_len = 0;
1695 int offset = 0;
1696 int rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001697
1698 /* This function is called for "from client" and "to server"
1699 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001700 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001701 */
1702
1703 /* "write_p" is set to 0 is the bytes are received messages,
1704 * otherwise it is set to 1.
1705 */
1706 if (write_p != 0)
1707 return;
1708
1709 /* content_type contains the type of message received or sent
1710 * according with the SSL/TLS protocol spec. This message is
1711 * encoded with one byte. The value 256 (two bytes) is used
1712 * for designing the SSL/TLS record layer. According with the
1713 * rfc6101, the expected message (other than 256) are:
1714 * - change_cipher_spec(20)
1715 * - alert(21)
1716 * - handshake(22)
1717 * - application_data(23)
1718 * - (255)
1719 * We are interessed by the handshake and specially the client
1720 * hello.
1721 */
1722 if (content_type != 22)
1723 return;
1724
1725 /* The message length is at least 4 bytes, containing the
1726 * message type and the message length.
1727 */
1728 if (len < 4)
1729 return;
1730
1731 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001732 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001733 * - hello_request(0)
1734 * - client_hello(1)
1735 * - server_hello(2)
1736 * - certificate(11)
1737 * - server_key_exchange (12)
1738 * - certificate_request(13)
1739 * - server_hello_done(14)
1740 * We are interested by the client hello.
1741 */
1742 msg = (unsigned char *)buf;
1743 if (msg[0] != 1)
1744 return;
1745
1746 /* Next three bytes are the length of the message. The total length
1747 * must be this decoded length + 4. If the length given as argument
1748 * is not the same, we abort the protocol dissector.
1749 */
1750 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1751 if (len < rec_len + 4)
1752 return;
1753 msg += 4;
1754 end = msg + rec_len;
1755 if (end < msg)
1756 return;
1757
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001758 /* Expect 2 bytes for protocol version
1759 * (1 byte for major and 1 byte for minor)
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001760 */
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001761 if (msg + 2 > end)
1762 return;
1763 protocol_version = (msg[0] << 8) + msg[1];
1764 msg += 2;
1765
1766 /* Expect the random, composed by 4 bytes for the unix time and
1767 * 28 bytes for unix payload. So we jump 4 + 28.
1768 */
1769 msg += 4 + 28;
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001770 if (msg > end)
1771 return;
1772
1773 /* Next, is session id:
1774 * if present, we have to jump by length + 1 for the size information
1775 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001776 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001777 if (msg[0] > 0)
1778 msg += msg[0];
1779 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001780 if (msg > end)
1781 return;
1782
1783 /* Next two bytes are the ciphersuite length. */
1784 if (msg + 2 > end)
1785 return;
1786 rec_len = (msg[0] << 8) + msg[1];
1787 msg += 2;
1788 if (msg + rec_len > end || msg + rec_len < msg)
1789 return;
1790
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001791 capture = pool_zalloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001792 if (!capture)
1793 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001794 /* Compute the xxh64 of the ciphersuite. */
1795 capture->xxh64 = XXH64(msg, rec_len, 0);
1796
1797 /* Capture the ciphersuite. */
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001798 capture->ciphersuite_len = MIN(global_ssl.capture_cipherlist, rec_len);
1799 capture->ciphersuite_offset = 0;
1800 memcpy(capture->data, msg, capture->ciphersuite_len);
1801 msg += rec_len;
1802 offset += capture->ciphersuite_len;
1803
1804 /* Initialize other data */
1805 capture->protocol_version = protocol_version;
1806
1807 /* Next, compression methods:
1808 * if present, we have to jump by length + 1 for the size information
1809 * if not present, we have to jump by 1 only
1810 */
1811 if (msg[0] > 0)
1812 msg += msg[0];
1813 msg += 1;
1814 if (msg > end)
1815 goto store_capture;
1816
1817 /* We reached extensions */
1818 if (msg + 2 > end)
1819 goto store_capture;
1820 rec_len = (msg[0] << 8) + msg[1];
1821 msg += 2;
1822 if (msg + rec_len > end || msg + rec_len < msg)
1823 goto store_capture;
1824 extensions_end = msg + rec_len;
1825 capture->extensions_offset = offset;
1826
1827 /* Parse each extension */
1828 while (msg + 4 < extensions_end) {
1829 /* Add 2 bytes of extension_id */
1830 if (global_ssl.capture_cipherlist >= offset + 2) {
1831 capture->data[offset++] = msg[0];
1832 capture->data[offset++] = msg[1];
1833 capture->extensions_len += 2;
1834 }
1835 else
1836 break;
1837 extension_id = (msg[0] << 8) + msg[1];
1838 /* Length of the extension */
1839 rec_len = (msg[2] << 8) + msg[3];
1840
1841 /* Expect 2 bytes extension id + 2 bytes extension size */
1842 msg += 2 + 2;
1843 if (msg + rec_len > extensions_end || msg + rec_len < msg)
1844 goto store_capture;
1845 /* TLS Extensions
1846 * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */
1847 if (extension_id == 0x000a) {
1848 /* Elliptic Curves:
1849 * https://www.rfc-editor.org/rfc/rfc8422.html
1850 * https://www.rfc-editor.org/rfc/rfc7919.html */
1851 list_end = msg + rec_len;
1852 if (msg + 2 > list_end)
1853 goto store_capture;
1854 rec_len = (msg[0] << 8) + msg[1];
1855 msg += 2;
1856
1857 if (msg + rec_len > list_end || msg + rec_len < msg)
1858 goto store_capture;
1859 /* Store location/size of the list */
1860 ec_start = msg;
1861 ec_len = rec_len;
1862 }
1863 else if (extension_id == 0x000b) {
1864 /* Elliptic Curves Point Formats:
1865 * https://www.rfc-editor.org/rfc/rfc8422.html */
1866 list_end = msg + rec_len;
1867 if (msg + 1 > list_end)
1868 goto store_capture;
1869 rec_len = msg[0];
1870 msg += 1;
1871
1872 if (msg + rec_len > list_end || msg + rec_len < msg)
1873 goto store_capture;
1874 /* Store location/size of the list */
1875 ec_formats_start = msg;
1876 ec_formats_len = rec_len;
1877 }
1878 msg += rec_len;
1879 }
1880
1881 if (ec_start) {
1882 rec_len = ec_len;
1883 if (offset + rec_len > global_ssl.capture_cipherlist)
1884 rec_len = global_ssl.capture_cipherlist - offset;
1885 memcpy(capture->data + offset, ec_start, rec_len);
1886 capture->ec_offset = offset;
1887 capture->ec_len = rec_len;
1888 offset += rec_len;
1889 }
1890 if (ec_formats_start) {
1891 rec_len = ec_formats_len;
1892 if (offset + rec_len > global_ssl.capture_cipherlist)
1893 rec_len = global_ssl.capture_cipherlist - offset;
1894 memcpy(capture->data + offset, ec_formats_start, rec_len);
1895 capture->ec_formats_offset = offset;
1896 capture->ec_formats_len = rec_len;
1897 offset += rec_len;
1898 }
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001899
Marcin Deranek769fd2e2021-07-12 14:16:55 +02001900 store_capture:
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001901 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001902}
William Lallemand7d42ef52020-07-06 11:41:30 +02001903
1904
William Lallemand722180a2021-06-09 16:46:12 +02001905#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001906static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1907 int content_type, const void *buf, size_t len,
1908 SSL *ssl)
1909{
1910 struct ssl_keylog *keylog;
1911
1912 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1913 return;
1914
Willy Tarreauf208ac02021-03-22 21:10:12 +01001915 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001916 if (!keylog)
1917 return;
1918
William Lallemand7d42ef52020-07-06 11:41:30 +02001919 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1920 pool_free(pool_head_ssl_keylog, keylog);
1921 return;
1922 }
1923}
1924#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001925
Emeric Brun29f037d2014-04-25 19:05:36 +02001926/* Callback is called for ssl protocol analyse */
1927void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1928{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001929 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1930 struct ssl_sock_msg_callback *cbk;
1931
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001932 /* Try to call all callback functions that were registered by using
1933 * ssl_sock_register_msg_callback().
1934 */
1935 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1936 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1937 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001938}
1939
Bernard Spil13c53f82018-02-15 13:34:58 +01001940#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001941static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1942 const unsigned char *in, unsigned int inlen,
1943 void *arg)
1944{
1945 struct server *srv = arg;
1946
1947 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1948 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1949 return SSL_TLSEXT_ERR_OK;
1950 return SSL_TLSEXT_ERR_NOACK;
1951}
1952#endif
1953
1954#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001955/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001956 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001957 */
1958static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1959 unsigned int *len, void *arg)
1960{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001961 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001962
1963 *data = (const unsigned char *)conf->npn_str;
1964 *len = conf->npn_len;
1965 return SSL_TLSEXT_ERR_OK;
1966}
1967#endif
1968
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001969#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001970/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001971 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001972 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001973static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1974 unsigned char *outlen,
1975 const unsigned char *server,
1976 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001977{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001978 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001979
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001980 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1981 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1982 return SSL_TLSEXT_ERR_NOACK;
1983 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001984 return SSL_TLSEXT_ERR_OK;
1985}
1986#endif
1987
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001988#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001989#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001990
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001991/* Configure a DNS SAN extenion on a certificate. */
1992int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
1993 int failure = 0;
1994 X509_EXTENSION *san_ext = NULL;
1995 CONF *conf = NULL;
1996 struct buffer *san_name = get_trash_chunk();
1997
1998 conf = NCONF_new(NULL);
1999 if (!conf) {
2000 failure = 1;
2001 goto cleanup;
2002 }
2003
2004 /* Build an extension based on the DNS entry above */
2005 chunk_appendf(san_name, "DNS:%s", servername);
2006 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
2007 if (!san_ext) {
2008 failure = 1;
2009 goto cleanup;
2010 }
2011
2012 /* Add the extension */
2013 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
2014 failure = 1;
2015 goto cleanup;
2016 }
2017
2018 /* Success */
2019 failure = 0;
2020
2021cleanup:
2022 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
2023 if (NULL != conf) NCONF_free(conf);
2024
2025 return failure;
2026}
2027
Christopher Faulet30548802015-06-11 13:39:32 +02002028/* Create a X509 certificate with the specified servername and serial. This
2029 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02002030static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002031ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002032{
Shimi Gersner5846c492020-08-23 13:58:12 +03002033 X509 *cacert = bind_conf->ca_sign_ckch->cert;
2034 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002035 SSL_CTX *ssl_ctx = NULL;
2036 X509 *newcrt = NULL;
2037 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002038 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002039 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002040 X509_NAME *name;
2041 const EVP_MD *digest;
2042 X509V3_CTX ctx;
2043 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002044 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002045
Christopher Faulet48a83322017-07-28 16:56:09 +02002046 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05002047#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002048 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
2049#else
2050 tmp_ssl = SSL_new(bind_conf->default_ctx);
2051 if (tmp_ssl)
2052 pkey = SSL_get_privatekey(tmp_ssl);
2053#endif
2054 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002055 goto mkcert_error;
2056
2057 /* Create the certificate */
2058 if (!(newcrt = X509_new()))
2059 goto mkcert_error;
2060
2061 /* Set version number for the certificate (X509v3) and the serial
2062 * number */
2063 if (X509_set_version(newcrt, 2L) != 1)
2064 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02002065 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002066
2067 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08002068 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
2069 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002070 goto mkcert_error;
2071
2072 /* set public key in the certificate */
2073 if (X509_set_pubkey(newcrt, pkey) != 1)
2074 goto mkcert_error;
2075
2076 /* Set issuer name from the CA */
2077 if (!(name = X509_get_subject_name(cacert)))
2078 goto mkcert_error;
2079 if (X509_set_issuer_name(newcrt, name) != 1)
2080 goto mkcert_error;
2081
2082 /* Set the subject name using the same, but the CN */
2083 name = X509_NAME_dup(name);
2084 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
2085 (const unsigned char *)servername,
2086 -1, -1, 0) != 1) {
2087 X509_NAME_free(name);
2088 goto mkcert_error;
2089 }
2090 if (X509_set_subject_name(newcrt, name) != 1) {
2091 X509_NAME_free(name);
2092 goto mkcert_error;
2093 }
2094 X509_NAME_free(name);
2095
2096 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002097 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002098 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
2099 for (i = 0; i < X509V3_EXT_SIZE; i++) {
2100 X509_EXTENSION *ext;
2101
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002102 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02002103 goto mkcert_error;
2104 if (!X509_add_ext(newcrt, ext, -1)) {
2105 X509_EXTENSION_free(ext);
2106 goto mkcert_error;
2107 }
2108 X509_EXTENSION_free(ext);
2109 }
2110
Shimi Gersneradabbfe2020-08-23 13:58:13 +03002111 /* Add SAN extension */
2112 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
2113 goto mkcert_error;
2114 }
2115
Christopher Faulet31af49d2015-06-09 17:29:50 +02002116 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002117
2118 key_type = EVP_PKEY_base_id(capkey);
2119
2120 if (key_type == EVP_PKEY_DSA)
2121 digest = EVP_sha1();
2122 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002123 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002124 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002125 digest = EVP_sha256();
2126 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002127#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002128 int nid;
2129
2130 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2131 goto mkcert_error;
2132 if (!(digest = EVP_get_digestbynid(nid)))
2133 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002134#else
2135 goto mkcert_error;
2136#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002137 }
2138
Christopher Faulet31af49d2015-06-09 17:29:50 +02002139 if (!(X509_sign(newcrt, capkey, digest)))
2140 goto mkcert_error;
2141
2142 /* Create and set the new SSL_CTX */
2143 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2144 goto mkcert_error;
2145 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2146 goto mkcert_error;
2147 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2148 goto mkcert_error;
2149 if (!SSL_CTX_check_private_key(ssl_ctx))
2150 goto mkcert_error;
2151
Shimi Gersner5846c492020-08-23 13:58:12 +03002152 /* Build chaining the CA cert and the rest of the chain, keep these order */
2153#if defined(SSL_CTX_add1_chain_cert)
2154 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2155 goto mkcert_error;
2156 }
2157
2158 if (bind_conf->ca_sign_ckch->chain) {
2159 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2160 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2161 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2162 goto mkcert_error;
2163 }
2164 }
2165 }
2166#endif
2167
Christopher Faulet31af49d2015-06-09 17:29:50 +02002168 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002169
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002170#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002171 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002172#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002173#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2174 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002175 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002176 EC_KEY *ecc;
2177 int nid;
2178
2179 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2180 goto end;
2181 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2182 goto end;
2183 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2184 EC_KEY_free(ecc);
2185 }
2186#endif
2187 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002188 return ssl_ctx;
2189
2190 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002191 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002192 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002193 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2194 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002195 return NULL;
2196}
2197
Christopher Faulet7969a332015-10-09 11:15:03 +02002198SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002199ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02002200{
Willy Tarreau07d94e42018-09-20 10:57:52 +02002201 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01002202 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002203
Olivier Houchard66ab4982019-02-26 18:37:15 +01002204 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02002205}
2206
Christopher Faulet30548802015-06-11 13:39:32 +02002207/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002208 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002209SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002210ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002211{
2212 struct lru64 *lru = NULL;
2213
2214 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002215 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002216 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002217 if (lru && lru->domain) {
2218 if (ssl)
2219 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002220 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002221 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002222 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002223 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002224 }
2225 return NULL;
2226}
2227
Emeric Brun821bb9b2017-06-15 16:37:39 +02002228/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2229 * function is not thread-safe, it should only be used to check if a certificate
2230 * exists in the lru cache (with no warranty it will not be removed by another
2231 * thread). It is kept for backward compatibility. */
2232SSL_CTX *
2233ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2234{
2235 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2236}
2237
Christopher Fauletd2cab922015-07-28 16:03:47 +02002238/* Set a certificate int the LRU cache used to store generated
2239 * certificate. Return 0 on success, otherwise -1 */
2240int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002241ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002242{
2243 struct lru64 *lru = NULL;
2244
2245 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002246 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002247 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002248 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002249 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002250 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002251 }
Christopher Faulet30548802015-06-11 13:39:32 +02002252 if (lru->domain && lru->data)
2253 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002254 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002255 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002256 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002257 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002258 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002259}
2260
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002261/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002262unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002263ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002264{
2265 return XXH32(data, len, ssl_ctx_lru_seed);
2266}
2267
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002268/* Generate a cert and immediately assign it to the SSL session so that the cert's
2269 * refcount is maintained regardless of the cert's presence in the LRU cache.
2270 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002271static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002272ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002273{
Shimi Gersner5846c492020-08-23 13:58:12 +03002274 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002275 SSL_CTX *ssl_ctx = NULL;
2276 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002277 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002278
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002279 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002280 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002281 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002282 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002283 if (lru && lru->domain)
2284 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002285 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002286 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002287 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002288 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002289 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002290 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002291 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002292 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002293 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002294 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002295 SSL_set_SSL_CTX(ssl, ssl_ctx);
2296 /* No LRU cache, this CTX will be released as soon as the session dies */
2297 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002298 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002299 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002300 return 0;
2301}
2302static int
2303ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2304{
2305 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002306 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002307
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002308 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002309 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002310 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002311 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002312 }
2313 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002314}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002315#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002316
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002317#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002318
2319static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002320{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002321#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002322 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002323 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2324#endif
2325}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002326static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2327 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002328 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2329}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002330static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002331#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002332 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002333 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2334#endif
2335}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002336static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002337#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002338 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002339 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2340#endif
2341}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002342/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002343static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2344/* Unusable in this context. */
2345static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2346static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2347static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2348static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2349static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002350#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002351
2352static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2353 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002354 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2355}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002356static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2357 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2358 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2359}
2360static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2361 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002362 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2363}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002364static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2365 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2366 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2367}
2368static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2369 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002370 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2371}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002372static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2373 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2374 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2375}
2376static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2377 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002378 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2379}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002380static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2381 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2382 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2383}
2384static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002385#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002386 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002387 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2388#endif
2389}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002390static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002391#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002392 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2393 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002394#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002395}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002396#endif
2397static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2398static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002399
William Lallemand7fd8b452020-05-07 15:20:43 +02002400struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002401 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2402 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2403 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2404 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2405 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2406 {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 +02002407};
2408
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002409static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2410{
2411 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2412 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2413 SSL_set_SSL_CTX(ssl, ctx);
2414}
2415
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002416#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002417
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002418int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002419{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002420 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002421 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002422
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002423 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2424 return SSL_TLSEXT_ERR_OK;
2425 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002426}
2427
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002428#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002429int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002430{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002431 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002432#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002433int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002434{
2435#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002436 struct connection *conn;
2437 struct bind_conf *s;
2438 const uint8_t *extension_data;
2439 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002440 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002441
2442 char *wildp = NULL;
2443 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002444 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002445 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002446 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002447 int i;
2448
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002449 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002450 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002451
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002452#ifdef USE_QUIC
2453 if (conn->qc) {
2454 /* Look for the QUIC transport parameters. */
2455#ifdef OPENSSL_IS_BORINGSSL
2456 if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2457 &extension_data, &extension_len))
2458#else
2459 if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2460 &extension_data, &extension_len))
2461#endif
2462 goto abort;
2463
2464 if (!quic_transport_params_store(conn->qc, 0, extension_data,
2465 extension_data + extension_len))
2466 goto abort;
2467 }
2468#endif
2469
Olivier Houchard9679ac92017-10-27 14:58:08 +02002470 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002471 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002472#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002473 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2474 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002475#else
2476 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2477#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002478 /*
2479 * The server_name extension was given too much extensibility when it
2480 * was written, so parsing the normal case is a bit complex.
2481 */
2482 size_t len;
2483 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002484 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002485 /* Extract the length of the supplied list of names. */
2486 len = (*extension_data++) << 8;
2487 len |= *extension_data++;
2488 if (len + 2 != extension_len)
2489 goto abort;
2490 /*
2491 * The list in practice only has a single element, so we only consider
2492 * the first one.
2493 */
2494 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2495 goto abort;
2496 extension_len = len - 1;
2497 /* Now we can finally pull out the byte array with the actual hostname. */
2498 if (extension_len <= 2)
2499 goto abort;
2500 len = (*extension_data++) << 8;
2501 len |= *extension_data++;
2502 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2503 || memchr(extension_data, 0, len) != NULL)
2504 goto abort;
2505 servername = extension_data;
2506 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002507 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002508#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2509 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002510 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002511 }
2512#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002513 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002514 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002515 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002516 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002517 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002518 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002519 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002520 goto abort;
2521 }
2522
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002523 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002524#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002525 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002526#else
2527 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2528#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002529 uint8_t sign;
2530 size_t len;
2531 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002532 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002533 len = (*extension_data++) << 8;
2534 len |= *extension_data++;
2535 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002536 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002537 if (len % 2 != 0)
2538 goto abort;
2539 for (; len > 0; len -= 2) {
2540 extension_data++; /* hash */
2541 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002542 switch (sign) {
2543 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002544 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002545 break;
2546 case TLSEXT_signature_ecdsa:
2547 has_ecdsa_sig = 1;
2548 break;
2549 default:
2550 continue;
2551 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002552 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002553 break;
2554 }
2555 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002556 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002557 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002558 }
2559 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002560 const SSL_CIPHER *cipher;
2561 size_t len;
2562 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002563 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002564#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002565 len = ctx->cipher_suites_len;
2566 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002567#else
2568 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2569#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002570 if (len % 2 != 0)
2571 goto abort;
2572 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002573#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002574 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002575 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002576#else
2577 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2578#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002579 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002580 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002581 break;
2582 }
2583 }
2584 }
2585
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002586 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002587 trash.area[i] = tolower(servername[i]);
2588 if (!wildp && (trash.area[i] == '.'))
2589 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002590 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002591 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002592
William Lallemand150bfa82019-09-19 17:12:49 +02002593 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002594
William Lallemand94bd3192020-08-14 14:43:35 +02002595 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2596 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002597 for (i = 0; i < 2; i++) {
2598 if (i == 0) /* lookup in full qualified names */
2599 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002600 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002601 node = ebst_lookup(&s->sni_w_ctx, wildp);
2602 else
2603 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002604
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002605 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002606
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002607 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002608 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002609 struct sni_ctx *sni, *sni_tmp;
2610 int skip = 0;
2611
2612 if (i == 1 && wildp) { /* wildcard */
2613 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2614 sni = container_of(n, struct sni_ctx, name);
2615 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002616 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002617 skip = 1;
2618 break;
2619 }
2620 }
2621 if (skip)
2622 continue;
2623 }
2624
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002625 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002626 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002627 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002628 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002629 break;
2630 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002631 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002632 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002633 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002634 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002635 if (!node_anonymous)
2636 node_anonymous = n;
2637 break;
2638 }
2639 }
2640 }
William Lallemand94bd3192020-08-14 14:43:35 +02002641 }
2642 /* Once the certificates are found, select them depending on what is
2643 * supported in the client and by key_signature priority order: EDSA >
2644 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002645 if (has_ecdsa_sig && node_ecdsa)
2646 node = node_ecdsa;
2647 else if (has_rsa_sig && node_rsa)
2648 node = node_rsa;
2649 else if (node_anonymous)
2650 node = node_anonymous;
2651 else if (node_ecdsa)
2652 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2653 else
2654 node = node_rsa; /* no rsa signature case (far far away) */
2655
William Lallemand94bd3192020-08-14 14:43:35 +02002656 if (node) {
2657 /* switch ctx */
2658 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2659 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2660 if (conf) {
2661 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2662 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2663 if (conf->early_data)
2664 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002665 }
William Lallemand94bd3192020-08-14 14:43:35 +02002666 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2667 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002668 }
William Lallemand150bfa82019-09-19 17:12:49 +02002669
William Lallemand02010472019-10-18 11:02:19 +02002670 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002671#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002672 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002673 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002674 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002675 }
2676#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002677 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002678 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002679 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002680 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002681 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002682 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002683allow_early:
2684#ifdef OPENSSL_IS_BORINGSSL
2685 if (allow_early)
2686 SSL_set_early_data_enabled(ssl, 1);
2687#else
2688 if (!allow_early)
2689 SSL_set_max_early_data(ssl, 0);
2690#endif
2691 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002692 abort:
2693 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2694 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002695#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002696 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002697#else
2698 *al = SSL_AD_UNRECOGNIZED_NAME;
2699 return 0;
2700#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002701}
2702
2703#else /* OPENSSL_IS_BORINGSSL */
2704
Emeric Brunfc0421f2012-09-07 17:30:07 +02002705/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2706 * warning when no match is found, which implies the default (first) cert
2707 * will keep being used.
2708 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002709static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002710{
2711 const char *servername;
2712 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002713 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002714 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002715 int i;
2716 (void)al; /* shut gcc stupid warning */
2717
2718 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002719 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002720#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002721 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2722 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002723#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002724 if (s->strict_sni)
2725 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002726 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002727 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002728 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002729 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002730 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002731
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002732 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002733 if (!servername[i])
2734 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002735 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002736 if (!wildp && (trash.area[i] == '.'))
2737 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002738 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002739 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002740
William Lallemand150bfa82019-09-19 17:12:49 +02002741 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002742 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002743 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002744 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2745 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002746 if (!container_of(n, struct sni_ctx, name)->neg) {
2747 node = n;
2748 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002749 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002750 }
2751 if (!node && wildp) {
2752 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002753 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2754 /* lookup a not neg filter */
2755 if (!container_of(n, struct sni_ctx, name)->neg) {
2756 node = n;
2757 break;
2758 }
2759 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002760 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002761 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002762#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002763 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2764 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002765 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002766 return SSL_TLSEXT_ERR_OK;
2767 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002768#endif
William Lallemand21724f02019-11-04 17:56:13 +01002769 if (s->strict_sni) {
2770 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002771 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002772 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002773 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002774 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002775 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002776 }
2777
2778 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002779 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002780 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002781 return SSL_TLSEXT_ERR_OK;
2782}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002783#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002784#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2785
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002786#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002787
2788static DH * ssl_get_dh_1024(void)
2789{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002790 static unsigned char dh1024_p[]={
2791 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2792 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2793 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2794 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2795 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2796 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2797 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2798 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2799 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2800 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2801 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2802 };
2803 static unsigned char dh1024_g[]={
2804 0x02,
2805 };
2806
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002807 BIGNUM *p;
2808 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002809 DH *dh = DH_new();
2810 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002811 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2812 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002813
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002814 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002815 DH_free(dh);
2816 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002817 } else {
2818 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002819 }
2820 }
2821 return dh;
2822}
2823
2824static DH *ssl_get_dh_2048(void)
2825{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002826 static unsigned char dh2048_p[]={
2827 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2828 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2829 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2830 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2831 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2832 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2833 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2834 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2835 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2836 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2837 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2838 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2839 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2840 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2841 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2842 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2843 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2844 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2845 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2846 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2847 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2848 0xB7,0x1F,0x77,0xF3,
2849 };
2850 static unsigned char dh2048_g[]={
2851 0x02,
2852 };
2853
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002854 BIGNUM *p;
2855 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002856 DH *dh = DH_new();
2857 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002858 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2859 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002860
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002861 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002862 DH_free(dh);
2863 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002864 } else {
2865 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002866 }
2867 }
2868 return dh;
2869}
2870
2871static DH *ssl_get_dh_4096(void)
2872{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002873 static unsigned char dh4096_p[]={
2874 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2875 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2876 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2877 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2878 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2879 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2880 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2881 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2882 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2883 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2884 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2885 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2886 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2887 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2888 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2889 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2890 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2891 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2892 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2893 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2894 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2895 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2896 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2897 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2898 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2899 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2900 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2901 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2902 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2903 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2904 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2905 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2906 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2907 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2908 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2909 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2910 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2911 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2912 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2913 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2914 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2915 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2916 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002917 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002918 static unsigned char dh4096_g[]={
2919 0x02,
2920 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002921
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002922 BIGNUM *p;
2923 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002924 DH *dh = DH_new();
2925 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002926 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2927 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002928
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002929 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002930 DH_free(dh);
2931 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002932 } else {
2933 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002934 }
2935 }
2936 return dh;
2937}
2938
2939/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002940 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002941static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2942{
2943 DH *dh = NULL;
2944 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002945 int type;
2946
2947 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002948
2949 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2950 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2951 */
2952 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2953 keylen = EVP_PKEY_bits(pkey);
2954 }
2955
Willy Tarreauef934602016-12-22 23:12:01 +01002956 if (keylen > global_ssl.default_dh_param) {
2957 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002958 }
2959
Remi Gacogned3a341a2015-05-29 16:26:17 +02002960 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002961 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002962 }
2963 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002964 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002965 }
2966 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002967 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002968 }
2969
2970 return dh;
2971}
2972
Remi Gacogne47783ef2015-05-29 15:53:22 +02002973static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002974{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002975 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002976 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002977
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002978 if (in == NULL)
2979 goto end;
2980
Remi Gacogne47783ef2015-05-29 15:53:22 +02002981 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002982 goto end;
2983
Remi Gacogne47783ef2015-05-29 15:53:22 +02002984 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2985
2986end:
2987 if (in)
2988 BIO_free(in);
2989
Emeric Brune1b4ed42018-08-16 15:14:12 +02002990 ERR_clear_error();
2991
Remi Gacogne47783ef2015-05-29 15:53:22 +02002992 return dh;
2993}
2994
2995int ssl_sock_load_global_dh_param_from_file(const char *filename)
2996{
2997 global_dh = ssl_sock_get_dh_from_file(filename);
2998
2999 if (global_dh) {
3000 return 0;
3001 }
3002
3003 return -1;
3004}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003005#endif
3006
William Lallemand9117de92019-10-04 00:29:42 +02003007/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02003008static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02003009 struct bind_conf *s, struct ssl_bind_conf *conf,
3010 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003011{
3012 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003013 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003014
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003015 if (*name == '!') {
3016 neg = 1;
3017 name++;
3018 }
3019 if (*name == '*') {
3020 wild = 1;
3021 name++;
3022 }
3023 /* !* filter is a nop */
3024 if (neg && wild)
3025 return order;
3026 if (*name) {
3027 int j, len;
3028 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003029 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02003030 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003031 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02003032 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003033 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02003034
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003035 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02003036 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02003037 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003038 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02003039 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003040 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003041 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003042 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003043 sc->order = order++;
3044 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02003045 sc->wild = wild;
3046 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01003047 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02003048 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003049 }
3050 return order;
3051}
3052
William Lallemand6af03992019-07-23 15:00:54 +02003053/*
William Lallemand1d29c742019-10-04 00:53:29 +02003054 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
3055 * This function can't return an error.
3056 *
3057 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
3058 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003059void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02003060{
3061
3062 struct sni_ctx *sc0, *sc0b, *sc1;
3063 struct ebmb_node *node;
3064
3065 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
3066
3067 /* ignore if sc0 was already inserted in a tree */
3068 if (sc0->name.node.leaf_p)
3069 continue;
3070
3071 /* Check for duplicates. */
3072 if (sc0->wild)
3073 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
3074 else
3075 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
3076
3077 for (; node; node = ebmb_next_dup(node)) {
3078 sc1 = ebmb_entry(node, struct sni_ctx, name);
3079 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
3080 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
3081 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02003082 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02003083 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003084 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02003085 break;
William Lallemand1d29c742019-10-04 00:53:29 +02003086 }
3087 }
3088
3089 /* if duplicate, ignore the insertion */
3090 if (!sc0)
3091 continue;
3092
3093 if (sc0->wild)
3094 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
3095 else
3096 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003097 }
William Lallemand21724f02019-11-04 17:56:13 +01003098
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003099 /* replace the default_ctx if required with the instance's ctx. */
3100 if (ckch_inst->is_default) {
3101 SSL_CTX_free(bind_conf->default_ctx);
3102 SSL_CTX_up_ref(ckch_inst->ctx);
3103 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003104 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02003105 }
3106}
3107
3108/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003109 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02003110 */
William Lallemande3af8fb2019-10-08 11:36:53 +02003111struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02003112
William Lallemand2954c472020-03-06 21:54:13 +01003113/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02003114struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02003115
Emeric Brun7a883362019-10-17 13:27:40 +02003116/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003117 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003118 * DH parameter is loaded into the SSL_CTX and if there is no
3119 * DH parameter available in ckchs nor in global, the default
3120 * DH parameters are applied on the SSL_CTX.
3121 * Returns a bitfield containing the flags:
3122 * ERR_FATAL in any fatal error case
3123 * ERR_ALERT if a reason of the error is availabine in err
3124 * ERR_WARN if a warning is available into err
3125 * The value 0 means there is no error nor warning and
3126 * the operation succeed.
3127 */
William Lallemandfa892222019-07-23 16:06:08 +02003128#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003129static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3130 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003131{
Emeric Brun7a883362019-10-17 13:27:40 +02003132 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02003133 DH *dh = NULL;
3134
William Lallemanda8c73742019-07-31 18:31:34 +02003135 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003136 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02003137 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
3138 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3139 err && *err ? *err : "", path);
3140#if defined(SSL_CTX_set_dh_auto)
3141 SSL_CTX_set_dh_auto(ctx, 1);
3142 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3143 err && *err ? *err : "");
3144#else
3145 memprintf(err, "%s, DH ciphers won't be available.\n",
3146 err && *err ? *err : "");
3147#endif
3148 ret |= ERR_WARN;
3149 goto end;
3150 }
William Lallemandfa892222019-07-23 16:06:08 +02003151
3152 if (ssl_dh_ptr_index >= 0) {
3153 /* store a pointer to the DH params to avoid complaining about
3154 ssl-default-dh-param not being set for this SSL_CTX */
3155 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3156 }
3157 }
3158 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003159 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3160 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3161 err && *err ? *err : "", path);
3162#if defined(SSL_CTX_set_dh_auto)
3163 SSL_CTX_set_dh_auto(ctx, 1);
3164 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3165 err && *err ? *err : "");
3166#else
3167 memprintf(err, "%s, DH ciphers won't be available.\n",
3168 err && *err ? *err : "");
3169#endif
3170 ret |= ERR_WARN;
3171 goto end;
3172 }
William Lallemandfa892222019-07-23 16:06:08 +02003173 }
3174 else {
3175 /* Clear openssl global errors stack */
3176 ERR_clear_error();
3177
Willy Tarreau6d27a922020-11-05 19:38:05 +01003178 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003179 /* we are limited to DH parameter of 1024 bits anyway */
3180 if (local_dh_1024 == NULL)
3181 local_dh_1024 = ssl_get_dh_1024();
3182
Emeric Brun7a883362019-10-17 13:27:40 +02003183 if (local_dh_1024 == NULL) {
3184 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3185 err && *err ? *err : "", path);
3186 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003187 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003188 }
William Lallemandfa892222019-07-23 16:06:08 +02003189
Emeric Bruna9363eb2019-10-17 14:53:03 +02003190 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3191 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3192 err && *err ? *err : "", path);
3193#if defined(SSL_CTX_set_dh_auto)
3194 SSL_CTX_set_dh_auto(ctx, 1);
3195 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3196 err && *err ? *err : "");
3197#else
3198 memprintf(err, "%s, DH ciphers won't be available.\n",
3199 err && *err ? *err : "");
3200#endif
3201 ret |= ERR_WARN;
3202 goto end;
3203 }
William Lallemandfa892222019-07-23 16:06:08 +02003204 }
3205 else {
3206 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3207 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003208 }
3209
William Lallemandf9568fc2019-10-16 18:27:58 +02003210end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003211 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003212 return ret;
3213}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003214#endif
William Lallemandfa892222019-07-23 16:06:08 +02003215
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003216
3217/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003218 * Returns a bitfield containing the flags:
3219 * ERR_FATAL in any fatal error case
3220 * ERR_ALERT if the reason of the error is available in err
3221 * ERR_WARN if a warning is available into err
3222 * The value 0 means there is no error nor warning and
3223 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003224 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003225static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3226 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003227{
Emeric Bruna96b5822019-10-17 13:25:14 +02003228 int errcode = 0;
3229
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003230 if (find_chain == NULL) {
3231 errcode |= ERR_FATAL;
3232 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003233 }
3234
3235 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3236 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3237 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003238 errcode |= ERR_ALERT | ERR_FATAL;
3239 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003240 }
3241
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003242 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003243 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003244 } else {
3245 /* Find Certificate Chain in global */
3246 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003247 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003248 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003249 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003250 }
William Lallemand85888572020-02-27 14:48:35 +01003251
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003252 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003253 /* always put a null chain stack in the SSL_CTX so it does not
3254 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003255 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003256 }
3257
William Lallemandf187ce62020-06-02 18:27:20 +02003258 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003259#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003260 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003261 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3262 err && *err ? *err : "", path);
3263 errcode |= ERR_ALERT | ERR_FATAL;
3264 goto end;
3265 }
William Lallemandf187ce62020-06-02 18:27:20 +02003266#else
3267 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003268 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003269 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003270 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003271 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003272 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003273 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3274 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003275 X509_free(ca);
3276 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003277 errcode |= ERR_ALERT | ERR_FATAL;
3278 goto end;
3279 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003280 }
William Lallemandf187ce62020-06-02 18:27:20 +02003281#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003282
William Lallemand9a1d8392020-08-10 17:28:23 +02003283#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003284 /* remove the Root CA from the SSL_CTX if the option is activated */
3285 if (global_ssl.skip_self_issued_ca) {
3286 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3287 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3288 err && *err ? *err : "", path);
3289 errcode |= ERR_ALERT | ERR_FATAL;
3290 goto end;
3291 }
3292 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003293#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003294
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003295end:
3296 return errcode;
3297}
3298
3299
3300/* Loads the info in ckch into ctx
3301 * Returns a bitfield containing the flags:
3302 * ERR_FATAL in any fatal error case
3303 * ERR_ALERT if the reason of the error is available in err
3304 * ERR_WARN if a warning is available into err
3305 * The value 0 means there is no error nor warning and
3306 * the operation succeed.
3307 */
3308static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3309{
3310 int errcode = 0;
3311 STACK_OF(X509) *find_chain = NULL;
3312
3313 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3314 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3315 err && *err ? *err : "", path);
3316 errcode |= ERR_ALERT | ERR_FATAL;
3317 return errcode;
3318 }
3319
3320 /* Load certificate chain */
3321 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3322 if (errcode & ERR_CODE)
3323 goto end;
3324
William Lallemandfa892222019-07-23 16:06:08 +02003325#ifndef OPENSSL_NO_DH
3326 /* store a NULL pointer to indicate we have not yet loaded
3327 a custom DH param file */
3328 if (ssl_dh_ptr_index >= 0) {
3329 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3330 }
3331
Emeric Brun7a883362019-10-17 13:27:40 +02003332 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3333 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003334 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3335 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003336 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003337 }
3338#endif
3339
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003340#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003341 if (sctl_ex_index >= 0 && ckch->sctl) {
3342 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3343 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003344 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003345 errcode |= ERR_ALERT | ERR_FATAL;
3346 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003347 }
3348 }
3349#endif
3350
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003351#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003352 /* Load OCSP Info into context */
3353 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003354 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003355 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",
3356 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003357 errcode |= ERR_ALERT | ERR_FATAL;
3358 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003359 }
3360 }
William Lallemand246c0242019-10-11 08:59:13 +02003361#endif
3362
Emeric Bruna96b5822019-10-17 13:25:14 +02003363 end:
3364 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003365}
3366
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003367
3368/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3369 * Returns a bitfield containing the flags:
3370 * ERR_FATAL in any fatal error case
3371 * ERR_ALERT if the reason of the error is available in err
3372 * ERR_WARN if a warning is available into err
3373 * The value 0 means there is no error nor warning and
3374 * the operation succeed.
3375 */
3376static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3377 SSL_CTX *ctx, char **err)
3378{
3379 int errcode = 0;
3380 STACK_OF(X509) *find_chain = NULL;
3381
3382 /* Load the private key */
3383 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3384 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3385 err && *err ? *err : "", path);
3386 errcode |= ERR_ALERT | ERR_FATAL;
3387 }
3388
3389 /* Load certificate chain */
3390 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3391 if (errcode & ERR_CODE)
3392 goto end;
3393
3394 if (SSL_CTX_check_private_key(ctx) <= 0) {
3395 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3396 err && *err ? *err : "", path);
3397 errcode |= ERR_ALERT | ERR_FATAL;
3398 }
3399
3400end:
3401 return errcode;
3402}
3403
3404
William Lallemand614ca0d2019-10-07 13:52:11 +02003405/*
3406 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003407 *
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
William Lallemand614ca0d2019-10-07 13:52:11 +02003412 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003413int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003414 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003415{
William Lallemandc9402072019-05-15 15:33:54 +02003416 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003417 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003418 int order = 0;
3419 X509_NAME *xname;
3420 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003421 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003422 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003423#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3424 STACK_OF(GENERAL_NAME) *names;
3425#endif
William Lallemand36b84632019-07-18 19:28:17 +02003426 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003427 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003428 int errcode = 0;
3429
3430 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003431
William Lallemande3af8fb2019-10-08 11:36:53 +02003432 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003433 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003434
William Lallemande3af8fb2019-10-08 11:36:53 +02003435 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003436
William Lallemandc9402072019-05-15 15:33:54 +02003437 ctx = SSL_CTX_new(SSLv23_server_method());
3438 if (!ctx) {
3439 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3440 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003441 errcode |= ERR_ALERT | ERR_FATAL;
3442 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003443 }
3444
Emeric Bruna96b5822019-10-17 13:25:14 +02003445 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3446 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003447 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003448
3449 ckch_inst = ckch_inst_new();
3450 if (!ckch_inst) {
3451 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3452 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003453 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003454 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003455 }
3456
William Lallemand36b84632019-07-18 19:28:17 +02003457 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003458 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003459 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003460 switch(EVP_PKEY_base_id(pkey)) {
3461 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003462 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003463 break;
3464 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003465 kinfo.sig = TLSEXT_signature_ecdsa;
3466 break;
3467 case EVP_PKEY_DSA:
3468 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003469 break;
3470 }
3471 EVP_PKEY_free(pkey);
3472 }
3473
Emeric Brun50bcecc2013-04-22 13:05:23 +02003474 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003475 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003476 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 +02003477 if (order < 0) {
3478 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003479 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003480 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003481 }
3482 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003483 }
3484 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003485#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003486 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003487 if (names) {
3488 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3489 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3490 if (name->type == GEN_DNS) {
3491 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003492 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003493 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003494 if (order < 0) {
3495 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003496 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003497 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003498 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003499 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003500 }
3501 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003502 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003503 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003504#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003505 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003506 i = -1;
3507 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3508 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003509 ASN1_STRING *value;
3510
3511 value = X509_NAME_ENTRY_get_data(entry);
3512 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003513 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003514 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003515 if (order < 0) {
3516 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003517 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003518 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003519 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003520 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003521 }
3522 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003523 /* we must not free the SSL_CTX anymore below, since it's already in
3524 * the tree, so it will be discovered and cleaned in time.
3525 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003526
Emeric Brunfc0421f2012-09-07 17:30:07 +02003527#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003528 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003529 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3530 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003531 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003532 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003533 }
3534#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003535 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003536 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003537 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003538 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003539 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003540 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003541 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003542
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003543 /* Always keep a reference to the newly constructed SSL_CTX in the
3544 * instance. This way if the instance has no SNIs, the SSL_CTX will
3545 * still be linked. */
3546 SSL_CTX_up_ref(ctx);
3547 ckch_inst->ctx = ctx;
3548
William Lallemand9117de92019-10-04 00:29:42 +02003549 /* everything succeed, the ckch instance can be used */
3550 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003551 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003552 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003553
William Lallemand02e19a52020-04-08 16:11:26 +02003554 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3555
Emeric Brun054563d2019-10-17 13:16:58 +02003556 *ckchi = ckch_inst;
3557 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003558
3559error:
3560 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003561 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003562 if (ckch_inst->is_default)
3563 SSL_CTX_free(ctx);
3564
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003565 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003566 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003567 }
William Lallemandd9199372019-10-04 15:37:05 +02003568 SSL_CTX_free(ctx);
3569
Emeric Brun054563d2019-10-17 13:16:58 +02003570 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003571}
3572
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003573
3574/*
3575 * This function allocate a ckch_inst that will be used on the backend side
3576 * (server line)
3577 *
3578 * Returns a bitfield containing the flags:
3579 * ERR_FATAL in any fatal error case
3580 * ERR_ALERT if the reason of the error is available in err
3581 * ERR_WARN if a warning is available into err
3582 */
3583int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003584 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003585{
3586 SSL_CTX *ctx;
3587 struct cert_key_and_chain *ckch;
3588 struct ckch_inst *ckch_inst = NULL;
3589 int errcode = 0;
3590
3591 *ckchi = NULL;
3592
3593 if (!ckchs || !ckchs->ckch)
3594 return ERR_FATAL;
3595
3596 ckch = ckchs->ckch;
3597
3598 ctx = SSL_CTX_new(SSLv23_client_method());
3599 if (!ctx) {
3600 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3601 err && *err ? *err : "", path);
3602 errcode |= ERR_ALERT | ERR_FATAL;
3603 goto error;
3604 }
3605
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003606 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3607 if (errcode & ERR_CODE)
3608 goto error;
3609
3610 ckch_inst = ckch_inst_new();
3611 if (!ckch_inst) {
3612 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3613 err && *err ? *err : "", path);
3614 errcode |= ERR_ALERT | ERR_FATAL;
3615 goto error;
3616 }
3617
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003618 /* everything succeed, the ckch instance can be used */
3619 ckch_inst->bind_conf = NULL;
3620 ckch_inst->ssl_conf = NULL;
3621 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003622 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003623 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003624
3625 *ckchi = ckch_inst;
3626 return errcode;
3627
3628error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003629 SSL_CTX_free(ctx);
3630
3631 return errcode;
3632}
3633
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003634/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003635static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3636 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003637 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003638{
Emeric Brun054563d2019-10-17 13:16:58 +02003639 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003640
3641 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003642 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 +02003643
Emeric Brun054563d2019-10-17 13:16:58 +02003644 if (errcode & ERR_CODE)
3645 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003646
William Lallemand24bde432020-03-09 16:48:43 +01003647 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003648
3649 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003650 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003651 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003652}
3653
William Lallemanddb26e2b2021-01-26 12:01:46 +01003654/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3655 * fill the SSL_CTX of the server.
3656 *
3657 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003658static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003659 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003660{
3661 int errcode = 0;
3662
3663 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003664 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003665
3666 if (errcode & ERR_CODE)
3667 return errcode;
3668
William Lallemanddb26e2b2021-01-26 12:01:46 +01003669 (*ckch_inst)->server = server;
3670 /* Keep the reference to the SSL_CTX in the server. */
3671 SSL_CTX_up_ref((*ckch_inst)->ctx);
3672 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003673 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003674 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003675 return errcode;
3676}
3677
William Lallemand6be66ec2020-03-06 22:26:32 +01003678
William Lallemand4c68bba2020-03-30 18:45:10 +02003679
3680
3681/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3682 * done once. Zero is returned if the operation fails. No error is returned
3683 * if the random is said as not implemented, because we expect that openssl
3684 * will use another method once needed.
3685 */
Amaury Denoyellec593bcd2021-05-19 15:35:29 +02003686int ssl_initialize_random(void)
William Lallemand4c68bba2020-03-30 18:45:10 +02003687{
3688 unsigned char random;
3689 static int random_initialized = 0;
3690
3691 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3692 random_initialized = 1;
3693
3694 return random_initialized;
3695}
3696
William Lallemand2954c472020-03-06 21:54:13 +01003697/* Load a crt-list file, this is done in 2 parts:
3698 * - store the content of the file in a crtlist structure with crtlist_entry structures
3699 * - generate the instances by iterating on entries in the crtlist struct
3700 *
3701 * Nothing is locked there, this function is used in the configuration parser.
3702 *
3703 * Returns a set of ERR_* flags possibly with an error in <err>.
3704 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003705int 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 +01003706{
3707 struct crtlist *crtlist = NULL;
3708 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003709 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003710 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003711 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003712 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003713
William Lallemand79d31ec2020-03-25 15:10:49 +01003714 bind_conf_node = malloc(sizeof(*bind_conf_node));
3715 if (!bind_conf_node) {
3716 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3717 cfgerr |= ERR_FATAL | ERR_ALERT;
3718 goto error;
3719 }
3720 bind_conf_node->next = NULL;
3721 bind_conf_node->bind_conf = bind_conf;
3722
William Lallemand41ca9302020-04-08 13:15:18 +02003723 /* strip trailing slashes, including first one */
3724 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3725 *end = 0;
3726
William Lallemand2954c472020-03-06 21:54:13 +01003727 /* look for an existing crtlist or create one */
3728 eb = ebst_lookup(&crtlists_tree, file);
3729 if (eb) {
3730 crtlist = ebmb_entry(eb, struct crtlist, node);
3731 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003732 /* load a crt-list OR a directory */
3733 if (dir)
3734 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3735 else
3736 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3737
William Lallemand2954c472020-03-06 21:54:13 +01003738 if (!(cfgerr & ERR_CODE))
3739 ebst_insert(&crtlists_tree, &crtlist->node);
3740 }
3741
3742 if (cfgerr & ERR_CODE) {
3743 cfgerr |= ERR_FATAL | ERR_ALERT;
3744 goto error;
3745 }
3746
3747 /* generates ckch instance from the crtlist_entry */
3748 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3749 struct ckch_store *store;
3750 struct ckch_inst *ckch_inst = NULL;
3751
3752 store = entry->node.key;
3753 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3754 if (cfgerr & ERR_CODE) {
3755 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3756 goto error;
3757 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003758 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003759 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003760 }
William Lallemand2954c472020-03-06 21:54:13 +01003761
William Lallemand79d31ec2020-03-25 15:10:49 +01003762 /* add the bind_conf to the list */
3763 bind_conf_node->next = crtlist->bind_conf;
3764 crtlist->bind_conf = bind_conf_node;
3765
William Lallemand2954c472020-03-06 21:54:13 +01003766 return cfgerr;
3767error:
3768 {
William Lallemand49398312020-03-30 17:01:33 +02003769 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003770 struct ckch_inst *inst, *s_inst;
3771
William Lallemand49398312020-03-30 17:01:33 +02003772 lastentry = entry; /* which entry we tried to generate last */
3773 if (lastentry) {
3774 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3775 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3776 break;
3777
3778 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003779
William Lallemand49398312020-03-30 17:01:33 +02003780 /* this was not generated for this bind_conf, skip */
3781 if (inst->bind_conf != bind_conf)
3782 continue;
3783
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003784 /* free the sni_ctx and instance */
3785 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003786 }
William Lallemand2954c472020-03-06 21:54:13 +01003787 }
William Lallemand2954c472020-03-06 21:54:13 +01003788 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003789 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003790 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003791 return cfgerr;
3792}
3793
William Lallemand06b22a82020-03-16 14:45:55 +01003794/* Returns a set of ERR_* flags possibly with an error in <err>. */
3795int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3796{
3797 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003798 int cfgerr = 0;
3799 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003800 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003801 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003802
3803 if ((ckchs = ckchs_lookup(path))) {
3804 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003805 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3806 found++;
3807 } else if (stat(path, &buf) == 0) {
3808 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003809 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003810 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003811 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003812 cfgerr |= ERR_ALERT | ERR_FATAL;
3813 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003814 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003815 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003816 }
3817 } else {
3818 /* stat failed, could be a bundle */
3819 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003820 char fp[MAXPATHLEN+1] = {0};
3821 int n = 0;
3822
3823 /* Load all possible certs and keys in separate ckch_store */
3824 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3825 struct stat buf;
3826 int ret;
3827
3828 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3829 if (ret > sizeof(fp))
3830 continue;
3831
3832 if ((ckchs = ckchs_lookup(fp))) {
3833 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003834 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003835 } else {
3836 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003837 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003838 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003839 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003840 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003841 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3842 }
3843 }
3844 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003845#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3846 if (found) {
3847 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3848 err && *err ? *err : "", path);
3849 cfgerr |= ERR_ALERT | ERR_FATAL;
3850 }
3851#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003852 }
3853 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003854 if (!found) {
3855 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3856 err && *err ? *err : "", path, strerror(errno));
3857 cfgerr |= ERR_ALERT | ERR_FATAL;
3858 }
William Lallemand06b22a82020-03-16 14:45:55 +01003859
3860 return cfgerr;
3861}
3862
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003863
3864/* Create a full ssl context and ckch instance that will be used for a specific
3865 * backend server (server configuration line).
3866 * Returns a set of ERR_* flags possibly with an error in <err>.
3867 */
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003868int ssl_sock_load_srv_cert(char *path, struct server *server, int create_if_none, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003869{
3870 struct stat buf;
3871 int cfgerr = 0;
3872 struct ckch_store *ckchs;
3873 int found = 0; /* did we found a file to load ? */
3874
3875 if ((ckchs = ckchs_lookup(path))) {
3876 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003877 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003878 found++;
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003879 } else {
3880 if (!create_if_none) {
3881 memprintf(err, "%sunable to stat SSL certificate '%s'.\n",
3882 err && *err ? *err : "", path);
3883 cfgerr |= ERR_ALERT | ERR_FATAL;
3884 goto out;
3885 }
3886
3887 if (stat(path, &buf) == 0) {
3888 /* We do not manage directories on backend side. */
3889 if (S_ISDIR(buf.st_mode) == 0) {
3890 ++found;
3891 ckchs = ckchs_load_cert_file(path, err);
3892 if (!ckchs)
3893 cfgerr |= ERR_ALERT | ERR_FATAL;
3894 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
3895 }
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003896 }
3897 }
3898 if (!found) {
3899 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3900 err && *err ? *err : "", path, strerror(errno));
3901 cfgerr |= ERR_ALERT | ERR_FATAL;
3902 }
3903
Amaury Denoyelle36aa4512021-05-21 16:22:11 +02003904out:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003905 return cfgerr;
3906}
3907
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003908/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003909static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003910ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003911{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003912 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003913 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003914 SSL_OP_ALL | /* all known workarounds for bugs */
3915 SSL_OP_NO_SSLv2 |
3916 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003917 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003918 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003919 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003920 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003921 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003922 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003923 SSL_MODE_ENABLE_PARTIAL_WRITE |
3924 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003925 SSL_MODE_RELEASE_BUFFERS |
3926 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003927 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003928 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003929 int flags = MC_SSL_O_ALL;
3930 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003931 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003932
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003933 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003934 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003935
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003936 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003937 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3938 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3939 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003940 else
3941 flags = conf_ssl_methods->flags;
3942
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003943 min = conf_ssl_methods->min;
3944 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003945
3946 /* default minimum is TLSV12, */
3947 if (!min) {
3948 if (!max || (max >= default_min_ver)) {
3949 min = default_min_ver;
3950 } else {
3951 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). "
3952 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3953 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3954 min = max;
3955 }
3956 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003957 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003958 if (min)
3959 flags |= (methodVersions[min].flag - 1);
3960 if (max)
3961 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003962 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003963 min = max = CONF_TLSV_NONE;
3964 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003965 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003966 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003967 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003968 if (min) {
3969 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003970 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3971 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3972 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3973 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003974 hole = 0;
3975 }
3976 max = i;
3977 }
3978 else {
3979 min = max = i;
3980 }
3981 }
3982 else {
3983 if (min)
3984 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003985 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003986 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003987 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3988 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003989 cfgerr += 1;
3990 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003991 /* save real min/max in bind_conf */
3992 conf_ssl_methods->min = min;
3993 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003994
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003995#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003996 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003997 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003998 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003999 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004000 else
William Lallemandd0712f32020-06-11 17:34:00 +02004001 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
4002 /* clear every version flags in case SSL_CTX_new()
4003 * returns an SSL_CTX with disabled versions */
4004 SSL_CTX_clear_options(ctx, methodVersions[i].option);
4005
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004006 if (flags & methodVersions[i].flag)
4007 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02004008
4009 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004010#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004011 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004012 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4013 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02004014#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004015
4016 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
4017 options |= SSL_OP_NO_TICKET;
4018 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
4019 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08004020
4021#ifdef SSL_OP_NO_RENEGOTIATION
4022 options |= SSL_OP_NO_RENEGOTIATION;
4023#endif
4024
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004025 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004026
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004027#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004028 if (global_ssl.async)
4029 mode |= SSL_MODE_ASYNC;
4030#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004031 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004032 if (global_ssl.life_time)
4033 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004034
4035#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
4036#ifdef OPENSSL_IS_BORINGSSL
4037 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
4038 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05004039#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01004040 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01004041 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02004042 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
4043 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004044#else
4045 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004046#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02004047 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004048#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004049 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004050}
4051
William Lallemand4f45bb92017-10-30 20:08:51 +01004052
4053static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
4054{
4055 if (first == block) {
4056 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4057 if (first->len > 0)
4058 sh_ssl_sess_tree_delete(sh_ssl_sess);
4059 }
4060}
4061
4062/* return first block from sh_ssl_sess */
4063static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
4064{
4065 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
4066
4067}
4068
4069/* store a session into the cache
4070 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
4071 * data: asn1 encoded session
4072 * data_len: asn1 encoded session length
4073 * Returns 1 id session was stored (else 0)
4074 */
4075static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
4076{
4077 struct shared_block *first;
4078 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
4079
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004080 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01004081 if (!first) {
4082 /* Could not retrieve enough free blocks to store that session */
4083 return 0;
4084 }
4085
4086 /* STORE the key in the first elem */
4087 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
4088 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
4089 first->len = sizeof(struct sh_ssl_sess_hdr);
4090
4091 /* it returns the already existing node
4092 or current node if none, never returns null */
4093 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4094 if (oldsh_ssl_sess != sh_ssl_sess) {
4095 /* NOTE: Row couldn't be in use because we lock read & write function */
4096 /* release the reserved row */
4097 shctx_row_dec_hot(ssl_shctx, first);
4098 /* replace the previous session already in the tree */
4099 sh_ssl_sess = oldsh_ssl_sess;
4100 /* ignore the previous session data, only use the header */
4101 first = sh_ssl_sess_first_block(sh_ssl_sess);
4102 shctx_row_inc_hot(ssl_shctx, first);
4103 first->len = sizeof(struct sh_ssl_sess_hdr);
4104 }
4105
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004106 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004107 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004108 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004109 }
4110
4111 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004112
4113 return 1;
4114}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004115
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004116/* SSL callback used when a new session is created while connecting to a server */
4117static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4118{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004119 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004120 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004121
Willy Tarreau07d94e42018-09-20 10:57:52 +02004122 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004123
William Lallemand3ce6eed2021-02-08 10:43:44 +01004124 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
4125 * one cache per thread, it only prevents to flush it from the CLI in
4126 * another thread */
4127
Olivier Houcharde6060c52017-11-16 17:42:52 +01004128 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4129 int len;
4130 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004131
Olivier Houcharde6060c52017-11-16 17:42:52 +01004132 len = i2d_SSL_SESSION(sess, NULL);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004133 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004134 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4135 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4136 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004137 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4138 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004139 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4140 }
4141 if (s->ssl_ctx.reused_sess[tid].ptr) {
4142 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4143 &ptr);
4144 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004145 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004146 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004147 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004148 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004149 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004150 }
4151
4152 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004153}
4154
Olivier Houcharde6060c52017-11-16 17:42:52 +01004155
William Lallemanded0b5ad2017-10-30 19:36:36 +01004156/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004157int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004158{
4159 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4160 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4161 unsigned char *p;
4162 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004163 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004164 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004165
4166 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004167 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004168 * note: SSL_SESSION_set1_id is using
4169 * a memcpy so we need to use a different pointer
4170 * than sid_data or sid_ctx_data to avoid valgrind
4171 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004172 */
4173
4174 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004175
4176 /* copy value in an other buffer */
4177 memcpy(encid, sid_data, sid_length);
4178
4179 /* pad with 0 */
4180 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4181 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4182
4183 /* force length to zero to avoid ASN1 encoding */
4184 SSL_SESSION_set1_id(sess, encid, 0);
4185
4186 /* force length to zero to avoid ASN1 encoding */
4187 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004188
4189 /* check if buffer is large enough for the ASN1 encoded session */
4190 data_len = i2d_SSL_SESSION(sess, NULL);
4191 if (data_len > SHSESS_MAX_DATA_LEN)
4192 goto err;
4193
4194 p = encsess;
4195
4196 /* process ASN1 session encoding before the lock */
4197 i2d_SSL_SESSION(sess, &p);
4198
William Lallemanded0b5ad2017-10-30 19:36:36 +01004199
William Lallemanda3c77cf2017-10-30 23:44:40 +01004200 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004201 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004202 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004203 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004204err:
4205 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004206 SSL_SESSION_set1_id(sess, encid, sid_length);
4207 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004208
4209 return 0; /* do not increment session reference count */
4210}
4211
4212/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004213SSL_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 +01004214{
William Lallemand4f45bb92017-10-30 20:08:51 +01004215 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004216 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4217 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004218 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004219 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004220
Willy Tarreau4c19e992021-06-15 16:39:22 +02004221 _HA_ATOMIC_INC(&global.shctx_lookups);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004222
4223 /* allow the session to be freed automatically by openssl */
4224 *do_copy = 0;
4225
4226 /* tree key is zeros padded sessionid */
4227 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4228 memcpy(tmpkey, key, key_len);
4229 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4230 key = tmpkey;
4231 }
4232
4233 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004234 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004235
4236 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004237 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4238 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004239 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004240 shctx_unlock(ssl_shctx);
Willy Tarreau4c19e992021-06-15 16:39:22 +02004241 _HA_ATOMIC_INC(&global.shctx_misses);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004242 return NULL;
4243 }
4244
William Lallemand4f45bb92017-10-30 20:08:51 +01004245 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4246 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004247
William Lallemand4f45bb92017-10-30 20:08:51 +01004248 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 +01004249
William Lallemanda3c77cf2017-10-30 23:44:40 +01004250 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004251
4252 /* decode ASN1 session */
4253 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004254 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004255 /* Reset session id and session id contenxt */
4256 if (sess) {
4257 SSL_SESSION_set1_id(sess, key, key_len);
4258 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4259 }
4260
4261 return sess;
4262}
4263
William Lallemand4f45bb92017-10-30 20:08:51 +01004264
William Lallemanded0b5ad2017-10-30 19:36:36 +01004265/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004266void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004267{
William Lallemand4f45bb92017-10-30 20:08:51 +01004268 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004269 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4270 unsigned int sid_length;
4271 const unsigned char *sid_data;
4272 (void)ctx;
4273
4274 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4275 /* tree key is zeros padded sessionid */
4276 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4277 memcpy(tmpkey, sid_data, sid_length);
4278 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4279 sid_data = tmpkey;
4280 }
4281
William Lallemanda3c77cf2017-10-30 23:44:40 +01004282 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004283
4284 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004285 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4286 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004287 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004288 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004289 }
4290
4291 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004292 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004293}
4294
4295/* Set session cache mode to server and disable openssl internal cache.
4296 * Set shared cache callbacks on an ssl context.
4297 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004298void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004299{
4300 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4301
4302 if (!ssl_shctx) {
4303 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4304 return;
4305 }
4306
4307 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4308 SSL_SESS_CACHE_NO_INTERNAL |
4309 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4310
4311 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004312 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4313 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4314 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004315}
William Lallemand7d42ef52020-07-06 11:41:30 +02004316
4317/*
4318 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4319 *
4320 * The format is:
4321 * * <Label> <space> <ClientRandom> <space> <Secret>
4322 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4323 */
4324
William Lallemand722180a2021-06-09 16:46:12 +02004325#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004326void SSL_CTX_keylog(const SSL *ssl, const char *line)
4327{
4328 struct ssl_keylog *keylog;
4329 char *lastarg = NULL;
4330 char *dst = NULL;
4331
4332 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4333 if (!keylog)
4334 return;
4335
4336 lastarg = strrchr(line, ' ');
4337 if (lastarg == NULL || ++lastarg == NULL)
4338 return;
4339
4340 dst = pool_alloc(pool_head_ssl_keylog_str);
4341 if (!dst)
4342 return;
4343
4344 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4345 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4346
4347 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4348 if (keylog->client_random)
4349 goto error;
4350 keylog->client_random = dst;
4351
4352 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4353 if (keylog->client_early_traffic_secret)
4354 goto error;
4355 keylog->client_early_traffic_secret = dst;
4356
4357 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4358 if(keylog->client_handshake_traffic_secret)
4359 goto error;
4360 keylog->client_handshake_traffic_secret = dst;
4361
4362 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4363 if (keylog->server_handshake_traffic_secret)
4364 goto error;
4365 keylog->server_handshake_traffic_secret = dst;
4366
4367 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4368 if (keylog->client_traffic_secret_0)
4369 goto error;
4370 keylog->client_traffic_secret_0 = dst;
4371
4372 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4373 if (keylog->server_traffic_secret_0)
4374 goto error;
4375 keylog->server_traffic_secret_0 = dst;
4376
4377 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4378 if (keylog->early_exporter_secret)
4379 goto error;
4380 keylog->early_exporter_secret = dst;
4381
4382 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4383 if (keylog->exporter_secret)
4384 goto error;
4385 keylog->exporter_secret = dst;
4386 } else {
4387 goto error;
4388 }
4389
4390 return;
4391
4392error:
4393 pool_free(pool_head_ssl_keylog_str, dst);
4394
4395 return;
4396}
4397#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004398
William Lallemand8b453912019-11-21 15:48:10 +01004399/*
4400 * This function applies the SSL configuration on a SSL_CTX
4401 * It returns an error code and fills the <err> buffer
4402 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004403static 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 +01004404{
4405 struct proxy *curproxy = bind_conf->frontend;
4406 int cfgerr = 0;
4407 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004408 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004409 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004410#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004411 const char *conf_ciphersuites;
4412#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004413 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004414
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004415 if (ssl_conf) {
4416 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4417 int i, min, max;
4418 int flags = MC_SSL_O_ALL;
4419
4420 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004421 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4422 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004423 if (min)
4424 flags |= (methodVersions[min].flag - 1);
4425 if (max)
4426 flags |= ~((methodVersions[max].flag << 1) - 1);
4427 min = max = CONF_TLSV_NONE;
4428 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4429 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4430 if (min)
4431 max = i;
4432 else
4433 min = max = i;
4434 }
4435 /* save real min/max */
4436 conf_ssl_methods->min = min;
4437 conf_ssl_methods->max = max;
4438 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004439 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4440 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004441 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004442 }
4443 }
4444
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004445 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004446 case SSL_SOCK_VERIFY_NONE:
4447 verify = SSL_VERIFY_NONE;
4448 break;
4449 case SSL_SOCK_VERIFY_OPTIONAL:
4450 verify = SSL_VERIFY_PEER;
4451 break;
4452 case SSL_SOCK_VERIFY_REQUIRED:
4453 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4454 break;
4455 }
4456 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4457 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004458 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 +01004459 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 +01004460 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 +01004461 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004462 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004463 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004464 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004465 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004466 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004467 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004468 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4469 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4470 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4471 cfgerr |= ERR_ALERT | ERR_FATAL;
4472 }
4473 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004474 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004475 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 +02004476 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004477 }
Emeric Brun850efd52014-01-29 12:24:34 +01004478 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004479 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4480 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004481 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004482 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004483#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004484 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004485 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4486
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004487 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004488 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4489 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004490 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004491 }
Emeric Brun561e5742012-10-02 15:20:55 +02004492 else {
4493 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4494 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004495 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004496#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004497 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004498 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004499#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004500 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004501 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004502 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4503 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004504 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004505 }
4506 }
4507#endif
4508
William Lallemand4f45bb92017-10-30 20:08:51 +01004509 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004510 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4511 if (conf_ciphers &&
4512 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004513 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4514 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004515 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004516 }
4517
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004518#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004519 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4520 if (conf_ciphersuites &&
4521 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004522 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4523 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004524 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004525 }
4526#endif
4527
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004528#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004529 /* If tune.ssl.default-dh-param has not been set,
4530 neither has ssl-default-dh-file and no static DH
4531 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004532 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004533 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004534 (ssl_dh_ptr_index == -1 ||
4535 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004536 /* default to dh-param 2048 */
4537 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004538 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004539
Willy Tarreauef934602016-12-22 23:12:01 +01004540 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004541 if (local_dh_1024 == NULL) {
4542 local_dh_1024 = ssl_get_dh_1024();
4543 }
Willy Tarreauef934602016-12-22 23:12:01 +01004544 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004545 if (local_dh_2048 == NULL) {
4546 local_dh_2048 = ssl_get_dh_2048();
4547 }
Willy Tarreauef934602016-12-22 23:12:01 +01004548 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004549 if (local_dh_4096 == NULL) {
4550 local_dh_4096 = ssl_get_dh_4096();
4551 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004552 }
4553 }
4554 }
4555#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004556
Emeric Brunfc0421f2012-09-07 17:30:07 +02004557 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004558#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004559 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004560#endif
William Lallemand722180a2021-06-09 16:46:12 +02004561#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004562 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4563#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004564
Bernard Spil13c53f82018-02-15 13:34:58 +01004565#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004566 ssl_conf_cur = NULL;
4567 if (ssl_conf && ssl_conf->npn_str)
4568 ssl_conf_cur = ssl_conf;
4569 else if (bind_conf->ssl_conf.npn_str)
4570 ssl_conf_cur = &bind_conf->ssl_conf;
4571 if (ssl_conf_cur)
4572 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004573#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004574#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004575 ssl_conf_cur = NULL;
4576 if (ssl_conf && ssl_conf->alpn_str)
4577 ssl_conf_cur = ssl_conf;
4578 else if (bind_conf->ssl_conf.alpn_str)
4579 ssl_conf_cur = &bind_conf->ssl_conf;
4580 if (ssl_conf_cur)
4581 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004582#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004583#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004584 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4585 if (conf_curves) {
4586 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004587 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4588 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004589 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004590 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004591 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004592 }
4593#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004594#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004595 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004596 int i;
4597 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004598#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004599 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004600 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4601 NULL);
4602
4603 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004604 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004605 return cfgerr;
4606 }
4607#else
4608 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4609 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4610 ECDHE_DEFAULT_CURVE);
4611#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004612
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004613 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004614 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004615 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4616 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004617 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004618 }
4619 else {
4620 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4621 EC_KEY_free(ecdh);
4622 }
4623 }
4624#endif
4625
Emeric Brunfc0421f2012-09-07 17:30:07 +02004626 return cfgerr;
4627}
4628
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004629
4630/*
4631 * Prepare the SSL_CTX based on the bind line configuration.
4632 * Since the CA file loading is made depending on the verify option of the bind
4633 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4634 * If we want to create a link between the CA file entry and the corresponding
4635 * ckch instance (for CA file hot update), it needs to be done after
4636 * ssl_sock_prepare_ctx.
4637 * Returns 0 in case of success.
4638 */
4639int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4640 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4641{
4642 int errcode = 0;
4643
4644 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4645 if (!errcode && ckch_inst)
4646 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4647
4648 return errcode;
4649}
4650
Evan Broderbe554312013-06-27 00:05:25 -07004651static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4652{
4653 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4654 size_t prefixlen, suffixlen;
4655
4656 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004657 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004658 return 1;
4659
Evan Broderbe554312013-06-27 00:05:25 -07004660 /* The rest of this logic is based on RFC 6125, section 6.4.3
4661 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4662
Emeric Bruna848dae2013-10-08 11:27:28 +02004663 pattern_wildcard = NULL;
4664 pattern_left_label_end = pattern;
4665 while (*pattern_left_label_end != '.') {
4666 switch (*pattern_left_label_end) {
4667 case 0:
4668 /* End of label not found */
4669 return 0;
4670 case '*':
4671 /* If there is more than one wildcards */
4672 if (pattern_wildcard)
4673 return 0;
4674 pattern_wildcard = pattern_left_label_end;
4675 break;
4676 }
4677 pattern_left_label_end++;
4678 }
4679
4680 /* If it's not trivial and there is no wildcard, it can't
4681 * match */
4682 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004683 return 0;
4684
4685 /* Make sure all labels match except the leftmost */
4686 hostname_left_label_end = strchr(hostname, '.');
4687 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004688 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004689 return 0;
4690
4691 /* Make sure the leftmost label of the hostname is long enough
4692 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004693 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004694 return 0;
4695
4696 /* Finally compare the string on either side of the
4697 * wildcard */
4698 prefixlen = pattern_wildcard - pattern;
4699 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004700 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4701 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004702 return 0;
4703
4704 return 1;
4705}
4706
4707static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4708{
4709 SSL *ssl;
4710 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004711 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004712 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004713 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004714
4715 int depth;
4716 X509 *cert;
4717 STACK_OF(GENERAL_NAME) *alt_names;
4718 int i;
4719 X509_NAME *cert_subject;
4720 char *str;
4721
4722 if (ok == 0)
4723 return ok;
4724
4725 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004726 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004727 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004728
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004729 /* We're checking if the provided hostnames match the desired one. The
4730 * desired hostname comes from the SNI we presented if any, or if not
4731 * provided then it may have been explicitly stated using a "verifyhost"
4732 * directive. If neither is set, we don't care about the name so the
4733 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004734 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004735 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004736 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004737 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004738 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004739 if (!servername)
4740 return ok;
4741 }
Evan Broderbe554312013-06-27 00:05:25 -07004742
4743 /* We only need to verify the CN on the actual server cert,
4744 * not the indirect CAs */
4745 depth = X509_STORE_CTX_get_error_depth(ctx);
4746 if (depth != 0)
4747 return ok;
4748
4749 /* At this point, the cert is *not* OK unless we can find a
4750 * hostname match */
4751 ok = 0;
4752
4753 cert = X509_STORE_CTX_get_current_cert(ctx);
4754 /* It seems like this might happen if verify peer isn't set */
4755 if (!cert)
4756 return ok;
4757
4758 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4759 if (alt_names) {
4760 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4761 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4762 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004763#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004764 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4765#else
Evan Broderbe554312013-06-27 00:05:25 -07004766 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004767#endif
Evan Broderbe554312013-06-27 00:05:25 -07004768 ok = ssl_sock_srv_hostcheck(str, servername);
4769 OPENSSL_free(str);
4770 }
4771 }
4772 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004773 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004774 }
4775
4776 cert_subject = X509_get_subject_name(cert);
4777 i = -1;
4778 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4779 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004780 ASN1_STRING *value;
4781 value = X509_NAME_ENTRY_get_data(entry);
4782 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004783 ok = ssl_sock_srv_hostcheck(str, servername);
4784 OPENSSL_free(str);
4785 }
4786 }
4787
Willy Tarreau71d058c2017-07-26 20:09:56 +02004788 /* report the mismatch and indicate if SNI was used or not */
4789 if (!ok && !conn->err_code)
4790 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004791 return ok;
4792}
4793
Emeric Brun94324a42012-10-11 14:00:19 +02004794/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004795int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004796{
4797 int cfgerr = 0;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004798 SSL_CTX *ctx = srv->ssl_ctx.ctx;
Emeric Brun94324a42012-10-11 14:00:19 +02004799
Willy Tarreaufce03112015-01-15 21:32:40 +01004800 /* Automatic memory computations need to know we use SSL there */
4801 global.ssl_used_backend = 1;
4802
4803 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004804 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004805 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004806 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02004807 cfgerr++;
4808 return cfgerr;
4809 }
4810 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004811 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004812 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004813
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004814 /* The context will be uninitialized if there wasn't any "cert" option
4815 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004816 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004817 ctx = SSL_CTX_new(SSLv23_client_method());
4818 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004819 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004820 cfgerr++;
4821 return cfgerr;
4822 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004823
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004824 srv->ssl_ctx.ctx = ctx;
4825 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004826
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004827 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 +01004828
4829 return cfgerr;
4830}
4831
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004832/* Initialize an SSL context that will be used on the backend side.
4833 * Returns an error count.
4834 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004835static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004836{
4837 struct proxy *curproxy = srv->proxy;
4838 int cfgerr = 0;
4839 long options =
4840 SSL_OP_ALL | /* all known workarounds for bugs */
4841 SSL_OP_NO_SSLv2 |
4842 SSL_OP_NO_COMPRESSION;
4843 long mode =
4844 SSL_MODE_ENABLE_PARTIAL_WRITE |
4845 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4846 SSL_MODE_RELEASE_BUFFERS |
4847 SSL_MODE_SMALL_BUFFERS;
4848 int verify = SSL_VERIFY_NONE;
4849 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4850 int i, min, max, hole;
4851 int flags = MC_SSL_O_ALL;
4852
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004853 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004854 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
4855 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004856 else
4857 flags = conf_ssl_methods->flags;
4858
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004859 /* Real min and max should be determinate with configuration and openssl's capabilities */
4860 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004861 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004862 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004863 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004864
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004865 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004866 min = max = CONF_TLSV_NONE;
4867 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004868 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004869 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004870 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004871 if (min) {
4872 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004873 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01004874 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4875 proxy_type_str(curproxy), curproxy->id, srv->id,
4876 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004877 hole = 0;
4878 }
4879 max = i;
4880 }
4881 else {
4882 min = max = i;
4883 }
4884 }
4885 else {
4886 if (min)
4887 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004888 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004889 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004890 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004891 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004892 cfgerr += 1;
4893 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004894
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004895#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004896 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004897 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004898 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004899 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004900 else
4901 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4902 if (flags & methodVersions[i].flag)
4903 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004904#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004905 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004906 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4907 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004908#endif
4909
4910 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4911 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004912 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004913
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004914#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004915 if (global_ssl.async)
4916 mode |= SSL_MODE_ASYNC;
4917#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004918 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004919
Emeric Brun850efd52014-01-29 12:24:34 +01004920 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4921 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004922 switch (srv->ssl_ctx.verify) {
4923 case SSL_SOCK_VERIFY_NONE:
4924 verify = SSL_VERIFY_NONE;
4925 break;
4926 case SSL_SOCK_VERIFY_REQUIRED:
4927 verify = SSL_VERIFY_PEER;
4928 break;
4929 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004930 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004931 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004932 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004933 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004934 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004935 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004936 ha_alert("unable to set CA file '%s'.\n",
4937 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004938 cfgerr++;
4939 }
4940 }
Emeric Brun850efd52014-01-29 12:24:34 +01004941 else {
4942 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004943 ha_alert("verify is enabled by default but no CA file specified. If you're running on a LAN where you're certain to trust the server's certificate, please set an explicit 'verify none' statement on the 'server' line, or use 'ssl-server-verify none' in the global section to disable server-side verifications by default.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01004944 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004945 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01004946 cfgerr++;
4947 }
Emeric Brunef42d922012-10-11 16:11:36 +02004948#ifdef X509_V_FLAG_CRL_CHECK
4949 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004950 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02004951
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004952 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004953 ha_alert("unable to configure CRL file '%s'.\n",
4954 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004955 cfgerr++;
4956 }
4957 else {
4958 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4959 }
4960 }
4961#endif
4962 }
4963
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004964 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
4965 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004966 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004967 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004968 ha_alert("unable to set SSL cipher list to '%s'.\n",
4969 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004970 cfgerr++;
4971 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004972
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004973#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004974 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004975 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004976 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
4977 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004978 cfgerr++;
4979 }
4980#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004981#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4982 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004983 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01004984#endif
4985#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4986 if (srv->ssl_ctx.alpn_str)
4987 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4988#endif
4989
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004990
4991 return cfgerr;
4992}
4993
4994/*
4995 * Prepare the frontend's SSL_CTX based on the server line configuration.
4996 * Since the CA file loading is made depending on the verify option of the
4997 * server line, the link between the SSL_CTX and the CA file tree entry is
4998 * made here.
4999 * If we want to create a link between the CA file entry and the corresponding
5000 * ckch instance (for CA file hot update), it needs to be done after
5001 * ssl_sock_prepare_srv_ssl_ctx.
5002 * Returns an error count.
5003 */
5004int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
5005 struct ckch_inst *ckch_inst)
5006{
5007 int cfgerr = 0;
5008
5009 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
5010 if (!cfgerr && ckch_inst)
5011 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02005012
5013 return cfgerr;
5014}
5015
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005016
Frédéric Lécailleec216522020-11-23 14:33:30 +01005017/*
5018 * Create an initial CTX used to start the SSL connections.
5019 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
5020 * Returns 0 if succeeded, or something >0 if not.
5021 */
5022#ifdef USE_QUIC
5023static int ssl_initial_ctx(struct bind_conf *bind_conf)
5024{
5025 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
5026 return ssl_quic_initial_ctx(bind_conf);
5027 else
5028 return ssl_sock_initial_ctx(bind_conf);
5029}
5030#else
5031static int ssl_initial_ctx(struct bind_conf *bind_conf)
5032{
5033 return ssl_sock_initial_ctx(bind_conf);
5034}
5035#endif
5036
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005037/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005038 * be NULL, in which case nothing is done. Returns the number of errors
5039 * encountered.
5040 */
Willy Tarreau03209342016-12-22 17:08:28 +01005041int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005042{
5043 struct ebmb_node *node;
5044 struct sni_ctx *sni;
5045 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01005046 int errcode = 0;
5047 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02005048
Willy Tarreaufce03112015-01-15 21:32:40 +01005049 /* Automatic memory computations need to know we use SSL there */
5050 global.ssl_used_frontend = 1;
5051
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005052 /* Create initial_ctx used to start the ssl connection before do switchctx */
5053 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01005054 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005055 /* It should not be necessary to call this function, but it's
5056 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01005057 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005058 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
5059 }
5060 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005061 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, bind_conf->default_inst, &errmsg);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005062 }
Emeric Brun0bed9942014-10-30 19:25:24 +01005063
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005064 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005065 while (node) {
5066 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005067 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005068 /* only initialize the CTX on its first occurrence and
5069 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005070 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
5071 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005072 node = ebmb_next(node);
5073 }
5074
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005075 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005076 while (node) {
5077 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01005078 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01005079 /* only initialize the CTX on its first occurrence and
5080 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01005081 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005082 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02005083 node = ebmb_next(node);
5084 }
William Lallemand8b453912019-11-21 15:48:10 +01005085
5086 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005087 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005088 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01005089 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01005090 err++;
5091 }
5092
5093 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005094 return err;
5095}
5096
Willy Tarreau55d37912016-12-21 23:38:39 +01005097/* Prepares all the contexts for a bind_conf and allocates the shared SSL
5098 * context if needed. Returns < 0 on error, 0 on success. The warnings and
5099 * alerts are directly emitted since the rest of the stack does it below.
5100 */
5101int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
5102{
5103 struct proxy *px = bind_conf->frontend;
5104 int alloc_ctx;
5105 int err;
5106
5107 if (!bind_conf->is_ssl) {
5108 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005109 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
5110 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01005111 }
5112 return 0;
5113 }
5114 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005115 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005116 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
5117 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005118 }
5119 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005120 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
5121 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02005122 return -1;
5123 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005124 }
William Lallemandc61c0b32017-12-04 18:46:39 +01005125 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005126 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02005127 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
Willy Tarreau91358592021-06-15 08:08:04 +02005128 sizeof(*sh_ssl_sess_tree), (global.nbthread > 1));
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02005129 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01005130 if (alloc_ctx == SHCTX_E_INIT_LOCK)
5131 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");
5132 else
5133 ha_alert("Unable to allocate SSL session cache.\n");
5134 return -1;
5135 }
5136 /* free block callback */
5137 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
5138 /* init the root tree within the extra space */
5139 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
5140 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01005141 }
Willy Tarreau55d37912016-12-21 23:38:39 +01005142 err = 0;
5143 /* initialize all certificate contexts */
5144 err += ssl_sock_prepare_all_ctx(bind_conf);
5145
5146 /* initialize CA variables if the certificates generation is enabled */
5147 err += ssl_sock_load_ca(bind_conf);
5148
5149 return -err;
5150}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005151
5152/* release ssl context allocated for servers. */
5153void ssl_sock_free_srv_ctx(struct server *srv)
5154{
Olivier Houchardc7566002018-11-20 23:33:50 +01005155#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5156 if (srv->ssl_ctx.alpn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005157 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005158#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005159#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01005160 if (srv->ssl_ctx.npn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005161 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005162#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005163 if (srv->ssl_ctx.reused_sess) {
5164 int i;
5165
5166 for (i = 0; i < global.nbthread; i++)
Willy Tarreaue709e822021-02-26 21:06:32 +01005167 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
5168 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005169 }
5170
Willy Tarreaue709e822021-02-26 21:06:32 +01005171 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005172 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005173 srv->ssl_ctx.ctx = NULL;
5174 }
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005175}
5176
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005177/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005178 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5179 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005180void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005181{
5182 struct ebmb_node *node, *back;
5183 struct sni_ctx *sni;
5184
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005185 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005186 while (node) {
5187 sni = ebmb_entry(node, struct sni_ctx, name);
5188 back = ebmb_next(node);
5189 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005190 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005191 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005192 free(sni);
5193 node = back;
5194 }
5195
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005196 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005197 while (node) {
5198 sni = ebmb_entry(node, struct sni_ctx, name);
5199 back = ebmb_next(node);
5200 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005201 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005202 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005203 free(sni);
5204 node = back;
5205 }
William Lallemandb2408692020-06-24 09:54:29 +02005206
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005207 SSL_CTX_free(bind_conf->initial_ctx);
5208 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005209 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005210 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005211 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005212 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005213}
William Lallemandb2408692020-06-24 09:54:29 +02005214
5215
5216void ssl_sock_deinit()
5217{
5218 crtlist_deinit(); /* must be free'd before the ckchs */
5219 ckch_deinit();
5220}
5221REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005222
Willy Tarreau795cdab2016-12-22 17:30:54 +01005223/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5224void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5225{
5226 ssl_sock_free_ca(bind_conf);
5227 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005228 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005229 free(bind_conf->ca_sign_file);
5230 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005231 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005232 free(bind_conf->keys_ref->filename);
5233 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005234 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005235 free(bind_conf->keys_ref);
5236 }
5237 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005238 bind_conf->ca_sign_pass = NULL;
5239 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005240}
5241
Christopher Faulet31af49d2015-06-09 17:29:50 +02005242/* Load CA cert file and private key used to generate certificates */
5243int
Willy Tarreau03209342016-12-22 17:08:28 +01005244ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005245{
Willy Tarreau03209342016-12-22 17:08:28 +01005246 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005247 struct cert_key_and_chain *ckch = NULL;
5248 int ret = 0;
5249 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005250
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005251 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005252 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005253
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005254#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005255 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005256 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005257 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005258 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005259 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005260#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005261
Christopher Faulet31af49d2015-06-09 17:29:50 +02005262 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005263 ha_alert("Proxy '%s': cannot enable certificate generation, "
5264 "no CA certificate File configured at [%s:%d].\n",
5265 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005266 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005267 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005268
Shimi Gersner5846c492020-08-23 13:58:12 +03005269 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005270 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005271 if (!ckch) {
5272 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5273 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5274 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005275 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005276
5277 /* Try to parse file */
5278 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5279 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5280 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005281 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005282 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005283 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005284
5285 /* Fail if missing cert or pkey */
5286 if ((!ckch->cert) || (!ckch->key)) {
5287 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5288 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5289 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005290 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005291
Shimi Gersner5846c492020-08-23 13:58:12 +03005292 /* Final assignment to bind */
5293 bind_conf->ca_sign_ckch = ckch;
5294 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005295
Shimi Gersner5846c492020-08-23 13:58:12 +03005296 failed:
5297 if (ckch) {
5298 ssl_sock_free_cert_key_and_chain_contents(ckch);
5299 free(ckch);
5300 }
5301
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005302 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005303 ret++;
5304 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005305}
5306
5307/* Release CA cert and private key used to generate certificated */
5308void
5309ssl_sock_free_ca(struct bind_conf *bind_conf)
5310{
Shimi Gersner5846c492020-08-23 13:58:12 +03005311 if (bind_conf->ca_sign_ckch) {
5312 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005313 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005314 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005315}
5316
Emeric Brun46591952012-05-18 15:47:34 +02005317/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005318 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5319 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5320 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5321 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005322 * 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 +01005323 * as parameters to this function.
5324 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5325 * CO_ER_SSL_NO_MEM.
5326 */
5327int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5328 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5329{
5330 int retry = 1;
5331
5332 retry:
5333 /* Alloc a new SSL session. */
5334 *ssl = SSL_new(ssl_ctx);
5335 if (!*ssl) {
5336 if (!retry--)
5337 goto err;
5338
5339 pool_gc(NULL);
5340 goto retry;
5341 }
5342
5343 *bio = BIO_new(bio_meth);
5344 if (!*bio) {
5345 SSL_free(*ssl);
5346 *ssl = NULL;
5347 if (!retry--)
5348 goto err;
5349
5350 pool_gc(NULL);
5351 goto retry;
5352 }
5353
5354 BIO_set_data(*bio, ctx);
5355 SSL_set_bio(*ssl, *bio, *bio);
5356
5357 /* set connection pointer. */
5358 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5359 SSL_free(*ssl);
5360 *ssl = NULL;
5361 if (!retry--)
5362 goto err;
5363
5364 pool_gc(NULL);
5365 goto retry;
5366 }
5367
5368 return 0;
5369
5370 err:
5371 conn->err_code = CO_ER_SSL_NO_MEM;
5372 return -1;
5373}
5374
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005375/* This function is called when all the XPRT have been initialized. We can
5376 * now attempt to start the SSL handshake.
5377 */
5378static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5379{
5380 struct ssl_sock_ctx *ctx = xprt_ctx;
5381
5382 if (ctx->xprt->start) {
5383 int ret;
5384
5385 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5386 if (ret < 0)
5387 return ret;
5388 }
5389 tasklet_wakeup(ctx->wait_event.tasklet);
5390
5391 return 0;
5392}
5393
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005394/*
Emeric Brun46591952012-05-18 15:47:34 +02005395 * This function is called if SSL * context is not yet allocated. The function
5396 * is designed to be called before any other data-layer operation and sets the
5397 * handshake flag on the connection. It is safe to call it multiple times.
5398 * It returns 0 on success and -1 in error case.
5399 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005400static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005401{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005402 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005403 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005404 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005405 return 0;
5406
Olivier Houchard66ab4982019-02-26 18:37:15 +01005407 ctx = pool_alloc(ssl_sock_ctx_pool);
5408 if (!ctx) {
5409 conn->err_code = CO_ER_SSL_NO_MEM;
5410 return -1;
5411 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005412 ctx->wait_event.tasklet = tasklet_new();
5413 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005414 conn->err_code = CO_ER_SSL_NO_MEM;
5415 pool_free(ssl_sock_ctx_pool, ctx);
5416 return -1;
5417 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005418 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5419 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005420 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005421 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005422 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005423 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005424 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005425 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005426 ctx->xprt_st = 0;
5427 ctx->xprt_ctx = NULL;
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02005428 ctx->hsk_error_code = 0;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005429
5430 /* Only work with sockets for now, this should be adapted when we'll
5431 * add QUIC support.
5432 */
5433 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005434 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005435 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5436 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005437 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005438
Willy Tarreau20879a02012-12-03 16:32:10 +01005439 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5440 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005441 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005442 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005443
Emeric Brun46591952012-05-18 15:47:34 +02005444 /* If it is in client mode initiate SSL session
5445 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005446 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005447 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5448 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005449 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005450
Olivier Houchard66ab4982019-02-26 18:37:15 +01005451 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005452 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005453 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5454 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5455 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 +01005456 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005457 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005458 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005459 } else if (sess) {
5460 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005461 }
5462 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005463 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005464
Emeric Brun46591952012-05-18 15:47:34 +02005465 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005466 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005467
Willy Tarreau4781b152021-04-06 13:53:36 +02005468 _HA_ATOMIC_INC(&sslconns);
5469 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005470 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005471 return 0;
5472 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005473 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005474 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005475
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005476 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5477 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005478 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005479
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005480#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005481 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005482 b_alloc(&ctx->early_buf);
5483 SSL_set_max_early_data(ctx->ssl,
5484 /* Only allow early data if we managed to allocate
5485 * a buffer.
5486 */
5487 (!b_is_null(&ctx->early_buf)) ?
5488 global.tune.bufsize - global.tune.maxrewrite : 0);
5489 }
5490#endif
5491
Olivier Houchard66ab4982019-02-26 18:37:15 +01005492 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005493
Emeric Brun46591952012-05-18 15:47:34 +02005494 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005495 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005496#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005497 if (bc->ssl_conf.early_data)
5498 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005499#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005500
Willy Tarreau4781b152021-04-06 13:53:36 +02005501 _HA_ATOMIC_INC(&sslconns);
5502 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005503 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005504 return 0;
5505 }
5506 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005507 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005508err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005509 if (ctx && ctx->wait_event.tasklet)
5510 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005511 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005512 return -1;
5513}
5514
5515
5516/* This is the callback which is used when an SSL handshake is pending. It
5517 * updates the FD status if it wants some polling before being called again.
5518 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5519 * otherwise it returns non-zero and removes itself from the connection's
5520 * flags (the bit is provided in <flag> by the caller).
5521 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005522static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005523{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005524 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005525 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005526 struct ssl_counters *counters = NULL;
5527 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005528 struct listener *li;
5529 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005530 socklen_t lskerr;
5531 int skerr;
5532
Emeric Brun46591952012-05-18 15:47:34 +02005533
Willy Tarreau3c728722014-01-23 13:50:42 +01005534 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005535 return 0;
5536
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005537 /* get counters */
5538 switch (obj_type(conn->target)) {
5539 case OBJ_TYPE_LISTENER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005540 li = __objt_listener(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005541 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5542 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5543 &ssl_stats_module);
5544 break;
5545
5546 case OBJ_TYPE_SERVER:
Amaury Denoyelle2bf5d412021-07-26 09:59:06 +02005547 srv = __objt_server(conn->target);
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005548 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5549 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5550 &ssl_stats_module);
5551 break;
5552
5553 default:
5554 break;
5555 }
5556
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005557 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005558 goto out_error;
5559
Willy Tarreau06300382021-02-02 15:42:25 +01005560 /* don't start calculating a handshake on a dead connection */
5561 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5562 goto out_error;
5563
5564 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5565 * status from the lower layers, so let's check the FD directly. Ideally
5566 * the xprt layers should provide some status indicating their knowledge
5567 * of shutdowns or error.
5568 */
5569 skerr = 0;
5570 lskerr = sizeof(skerr);
5571 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5572 skerr != 0)
5573 goto out_error;
5574
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005575#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005576 /*
5577 * Check if we have early data. If we do, we have to read them
5578 * before SSL_do_handshake() is called, And there's no way to
5579 * detect early data, except to try to read them
5580 */
5581 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005582 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005583
Olivier Houchard54907bb2019-12-19 15:02:39 +01005584 while (1) {
5585 ret = SSL_read_early_data(ctx->ssl,
5586 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5587 &read_data);
5588 if (ret == SSL_READ_EARLY_DATA_ERROR)
5589 goto check_error;
5590 if (read_data > 0) {
5591 conn->flags |= CO_FL_EARLY_DATA;
5592 b_add(&ctx->early_buf, read_data);
5593 }
5594 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5595 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5596 if (!b_data(&ctx->early_buf))
5597 b_free(&ctx->early_buf);
5598 break;
5599 }
5600 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005601 }
5602#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005603 /* If we use SSL_do_handshake to process a reneg initiated by
5604 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5605 * Usually SSL_write and SSL_read are used and process implicitly
5606 * the reneg handshake.
5607 * Here we use SSL_peek as a workaround for reneg.
5608 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005609 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005610 char c;
5611
Olivier Houchard66ab4982019-02-26 18:37:15 +01005612 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005613 if (ret <= 0) {
5614 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005615 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005616
Emeric Brun674b7432012-11-08 19:21:55 +01005617 if (ret == SSL_ERROR_WANT_WRITE) {
5618 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005619 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005620 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005621 return 0;
5622 }
5623 else if (ret == SSL_ERROR_WANT_READ) {
5624 /* handshake may have been completed but we have
5625 * no more data to read.
5626 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005627 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005628 ret = 1;
5629 goto reneg_ok;
5630 }
5631 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005632 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005633 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005634 return 0;
5635 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005636#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005637 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005638 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005639 return 0;
5640 }
5641#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005642 else if (ret == SSL_ERROR_SYSCALL) {
5643 /* if errno is null, then connection was successfully established */
5644 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5645 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005646 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005647#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5648 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005649 conn->err_code = CO_ER_SSL_HANDSHAKE;
5650#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005651 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005652#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005653 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005654 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005655 empty_handshake = state == TLS_ST_BEFORE;
5656#else
Lukas Tribus49799162019-07-08 14:29:15 +02005657 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5658 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005659#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005660 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005661 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005662 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005663 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5664 else
5665 conn->err_code = CO_ER_SSL_EMPTY;
5666 }
5667 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005668 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005669 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5670 else
5671 conn->err_code = CO_ER_SSL_ABORT;
5672 }
5673 }
5674 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005675 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005676 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005677 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005678 conn->err_code = CO_ER_SSL_HANDSHAKE;
5679 }
Lukas Tribus49799162019-07-08 14:29:15 +02005680#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005681 }
Emeric Brun674b7432012-11-08 19:21:55 +01005682 goto out_error;
5683 }
5684 else {
5685 /* Fail on all other handshake errors */
5686 /* Note: OpenSSL may leave unread bytes in the socket's
5687 * buffer, causing an RST to be emitted upon close() on
5688 * TCP sockets. We first try to drain possibly pending
5689 * data to avoid this as much as possible.
5690 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005691 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005692 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005693 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005694 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005695 goto out_error;
5696 }
5697 }
5698 /* read some data: consider handshake completed */
5699 goto reneg_ok;
5700 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005701 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005702check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005703 if (ret != 1) {
5704 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005705 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005706
Remi Tricot-Le Breton7c6898e2021-07-29 09:45:51 +02005707 if (!ctx->hsk_error_code)
5708 ctx->hsk_error_code = ERR_peek_error();
5709
Emeric Brun46591952012-05-18 15:47:34 +02005710 if (ret == SSL_ERROR_WANT_WRITE) {
5711 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005712 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005713 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005714 return 0;
5715 }
5716 else if (ret == SSL_ERROR_WANT_READ) {
5717 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005718 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005719 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5720 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005721 return 0;
5722 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005723#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005724 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005725 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005726 return 0;
5727 }
5728#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005729 else if (ret == SSL_ERROR_SYSCALL) {
5730 /* if errno is null, then connection was successfully established */
5731 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5732 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005733 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005734#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5735 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005736 conn->err_code = CO_ER_SSL_HANDSHAKE;
5737#else
5738 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005739#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005740 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005741 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005742 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005743#else
Lukas Tribus49799162019-07-08 14:29:15 +02005744 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5745 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005746#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005747 if (empty_handshake) {
5748 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005749 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005750 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5751 else
5752 conn->err_code = CO_ER_SSL_EMPTY;
5753 }
5754 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005755 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005756 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5757 else
5758 conn->err_code = CO_ER_SSL_ABORT;
5759 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005760 }
5761 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005762 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005763 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5764 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005765 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005766 }
Lukas Tribus49799162019-07-08 14:29:15 +02005767#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005768 }
Willy Tarreau89230192012-09-28 20:22:13 +02005769 goto out_error;
5770 }
Emeric Brun46591952012-05-18 15:47:34 +02005771 else {
5772 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005773 /* Note: OpenSSL may leave unread bytes in the socket's
5774 * buffer, causing an RST to be emitted upon close() on
5775 * TCP sockets. We first try to drain possibly pending
5776 * data to avoid this as much as possible.
5777 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005778 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005779 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005780 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005781 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005782 goto out_error;
5783 }
5784 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005785#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005786 else {
5787 /*
5788 * If the server refused the early data, we have to send a
5789 * 425 to the client, as we no longer have the data to sent
5790 * them again.
5791 */
5792 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005793 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005794 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5795 goto out_error;
5796 }
5797 }
5798 }
5799#endif
5800
Emeric Brun46591952012-05-18 15:47:34 +02005801
Emeric Brun674b7432012-11-08 19:21:55 +01005802reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005803
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005804#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005805 /* ASYNC engine API doesn't support moving read/write
5806 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005807 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005808 */
5809 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005810 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005811#endif
Emeric Brun46591952012-05-18 15:47:34 +02005812 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005813 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005814 if (objt_server(conn->target)) {
5815 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5816 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5817 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005818 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005819 else {
5820 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5821 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5822 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5823 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005824
Willy Tarreau42995282020-11-06 13:19:18 +01005825 if (counters) {
5826 ++counters->sess;
5827 ++counters_px->sess;
5828 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005829 }
Willy Tarreau42995282020-11-06 13:19:18 +01005830 else if (counters) {
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005831 ++counters->reused_sess;
5832 ++counters_px->reused_sess;
Emeric Brun46591952012-05-18 15:47:34 +02005833 }
5834
5835 /* The connection is now established at both layers, it's time to leave */
5836 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5837 return 1;
5838
5839 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005840 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005841 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005842 ERR_clear_error();
5843
Emeric Brun9fa89732012-10-04 17:09:56 +02005844 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005845 if (objt_server(conn->target)) {
5846 struct server *s = __objt_server(conn->target);
5847 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5848 * one cache per thread, it only prevents to flush it from the CLI in
5849 * another thread */
5850
5851 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005852 if (s->ssl_ctx.reused_sess[tid].ptr)
5853 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005854 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005855 }
5856
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005857 if (counters) {
5858 ++counters->failed_handshake;
5859 ++counters_px->failed_handshake;
5860 }
5861
Emeric Brun46591952012-05-18 15:47:34 +02005862 /* Fail on all other handshake errors */
5863 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005864 if (!conn->err_code)
5865 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005866 return 0;
5867}
5868
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005869/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5870 * event subscriber <es> is not allowed to change from a previous call as long
5871 * as at least one event is still subscribed. The <event_type> must only be a
5872 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5873 * unless the transport layer was already released.
5874 */
5875static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005876{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005877 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005878
Olivier Houchard0ff28652019-06-24 18:57:39 +02005879 if (!ctx)
5880 return -1;
5881
Willy Tarreau113d52b2020-01-10 09:20:26 +01005882 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005883 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005884
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005885 ctx->subs = es;
5886 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005887
5888 /* we may have to subscribe to lower layers for new events */
5889 event_type &= ~ctx->wait_event.events;
5890 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5891 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005892 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005893}
5894
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005895/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5896 * The <es> pointer is not allowed to differ from the one passed to the
5897 * subscribe() call. It always returns zero.
5898 */
5899static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005900{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005901 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005902
Willy Tarreau113d52b2020-01-10 09:20:26 +01005903 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005904 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005905
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005906 es->events &= ~event_type;
5907 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005908 ctx->subs = NULL;
5909
5910 /* If we subscribed, and we're not doing the handshake,
5911 * then we subscribed because the upper layer asked for it,
5912 * as the upper layer is no longer interested, we can
5913 * unsubscribe too.
5914 */
5915 event_type &= ctx->wait_event.events;
5916 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5917 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005918
5919 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005920}
5921
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005922/* The connection has been taken over, so destroy the old tasklet and create
5923 * a new one. The original thread ID must be passed into orig_tid
5924 * It should be called with the takeover lock for the old thread held.
5925 * Returns 0 on success, and -1 on failure
5926 */
5927static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
5928{
5929 struct ssl_sock_ctx *ctx = xprt_ctx;
5930 struct tasklet *tl = tasklet_new();
5931
5932 if (!tl)
5933 return -1;
5934
5935 ctx->wait_event.tasklet->context = NULL;
5936 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
5937 ctx->wait_event.tasklet = tl;
5938 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5939 ctx->wait_event.tasklet->context = ctx;
5940 return 0;
5941}
5942
Willy Tarreau41491682021-03-02 17:29:56 +01005943/* notify the next xprt that the connection is about to become idle and that it
5944 * may be stolen at any time after the function returns and that any tasklet in
5945 * the chain must be careful before dereferencing its context.
5946 */
5947static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
5948{
5949 struct ssl_sock_ctx *ctx = xprt_ctx;
5950
5951 if (!ctx || !ctx->wait_event.tasklet)
5952 return;
5953
5954 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5955 if (ctx->xprt)
5956 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
5957}
5958
5959/* notify the next xprt that the connection is not idle anymore and that it may
5960 * not be stolen before the next xprt_set_idle().
5961 */
5962static void ssl_set_used(struct connection *conn, void *xprt_ctx)
5963{
5964 struct ssl_sock_ctx *ctx = xprt_ctx;
5965
5966 if (!ctx || !ctx->wait_event.tasklet)
5967 return;
5968
5969 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5970 if (ctx->xprt)
5971 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
5972}
5973
Olivier Houchard2e055482019-05-27 19:50:12 +02005974/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5975 * Returns 0 on success, and non-zero on failure.
5976 */
5977static 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)
5978{
5979 struct ssl_sock_ctx *ctx = xprt_ctx;
5980
5981 if (oldxprt_ops != NULL)
5982 *oldxprt_ops = ctx->xprt;
5983 if (oldxprt_ctx != NULL)
5984 *oldxprt_ctx = ctx->xprt_ctx;
5985 ctx->xprt = toadd_ops;
5986 ctx->xprt_ctx = toadd_ctx;
5987 return 0;
5988}
5989
Olivier Houchard5149b592019-05-23 17:47:36 +02005990/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5991 * return 0, otherwise just call the remove_xprt method from the underlying
5992 * XPRT.
5993 */
5994static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5995{
5996 struct ssl_sock_ctx *ctx = xprt_ctx;
5997
5998 if (ctx->xprt_ctx == toremove_ctx) {
5999 ctx->xprt_ctx = newctx;
6000 ctx->xprt = newops;
6001 return 0;
6002 }
6003 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
6004}
6005
Willy Tarreau144f84a2021-03-02 16:09:26 +01006006struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02006007{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006008 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006009 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006010 struct connection *conn;
6011 int conn_in_list;
6012 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006013
Willy Tarreau41491682021-03-02 17:29:56 +01006014 if (state & TASK_F_USR1) {
6015 /* the tasklet was idling on an idle connection, it might have
6016 * been stolen, let's be careful!
6017 */
6018 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6019 if (tl->context == NULL) {
6020 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
6021 tasklet_free(tl);
6022 return NULL;
6023 }
6024 conn = ctx->conn;
6025 conn_in_list = conn->flags & CO_FL_LIST_MASK;
6026 if (conn_in_list)
6027 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006028 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01006029 } else {
6030 conn = ctx->conn;
6031 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006032 }
Willy Tarreau41491682021-03-02 17:29:56 +01006033
Olivier Houchardea8dd942019-05-20 14:02:16 +02006034 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01006035 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006036 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006037 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
6038 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01006039 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01006040 }
6041 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006042 /* If we had an error, or the handshake is done and I/O is available,
6043 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01006044 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02006045 * we can't be sure conn_fd_handler() will be called again.
6046 */
6047 if ((ctx->conn->flags & CO_FL_ERROR) ||
6048 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006049 int woke = 0;
6050
6051 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006052 if (ctx->subs) {
6053 tasklet_wakeup(ctx->subs->tasklet);
6054 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006055 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01006056 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006057 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006058
Olivier Houchardea8dd942019-05-20 14:02:16 +02006059 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01006060 * upper layers know. If we have no mux, create it,
6061 * and once we have a mux, call its wake method if we didn't
6062 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02006063 */
6064 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01006065 if (!ctx->conn->mux)
6066 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006067 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006068 ret = ctx->conn->mux->wake(ctx->conn);
6069 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006070 }
6071 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006072#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006073 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01006074 else if (b_data(&ctx->early_buf) && ctx->subs &&
6075 ctx->subs->events & SUB_RETRY_RECV) {
6076 tasklet_wakeup(ctx->subs->tasklet);
6077 ctx->subs->events &= ~SUB_RETRY_RECV;
6078 if (!ctx->subs->events)
6079 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01006080 }
6081#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006082leave:
6083 if (!ret && conn_in_list) {
6084 struct server *srv = objt_server(conn->target);
6085
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006086 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006087 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006088 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006089 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01006090 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01006091 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006092 }
Willy Tarreau74163142021-03-13 11:30:19 +01006093 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006094}
6095
Emeric Brun46591952012-05-18 15:47:34 +02006096/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01006097 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02006098 * buffer wraps, in which case a second call may be performed. The connection's
6099 * flags are updated with whatever special event is detected (error, read0,
6100 * empty). The caller is responsible for taking care of those events and
6101 * avoiding the call if inappropriate. The function does not call the
6102 * connection's polling update function, so the caller is responsible for this.
6103 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006104static 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 +02006105{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006106 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02006107 ssize_t ret;
6108 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02006109
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006110 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006111 goto out_error;
6112
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05006113#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01006114 if (b_data(&ctx->early_buf)) {
6115 try = b_contig_space(buf);
6116 if (try > b_data(&ctx->early_buf))
6117 try = b_data(&ctx->early_buf);
6118 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
6119 b_add(buf, try);
6120 b_del(&ctx->early_buf, try);
6121 if (b_data(&ctx->early_buf) == 0)
6122 b_free(&ctx->early_buf);
6123 return try;
6124 }
6125#endif
6126
Willy Tarreau911db9b2020-01-23 16:27:54 +01006127 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006128 /* a handshake was requested */
6129 return 0;
6130
Emeric Brun46591952012-05-18 15:47:34 +02006131 /* read the largest possible block. For this, we perform only one call
6132 * to recv() unless the buffer wraps and we exactly fill the first hunk,
6133 * in which case we accept to do it once again. A new attempt is made on
6134 * EINTR too.
6135 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01006136 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006137
Willy Tarreau591d4452018-06-15 17:21:00 +02006138 try = b_contig_space(buf);
6139 if (!try)
6140 break;
6141
Willy Tarreauabf08d92014-01-14 11:31:27 +01006142 if (try > count)
6143 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02006144
Olivier Houchard66ab4982019-02-26 18:37:15 +01006145 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02006146
Emeric Brune1f38db2012-09-03 20:36:47 +02006147 if (conn->flags & CO_FL_ERROR) {
6148 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006149 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006150 }
Emeric Brun46591952012-05-18 15:47:34 +02006151 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02006152 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006153 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006154 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006155 }
Emeric Brun46591952012-05-18 15:47:34 +02006156 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006157 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006158 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006159 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006160 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006161 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006162#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006163 /* Async mode can be re-enabled, because we're leaving data state.*/
6164 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006165 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006166#endif
Emeric Brun46591952012-05-18 15:47:34 +02006167 break;
6168 }
6169 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006170 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006171 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6172 SUB_RETRY_RECV,
6173 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006174 /* handshake is running, and it may need to re-enable read */
6175 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006176#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006177 /* Async mode can be re-enabled, because we're leaving data state.*/
6178 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006179 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006180#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006181 break;
6182 }
Emeric Brun46591952012-05-18 15:47:34 +02006183 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006184 } else if (ret == SSL_ERROR_ZERO_RETURN)
6185 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006186 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6187 * stack before shutting down the connection for
6188 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006189 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6190 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006191 /* otherwise it's a real error */
6192 goto out_error;
6193 }
6194 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006195 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006196 return done;
6197
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006198 clear_ssl_error:
6199 /* Clear openssl global errors stack */
6200 ssl_sock_dump_errors(conn);
6201 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006202 read0:
6203 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006204 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006205
Emeric Brun46591952012-05-18 15:47:34 +02006206 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006207 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006208 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006209 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006210 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006211 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006212}
6213
6214
Willy Tarreau787db9a2018-06-14 18:31:46 +02006215/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6216 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6217 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006218 * Only one call to send() is performed, unless the buffer wraps, in which case
6219 * a second call may be performed. The connection's flags are updated with
6220 * whatever special event is detected (error, empty). The caller is responsible
6221 * for taking care of those events and avoiding the call if inappropriate. The
6222 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006223 * is responsible for this. The buffer's output is not adjusted, it's up to the
6224 * caller to take care of this. It's up to the caller to update the buffer's
6225 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006226 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006227static 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 +02006228{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006229 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006230 ssize_t ret;
6231 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006232
6233 done = 0;
6234
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006235 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006236 goto out_error;
6237
Willy Tarreau911db9b2020-01-23 16:27:54 +01006238 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006239 /* a handshake was requested */
6240 return 0;
6241
6242 /* send the largest possible block. For this we perform only one call
6243 * to send() unless the buffer wraps and we exactly fill the first hunk,
6244 * in which case we accept to do it once again.
6245 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006246 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006247#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006248 size_t written_data;
6249#endif
6250
Willy Tarreau787db9a2018-06-14 18:31:46 +02006251 try = b_contig_data(buf, done);
6252 if (try > count)
6253 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006254
Willy Tarreau7bed9452014-02-02 02:00:24 +01006255 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006256 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006257 global_ssl.max_record && try > global_ssl.max_record) {
6258 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006259 }
6260 else {
6261 /* we need to keep the information about the fact that
6262 * we're not limiting the upcoming send(), because if it
6263 * fails, we'll have to retry with at least as many data.
6264 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006265 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006266 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006267
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006268#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006269 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006270 unsigned int max_early;
6271
Olivier Houchard522eea72017-11-03 16:27:47 +01006272 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006273 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006274 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006275 if (SSL_get0_session(ctx->ssl))
6276 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006277 else
6278 max_early = 0;
6279 }
6280
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006281 if (try + ctx->sent_early_data > max_early) {
6282 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006283 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006284 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006285 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006286 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006287 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006288 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006289 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006290 if (ret == 1) {
6291 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006292 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006293 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006294 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006295 /* Initiate the handshake, now */
6296 tasklet_wakeup(ctx->wait_event.tasklet);
6297 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006298
Olivier Houchardc2aae742017-09-22 18:26:28 +02006299 }
6300
6301 } else
6302#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006303 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006304
Emeric Brune1f38db2012-09-03 20:36:47 +02006305 if (conn->flags & CO_FL_ERROR) {
6306 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006307 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006308 }
Emeric Brun46591952012-05-18 15:47:34 +02006309 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006310 /* A send succeeded, so we can consider ourself connected */
6311 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006312 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006313 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006314 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006315 }
6316 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006317 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006318
Emeric Brun46591952012-05-18 15:47:34 +02006319 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006320 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006321 /* handshake is running, and it may need to re-enable write */
6322 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006323 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006324#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006325 /* Async mode can be re-enabled, because we're leaving data state.*/
6326 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006327 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006328#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006329 break;
6330 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006331
Emeric Brun46591952012-05-18 15:47:34 +02006332 break;
6333 }
6334 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006335 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006336 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006337 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6338 SUB_RETRY_RECV,
6339 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006340#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006341 /* Async mode can be re-enabled, because we're leaving data state.*/
6342 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006343 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006344#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006345 break;
6346 }
Emeric Brun46591952012-05-18 15:47:34 +02006347 goto out_error;
6348 }
6349 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006350 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006351 return done;
6352
6353 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006354 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006355 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006356 ERR_clear_error();
6357
Emeric Brun46591952012-05-18 15:47:34 +02006358 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006359 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006360}
6361
Willy Tarreau832e2422021-05-13 10:11:03 +02006362void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006363
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006364 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006365
Olivier Houchardea8dd942019-05-20 14:02:16 +02006366
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006367 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006368 if (ctx->wait_event.events != 0)
6369 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6370 ctx->wait_event.events,
6371 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006372 if (ctx->subs) {
6373 ctx->subs->events = 0;
6374 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006375 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006376
Olivier Houchard692c1d02019-05-23 18:41:47 +02006377 if (ctx->xprt->close)
6378 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006379#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006380 if (global_ssl.async) {
6381 OSSL_ASYNC_FD all_fd[32], afd;
6382 size_t num_all_fds = 0;
6383 int i;
6384
Olivier Houchard66ab4982019-02-26 18:37:15 +01006385 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006386 if (num_all_fds > 32) {
6387 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6388 return;
6389 }
6390
Olivier Houchard66ab4982019-02-26 18:37:15 +01006391 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006392
6393 /* If an async job is pending, we must try to
6394 to catch the end using polling before calling
6395 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006396 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006397 for (i=0 ; i < num_all_fds ; i++) {
6398 /* switch on an handler designed to
6399 * handle the SSL_free
6400 */
6401 afd = all_fd[i];
6402 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006403 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006404 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006405 /* To ensure that the fd cache won't be used
6406 * and we'll catch a real RD event.
6407 */
6408 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006409 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006410 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006411 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006412 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006413 return;
6414 }
Emeric Brun3854e012017-05-17 20:42:48 +02006415 /* Else we can remove the fds from the fdtab
6416 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006417 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006418 * because the fd is owned by the engine.
6419 * the engine is responsible to close
6420 */
6421 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006422 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006423 }
6424#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006425 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006426 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006427 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006428 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006429 _HA_ATOMIC_DEC(&sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006430 }
Emeric Brun46591952012-05-18 15:47:34 +02006431}
6432
6433/* This function tries to perform a clean shutdown on an SSL connection, and in
6434 * any case, flags the connection as reusable if no handshake was in progress.
6435 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006436static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006437{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006438 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006439
Willy Tarreau911db9b2020-01-23 16:27:54 +01006440 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006441 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006442 if (!clean)
6443 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006444 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006445 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006446 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006447 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006448 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006449 ERR_clear_error();
6450 }
Emeric Brun46591952012-05-18 15:47:34 +02006451}
6452
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006453
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006454/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006455int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6456{
6457 struct ssl_sock_ctx *ctx;
6458 X509 *crt;
6459
6460 if (!ssl_sock_is_ssl(conn))
6461 return 0;
6462
6463 ctx = conn->xprt_ctx;
6464
6465 crt = SSL_get_certificate(ctx->ssl);
6466 if (!crt)
6467 return 0;
6468
6469 return cert_get_pkey_algo(crt, out);
6470}
6471
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006472/* used for ppv2 cert signature (can be used for logging) */
6473const char *ssl_sock_get_cert_sig(struct connection *conn)
6474{
Christopher Faulet82004142019-09-10 10:12:03 +02006475 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006476
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006477 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6478 X509 *crt;
6479
6480 if (!ssl_sock_is_ssl(conn))
6481 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006482 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006483 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006484 if (!crt)
6485 return NULL;
6486 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6487 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6488}
6489
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006490/* used for ppv2 authority */
6491const char *ssl_sock_get_sni(struct connection *conn)
6492{
6493#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006494 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006495
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006496 if (!ssl_sock_is_ssl(conn))
6497 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006498 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006499 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006500#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006501 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006502#endif
6503}
6504
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006505/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006506const char *ssl_sock_get_cipher_name(struct connection *conn)
6507{
Christopher Faulet82004142019-09-10 10:12:03 +02006508 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006509
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006510 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006511 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006512 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006513 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006514}
6515
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006516/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006517const char *ssl_sock_get_proto_version(struct connection *conn)
6518{
Christopher Faulet82004142019-09-10 10:12:03 +02006519 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006520
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006521 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006522 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006523 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006524 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006525}
6526
Olivier Houchardab28a322018-12-21 19:45:40 +01006527void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6528{
6529#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006530 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006531
Olivier Houcharde488ea82019-06-28 14:10:33 +02006532 if (!ssl_sock_is_ssl(conn))
6533 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006534 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006535 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006536#endif
6537}
6538
Willy Tarreau119a4082016-12-22 21:58:38 +01006539/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6540 * to disable SNI.
6541 */
Willy Tarreau63076412015-07-10 11:33:32 +02006542void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6543{
6544#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006545 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006546
Willy Tarreau119a4082016-12-22 21:58:38 +01006547 char *prev_name;
6548
Willy Tarreau63076412015-07-10 11:33:32 +02006549 if (!ssl_sock_is_ssl(conn))
6550 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006551 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02006552
Willy Tarreau119a4082016-12-22 21:58:38 +01006553 /* if the SNI changes, we must destroy the reusable context so that a
6554 * new connection will present a new SNI. As an optimization we could
6555 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6556 * server.
6557 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006558 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006559 if ((!prev_name && hostname) ||
6560 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006561 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006562
Olivier Houchard66ab4982019-02-26 18:37:15 +01006563 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006564#endif
6565}
6566
Emeric Brun0abf8362014-06-24 18:26:41 +02006567/* Extract peer certificate's common name into the chunk dest
6568 * Returns
6569 * the len of the extracted common name
6570 * or 0 if no CN found in DN
6571 * or -1 on error case (i.e. no peer certificate)
6572 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006573int ssl_sock_get_remote_common_name(struct connection *conn,
6574 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006575{
Christopher Faulet82004142019-09-10 10:12:03 +02006576 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006577 X509 *crt = NULL;
6578 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006579 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006580 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006581 .area = (char *)&find_cn,
6582 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006583 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006584 int result = -1;
David Safb76832014-05-08 23:42:08 -04006585
6586 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006587 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006588 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006589
6590 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006591 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006592 if (!crt)
6593 goto out;
6594
6595 name = X509_get_subject_name(crt);
6596 if (!name)
6597 goto out;
David Safb76832014-05-08 23:42:08 -04006598
Emeric Brun0abf8362014-06-24 18:26:41 +02006599 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6600out:
David Safb76832014-05-08 23:42:08 -04006601 if (crt)
6602 X509_free(crt);
6603
6604 return result;
6605}
6606
Dave McCowan328fb582014-07-30 10:39:13 -04006607/* returns 1 if client passed a certificate for this session, 0 if not */
6608int ssl_sock_get_cert_used_sess(struct connection *conn)
6609{
Christopher Faulet82004142019-09-10 10:12:03 +02006610 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006611 X509 *crt = NULL;
6612
6613 if (!ssl_sock_is_ssl(conn))
6614 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006615 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006616
6617 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006618 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006619 if (!crt)
6620 return 0;
6621
6622 X509_free(crt);
6623 return 1;
6624}
6625
6626/* returns 1 if client passed a certificate for this connection, 0 if not */
6627int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006628{
Christopher Faulet82004142019-09-10 10:12:03 +02006629 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006630
David Safb76832014-05-08 23:42:08 -04006631 if (!ssl_sock_is_ssl(conn))
6632 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006633 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006634 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006635}
6636
6637/* returns result from SSL verify */
6638unsigned int ssl_sock_get_verify_result(struct connection *conn)
6639{
Christopher Faulet82004142019-09-10 10:12:03 +02006640 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006641
David Safb76832014-05-08 23:42:08 -04006642 if (!ssl_sock_is_ssl(conn))
6643 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006644 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006645 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006646}
6647
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006648/* Returns the application layer protocol name in <str> and <len> when known.
6649 * Zero is returned if the protocol name was not found, otherwise non-zero is
6650 * returned. The string is allocated in the SSL context and doesn't have to be
6651 * freed by the caller. NPN is also checked if available since older versions
6652 * of openssl (1.0.1) which are more common in field only support this one.
6653 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006654static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006655{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006656#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6657 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006658 struct ssl_sock_ctx *ctx = xprt_ctx;
6659 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006660 return 0;
6661
6662 *str = NULL;
6663
6664#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006665 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006666 if (*str)
6667 return 1;
6668#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006669#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006670 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006671 if (*str)
6672 return 1;
6673#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006674#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006675 return 0;
6676}
6677
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006678/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006679int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006680{
6681 X509 *ca;
6682 X509_NAME *name = NULL;
6683 ASN1_OCTET_STRING *skid = NULL;
6684 STACK_OF(X509) *chain = NULL;
6685 struct issuer_chain *issuer;
6686 struct eb64_node *node;
6687 char *path;
6688 u64 key;
6689 int ret = 0;
6690
6691 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6692 if (chain == NULL) {
6693 chain = sk_X509_new_null();
6694 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6695 name = X509_get_subject_name(ca);
6696 }
6697 if (!sk_X509_push(chain, ca)) {
6698 X509_free(ca);
6699 goto end;
6700 }
6701 }
6702 if (!chain) {
6703 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6704 goto end;
6705 }
6706 if (!skid) {
6707 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6708 goto end;
6709 }
6710 if (!name) {
6711 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6712 goto end;
6713 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006714 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006715 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006716 issuer = container_of(node, typeof(*issuer), node);
6717 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6718 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6719 goto end;
6720 }
6721 }
6722 issuer = calloc(1, sizeof *issuer);
6723 path = strdup(fp);
6724 if (!issuer || !path) {
6725 free(issuer);
6726 free(path);
6727 goto end;
6728 }
6729 issuer->node.key = key;
6730 issuer->path = path;
6731 issuer->chain = chain;
6732 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006733 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006734 ret = 1;
6735 end:
6736 if (skid)
6737 ASN1_OCTET_STRING_free(skid);
6738 if (chain)
6739 sk_X509_pop_free(chain, X509_free);
6740 return ret;
6741}
6742
William Lallemandda8584c2020-05-14 10:14:37 +02006743 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006744{
6745 AUTHORITY_KEYID *akid;
6746 struct issuer_chain *issuer = NULL;
6747
6748 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006749 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006750 struct eb64_node *node;
6751 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006752 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006753 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6754 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6755 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6756 issuer = ti;
6757 break;
6758 }
6759 }
6760 AUTHORITY_KEYID_free(akid);
6761 }
6762 return issuer;
6763}
6764
William Lallemanddad31052020-05-14 17:47:32 +02006765void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006766{
6767 struct eb64_node *node, *back;
6768 struct issuer_chain *issuer;
6769
William Lallemande0f3fd52020-02-25 14:53:06 +01006770 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006771 while (node) {
6772 issuer = container_of(node, typeof(*issuer), node);
6773 back = eb64_next(node);
6774 eb64_delete(node);
6775 free(issuer->path);
6776 sk_X509_pop_free(issuer->chain, X509_free);
6777 free(issuer);
6778 node = back;
6779 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006780}
6781
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006782#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006783static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006784 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006785
Emeric Brun3854e012017-05-17 20:42:48 +02006786 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006787 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006788 err_code = ERR_ABORT;
6789 }
6790 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006791}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006792#endif
6793
Willy Tarreaude5675a2021-01-20 14:41:29 +01006794/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006795 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006796 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006797static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006798{
6799 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006800 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006801
6802 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006803 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006804
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006805 if (sctx->conn != conn) {
6806 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6807 ret = 1;
6808 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006809 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6810
6811 if (sctx->xprt) {
6812 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6813 if (sctx->xprt_ctx)
6814 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6815 }
6816
6817 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006818
6819 /* as soon as a shutdown is reported the lower layer unregisters its
6820 * subscriber, so the situations below are transient and rare enough to
6821 * be reported as suspicious. In any case they shouldn't last.
6822 */
6823 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6824 ret = 1;
6825 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6826 ret = 1;
6827
Willy Tarreaude5675a2021-01-20 14:41:29 +01006828 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6829 if (sctx->subs) {
6830 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006831 if (sctx->subs->tasklet->calls >= 1000000)
6832 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006833 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6834 sctx->subs->tasklet->calls,
6835 sctx->subs->tasklet->context);
6836 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6837 chunk_appendf(&trash, ")");
6838 }
6839 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6840 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006841 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006842}
6843
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006844#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02006845/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006846 * each reference. The variable <ref> must point to the current node's list
6847 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02006848 */
William Lallemand32af2032016-10-29 18:09:35 +02006849static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006850struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02006851{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006852 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006853 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02006854
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006855 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006856 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006857 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02006858
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006859 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02006860}
6861
6862static inline
6863struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6864{
6865 int id;
6866 char *error;
6867
6868 /* If the reference starts by a '#', this is numeric id. */
6869 if (reference[0] == '#') {
6870 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6871 id = strtol(reference + 1, &error, 10);
6872 if (*error != '\0')
6873 return NULL;
6874
6875 /* Perform the unique id lookup. */
6876 return tlskeys_ref_lookupid(id);
6877 }
6878
6879 /* Perform the string lookup. */
6880 return tlskeys_ref_lookup(reference);
6881}
6882#endif
6883
6884
6885#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6886
6887static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6888
6889static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6890 return cli_io_handler_tlskeys_files(appctx);
6891}
6892
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006893/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6894 * (next index to be dumped), and cli.p0 (next key reference).
6895 */
William Lallemand32af2032016-10-29 18:09:35 +02006896static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6897
6898 struct stream_interface *si = appctx->owner;
6899
6900 switch (appctx->st2) {
6901 case STAT_ST_INIT:
6902 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006903 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006904 * later and restart at the state "STAT_ST_INIT".
6905 */
6906 chunk_reset(&trash);
6907
6908 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6909 chunk_appendf(&trash, "# id secret\n");
6910 else
6911 chunk_appendf(&trash, "# id (file)\n");
6912
Willy Tarreau06d80a92017-10-19 14:32:15 +02006913 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006914 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006915 return 0;
6916 }
6917
William Lallemand32af2032016-10-29 18:09:35 +02006918 /* Now, we start the browsing of the references lists.
6919 * Note that the following call to LIST_ELEM return bad pointer. The only
6920 * available field of this pointer is <list>. It is used with the function
6921 * tlskeys_list_get_next() for retruning the first available entry
6922 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006923 if (appctx->ctx.cli.p0 == NULL)
6924 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006925
6926 appctx->st2 = STAT_ST_LIST;
6927 /* fall through */
6928
6929 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006930 while (appctx->ctx.cli.p0) {
6931 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006932
6933 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006934 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006935 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006936
6937 if (appctx->ctx.cli.i1 == 0)
6938 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6939
William Lallemand32af2032016-10-29 18:09:35 +02006940 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006941 int head;
6942
6943 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6944 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006945 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006946 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006947
6948 chunk_reset(t2);
6949 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006950 if (ref->key_size_bits == 128) {
6951 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6952 sizeof(struct tls_sess_key_128),
6953 t2->area, t2->size);
6954 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6955 t2->area);
6956 }
6957 else if (ref->key_size_bits == 256) {
6958 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6959 sizeof(struct tls_sess_key_256),
6960 t2->area, t2->size);
6961 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6962 t2->area);
6963 }
6964 else {
6965 /* This case should never happen */
6966 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6967 }
William Lallemand32af2032016-10-29 18:09:35 +02006968
Willy Tarreau06d80a92017-10-19 14:32:15 +02006969 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006970 /* let's try again later from this stream. We add ourselves into
6971 * this stream's users so that it can remove us upon termination.
6972 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006973 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006974 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006975 return 0;
6976 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006977 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006978 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006979 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006980 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006981 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006982 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006983 /* let's try again later from this stream. We add ourselves into
6984 * this stream's users so that it can remove us upon termination.
6985 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006986 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006987 return 0;
6988 }
6989
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006990 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006991 break;
6992
6993 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006994 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006995 }
6996
6997 appctx->st2 = STAT_ST_FIN;
6998 /* fall through */
6999
7000 default:
7001 appctx->st2 = STAT_ST_FIN;
7002 return 1;
7003 }
7004 return 0;
7005}
7006
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007007/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007008static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007009{
William Lallemand32af2032016-10-29 18:09:35 +02007010 /* no parameter, shows only file list */
7011 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007012 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007013 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007014 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007015 }
7016
7017 if (args[2][0] == '*') {
7018 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007019 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02007020 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007021 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007022 if (!appctx->ctx.cli.p0)
7023 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007024 }
William Lallemand32af2032016-10-29 18:09:35 +02007025 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01007026 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02007027}
7028
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007029static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007030{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007031 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007032 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007033
William Lallemand32af2032016-10-29 18:09:35 +02007034 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007035 if (!*args[3] || !*args[4])
7036 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 +02007037
Willy Tarreauf5f26e82016-12-16 18:47:27 +01007038 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02007039 if (!ref)
7040 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02007041
Willy Tarreau1c913e42018-08-22 05:26:57 +02007042 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007043 if (ret < 0)
7044 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01007045
Willy Tarreau1c913e42018-08-22 05:26:57 +02007046 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02007047 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
7048 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007049
Willy Tarreau9d008692019-08-09 11:21:01 +02007050 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007051}
William Lallemandd4f946c2019-12-05 10:26:40 +01007052#endif
William Lallemand419e6342020-04-08 12:05:39 +02007053
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02007054static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02007055{
7056#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
7057 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02007058 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007059
7060 if (!payload)
7061 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02007062
7063 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02007064 if (!*payload)
7065 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02007066
7067 /* remove \r and \n from the payload */
7068 for (i = 0, j = 0; payload[i]; i++) {
7069 if (payload[i] == '\r' || payload[i] == '\n')
7070 continue;
7071 payload[j++] = payload[i];
7072 }
7073 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02007074
Willy Tarreau1c913e42018-08-22 05:26:57 +02007075 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02007076 if (ret < 0)
7077 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007078
Willy Tarreau1c913e42018-08-22 05:26:57 +02007079 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02007080 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02007081 if (err)
7082 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
7083 else
7084 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02007085 }
Willy Tarreau9d008692019-08-09 11:21:01 +02007086
7087 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02007088#else
Willy Tarreau9d008692019-08-09 11:21:01 +02007089 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 +02007090#endif
7091
Elliot Otchet71f82972020-01-15 08:12:14 -05007092}
7093
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007094
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007095#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007096static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
7097#endif
7098
7099/* parsing function for 'show ssl ocsp-response [id]' */
7100static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
7101{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007102#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007103 if (*args[3]) {
7104 struct certificate_ocsp *ocsp = NULL;
7105 char *key = NULL;
7106 int key_length = 0;
7107
7108 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
7109 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
7110 }
7111
7112 if (parse_binary(args[3], &key, &key_length, NULL)) {
7113
7114 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
7115 memcpy(full_key, key, key_length);
7116
7117 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
7118 }
7119 if (key)
7120 ha_free(&key);
7121
7122 if (!ocsp) {
7123 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
7124 }
7125
7126 appctx->ctx.cli.p0 = ocsp;
7127 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
7128 }
7129
7130 return 0;
7131
7132#else
7133 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7134#endif
7135}
7136
7137
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007138#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007139/*
7140 * This function dumps the details of an OCSP_CERTID. It is based on
7141 * ocsp_certid_print in OpenSSL.
7142 */
7143static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
7144{
7145 ASN1_OCTET_STRING *piNameHash = NULL;
7146 ASN1_OCTET_STRING *piKeyHash = NULL;
7147 ASN1_INTEGER *pSerial = NULL;
7148
7149 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
7150
7151 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
7152 indent += 2;
7153 BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, "");
7154 i2a_ASN1_STRING(bp, piNameHash, 0);
7155 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
7156 i2a_ASN1_STRING(bp, piKeyHash, 0);
7157 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
7158 i2a_ASN1_INTEGER(bp, pSerial);
7159 BIO_printf(bp, "\n");
7160 }
7161 return 1;
7162}
7163#endif
7164
7165/*
7166 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7167 * is managed in cli_io_handler_show_ocspresponse_detail.
7168 */
7169static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7170{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007171#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007172 struct buffer *trash = alloc_trash_chunk();
7173 struct buffer *tmp = NULL;
7174 struct ebmb_node *node;
7175 struct stream_interface *si = appctx->owner;
7176 struct certificate_ocsp *ocsp = NULL;
7177 BIO *bio = NULL;
7178 int write = -1;
7179
7180 if (trash == NULL)
7181 return 1;
7182
7183 tmp = alloc_trash_chunk();
7184 if (!tmp)
7185 goto end;
7186
7187 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7188 goto end;
7189
7190 if (!appctx->ctx.cli.p0) {
7191 chunk_appendf(trash, "# Certificate IDs\n");
7192 node = ebmb_first(&cert_ocsp_tree);
7193 } else {
7194 node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key;
7195 }
7196
7197 while (node) {
7198 OCSP_CERTID *certid = NULL;
7199 const unsigned char *p = NULL;
7200 int i;
7201
7202 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7203
7204 /* Dump the key in hexadecimal */
7205 chunk_appendf(trash, "Certificate ID key : ");
7206 for (i = 0; i < ocsp->key_length; ++i) {
7207 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7208 }
7209 chunk_appendf(trash, "\n");
7210
7211 p = ocsp->key_data;
7212
7213 /* Decode the certificate ID (serialized into the key). */
7214 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
7215
7216 /* Dump the CERTID info */
7217 ocsp_certid_print(bio, certid, 1);
7218 write = BIO_read(bio, tmp->area, tmp->size-1);
7219 tmp->area[write] = '\0';
7220
7221 chunk_appendf(trash, "%s\n", tmp->area);
7222
7223 node = ebmb_next(node);
7224 if (ci_putchk(si_ic(si), trash) == -1) {
7225 si_rx_room_blk(si);
7226 goto yield;
7227 }
7228 }
7229
7230end:
7231 appctx->ctx.cli.p0 = NULL;
7232 if (trash)
7233 free_trash_chunk(trash);
7234 if (tmp)
7235 free_trash_chunk(tmp);
7236 if (bio)
7237 BIO_free(bio);
7238 return 1;
7239
7240yield:
7241
7242 if (trash)
7243 free_trash_chunk(trash);
7244 if (tmp)
7245 free_trash_chunk(tmp);
7246 if (bio)
7247 BIO_free(bio);
7248 appctx->ctx.cli.p0 = ocsp;
7249 return 0;
7250#else
7251 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7252#endif
7253}
7254
7255
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007256#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007257/*
7258 * Dump the details about an OCSP response in DER format stored in
7259 * <ocsp_response> into buffer <out>.
7260 * Returns 0 in case of success.
7261 */
7262int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7263{
7264 BIO *bio = NULL;
7265 int write = -1;
7266 OCSP_RESPONSE *resp;
7267 const unsigned char *p;
7268
7269 if (!ocsp_response)
7270 return -1;
7271
7272 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7273 return -1;
7274
7275 p = (const unsigned char*)ocsp_response->area;
7276
7277 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7278 if (!resp) {
7279 chunk_appendf(out, "Unable to parse OCSP response");
7280 return -1;
7281 }
7282
7283 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
7284 write = BIO_read(bio, out->area, out->size - 1);
7285 out->area[write] = '\0';
7286 out->data = write;
7287 }
7288
7289 if (bio)
7290 BIO_free(bio);
7291
7292 return 0;
7293}
7294
7295/*
7296 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7297 * Returns 0 in case of success.
7298 */
7299int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7300{
7301 struct certificate_ocsp *ocsp;
7302
7303 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7304 if (!ocsp)
7305 return -1;
7306
7307 return ssl_ocsp_response_print(&ocsp->response, out);
7308}
7309
7310
7311/* IO handler of details "show ssl ocsp-response <id>". */
7312static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7313{
7314 struct buffer *trash = alloc_trash_chunk();
7315 struct certificate_ocsp *ocsp = NULL;
7316 struct stream_interface *si = appctx->owner;
7317
7318 ocsp = appctx->ctx.cli.p0;
7319
7320 if (trash == NULL)
7321 return 1;
7322
7323 ssl_ocsp_response_print(&ocsp->response, trash);
7324
7325 if (ci_putchk(si_ic(si), trash) == -1) {
7326 si_rx_room_blk(si);
7327 goto yield;
7328 }
7329 appctx->ctx.cli.p0 = NULL;
7330 if (trash)
7331 free_trash_chunk(trash);
7332 return 1;
7333
7334yield:
7335 if (trash)
7336 free_trash_chunk(trash);
7337
7338 return 0;
7339}
7340#endif
7341
William Lallemand32af2032016-10-29 18:09:35 +02007342/* register cli keywords */
7343static struct cli_kw_list cli_kws = {{ },{
7344#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007345 { { "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 },
7346 { { "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 +02007347#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007348 { { "set", "ssl", "ocsp-response", NULL }, "set ssl ocsp-response <resp|payload> : update a certificate's OCSP Response from a base64-encode DER", cli_parse_set_ocspresponse, NULL },
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02007349
7350 { { "show", "ssl", "ocsp-response", NULL },"show ssl ocsp-response [id] : display the IDs of the OCSP responses used in memory, or the details of a single OCSP response", cli_parse_show_ocspresponse, cli_io_handler_show_ocspresponse, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02007351 { { NULL }, NULL, NULL, NULL }
7352}};
7353
Willy Tarreau0108d902018-11-25 19:14:37 +01007354INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007355
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007356/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007357struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007358 .snd_buf = ssl_sock_from_buf,
7359 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007360 .subscribe = ssl_subscribe,
7361 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007362 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007363 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007364 .rcv_pipe = NULL,
7365 .snd_pipe = NULL,
7366 .shutr = NULL,
7367 .shutw = ssl_sock_shutw,
7368 .close = ssl_sock_close,
7369 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007370 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007371 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007372 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007373 .prepare_srv = ssl_sock_prepare_srv_ctx,
7374 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007375 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007376 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007377 .set_idle = ssl_set_idle,
7378 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007379 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007380 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007381};
7382
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007383enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7384 struct session *sess, struct stream *s, int flags)
7385{
7386 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007387 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007388
7389 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007390 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007391
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007392 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007393 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007394 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007395 s->req.flags |= CF_READ_NULL;
7396 return ACT_RET_YIELD;
7397 }
7398 }
7399 return (ACT_RET_CONT);
7400}
7401
7402static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7403{
7404 rule->action_ptr = ssl_action_wait_for_hs;
7405
7406 return ACT_RET_PRS_OK;
7407}
7408
7409static struct action_kw_list http_req_actions = {ILH, {
7410 { "wait-for-handshake", ssl_parse_wait_for_hs },
7411 { /* END */ }
7412}};
7413
Willy Tarreau0108d902018-11-25 19:14:37 +01007414INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7415
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007416#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007417
7418static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7419{
7420 if (ptr) {
7421 chunk_destroy(ptr);
7422 free(ptr);
7423 }
7424}
7425
7426#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007427
7428#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7429static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7430{
7431 struct ocsp_cbk_arg *ocsp_arg;
7432
7433 if (ptr) {
7434 ocsp_arg = ptr;
7435
7436 if (ocsp_arg->is_single) {
7437 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7438 ocsp_arg->s_ocsp = NULL;
7439 } else {
7440 int i;
7441
7442 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7443 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7444 ocsp_arg->m_ocsp[i] = NULL;
7445 }
7446 }
7447 free(ocsp_arg);
7448 }
7449}
7450#endif
7451
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007452static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7453{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007454 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007455}
William Lallemand7d42ef52020-07-06 11:41:30 +02007456
William Lallemand722180a2021-06-09 16:46:12 +02007457#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007458static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7459{
7460 struct ssl_keylog *keylog;
7461
7462 if (!ptr)
7463 return;
7464
7465 keylog = ptr;
7466
7467 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7468 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7469 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7470 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7471 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7472 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7473 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7474 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7475
7476 pool_free(pool_head_ssl_keylog, ptr);
7477}
7478#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007479
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007480static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7481{
7482 if (!ptr)
7483 return;
7484
7485 X509_free((X509*)ptr);
7486}
7487
Emeric Brun46591952012-05-18 15:47:34 +02007488__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007489static void __ssl_sock_init(void)
7490{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007491#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007492 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007493 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007494#endif
Emeric Brun46591952012-05-18 15:47:34 +02007495
Willy Tarreauef934602016-12-22 23:12:01 +01007496 if (global_ssl.listen_default_ciphers)
7497 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7498 if (global_ssl.connect_default_ciphers)
7499 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007500#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007501 if (global_ssl.listen_default_ciphersuites)
7502 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7503 if (global_ssl.connect_default_ciphersuites)
7504 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7505#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007506
Willy Tarreau13e14102016-12-22 20:25:26 +01007507 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007508#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007509 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007510#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007511#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007512 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007513 n = sk_SSL_COMP_num(cm);
7514 while (n--) {
7515 (void) sk_SSL_COMP_pop(cm);
7516 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007517#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007518
Willy Tarreau5db847a2019-05-09 14:13:35 +02007519#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007520 ssl_locking_init();
7521#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007522#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007523 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7524#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007525
7526#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7527 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7528#endif
7529
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007530 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007531 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
William Lallemand722180a2021-06-09 16:46:12 +02007532#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007533 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7534#endif
Remi Tricot-Le Breton74f6ab62021-08-19 18:06:30 +02007535 ssl_client_crt_ref_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_crt_free_func);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007536#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007537 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007538 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007539#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007540#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7541 hap_register_post_check(tlskeys_finalize_config);
7542#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007543
7544 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7545 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7546
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007547 hap_register_post_deinit(ssl_free_global_issuers);
7548
Willy Tarreau80713382018-11-26 10:19:54 +01007549#ifndef OPENSSL_NO_DH
7550 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7551 hap_register_post_deinit(ssl_free_dh);
7552#endif
7553#ifndef OPENSSL_NO_ENGINE
7554 hap_register_post_deinit(ssl_free_engines);
7555#endif
7556 /* Load SSL string for the verbose & debug mode. */
7557 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007558 ha_meth = BIO_meth_new(0x666, "ha methods");
7559 BIO_meth_set_write(ha_meth, ha_ssl_write);
7560 BIO_meth_set_read(ha_meth, ha_ssl_read);
7561 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7562 BIO_meth_set_create(ha_meth, ha_ssl_new);
7563 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7564 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7565 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007566
7567 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007568
Dragan Dosen9ac98092020-05-11 15:51:45 +02007569 /* Try to register dedicated SSL/TLS protocol message callbacks for
7570 * heartbleed attack (CVE-2014-0160) and clienthello.
7571 */
7572 hap_register_post_check(ssl_sock_register_msg_callbacks);
7573
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007574 /* Try to free all callbacks that were registered by using
7575 * ssl_sock_register_msg_callback().
7576 */
7577 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007578}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007579
Willy Tarreau80713382018-11-26 10:19:54 +01007580/* Compute and register the version string */
7581static void ssl_register_build_options()
7582{
7583 char *ptr = NULL;
7584 int i;
7585
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007586 memprintf(&ptr, "Built with OpenSSL version : "
7587#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007588 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007589#else /* OPENSSL_IS_BORINGSSL */
7590 OPENSSL_VERSION_TEXT
7591 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007592 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007593 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007594#endif
7595 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007596#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007597 "no (library version too old)"
7598#elif defined(OPENSSL_NO_TLSEXT)
7599 "no (disabled via OPENSSL_NO_TLSEXT)"
7600#else
7601 "yes"
7602#endif
7603 "", ptr);
7604
7605 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7606#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7607 "yes"
7608#else
7609#ifdef OPENSSL_NO_TLSEXT
7610 "no (because of OPENSSL_NO_TLSEXT)"
7611#else
7612 "no (version might be too old, 0.9.8f min needed)"
7613#endif
7614#endif
7615 "", ptr);
7616
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007617 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7618 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7619 if (methodVersions[i].option)
7620 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007621
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007622 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007623}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007624
Willy Tarreau80713382018-11-26 10:19:54 +01007625INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007626
Emeric Brun46591952012-05-18 15:47:34 +02007627
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007628#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007629void ssl_free_engines(void) {
7630 struct ssl_engine_list *wl, *wlb;
7631 /* free up engine list */
7632 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7633 ENGINE_finish(wl->e);
7634 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007635 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007636 free(wl);
7637 }
7638}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007639#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007640
Remi Gacogned3a23c32015-05-28 16:39:47 +02007641#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007642void ssl_free_dh(void) {
7643 if (local_dh_1024) {
7644 DH_free(local_dh_1024);
7645 local_dh_1024 = NULL;
7646 }
7647 if (local_dh_2048) {
7648 DH_free(local_dh_2048);
7649 local_dh_2048 = NULL;
7650 }
7651 if (local_dh_4096) {
7652 DH_free(local_dh_4096);
7653 local_dh_4096 = NULL;
7654 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007655 if (global_dh) {
7656 DH_free(global_dh);
7657 global_dh = NULL;
7658 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007659}
7660#endif
7661
7662__attribute__((destructor))
7663static void __ssl_sock_deinit(void)
7664{
7665#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007666 if (ssl_ctx_lru_tree) {
7667 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007668 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007669 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007670#endif
7671
Willy Tarreau5db847a2019-05-09 14:13:35 +02007672#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007673 ERR_remove_state(0);
7674 ERR_free_strings();
7675
7676 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007677#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007678
Willy Tarreau5db847a2019-05-09 14:13:35 +02007679#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007680 CRYPTO_cleanup_all_ex_data();
7681#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007682 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007683}
7684
William Dauchyf6370442020-11-14 19:25:33 +01007685/* Activate ssl on server <s>.
7686 * do nothing if there is no change to apply
7687 *
7688 * Must be called with the server lock held.
7689 */
7690void ssl_sock_set_srv(struct server *s, signed char use_ssl)
7691{
7692 if (s->use_ssl == use_ssl)
7693 return;
7694
7695 s->use_ssl = use_ssl;
7696 if (s->use_ssl == 1)
7697 s->xprt = &ssl_sock;
7698 else
7699 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
7700}
7701
Emeric Brun46591952012-05-18 15:47:34 +02007702/*
7703 * Local variables:
7704 * c-indent-level: 8
7705 * c-basic-offset: 8
7706 * End:
7707 */