blob: 9fb91f2d8797ca24f859c461c55fb1979b739034 [file] [log] [blame]
yanbzhu08ce6ab2015-12-02 13:01:29 -05001
Emeric Brun46591952012-05-18 15:47:34 +02002/*
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003 * SSL/TLS transport layer over SOCK_STREAM sockets
Emeric Brun46591952012-05-18 15:47:34 +02004 *
5 * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Willy Tarreau69845df2012-09-10 09:43:09 +020012 * Acknowledgement:
13 * We'd like to specially thank the Stud project authors for a very clean
14 * and well documented code which helped us understand how the OpenSSL API
15 * ought to be used in non-blocking mode. This is one difficult part which
16 * is not easy to get from the OpenSSL doc, and reading the Stud code made
17 * it much more obvious than the examples in the OpenSSL package. Keep up
18 * the good works, guys !
19 *
20 * Stud is an extremely efficient and scalable SSL/TLS proxy which combines
21 * particularly well with haproxy. For more info about this project, visit :
22 * https://github.com/bumptech/stud
23 *
Emeric Brun46591952012-05-18 15:47:34 +020024 */
25
Willy Tarreau8d164dc2019-05-10 09:35:00 +020026/* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */
Emeric Brun46591952012-05-18 15:47:34 +020027#define _GNU_SOURCE
Emeric Brunfc0421f2012-09-07 17:30:07 +020028#include <ctype.h>
29#include <dirent.h>
Emeric Brun46591952012-05-18 15:47:34 +020030#include <errno.h>
31#include <fcntl.h>
32#include <stdio.h>
33#include <stdlib.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020034#include <string.h>
35#include <unistd.h>
Emeric Brun46591952012-05-18 15:47:34 +020036
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020040#include <netdb.h>
Emeric Brun46591952012-05-18 15:47:34 +020041#include <netinet/tcp.h>
42
Willy Tarreaub2551052020-06-09 09:07:15 +020043#include <import/ebpttree.h>
44#include <import/ebsttree.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020045#include <import/lru.h>
46#include <import/xxhash.h>
47
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/api.h>
49#include <haproxy/arg.h>
50#include <haproxy/base64.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020051#include <haproxy/channel.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020052#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020053#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020054#include <haproxy/connection.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020055#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020056#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020057#include <haproxy/fd.h>
58#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020059#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020060#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020061#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020062#include <haproxy/log.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +020063#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020064#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020066#include <haproxy/proxy.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020067#include <haproxy/server.h>
Willy Tarreau334099c2020-06-03 18:38:48 +020068#include <haproxy/shctx.h>
Willy Tarreau47d7f902020-06-04 14:25:47 +020069#include <haproxy/ssl_ckch.h>
Willy Tarreau52d88722020-06-04 14:29:23 +020070#include <haproxy/ssl_crtlist.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020071#include <haproxy/ssl_sock.h>
Willy Tarreaub2bd8652020-06-04 14:21:22 +020072#include <haproxy/ssl_utils.h>
Amaury Denoyelle9963fa72020-11-03 17:10:00 +010073#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020075#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020076#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020077#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020078#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020080#include <haproxy/vars.h>
Frédéric Lécailleec216522020-11-23 14:33:30 +010081#include <haproxy/xprt_quic.h>
Emeric Brun46591952012-05-18 15:47:34 +020082
Emeric Brun46591952012-05-18 15:47:34 +020083
Willy Tarreau9356dac2019-05-10 09:22:53 +020084/* ***** READ THIS before adding code here! *****
85 *
86 * Due to API incompatibilities between multiple OpenSSL versions and their
87 * derivatives, it's often tempting to add macros to (re-)define certain
88 * symbols. Please do not do this here, and do it in common/openssl-compat.h
89 * exclusively so that the whole code consistently uses the same macros.
90 *
91 * Whenever possible if a macro is missing in certain versions, it's better
92 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
93 */
94
Willy Tarreau71b734c2014-01-28 15:19:44 +010095int sslconns = 0;
96int totalsslconns = 0;
Emeric Brunece0c332017-12-06 13:51:49 +010097int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +020098
William Lallemande0f3fd52020-02-25 14:53:06 +010099static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
100
William Lallemand7fd8b452020-05-07 15:20:43 +0200101struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100102#ifdef LISTEN_DEFAULT_CIPHERS
103 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
104#endif
105#ifdef CONNECT_DEFAULT_CIPHERS
106 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
107#endif
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +0500108#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200109 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200110 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
111#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100112 .listen_default_ssloptions = BC_SSL_O_NONE,
113 .connect_default_ssloptions = SRV_SSL_O_NONE,
114
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200115 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
116 .listen_default_sslmethods.min = CONF_TLSV_NONE,
117 .listen_default_sslmethods.max = CONF_TLSV_NONE,
118 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
119 .connect_default_sslmethods.min = CONF_TLSV_NONE,
120 .connect_default_sslmethods.max = CONF_TLSV_NONE,
121
Willy Tarreauef934602016-12-22 23:12:01 +0100122#ifdef DEFAULT_SSL_MAX_RECORD
123 .max_record = DEFAULT_SSL_MAX_RECORD,
124#endif
125 .default_dh_param = SSL_DEFAULT_DH_PARAM,
126 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100127 .capture_cipherlist = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100128 .extra_files = SSL_GF_ALL,
William Lallemand8e8581e2020-10-20 17:36:46 +0200129 .extra_files_noext = 0,
William Lallemand722180a2021-06-09 16:46:12 +0200130#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200131 .keylog = 0
132#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100133};
134
Olivier Houcharda8955d52019-04-07 22:00:38 +0200135static BIO_METHOD *ha_meth;
136
Olivier Houchard66ab4982019-02-26 18:37:15 +0100137DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
138
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100139/* ssl stats module */
140enum {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100141 SSL_ST_SESS,
142 SSL_ST_REUSED_SESS,
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100143 SSL_ST_FAILED_HANDSHAKE,
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100144
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100145 SSL_ST_STATS_COUNT /* must be the last member of the enum */
146};
147
148static struct name_desc ssl_stats[] = {
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100149 [SSL_ST_SESS] = { .name = "ssl_sess",
150 .desc = "Total number of ssl sessions established" },
151 [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess",
152 .desc = "Total number of ssl sessions reused" },
153 [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake",
154 .desc = "Total number of failed handshake" },
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100155};
156
157static struct ssl_counters {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100158 long long sess;
159 long long reused_sess;
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100160 long long failed_handshake;
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100161} ssl_counters;
162
163static void ssl_fill_stats(void *data, struct field *stats)
164{
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100165 struct ssl_counters *counters = data;
166
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100167 stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess);
168 stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess);
169 stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake);
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100170}
171
172static struct stats_module ssl_stats_module = {
173 .name = "ssl",
174 .fill_stats = ssl_fill_stats,
175 .stats = ssl_stats,
176 .stats_count = SSL_ST_STATS_COUNT,
177 .counters = &ssl_counters,
178 .counters_size = sizeof(ssl_counters),
179 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV),
180 .clearable = 1,
181};
182
183INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module);
184
Willy Tarreau691d5032021-01-20 14:55:01 +0100185/* ssl_sock_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100186struct task *ssl_sock_io_cb(struct task *, void *, unsigned int);
Olivier Houchard000694c2019-05-23 14:45:12 +0200187static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200188
Olivier Houcharda8955d52019-04-07 22:00:38 +0200189/* Methods to implement OpenSSL BIO */
190static int ha_ssl_write(BIO *h, const char *buf, int num)
191{
192 struct buffer tmpbuf;
193 struct ssl_sock_ctx *ctx;
194 int ret;
195
196 ctx = BIO_get_data(h);
197 tmpbuf.size = num;
198 tmpbuf.area = (void *)(uintptr_t)buf;
199 tmpbuf.data = num;
200 tmpbuf.head = 0;
201 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200202 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200203 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200204 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200205 } else if (ret == 0)
206 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200207 return ret;
208}
209
210static int ha_ssl_gets(BIO *h, char *buf, int size)
211{
212
213 return 0;
214}
215
216static int ha_ssl_puts(BIO *h, const char *str)
217{
218
219 return ha_ssl_write(h, str, strlen(str));
220}
221
222static int ha_ssl_read(BIO *h, char *buf, int size)
223{
224 struct buffer tmpbuf;
225 struct ssl_sock_ctx *ctx;
226 int ret;
227
228 ctx = BIO_get_data(h);
229 tmpbuf.size = size;
230 tmpbuf.area = buf;
231 tmpbuf.data = 0;
232 tmpbuf.head = 0;
233 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200234 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200235 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200236 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200237 } else if (ret == 0)
238 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200239
240 return ret;
241}
242
243static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
244{
245 int ret = 0;
246 switch (cmd) {
247 case BIO_CTRL_DUP:
248 case BIO_CTRL_FLUSH:
249 ret = 1;
250 break;
251 }
252 return ret;
253}
254
255static int ha_ssl_new(BIO *h)
256{
257 BIO_set_init(h, 1);
258 BIO_set_data(h, NULL);
259 BIO_clear_flags(h, ~0);
260 return 1;
261}
262
263static int ha_ssl_free(BIO *data)
264{
265
266 return 1;
267}
268
269
Willy Tarreau5db847a2019-05-09 14:13:35 +0200270#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100271
Emeric Brun821bb9b2017-06-15 16:37:39 +0200272static HA_RWLOCK_T *ssl_rwlocks;
273
274
275unsigned long ssl_id_function(void)
276{
277 return (unsigned long)tid;
278}
279
280void ssl_locking_function(int mode, int n, const char * file, int line)
281{
282 if (mode & CRYPTO_LOCK) {
283 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100284 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200285 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100286 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200287 }
288 else {
289 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100290 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200291 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100292 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200293 }
294}
295
296static int ssl_locking_init(void)
297{
298 int i;
299
300 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
301 if (!ssl_rwlocks)
302 return -1;
303
304 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100305 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200306
307 CRYPTO_set_id_callback(ssl_id_function);
308 CRYPTO_set_locking_callback(ssl_locking_function);
309
310 return 0;
311}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100312
Emeric Brun821bb9b2017-06-15 16:37:39 +0200313#endif
314
Willy Tarreauaf613e82020-06-05 08:40:51 +0200315__decl_thread(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200316
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100317
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200318
319/* mimic what X509_STORE_load_locations do with store_ctx */
320static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
321{
Remi Tricot-Le Bretond75b99e2021-05-17 11:45:55 +0200322 X509_STORE *store = NULL;
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +0100323 struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0);
324 if (ca_e)
325 store = ca_e->ca_store;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200326 if (store_ctx && store) {
327 int i;
328 X509_OBJECT *obj;
329 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
330 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
331 obj = sk_X509_OBJECT_value(objs, i);
332 switch (X509_OBJECT_get_type(obj)) {
333 case X509_LU_X509:
334 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
335 break;
336 case X509_LU_CRL:
337 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
338 break;
339 default:
340 break;
341 }
342 }
343 return 1;
344 }
345 return 0;
346}
347
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500348/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200349static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
350{
351 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
352 return ssl_set_cert_crl_file(store_ctx, path);
353}
354
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200355/*
356 Extract CA_list from CA_file already in tree.
357 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
358 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
359*/
360static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
361{
362 struct ebmb_node *eb;
363 struct cafile_entry *ca_e;
364
365 eb = ebst_lookup(&cafile_tree, path);
366 if (!eb)
367 return NULL;
368 ca_e = ebmb_entry(eb, struct cafile_entry, node);
369
370 if (ca_e->ca_list == NULL) {
371 int i;
372 unsigned long key;
373 struct eb_root ca_name_tree = EB_ROOT;
374 struct eb64_node *node, *back;
375 struct {
376 struct eb64_node node;
377 X509_NAME *xname;
378 } *ca_name;
379 STACK_OF(X509_OBJECT) *objs;
380 STACK_OF(X509_NAME) *skn;
381 X509 *x;
382 X509_NAME *xn;
383
384 skn = sk_X509_NAME_new_null();
385 /* take x509 from cafile_tree */
386 objs = X509_STORE_get0_objects(ca_e->ca_store);
387 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
388 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
389 if (!x)
390 continue;
391 xn = X509_get_subject_name(x);
392 if (!xn)
393 continue;
394 /* Check for duplicates. */
395 key = X509_NAME_hash(xn);
396 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
397 node && ca_name == NULL;
398 node = eb64_next(node)) {
399 ca_name = container_of(node, typeof(*ca_name), node);
400 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
401 ca_name = NULL;
402 }
403 /* find a duplicate */
404 if (ca_name)
405 continue;
406 ca_name = calloc(1, sizeof *ca_name);
407 xn = X509_NAME_dup(xn);
408 if (!ca_name ||
409 !xn ||
410 !sk_X509_NAME_push(skn, xn)) {
411 free(ca_name);
412 X509_NAME_free(xn);
413 sk_X509_NAME_pop_free(skn, X509_NAME_free);
414 sk_X509_NAME_free(skn);
415 skn = NULL;
416 break;
417 }
418 ca_name->node.key = key;
419 ca_name->xname = xn;
420 eb64_insert(&ca_name_tree, &ca_name->node);
421 }
422 ca_e->ca_list = skn;
423 /* remove temporary ca_name tree */
424 node = eb64_first(&ca_name_tree);
425 while (node) {
426 ca_name = container_of(node, typeof(*ca_name), node);
427 back = eb64_next(node);
428 eb64_delete(node);
429 free(ca_name);
430 node = back;
431 }
432 }
433 return ca_e->ca_list;
434}
435
Willy Tarreauff882702021-04-10 17:23:00 +0200436struct pool_head *pool_head_ssl_capture __read_mostly = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200437int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100438int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100439
William Lallemand722180a2021-06-09 16:46:12 +0200440#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200441int ssl_keylog_index = -1;
Willy Tarreauff882702021-04-10 17:23:00 +0200442struct pool_head *pool_head_ssl_keylog __read_mostly = NULL;
443struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL;
William Lallemand7d42ef52020-07-06 11:41:30 +0200444#endif
445
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200446#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
447struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
448#endif
449
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200450#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200451unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000452struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
453struct ssl_engine_list {
454 struct list list;
455 ENGINE *e;
456};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200457#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000458
Remi Gacogne8de54152014-07-15 11:36:40 +0200459#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200460static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200461static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200462static DH *local_dh_1024 = NULL;
463static DH *local_dh_2048 = NULL;
464static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100465static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200466#endif /* OPENSSL_NO_DH */
467
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100468#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200469/* X509V3 Extensions that will be added on generated certificates */
470#define X509V3_EXT_SIZE 5
471static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
472 "basicConstraints",
473 "nsComment",
474 "subjectKeyIdentifier",
475 "authorityKeyIdentifier",
476 "keyUsage",
477};
478static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
479 "CA:FALSE",
480 "\"OpenSSL Generated Certificate\"",
481 "hash",
482 "keyid,issuer:always",
483 "nonRepudiation,digitalSignature,keyEncipherment"
484};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200485/* LRU cache to store generated certificate */
486static struct lru64_head *ssl_ctx_lru_tree = NULL;
487static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200488static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100489__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200490
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200491#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
492
yanbzhube2774d2015-12-10 15:07:30 -0500493/* The order here matters for picking a default context,
494 * keep the most common keytype at the bottom of the list
495 */
496const char *SSL_SOCK_KEYTYPE_NAMES[] = {
497 "dsa",
498 "ecdsa",
499 "rsa"
500};
yanbzhube2774d2015-12-10 15:07:30 -0500501
William Lallemandc3cd35f2017-11-28 11:04:43 +0100502static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100503static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
504
Dragan Dosen9ac98092020-05-11 15:51:45 +0200505/* Dedicated callback functions for heartbeat and clienthello.
506 */
507#ifdef TLS1_RT_HEARTBEAT
508static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
509 int content_type, const void *buf, size_t len,
510 SSL *ssl);
511#endif
512static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
513 int content_type, const void *buf, size_t len,
514 SSL *ssl);
515
William Lallemand722180a2021-06-09 16:46:12 +0200516#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200517static void ssl_init_keylog(struct connection *conn, int write_p, int version,
518 int content_type, const void *buf, size_t len,
519 SSL *ssl);
520#endif
521
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200522/* List head of all registered SSL/TLS protocol message callbacks. */
523struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
524
525/* Registers the function <func> in order to be called on SSL/TLS protocol
526 * message processing. It will return 0 if the function <func> is not set
527 * or if it fails to allocate memory.
528 */
529int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
530{
531 struct ssl_sock_msg_callback *cbk;
532
533 if (!func)
534 return 0;
535
536 cbk = calloc(1, sizeof(*cbk));
537 if (!cbk) {
538 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
539 return 0;
540 }
541
542 cbk->func = func;
543
Willy Tarreau2b718102021-04-21 07:32:39 +0200544 LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200545
546 return 1;
547}
548
Dragan Dosen9ac98092020-05-11 15:51:45 +0200549/* Used to register dedicated SSL/TLS protocol message callbacks.
550 */
551static int ssl_sock_register_msg_callbacks(void)
552{
553#ifdef TLS1_RT_HEARTBEAT
554 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
555 return ERR_ABORT;
556#endif
557 if (global_ssl.capture_cipherlist > 0) {
558 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
559 return ERR_ABORT;
560 }
William Lallemand722180a2021-06-09 16:46:12 +0200561#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200562 if (global_ssl.keylog > 0) {
563 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
564 return ERR_ABORT;
565 }
566#endif
567
Christopher Fauletfc633b62020-11-06 15:24:23 +0100568 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200569}
570
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200571/* Used to free all SSL/TLS protocol message callbacks that were
572 * registered by using ssl_sock_register_msg_callback().
573 */
574static void ssl_sock_unregister_msg_callbacks(void)
575{
576 struct ssl_sock_msg_callback *cbk, *cbkback;
577
578 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200579 LIST_DELETE(&cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200580 free(cbk);
581 }
582}
583
Dragan Doseneb607fe2020-05-11 17:17:06 +0200584SSL *ssl_sock_get_ssl_object(struct connection *conn)
585{
586 if (!ssl_sock_is_ssl(conn))
587 return NULL;
588
589 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
590}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100591/*
592 * This function gives the detail of the SSL error. It is used only
593 * if the debug mode and the verbose mode are activated. It dump all
594 * the SSL error until the stack was empty.
595 */
596static forceinline void ssl_sock_dump_errors(struct connection *conn)
597{
598 unsigned long ret;
599
600 if (unlikely(global.mode & MODE_DEBUG)) {
601 while(1) {
602 ret = ERR_get_error();
603 if (ret == 0)
604 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100605 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
606 conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100607 ERR_func_error_string(ret), ERR_reason_error_string(ret));
608 }
609 }
610}
611
yanbzhube2774d2015-12-10 15:07:30 -0500612
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200613#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200614int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000615{
616 int err_code = ERR_ABORT;
617 ENGINE *engine;
618 struct ssl_engine_list *el;
619
620 /* grab the structural reference to the engine */
621 engine = ENGINE_by_id(engine_id);
622 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100623 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000624 goto fail_get;
625 }
626
627 if (!ENGINE_init(engine)) {
628 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100629 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000630 goto fail_init;
631 }
632
633 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100634 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000635 goto fail_set_method;
636 }
637
638 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200639 if (!el)
640 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000641 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200642 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100643 nb_engines++;
644 if (global_ssl.async)
645 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000646 return 0;
647
Remi Tricot-Le Breton612b2c32021-05-12 17:45:21 +0200648fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000649fail_set_method:
650 /* release the functional reference from ENGINE_init() */
651 ENGINE_finish(engine);
652
653fail_init:
654 /* release the structural reference from ENGINE_by_id() */
655 ENGINE_free(engine);
656
657fail_get:
658 return err_code;
659}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200660#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000661
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500662#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200663/*
664 * openssl async fd handler
665 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200666void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000667{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200668 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000669
Emeric Brun3854e012017-05-17 20:42:48 +0200670 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000671 * to poll this fd until it is requested
672 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000673 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000674 fd_cant_recv(fd);
675
676 /* crypto engine is available, let's notify the associated
677 * connection that it can pursue its processing.
678 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200679 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000680}
681
Emeric Brun3854e012017-05-17 20:42:48 +0200682/*
683 * openssl async delayed SSL_free handler
684 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200685void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000686{
687 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200688 OSSL_ASYNC_FD all_fd[32];
689 size_t num_all_fds = 0;
690 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000691
Emeric Brun3854e012017-05-17 20:42:48 +0200692 /* We suppose that the async job for a same SSL *
693 * are serialized. So if we are awake it is
694 * because the running job has just finished
695 * and we can remove all async fds safely
696 */
697 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
698 if (num_all_fds > 32) {
699 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
700 return;
701 }
702
703 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
704 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200705 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200706
707 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000708 SSL_free(ssl);
Willy Tarreau4781b152021-04-06 13:53:36 +0200709 _HA_ATOMIC_DEC(&sslconns);
710 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000711}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000712/*
Emeric Brun3854e012017-05-17 20:42:48 +0200713 * function used to manage a returned SSL_ERROR_WANT_ASYNC
714 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000715 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200716static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000717{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100718 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200719 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200720 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000721 size_t num_add_fds = 0;
722 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200723 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000724
725 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
726 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200727 if (num_add_fds > 32 || num_del_fds > 32) {
728 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000729 return;
730 }
731
Emeric Brun3854e012017-05-17 20:42:48 +0200732 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000733
Emeric Brun3854e012017-05-17 20:42:48 +0200734 /* We remove unused fds from the fdtab */
735 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200736 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000737
Emeric Brun3854e012017-05-17 20:42:48 +0200738 /* We add new fds to the fdtab */
739 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200740 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000741 }
742
Emeric Brun3854e012017-05-17 20:42:48 +0200743 num_add_fds = 0;
744 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
745 if (num_add_fds > 32) {
746 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
747 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000748 }
Emeric Brun3854e012017-05-17 20:42:48 +0200749
750 /* We activate the polling for all known async fds */
751 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000752 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200753 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000754 /* To ensure that the fd cache won't be used
755 * We'll prefer to catch a real RD event
756 * because handling an EAGAIN on this fd will
757 * result in a context switch and also
758 * some engines uses a fd in blocking mode.
759 */
760 fd_cant_recv(add_fd[i]);
761 }
Emeric Brun3854e012017-05-17 20:42:48 +0200762
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000763}
764#endif
765
William Lallemand104a7a62019-10-14 14:14:59 +0200766#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200767/*
768 * This function returns the number of seconds elapsed
769 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
770 * date presented un ASN1_GENERALIZEDTIME.
771 *
772 * In parsing error case, it returns -1.
773 */
774static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
775{
776 long epoch;
777 char *p, *end;
778 const unsigned short month_offset[12] = {
779 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
780 };
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +0200781 unsigned long year, month;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200782
783 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
784
785 p = (char *)d->data;
786 end = p + d->length;
787
788 if (end - p < 4) return -1;
789 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
790 p += 4;
791 if (end - p < 2) return -1;
792 month = 10 * (p[0] - '0') + p[1] - '0';
793 if (month < 1 || month > 12) return -1;
794 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
795 We consider leap years and the current month (<marsh or not) */
796 epoch = ( ((year - 1970) * 365)
797 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
798 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
799 + month_offset[month-1]
800 ) * 24 * 60 * 60;
801 p += 2;
802 if (end - p < 2) return -1;
803 /* Add the number of seconds of completed days of current month */
804 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
805 p += 2;
806 if (end - p < 2) return -1;
807 /* Add the completed hours of the current day */
808 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
809 p += 2;
810 if (end - p < 2) return -1;
811 /* Add the completed minutes of the current hour */
812 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
813 p += 2;
814 if (p == end) return -1;
815 /* Test if there is available seconds */
816 if (p[0] < '0' || p[0] > '9')
817 goto nosec;
818 if (end - p < 2) return -1;
819 /* Add the seconds of the current minute */
820 epoch += 10 * (p[0] - '0') + p[1] - '0';
821 p += 2;
822 if (p == end) return -1;
823 /* Ignore seconds float part if present */
824 if (p[0] == '.') {
825 do {
826 if (++p == end) return -1;
827 } while (p[0] >= '0' && p[0] <= '9');
828 }
829
830nosec:
831 if (p[0] == 'Z') {
832 if (end - p != 1) return -1;
833 return epoch;
834 }
835 else if (p[0] == '+') {
836 if (end - p != 5) return -1;
837 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700838 return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200839 }
840 else if (p[0] == '-') {
841 if (end - p != 5) return -1;
842 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700843 return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60;
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200844 }
845
846 return -1;
847}
848
William Lallemand104a7a62019-10-14 14:14:59 +0200849/*
850 * struct alignment works here such that the key.key is the same as key_data
851 * Do not change the placement of key_data
852 */
853struct certificate_ocsp {
854 struct ebmb_node key;
855 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +0200856 unsigned int key_length;
William Lallemand104a7a62019-10-14 14:14:59 +0200857 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200858 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200859 long expire;
860};
861
862struct ocsp_cbk_arg {
863 int is_single;
864 int single_kt;
865 union {
866 struct certificate_ocsp *s_ocsp;
867 /*
868 * m_ocsp will have multiple entries dependent on key type
869 * Entry 0 - DSA
870 * Entry 1 - ECDSA
871 * Entry 2 - RSA
872 */
873 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
874 };
875};
876
Emeric Brun1d3865b2014-06-20 15:37:32 +0200877static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200878
879/* This function starts to check if the OCSP response (in DER format) contained
880 * in chunk 'ocsp_response' is valid (else exits on error).
881 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
882 * contained in the OCSP Response and exits on error if no match.
883 * If it's a valid OCSP Response:
884 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
885 * pointed by 'ocsp'.
886 * If 'ocsp' is NULL, the function looks up into the OCSP response's
887 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
888 * from the response) and exits on error if not found. Finally, If an OCSP response is
889 * already present in the container, it will be overwritten.
890 *
891 * Note: OCSP response containing more than one OCSP Single response is not
892 * considered valid.
893 *
894 * Returns 0 on success, 1 in error case.
895 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200896static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
897 struct certificate_ocsp *ocsp,
898 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200899{
900 OCSP_RESPONSE *resp;
901 OCSP_BASICRESP *bs = NULL;
902 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200903 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200904 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200905 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200906 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200907 int reason;
908 int ret = 1;
909
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200910 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
911 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200912 if (!resp) {
913 memprintf(err, "Unable to parse OCSP response");
914 goto out;
915 }
916
917 rc = OCSP_response_status(resp);
918 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
919 memprintf(err, "OCSP response status not successful");
920 goto out;
921 }
922
923 bs = OCSP_response_get1_basic(resp);
924 if (!bs) {
925 memprintf(err, "Failed to get basic response from OCSP Response");
926 goto out;
927 }
928
929 count_sr = OCSP_resp_count(bs);
930 if (count_sr > 1) {
931 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
932 goto out;
933 }
934
935 sr = OCSP_resp_get0(bs, 0);
936 if (!sr) {
937 memprintf(err, "Failed to get OCSP single response");
938 goto out;
939 }
940
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200941 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
942
Emeric Brun4147b2e2014-06-16 18:36:30 +0200943 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200944 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200945 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200946 goto out;
947 }
948
Emeric Brun13a6b482014-06-20 15:44:34 +0200949 if (!nextupd) {
950 memprintf(err, "OCSP single response: missing nextupdate");
951 goto out;
952 }
953
Emeric Brunc8b27b62014-06-19 14:16:17 +0200954 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200955 if (!rc) {
956 memprintf(err, "OCSP single response: no longer valid.");
957 goto out;
958 }
959
960 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200961 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200962 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
963 goto out;
964 }
965 }
966
967 if (!ocsp) {
968 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
969 unsigned char *p;
970
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200971 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200972 if (!rc) {
973 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
974 goto out;
975 }
976
977 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
978 memprintf(err, "OCSP single response: Certificate ID too long");
979 goto out;
980 }
981
982 p = key;
983 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200984 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200985 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
986 if (!ocsp) {
987 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
988 goto out;
989 }
990 }
991
992 /* According to comments on "chunk_dup", the
993 previous chunk buffer will be freed */
994 if (!chunk_dup(&ocsp->response, ocsp_response)) {
995 memprintf(err, "OCSP response: Memory allocation error");
996 goto out;
997 }
998
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200999 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
Remi Tricot-Le Bretona3a0cce2021-06-09 17:16:18 +02001000 if (ocsp->expire < 0) {
1001 memprintf(err, "OCSP single response: Invalid \"Next Update\" time");
1002 goto out;
1003 }
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001004
Emeric Brun4147b2e2014-06-16 18:36:30 +02001005 ret = 0;
1006out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001007 ERR_clear_error();
1008
Emeric Brun4147b2e2014-06-16 18:36:30 +02001009 if (bs)
1010 OCSP_BASICRESP_free(bs);
1011
1012 if (resp)
1013 OCSP_RESPONSE_free(resp);
1014
1015 return ret;
1016}
1017/*
1018 * External function use to update the OCSP response in the OCSP response's
1019 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1020 * to update in DER format.
1021 *
1022 * Returns 0 on success, 1 in error case.
1023 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001024int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001025{
1026 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1027}
1028
William Lallemand4a660132019-10-14 14:51:41 +02001029#endif
1030
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001031#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1032static 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)
1033{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001034 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001035 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001036 struct connection *conn;
1037 int head;
1038 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001039 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001040
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001041 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001042 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001043 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1044
1045 keys = ref->tlskeys;
1046 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001047
1048 if (enc) {
1049 memcpy(key_name, keys[head].name, 16);
1050
1051 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001052 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001053
Emeric Brun9e754772019-01-10 17:51:55 +01001054 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001055
Emeric Brun9e754772019-01-10 17:51:55 +01001056 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1057 goto end;
1058
Willy Tarreau9356dac2019-05-10 09:22:53 +02001059 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001060 ret = 1;
1061 }
1062 else if (ref->key_size_bits == 256 ) {
1063
1064 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1065 goto end;
1066
Willy Tarreau9356dac2019-05-10 09:22:53 +02001067 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001068 ret = 1;
1069 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001070 } else {
1071 for (i = 0; i < TLS_TICKETS_NO; i++) {
1072 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1073 goto found;
1074 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001075 ret = 0;
1076 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001077
Christopher Faulet16f45c82018-02-16 11:23:49 +01001078 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001079 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001080 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 +01001081 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1082 goto end;
1083 /* 2 for key renewal, 1 if current key is still valid */
1084 ret = i ? 2 : 1;
1085 }
1086 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001087 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 +01001088 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1089 goto end;
1090 /* 2 for key renewal, 1 if current key is still valid */
1091 ret = i ? 2 : 1;
1092 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001093 }
Emeric Brun9e754772019-01-10 17:51:55 +01001094
Christopher Faulet16f45c82018-02-16 11:23:49 +01001095 end:
1096 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1097 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001098}
1099
1100struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1101{
1102 struct tls_keys_ref *ref;
1103
1104 list_for_each_entry(ref, &tlskeys_reference, list)
1105 if (ref->filename && strcmp(filename, ref->filename) == 0)
1106 return ref;
1107 return NULL;
1108}
1109
1110struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1111{
1112 struct tls_keys_ref *ref;
1113
1114 list_for_each_entry(ref, &tlskeys_reference, list)
1115 if (ref->unique_id == unique_id)
1116 return ref;
1117 return NULL;
1118}
1119
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001120/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001121 * match existing ones, this function returns -1
1122 * else it returns 0 on success.
1123 */
1124int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001125 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001126{
Emeric Brun9e754772019-01-10 17:51:55 +01001127 if (ref->key_size_bits == 128) {
1128 if (tlskey->data != sizeof(struct tls_sess_key_128))
1129 return -1;
1130 }
1131 else if (ref->key_size_bits == 256) {
1132 if (tlskey->data != sizeof(struct tls_sess_key_256))
1133 return -1;
1134 }
1135 else
1136 return -1;
1137
Christopher Faulet16f45c82018-02-16 11:23:49 +01001138 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001139 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1140 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001141 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1142 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001143
1144 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001145}
1146
Willy Tarreau83061a82018-07-13 11:56:34 +02001147int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001148{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001149 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1150
1151 if(!ref) {
1152 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1153 return 1;
1154 }
Emeric Brun9e754772019-01-10 17:51:55 +01001155 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1156 memprintf(err, "Invalid key size");
1157 return 1;
1158 }
1159
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001160 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001161}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001162
1163/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001164 * automatic ids. It's called just after the basic checks. It returns
1165 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001166 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001167static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001168{
1169 int i = 0;
1170 struct tls_keys_ref *ref, *ref2, *ref3;
1171 struct list tkr = LIST_HEAD_INIT(tkr);
1172
1173 list_for_each_entry(ref, &tlskeys_reference, list) {
1174 if (ref->unique_id == -1) {
1175 /* Look for the first free id. */
1176 while (1) {
1177 list_for_each_entry(ref2, &tlskeys_reference, list) {
1178 if (ref2->unique_id == i) {
1179 i++;
1180 break;
1181 }
1182 }
1183 if (&ref2->list == &tlskeys_reference)
1184 break;
1185 }
1186
1187 /* Uses the unique id and increment it for the next entry. */
1188 ref->unique_id = i;
1189 i++;
1190 }
1191 }
1192
1193 /* This sort the reference list by id. */
1194 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001195 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001196 list_for_each_entry(ref3, &tkr, list) {
1197 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001198 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001199 break;
1200 }
1201 }
1202 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001203 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001204 }
1205
1206 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001207 LIST_INSERT(&tkr, &tlskeys_reference);
1208 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001209 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001210}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001211#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1212
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001213#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001214int ocsp_ex_index = -1;
1215
yanbzhube2774d2015-12-10 15:07:30 -05001216int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1217{
1218 switch (evp_keytype) {
1219 case EVP_PKEY_RSA:
1220 return 2;
1221 case EVP_PKEY_DSA:
1222 return 0;
1223 case EVP_PKEY_EC:
1224 return 1;
1225 }
1226
1227 return -1;
1228}
1229
Emeric Brun4147b2e2014-06-16 18:36:30 +02001230/*
1231 * Callback used to set OCSP status extension content in server hello.
1232 */
1233int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1234{
yanbzhube2774d2015-12-10 15:07:30 -05001235 struct certificate_ocsp *ocsp;
1236 struct ocsp_cbk_arg *ocsp_arg;
1237 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001238 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001239 EVP_PKEY *ssl_pkey;
1240 int key_type;
1241 int index;
1242
William Lallemand76b4a122020-08-04 17:41:39 +02001243 ctx = SSL_get_SSL_CTX(ssl);
1244 if (!ctx)
1245 return SSL_TLSEXT_ERR_NOACK;
1246
1247 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1248 if (!ocsp_arg)
1249 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001250
1251 ssl_pkey = SSL_get_privatekey(ssl);
1252 if (!ssl_pkey)
1253 return SSL_TLSEXT_ERR_NOACK;
1254
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001255 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001256
1257 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1258 ocsp = ocsp_arg->s_ocsp;
1259 else {
1260 /* For multiple certs per context, we have to find the correct OCSP response based on
1261 * the certificate type
1262 */
1263 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1264
1265 if (index < 0)
1266 return SSL_TLSEXT_ERR_NOACK;
1267
1268 ocsp = ocsp_arg->m_ocsp[index];
1269
1270 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001271
1272 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001273 !ocsp->response.area ||
1274 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001275 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001276 return SSL_TLSEXT_ERR_NOACK;
1277
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001278 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001279 if (!ssl_buf)
1280 return SSL_TLSEXT_ERR_NOACK;
1281
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001282 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1283 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001284
1285 return SSL_TLSEXT_ERR_OK;
1286}
1287
William Lallemand4a660132019-10-14 14:51:41 +02001288#endif
1289
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001290#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001291
1292
1293/*
1294 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1295 * used anymore. Also removes it from the tree if free'd.
1296 */
1297static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1298{
1299 if (!ocsp)
1300 return;
1301
1302 ocsp->refcount--;
1303 if (ocsp->refcount <= 0) {
1304 ebmb_delete(&ocsp->key);
1305 chunk_destroy(&ocsp->response);
1306 free(ocsp);
1307 }
1308}
1309
1310
Emeric Brun4147b2e2014-06-16 18:36:30 +02001311/*
1312 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001313 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1314 * status extension, the issuer's certificate is mandatory. It should be
1315 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001316 *
William Lallemand246c0242019-10-11 08:59:13 +02001317 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1318 * OCSP response. If file is empty or content is not a valid OCSP response,
1319 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1320 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001321 *
1322 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001323 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001324 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001325static 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 +02001326{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001327 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001328 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001329 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001330 struct certificate_ocsp *ocsp = NULL, *iocsp;
1331 char *warn = NULL;
1332 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001333 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001334
Emeric Brun4147b2e2014-06-16 18:36:30 +02001335
William Lallemand246c0242019-10-11 08:59:13 +02001336 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001337 if (!x)
1338 goto out;
1339
William Lallemand246c0242019-10-11 08:59:13 +02001340 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001341 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1342 if (chain) {
1343 /* check if one of the certificate of the chain is the issuer */
1344 for (i = 0; i < sk_X509_num(chain); i++) {
1345 X509 *ti = sk_X509_value(chain, i);
1346 if (X509_check_issued(ti, x) == X509_V_OK) {
1347 issuer = ti;
1348 break;
1349 }
1350 }
1351 }
William Lallemand246c0242019-10-11 08:59:13 +02001352 if (!issuer)
1353 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001354
1355 cid = OCSP_cert_to_id(0, x, issuer);
1356 if (!cid)
1357 goto out;
1358
1359 i = i2d_OCSP_CERTID(cid, NULL);
1360 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1361 goto out;
1362
Vincent Bernat02779b62016-04-03 13:48:43 +02001363 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001364 if (!ocsp)
1365 goto out;
1366
1367 p = ocsp->key_data;
Remi Tricot-Le Breton5aa1dce2021-06-10 13:51:12 +02001368 ocsp->key_length = i2d_OCSP_CERTID(cid, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001369
1370 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1371 if (iocsp == ocsp)
1372 ocsp = NULL;
1373
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001374#ifndef SSL_CTX_get_tlsext_status_cb
1375# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1376 *cb = (void (*) (void))ctx->tlsext_status_cb;
1377#endif
1378 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1379
1380 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001381 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001382 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001383
William Lallemanda560c062020-07-31 11:43:20 +02001384 cb_arg = calloc(1, sizeof(*cb_arg));
1385 if (!cb_arg)
1386 goto out;
1387
yanbzhube2774d2015-12-10 15:07:30 -05001388 cb_arg->is_single = 1;
1389 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001390 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001391
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001392 pkey = X509_get_pubkey(x);
1393 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1394 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001395
1396 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001397 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 */
1398
yanbzhube2774d2015-12-10 15:07:30 -05001399 } else {
1400 /*
1401 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1402 * Update that cb_arg with the new cert's staple
1403 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001404 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001405 struct certificate_ocsp *tmp_ocsp;
1406 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001407 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001408 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001409
William Lallemand76b4a122020-08-04 17:41:39 +02001410 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001411
1412 /*
1413 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1414 * the order of operations below matter, take care when changing it
1415 */
1416 tmp_ocsp = cb_arg->s_ocsp;
1417 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1418 cb_arg->s_ocsp = NULL;
1419 cb_arg->m_ocsp[index] = tmp_ocsp;
1420 cb_arg->is_single = 0;
1421 cb_arg->single_kt = 0;
1422
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001423 pkey = X509_get_pubkey(x);
1424 key_type = EVP_PKEY_base_id(pkey);
1425 EVP_PKEY_free(pkey);
1426
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001427 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001428 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001429 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001430 iocsp->refcount++;
1431 }
yanbzhube2774d2015-12-10 15:07:30 -05001432 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001433
1434 ret = 0;
1435
1436 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001437 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001438 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001439 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001440 }
1441
1442out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001443 if (cid)
1444 OCSP_CERTID_free(cid);
1445
1446 if (ocsp)
1447 free(ocsp);
1448
1449 if (warn)
1450 free(warn);
1451
Emeric Brun4147b2e2014-06-16 18:36:30 +02001452 return ret;
1453}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001454#endif
1455
1456#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001457static 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 +02001458{
William Lallemand4a660132019-10-14 14:51:41 +02001459 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 +02001460}
1461#endif
1462
William Lallemand4a660132019-10-14 14:51:41 +02001463
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001464#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001465
1466#define CT_EXTENSION_TYPE 18
1467
William Lallemand03c331c2020-05-13 10:10:01 +02001468int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001469
1470int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1471{
Willy Tarreau83061a82018-07-13 11:56:34 +02001472 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001473
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001474 *out = (unsigned char *) sctl->area;
1475 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001476
1477 return 1;
1478}
1479
1480int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1481{
1482 return 1;
1483}
1484
William Lallemanda17f4112019-10-10 15:16:44 +02001485static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001486{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001487 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001488
William Lallemanda17f4112019-10-10 15:16:44 +02001489 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 +01001490 goto out;
1491
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001492 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1493
1494 ret = 0;
1495
1496out:
1497 return ret;
1498}
1499
1500#endif
1501
Emeric Brune1f38db2012-09-03 20:36:47 +02001502void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1503{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001504 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001505 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001506 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001507 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001508
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001509#ifndef SSL_OP_NO_RENEGOTIATION
1510 /* Please note that BoringSSL defines this macro to zero so don't
1511 * change this to #if and do not assign a default value to this macro!
1512 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001513 if (where & SSL_CB_HANDSHAKE_START) {
1514 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001515 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 +02001516 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001517 conn->err_code = CO_ER_SSL_RENEG;
1518 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001519 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001520#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001521
1522 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001523 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001524 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001525 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001526 consider that the buffering was activated,
1527 so we rise the output buffer size from 4k
1528 to 16k */
1529 write_bio = SSL_get_wbio(ssl);
1530 if (write_bio != SSL_get_rbio(ssl)) {
1531 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001532 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001533 }
1534 }
1535 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001536}
1537
Emeric Brune64aef12012-09-21 13:15:06 +02001538/* Callback is called for each certificate of the chain during a verify
1539 ok is set to 1 if preverify detect no error on current certificate.
1540 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001541int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001542{
1543 SSL *ssl;
1544 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001545 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001546 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001547
1548 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001549 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001550
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001551 ctx = conn->xprt_ctx;
1552
1553 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001554
Emeric Brun81c00f02012-09-21 14:31:21 +02001555 if (ok) /* no errors */
1556 return ok;
1557
1558 depth = X509_STORE_CTX_get_error_depth(x_store);
1559 err = X509_STORE_CTX_get_error(x_store);
1560
1561 /* check if CA error needs to be ignored */
1562 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001563 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1564 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1565 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001566 }
1567
Willy Tarreau731248f2020-02-04 14:02:02 +01001568 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001569 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001570 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001571 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001572 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001573
Willy Tarreau20879a02012-12-03 16:32:10 +01001574 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001575 return 0;
1576 }
1577
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001578 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1579 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001580
Emeric Brun81c00f02012-09-21 14:31:21 +02001581 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001582 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001583 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001584 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001585 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001586 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001587
Willy Tarreau20879a02012-12-03 16:32:10 +01001588 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001589 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001590}
1591
Dragan Dosen9ac98092020-05-11 15:51:45 +02001592#ifdef TLS1_RT_HEARTBEAT
1593static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1594 int content_type, const void *buf, size_t len,
1595 SSL *ssl)
1596{
1597 /* test heartbeat received (write_p is set to 0
1598 for a received record) */
1599 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1600 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1601 const unsigned char *p = buf;
1602 unsigned int payload;
1603
1604 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1605
1606 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1607 if (*p != TLS1_HB_REQUEST)
1608 return;
1609
1610 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1611 goto kill_it;
1612
1613 payload = (p[1] * 256) + p[2];
1614 if (3 + payload + 16 <= len)
1615 return; /* OK no problem */
1616 kill_it:
1617 /* We have a clear heartbleed attack (CVE-2014-0160), the
1618 * advertised payload is larger than the advertised packet
1619 * length, so we have garbage in the buffer between the
1620 * payload and the end of the buffer (p+len). We can't know
1621 * if the SSL stack is patched, and we don't know if we can
1622 * safely wipe out the area between p+3+len and payload.
1623 * So instead, we prevent the response from being sent by
1624 * setting the max_send_fragment to 0 and we report an SSL
1625 * error, which will kill this connection. It will be reported
1626 * above as SSL_ERROR_SSL while an other handshake failure with
1627 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1628 */
1629 ssl->max_send_fragment = 0;
1630 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1631 }
1632}
1633#endif
1634
1635static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1636 int content_type, const void *buf, size_t len,
1637 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001638{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001639 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001640 unsigned char *msg;
1641 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001642 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001643
1644 /* This function is called for "from client" and "to server"
1645 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001646 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001647 */
1648
1649 /* "write_p" is set to 0 is the bytes are received messages,
1650 * otherwise it is set to 1.
1651 */
1652 if (write_p != 0)
1653 return;
1654
1655 /* content_type contains the type of message received or sent
1656 * according with the SSL/TLS protocol spec. This message is
1657 * encoded with one byte. The value 256 (two bytes) is used
1658 * for designing the SSL/TLS record layer. According with the
1659 * rfc6101, the expected message (other than 256) are:
1660 * - change_cipher_spec(20)
1661 * - alert(21)
1662 * - handshake(22)
1663 * - application_data(23)
1664 * - (255)
1665 * We are interessed by the handshake and specially the client
1666 * hello.
1667 */
1668 if (content_type != 22)
1669 return;
1670
1671 /* The message length is at least 4 bytes, containing the
1672 * message type and the message length.
1673 */
1674 if (len < 4)
1675 return;
1676
1677 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001678 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001679 * - hello_request(0)
1680 * - client_hello(1)
1681 * - server_hello(2)
1682 * - certificate(11)
1683 * - server_key_exchange (12)
1684 * - certificate_request(13)
1685 * - server_hello_done(14)
1686 * We are interested by the client hello.
1687 */
1688 msg = (unsigned char *)buf;
1689 if (msg[0] != 1)
1690 return;
1691
1692 /* Next three bytes are the length of the message. The total length
1693 * must be this decoded length + 4. If the length given as argument
1694 * is not the same, we abort the protocol dissector.
1695 */
1696 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1697 if (len < rec_len + 4)
1698 return;
1699 msg += 4;
1700 end = msg + rec_len;
1701 if (end < msg)
1702 return;
1703
1704 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1705 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001706 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1707 */
1708 msg += 1 + 1 + 4 + 28;
1709 if (msg > end)
1710 return;
1711
1712 /* Next, is session id:
1713 * if present, we have to jump by length + 1 for the size information
1714 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001715 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001716 if (msg[0] > 0)
1717 msg += msg[0];
1718 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001719 if (msg > end)
1720 return;
1721
1722 /* Next two bytes are the ciphersuite length. */
1723 if (msg + 2 > end)
1724 return;
1725 rec_len = (msg[0] << 8) + msg[1];
1726 msg += 2;
1727 if (msg + rec_len > end || msg + rec_len < msg)
1728 return;
1729
Willy Tarreaub454e902021-03-22 15:09:41 +01001730 capture = pool_alloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001731 if (!capture)
1732 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001733 /* Compute the xxh64 of the ciphersuite. */
1734 capture->xxh64 = XXH64(msg, rec_len, 0);
1735
1736 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001737 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1738 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001739 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001740
1741 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001742}
William Lallemand7d42ef52020-07-06 11:41:30 +02001743
1744
William Lallemand722180a2021-06-09 16:46:12 +02001745#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001746static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1747 int content_type, const void *buf, size_t len,
1748 SSL *ssl)
1749{
1750 struct ssl_keylog *keylog;
1751
1752 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1753 return;
1754
Willy Tarreauf208ac02021-03-22 21:10:12 +01001755 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001756 if (!keylog)
1757 return;
1758
William Lallemand7d42ef52020-07-06 11:41:30 +02001759 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1760 pool_free(pool_head_ssl_keylog, keylog);
1761 return;
1762 }
1763}
1764#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001765
Emeric Brun29f037d2014-04-25 19:05:36 +02001766/* Callback is called for ssl protocol analyse */
1767void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1768{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001769 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1770 struct ssl_sock_msg_callback *cbk;
1771
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001772 /* Try to call all callback functions that were registered by using
1773 * ssl_sock_register_msg_callback().
1774 */
1775 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1776 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1777 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001778}
1779
Bernard Spil13c53f82018-02-15 13:34:58 +01001780#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001781static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1782 const unsigned char *in, unsigned int inlen,
1783 void *arg)
1784{
1785 struct server *srv = arg;
1786
1787 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1788 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1789 return SSL_TLSEXT_ERR_OK;
1790 return SSL_TLSEXT_ERR_NOACK;
1791}
1792#endif
1793
1794#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001795/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001796 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001797 */
1798static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1799 unsigned int *len, void *arg)
1800{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001801 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001802
1803 *data = (const unsigned char *)conf->npn_str;
1804 *len = conf->npn_len;
1805 return SSL_TLSEXT_ERR_OK;
1806}
1807#endif
1808
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001809#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001810/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001811 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001812 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001813static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1814 unsigned char *outlen,
1815 const unsigned char *server,
1816 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001817{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001818 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001819
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001820 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1821 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1822 return SSL_TLSEXT_ERR_NOACK;
1823 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001824 return SSL_TLSEXT_ERR_OK;
1825}
1826#endif
1827
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001828#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001829#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001830
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001831/* Configure a DNS SAN extenion on a certificate. */
1832int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
1833 int failure = 0;
1834 X509_EXTENSION *san_ext = NULL;
1835 CONF *conf = NULL;
1836 struct buffer *san_name = get_trash_chunk();
1837
1838 conf = NCONF_new(NULL);
1839 if (!conf) {
1840 failure = 1;
1841 goto cleanup;
1842 }
1843
1844 /* Build an extension based on the DNS entry above */
1845 chunk_appendf(san_name, "DNS:%s", servername);
1846 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
1847 if (!san_ext) {
1848 failure = 1;
1849 goto cleanup;
1850 }
1851
1852 /* Add the extension */
1853 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
1854 failure = 1;
1855 goto cleanup;
1856 }
1857
1858 /* Success */
1859 failure = 0;
1860
1861cleanup:
1862 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
1863 if (NULL != conf) NCONF_free(conf);
1864
1865 return failure;
1866}
1867
Christopher Faulet30548802015-06-11 13:39:32 +02001868/* Create a X509 certificate with the specified servername and serial. This
1869 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001870static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001871ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001872{
Shimi Gersner5846c492020-08-23 13:58:12 +03001873 X509 *cacert = bind_conf->ca_sign_ckch->cert;
1874 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001875 SSL_CTX *ssl_ctx = NULL;
1876 X509 *newcrt = NULL;
1877 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001878 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001879 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001880 X509_NAME *name;
1881 const EVP_MD *digest;
1882 X509V3_CTX ctx;
1883 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001884 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001885
Christopher Faulet48a83322017-07-28 16:56:09 +02001886 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05001887#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001888 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1889#else
1890 tmp_ssl = SSL_new(bind_conf->default_ctx);
1891 if (tmp_ssl)
1892 pkey = SSL_get_privatekey(tmp_ssl);
1893#endif
1894 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001895 goto mkcert_error;
1896
1897 /* Create the certificate */
1898 if (!(newcrt = X509_new()))
1899 goto mkcert_error;
1900
1901 /* Set version number for the certificate (X509v3) and the serial
1902 * number */
1903 if (X509_set_version(newcrt, 2L) != 1)
1904 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02001905 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001906
1907 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001908 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1909 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001910 goto mkcert_error;
1911
1912 /* set public key in the certificate */
1913 if (X509_set_pubkey(newcrt, pkey) != 1)
1914 goto mkcert_error;
1915
1916 /* Set issuer name from the CA */
1917 if (!(name = X509_get_subject_name(cacert)))
1918 goto mkcert_error;
1919 if (X509_set_issuer_name(newcrt, name) != 1)
1920 goto mkcert_error;
1921
1922 /* Set the subject name using the same, but the CN */
1923 name = X509_NAME_dup(name);
1924 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1925 (const unsigned char *)servername,
1926 -1, -1, 0) != 1) {
1927 X509_NAME_free(name);
1928 goto mkcert_error;
1929 }
1930 if (X509_set_subject_name(newcrt, name) != 1) {
1931 X509_NAME_free(name);
1932 goto mkcert_error;
1933 }
1934 X509_NAME_free(name);
1935
1936 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001937 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001938 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1939 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1940 X509_EXTENSION *ext;
1941
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001942 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001943 goto mkcert_error;
1944 if (!X509_add_ext(newcrt, ext, -1)) {
1945 X509_EXTENSION_free(ext);
1946 goto mkcert_error;
1947 }
1948 X509_EXTENSION_free(ext);
1949 }
1950
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001951 /* Add SAN extension */
1952 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
1953 goto mkcert_error;
1954 }
1955
Christopher Faulet31af49d2015-06-09 17:29:50 +02001956 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001957
1958 key_type = EVP_PKEY_base_id(capkey);
1959
1960 if (key_type == EVP_PKEY_DSA)
1961 digest = EVP_sha1();
1962 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001963 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001964 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02001965 digest = EVP_sha256();
1966 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05001967#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02001968 int nid;
1969
1970 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
1971 goto mkcert_error;
1972 if (!(digest = EVP_get_digestbynid(nid)))
1973 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02001974#else
1975 goto mkcert_error;
1976#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02001977 }
1978
Christopher Faulet31af49d2015-06-09 17:29:50 +02001979 if (!(X509_sign(newcrt, capkey, digest)))
1980 goto mkcert_error;
1981
1982 /* Create and set the new SSL_CTX */
1983 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
1984 goto mkcert_error;
1985 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
1986 goto mkcert_error;
1987 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
1988 goto mkcert_error;
1989 if (!SSL_CTX_check_private_key(ssl_ctx))
1990 goto mkcert_error;
1991
Shimi Gersner5846c492020-08-23 13:58:12 +03001992 /* Build chaining the CA cert and the rest of the chain, keep these order */
1993#if defined(SSL_CTX_add1_chain_cert)
1994 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
1995 goto mkcert_error;
1996 }
1997
1998 if (bind_conf->ca_sign_ckch->chain) {
1999 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2000 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2001 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2002 goto mkcert_error;
2003 }
2004 }
2005 }
2006#endif
2007
Christopher Faulet31af49d2015-06-09 17:29:50 +02002008 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002009
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002010#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002011 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002012#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002013#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2014 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002015 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002016 EC_KEY *ecc;
2017 int nid;
2018
2019 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2020 goto end;
2021 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2022 goto end;
2023 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2024 EC_KEY_free(ecc);
2025 }
2026#endif
2027 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002028 return ssl_ctx;
2029
2030 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002031 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002032 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002033 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2034 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002035 return NULL;
2036}
2037
Christopher Faulet7969a332015-10-09 11:15:03 +02002038SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002039ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02002040{
Willy Tarreau07d94e42018-09-20 10:57:52 +02002041 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01002042 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002043
Olivier Houchard66ab4982019-02-26 18:37:15 +01002044 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02002045}
2046
Christopher Faulet30548802015-06-11 13:39:32 +02002047/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002048 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002049SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002050ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002051{
2052 struct lru64 *lru = NULL;
2053
2054 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002055 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002056 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002057 if (lru && lru->domain) {
2058 if (ssl)
2059 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002060 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002061 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002062 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002063 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002064 }
2065 return NULL;
2066}
2067
Emeric Brun821bb9b2017-06-15 16:37:39 +02002068/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2069 * function is not thread-safe, it should only be used to check if a certificate
2070 * exists in the lru cache (with no warranty it will not be removed by another
2071 * thread). It is kept for backward compatibility. */
2072SSL_CTX *
2073ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2074{
2075 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2076}
2077
Christopher Fauletd2cab922015-07-28 16:03:47 +02002078/* Set a certificate int the LRU cache used to store generated
2079 * certificate. Return 0 on success, otherwise -1 */
2080int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002081ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002082{
2083 struct lru64 *lru = NULL;
2084
2085 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002086 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002087 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002088 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002089 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002090 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002091 }
Christopher Faulet30548802015-06-11 13:39:32 +02002092 if (lru->domain && lru->data)
2093 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002094 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002095 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002096 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002097 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002098 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002099}
2100
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002101/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002102unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002103ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002104{
2105 return XXH32(data, len, ssl_ctx_lru_seed);
2106}
2107
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002108/* Generate a cert and immediately assign it to the SSL session so that the cert's
2109 * refcount is maintained regardless of the cert's presence in the LRU cache.
2110 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002111static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002112ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002113{
Shimi Gersner5846c492020-08-23 13:58:12 +03002114 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002115 SSL_CTX *ssl_ctx = NULL;
2116 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002117 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002118
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002119 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002120 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002121 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002122 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002123 if (lru && lru->domain)
2124 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002125 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002126 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002127 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002128 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002129 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002130 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002131 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002132 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002133 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002134 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002135 SSL_set_SSL_CTX(ssl, ssl_ctx);
2136 /* No LRU cache, this CTX will be released as soon as the session dies */
2137 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002138 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002139 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002140 return 0;
2141}
2142static int
2143ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2144{
2145 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002146 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002147
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002148 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002149 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002150 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002151 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002152 }
2153 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002154}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002155#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002156
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002157#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002158
2159static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002160{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002161#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002162 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002163 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2164#endif
2165}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002166static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2167 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002168 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2169}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002170static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002171#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002172 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002173 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2174#endif
2175}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002176static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002177#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002178 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002179 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2180#endif
2181}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002182/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002183static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2184/* Unusable in this context. */
2185static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2186static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2187static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2188static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2189static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002190#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002191
2192static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2193 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002194 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2195}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002196static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2197 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2198 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2199}
2200static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2201 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002202 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2203}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002204static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2205 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2206 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2207}
2208static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2209 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002210 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2211}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002212static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2213 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2214 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2215}
2216static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2217 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002218 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2219}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002220static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2221 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2222 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2223}
2224static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002225#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002226 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002227 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2228#endif
2229}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002230static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
William Lallemandf22b0322021-06-02 16:09:11 +02002231#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002232 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2233 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002234#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002235}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002236#endif
2237static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2238static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002239
William Lallemand7fd8b452020-05-07 15:20:43 +02002240struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002241 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2242 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2243 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2244 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2245 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2246 {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 +02002247};
2248
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002249static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2250{
2251 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2252 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2253 SSL_set_SSL_CTX(ssl, ctx);
2254}
2255
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002256#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002257
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002258int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002259{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002260 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002261 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002262
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002263 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2264 return SSL_TLSEXT_ERR_OK;
2265 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002266}
2267
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002268#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002269int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002270{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002271 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002272#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002273int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002274{
2275#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002276 struct connection *conn;
2277 struct bind_conf *s;
2278 const uint8_t *extension_data;
2279 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002280 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002281
2282 char *wildp = NULL;
2283 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002284 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002285 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002286 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002287 int i;
2288
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002289 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002290 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002291
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002292#ifdef USE_QUIC
2293 if (conn->qc) {
2294 /* Look for the QUIC transport parameters. */
2295#ifdef OPENSSL_IS_BORINGSSL
2296 if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2297 &extension_data, &extension_len))
2298#else
2299 if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2300 &extension_data, &extension_len))
2301#endif
2302 goto abort;
2303
2304 if (!quic_transport_params_store(conn->qc, 0, extension_data,
2305 extension_data + extension_len))
2306 goto abort;
2307 }
2308#endif
2309
Olivier Houchard9679ac92017-10-27 14:58:08 +02002310 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002311 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002312#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002313 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2314 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002315#else
2316 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2317#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002318 /*
2319 * The server_name extension was given too much extensibility when it
2320 * was written, so parsing the normal case is a bit complex.
2321 */
2322 size_t len;
2323 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002324 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002325 /* Extract the length of the supplied list of names. */
2326 len = (*extension_data++) << 8;
2327 len |= *extension_data++;
2328 if (len + 2 != extension_len)
2329 goto abort;
2330 /*
2331 * The list in practice only has a single element, so we only consider
2332 * the first one.
2333 */
2334 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2335 goto abort;
2336 extension_len = len - 1;
2337 /* Now we can finally pull out the byte array with the actual hostname. */
2338 if (extension_len <= 2)
2339 goto abort;
2340 len = (*extension_data++) << 8;
2341 len |= *extension_data++;
2342 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2343 || memchr(extension_data, 0, len) != NULL)
2344 goto abort;
2345 servername = extension_data;
2346 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002347 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002348#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2349 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002350 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002351 }
2352#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002353 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002354 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002355 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002356 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002357 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002358 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002359 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002360 goto abort;
2361 }
2362
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002363 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002364#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002365 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002366#else
2367 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2368#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002369 uint8_t sign;
2370 size_t len;
2371 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002372 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002373 len = (*extension_data++) << 8;
2374 len |= *extension_data++;
2375 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002376 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002377 if (len % 2 != 0)
2378 goto abort;
2379 for (; len > 0; len -= 2) {
2380 extension_data++; /* hash */
2381 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002382 switch (sign) {
2383 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002384 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002385 break;
2386 case TLSEXT_signature_ecdsa:
2387 has_ecdsa_sig = 1;
2388 break;
2389 default:
2390 continue;
2391 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002392 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002393 break;
2394 }
2395 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002396 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002397 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002398 }
2399 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002400 const SSL_CIPHER *cipher;
2401 size_t len;
2402 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002403 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002404#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002405 len = ctx->cipher_suites_len;
2406 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002407#else
2408 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2409#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002410 if (len % 2 != 0)
2411 goto abort;
2412 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002413#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002414 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002415 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002416#else
2417 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2418#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002419 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002420 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002421 break;
2422 }
2423 }
2424 }
2425
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002426 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002427 trash.area[i] = tolower(servername[i]);
2428 if (!wildp && (trash.area[i] == '.'))
2429 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002430 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002431 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002432
William Lallemand150bfa82019-09-19 17:12:49 +02002433 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002434
William Lallemand94bd3192020-08-14 14:43:35 +02002435 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2436 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002437 for (i = 0; i < 2; i++) {
2438 if (i == 0) /* lookup in full qualified names */
2439 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002440 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002441 node = ebst_lookup(&s->sni_w_ctx, wildp);
2442 else
2443 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002444
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002445 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002446
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002447 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002448 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002449 struct sni_ctx *sni, *sni_tmp;
2450 int skip = 0;
2451
2452 if (i == 1 && wildp) { /* wildcard */
2453 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2454 sni = container_of(n, struct sni_ctx, name);
2455 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002456 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002457 skip = 1;
2458 break;
2459 }
2460 }
2461 if (skip)
2462 continue;
2463 }
2464
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002465 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002466 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002467 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002468 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002469 break;
2470 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002471 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002472 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002473 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002474 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002475 if (!node_anonymous)
2476 node_anonymous = n;
2477 break;
2478 }
2479 }
2480 }
William Lallemand94bd3192020-08-14 14:43:35 +02002481 }
2482 /* Once the certificates are found, select them depending on what is
2483 * supported in the client and by key_signature priority order: EDSA >
2484 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002485 if (has_ecdsa_sig && node_ecdsa)
2486 node = node_ecdsa;
2487 else if (has_rsa_sig && node_rsa)
2488 node = node_rsa;
2489 else if (node_anonymous)
2490 node = node_anonymous;
2491 else if (node_ecdsa)
2492 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2493 else
2494 node = node_rsa; /* no rsa signature case (far far away) */
2495
William Lallemand94bd3192020-08-14 14:43:35 +02002496 if (node) {
2497 /* switch ctx */
2498 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2499 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2500 if (conf) {
2501 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2502 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2503 if (conf->early_data)
2504 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002505 }
William Lallemand94bd3192020-08-14 14:43:35 +02002506 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2507 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002508 }
William Lallemand150bfa82019-09-19 17:12:49 +02002509
William Lallemand02010472019-10-18 11:02:19 +02002510 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002511#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002512 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002513 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002514 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002515 }
2516#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002517 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002518 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002519 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002520 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002521 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002522 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002523allow_early:
2524#ifdef OPENSSL_IS_BORINGSSL
2525 if (allow_early)
2526 SSL_set_early_data_enabled(ssl, 1);
2527#else
2528 if (!allow_early)
2529 SSL_set_max_early_data(ssl, 0);
2530#endif
2531 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002532 abort:
2533 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2534 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002535#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002536 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002537#else
2538 *al = SSL_AD_UNRECOGNIZED_NAME;
2539 return 0;
2540#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002541}
2542
2543#else /* OPENSSL_IS_BORINGSSL */
2544
Emeric Brunfc0421f2012-09-07 17:30:07 +02002545/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2546 * warning when no match is found, which implies the default (first) cert
2547 * will keep being used.
2548 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002549static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002550{
2551 const char *servername;
2552 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002553 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002554 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002555 int i;
2556 (void)al; /* shut gcc stupid warning */
2557
2558 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002559 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002560#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002561 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2562 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002563#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002564 if (s->strict_sni)
2565 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002566 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002567 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002568 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002569 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002570 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002571
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002572 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002573 if (!servername[i])
2574 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002575 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002576 if (!wildp && (trash.area[i] == '.'))
2577 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002578 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002579 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002580
William Lallemand150bfa82019-09-19 17:12:49 +02002581 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002582 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002583 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002584 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2585 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002586 if (!container_of(n, struct sni_ctx, name)->neg) {
2587 node = n;
2588 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002589 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002590 }
2591 if (!node && wildp) {
2592 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002593 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2594 /* lookup a not neg filter */
2595 if (!container_of(n, struct sni_ctx, name)->neg) {
2596 node = n;
2597 break;
2598 }
2599 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002600 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002601 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002602#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002603 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2604 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002605 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002606 return SSL_TLSEXT_ERR_OK;
2607 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002608#endif
William Lallemand21724f02019-11-04 17:56:13 +01002609 if (s->strict_sni) {
2610 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002611 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002612 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002613 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002614 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002615 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002616 }
2617
2618 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002619 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002620 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002621 return SSL_TLSEXT_ERR_OK;
2622}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002623#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002624#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2625
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002626#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002627
2628static DH * ssl_get_dh_1024(void)
2629{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002630 static unsigned char dh1024_p[]={
2631 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2632 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2633 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2634 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2635 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2636 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2637 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2638 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2639 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2640 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2641 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2642 };
2643 static unsigned char dh1024_g[]={
2644 0x02,
2645 };
2646
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002647 BIGNUM *p;
2648 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002649 DH *dh = DH_new();
2650 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002651 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2652 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002653
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002654 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002655 DH_free(dh);
2656 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002657 } else {
2658 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002659 }
2660 }
2661 return dh;
2662}
2663
2664static DH *ssl_get_dh_2048(void)
2665{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002666 static unsigned char dh2048_p[]={
2667 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2668 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2669 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2670 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2671 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2672 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2673 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2674 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2675 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2676 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2677 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2678 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2679 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2680 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2681 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2682 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2683 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2684 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2685 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2686 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2687 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2688 0xB7,0x1F,0x77,0xF3,
2689 };
2690 static unsigned char dh2048_g[]={
2691 0x02,
2692 };
2693
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002694 BIGNUM *p;
2695 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002696 DH *dh = DH_new();
2697 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002698 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2699 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002700
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002701 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002702 DH_free(dh);
2703 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002704 } else {
2705 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002706 }
2707 }
2708 return dh;
2709}
2710
2711static DH *ssl_get_dh_4096(void)
2712{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002713 static unsigned char dh4096_p[]={
2714 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2715 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2716 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2717 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2718 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2719 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2720 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2721 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2722 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2723 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2724 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2725 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2726 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2727 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2728 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2729 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2730 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2731 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2732 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2733 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2734 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2735 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2736 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2737 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2738 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2739 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2740 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2741 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2742 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2743 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2744 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2745 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2746 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2747 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2748 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2749 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2750 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2751 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2752 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2753 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2754 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2755 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2756 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002757 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002758 static unsigned char dh4096_g[]={
2759 0x02,
2760 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002761
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002762 BIGNUM *p;
2763 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002764 DH *dh = DH_new();
2765 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002766 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2767 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002768
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002769 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002770 DH_free(dh);
2771 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002772 } else {
2773 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002774 }
2775 }
2776 return dh;
2777}
2778
2779/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002780 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002781static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2782{
2783 DH *dh = NULL;
2784 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002785 int type;
2786
2787 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002788
2789 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2790 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2791 */
2792 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2793 keylen = EVP_PKEY_bits(pkey);
2794 }
2795
Willy Tarreauef934602016-12-22 23:12:01 +01002796 if (keylen > global_ssl.default_dh_param) {
2797 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002798 }
2799
Remi Gacogned3a341a2015-05-29 16:26:17 +02002800 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002801 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002802 }
2803 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002804 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002805 }
2806 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002807 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002808 }
2809
2810 return dh;
2811}
2812
Remi Gacogne47783ef2015-05-29 15:53:22 +02002813static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002814{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002815 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002816 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002817
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002818 if (in == NULL)
2819 goto end;
2820
Remi Gacogne47783ef2015-05-29 15:53:22 +02002821 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002822 goto end;
2823
Remi Gacogne47783ef2015-05-29 15:53:22 +02002824 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2825
2826end:
2827 if (in)
2828 BIO_free(in);
2829
Emeric Brune1b4ed42018-08-16 15:14:12 +02002830 ERR_clear_error();
2831
Remi Gacogne47783ef2015-05-29 15:53:22 +02002832 return dh;
2833}
2834
2835int ssl_sock_load_global_dh_param_from_file(const char *filename)
2836{
2837 global_dh = ssl_sock_get_dh_from_file(filename);
2838
2839 if (global_dh) {
2840 return 0;
2841 }
2842
2843 return -1;
2844}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002845#endif
2846
William Lallemand9117de92019-10-04 00:29:42 +02002847/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02002848static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02002849 struct bind_conf *s, struct ssl_bind_conf *conf,
2850 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002851{
2852 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002853 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002854
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002855 if (*name == '!') {
2856 neg = 1;
2857 name++;
2858 }
2859 if (*name == '*') {
2860 wild = 1;
2861 name++;
2862 }
2863 /* !* filter is a nop */
2864 if (neg && wild)
2865 return order;
2866 if (*name) {
2867 int j, len;
2868 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002869 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02002870 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002871 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02002872 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002873 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002874
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002875 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002876 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02002877 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002878 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02002879 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002880 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002881 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002882 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002883 sc->order = order++;
2884 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02002885 sc->wild = wild;
2886 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01002887 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02002888 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002889 }
2890 return order;
2891}
2892
William Lallemand6af03992019-07-23 15:00:54 +02002893/*
William Lallemand1d29c742019-10-04 00:53:29 +02002894 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
2895 * This function can't return an error.
2896 *
2897 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
2898 */
William Lallemandc756bbd2020-05-13 17:23:59 +02002899void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02002900{
2901
2902 struct sni_ctx *sc0, *sc0b, *sc1;
2903 struct ebmb_node *node;
2904
2905 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
2906
2907 /* ignore if sc0 was already inserted in a tree */
2908 if (sc0->name.node.leaf_p)
2909 continue;
2910
2911 /* Check for duplicates. */
2912 if (sc0->wild)
2913 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
2914 else
2915 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
2916
2917 for (; node; node = ebmb_next_dup(node)) {
2918 sc1 = ebmb_entry(node, struct sni_ctx, name);
2919 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
2920 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
2921 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02002922 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02002923 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002924 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02002925 break;
William Lallemand1d29c742019-10-04 00:53:29 +02002926 }
2927 }
2928
2929 /* if duplicate, ignore the insertion */
2930 if (!sc0)
2931 continue;
2932
2933 if (sc0->wild)
2934 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
2935 else
2936 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002937 }
William Lallemand21724f02019-11-04 17:56:13 +01002938
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002939 /* replace the default_ctx if required with the instance's ctx. */
2940 if (ckch_inst->is_default) {
2941 SSL_CTX_free(bind_conf->default_ctx);
2942 SSL_CTX_up_ref(ckch_inst->ctx);
2943 bind_conf->default_ctx = ckch_inst->ctx;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02002944 bind_conf->default_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02002945 }
2946}
2947
2948/*
William Lallemande3af8fb2019-10-08 11:36:53 +02002949 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02002950 */
William Lallemande3af8fb2019-10-08 11:36:53 +02002951struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02002952
William Lallemand2954c472020-03-06 21:54:13 +01002953/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02002954struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02002955
Emeric Brun7a883362019-10-17 13:27:40 +02002956/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002957 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02002958 * DH parameter is loaded into the SSL_CTX and if there is no
2959 * DH parameter available in ckchs nor in global, the default
2960 * DH parameters are applied on the SSL_CTX.
2961 * Returns a bitfield containing the flags:
2962 * ERR_FATAL in any fatal error case
2963 * ERR_ALERT if a reason of the error is availabine in err
2964 * ERR_WARN if a warning is available into err
2965 * The value 0 means there is no error nor warning and
2966 * the operation succeed.
2967 */
William Lallemandfa892222019-07-23 16:06:08 +02002968#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02002969static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
2970 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02002971{
Emeric Brun7a883362019-10-17 13:27:40 +02002972 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02002973 DH *dh = NULL;
2974
William Lallemanda8c73742019-07-31 18:31:34 +02002975 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02002976 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02002977 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
2978 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
2979 err && *err ? *err : "", path);
2980#if defined(SSL_CTX_set_dh_auto)
2981 SSL_CTX_set_dh_auto(ctx, 1);
2982 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
2983 err && *err ? *err : "");
2984#else
2985 memprintf(err, "%s, DH ciphers won't be available.\n",
2986 err && *err ? *err : "");
2987#endif
2988 ret |= ERR_WARN;
2989 goto end;
2990 }
William Lallemandfa892222019-07-23 16:06:08 +02002991
2992 if (ssl_dh_ptr_index >= 0) {
2993 /* store a pointer to the DH params to avoid complaining about
2994 ssl-default-dh-param not being set for this SSL_CTX */
2995 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
2996 }
2997 }
2998 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02002999 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3000 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3001 err && *err ? *err : "", path);
3002#if defined(SSL_CTX_set_dh_auto)
3003 SSL_CTX_set_dh_auto(ctx, 1);
3004 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3005 err && *err ? *err : "");
3006#else
3007 memprintf(err, "%s, DH ciphers won't be available.\n",
3008 err && *err ? *err : "");
3009#endif
3010 ret |= ERR_WARN;
3011 goto end;
3012 }
William Lallemandfa892222019-07-23 16:06:08 +02003013 }
3014 else {
3015 /* Clear openssl global errors stack */
3016 ERR_clear_error();
3017
Willy Tarreau6d27a922020-11-05 19:38:05 +01003018 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003019 /* we are limited to DH parameter of 1024 bits anyway */
3020 if (local_dh_1024 == NULL)
3021 local_dh_1024 = ssl_get_dh_1024();
3022
Emeric Brun7a883362019-10-17 13:27:40 +02003023 if (local_dh_1024 == NULL) {
3024 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3025 err && *err ? *err : "", path);
3026 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003027 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003028 }
William Lallemandfa892222019-07-23 16:06:08 +02003029
Emeric Bruna9363eb2019-10-17 14:53:03 +02003030 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3031 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3032 err && *err ? *err : "", path);
3033#if defined(SSL_CTX_set_dh_auto)
3034 SSL_CTX_set_dh_auto(ctx, 1);
3035 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3036 err && *err ? *err : "");
3037#else
3038 memprintf(err, "%s, DH ciphers won't be available.\n",
3039 err && *err ? *err : "");
3040#endif
3041 ret |= ERR_WARN;
3042 goto end;
3043 }
William Lallemandfa892222019-07-23 16:06:08 +02003044 }
3045 else {
3046 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3047 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003048 }
3049
William Lallemandf9568fc2019-10-16 18:27:58 +02003050end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003051 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003052 return ret;
3053}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003054#endif
William Lallemandfa892222019-07-23 16:06:08 +02003055
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003056
3057/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003058 * Returns a bitfield containing the flags:
3059 * ERR_FATAL in any fatal error case
3060 * ERR_ALERT if the reason of the error is available in err
3061 * ERR_WARN if a warning is available into err
3062 * The value 0 means there is no error nor warning and
3063 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003064 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003065static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3066 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003067{
Emeric Bruna96b5822019-10-17 13:25:14 +02003068 int errcode = 0;
3069
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003070 if (find_chain == NULL) {
3071 errcode |= ERR_FATAL;
3072 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003073 }
3074
3075 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3076 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3077 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003078 errcode |= ERR_ALERT | ERR_FATAL;
3079 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003080 }
3081
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003082 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003083 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003084 } else {
3085 /* Find Certificate Chain in global */
3086 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003087 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003088 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003089 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003090 }
William Lallemand85888572020-02-27 14:48:35 +01003091
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003092 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003093 /* always put a null chain stack in the SSL_CTX so it does not
3094 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003095 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003096 }
3097
William Lallemandf187ce62020-06-02 18:27:20 +02003098 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003099#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003100 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003101 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3102 err && *err ? *err : "", path);
3103 errcode |= ERR_ALERT | ERR_FATAL;
3104 goto end;
3105 }
William Lallemandf187ce62020-06-02 18:27:20 +02003106#else
3107 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003108 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003109 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003110 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003111 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003112 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003113 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3114 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003115 X509_free(ca);
3116 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003117 errcode |= ERR_ALERT | ERR_FATAL;
3118 goto end;
3119 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003120 }
William Lallemandf187ce62020-06-02 18:27:20 +02003121#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003122
William Lallemand9a1d8392020-08-10 17:28:23 +02003123#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003124 /* remove the Root CA from the SSL_CTX if the option is activated */
3125 if (global_ssl.skip_self_issued_ca) {
3126 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3127 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3128 err && *err ? *err : "", path);
3129 errcode |= ERR_ALERT | ERR_FATAL;
3130 goto end;
3131 }
3132 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003133#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003134
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003135end:
3136 return errcode;
3137}
3138
3139
3140/* Loads the info in ckch into ctx
3141 * Returns a bitfield containing the flags:
3142 * ERR_FATAL in any fatal error case
3143 * ERR_ALERT if the reason of the error is available in err
3144 * ERR_WARN if a warning is available into err
3145 * The value 0 means there is no error nor warning and
3146 * the operation succeed.
3147 */
3148static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3149{
3150 int errcode = 0;
3151 STACK_OF(X509) *find_chain = NULL;
3152
3153 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3154 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3155 err && *err ? *err : "", path);
3156 errcode |= ERR_ALERT | ERR_FATAL;
3157 return errcode;
3158 }
3159
3160 /* Load certificate chain */
3161 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3162 if (errcode & ERR_CODE)
3163 goto end;
3164
William Lallemandfa892222019-07-23 16:06:08 +02003165#ifndef OPENSSL_NO_DH
3166 /* store a NULL pointer to indicate we have not yet loaded
3167 a custom DH param file */
3168 if (ssl_dh_ptr_index >= 0) {
3169 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3170 }
3171
Emeric Brun7a883362019-10-17 13:27:40 +02003172 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3173 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003174 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3175 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003176 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003177 }
3178#endif
3179
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003180#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003181 if (sctl_ex_index >= 0 && ckch->sctl) {
3182 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3183 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003184 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003185 errcode |= ERR_ALERT | ERR_FATAL;
3186 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003187 }
3188 }
3189#endif
3190
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003191#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003192 /* Load OCSP Info into context */
3193 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003194 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003195 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",
3196 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003197 errcode |= ERR_ALERT | ERR_FATAL;
3198 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003199 }
3200 }
William Lallemand246c0242019-10-11 08:59:13 +02003201#endif
3202
Emeric Bruna96b5822019-10-17 13:25:14 +02003203 end:
3204 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003205}
3206
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003207
3208/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3209 * Returns a bitfield containing the flags:
3210 * ERR_FATAL in any fatal error case
3211 * ERR_ALERT if the reason of the error is available in err
3212 * ERR_WARN if a warning is available into err
3213 * The value 0 means there is no error nor warning and
3214 * the operation succeed.
3215 */
3216static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3217 SSL_CTX *ctx, char **err)
3218{
3219 int errcode = 0;
3220 STACK_OF(X509) *find_chain = NULL;
3221
3222 /* Load the private key */
3223 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3224 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3225 err && *err ? *err : "", path);
3226 errcode |= ERR_ALERT | ERR_FATAL;
3227 }
3228
3229 /* Load certificate chain */
3230 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3231 if (errcode & ERR_CODE)
3232 goto end;
3233
3234 if (SSL_CTX_check_private_key(ctx) <= 0) {
3235 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3236 err && *err ? *err : "", path);
3237 errcode |= ERR_ALERT | ERR_FATAL;
3238 }
3239
3240end:
3241 return errcode;
3242}
3243
3244
William Lallemand614ca0d2019-10-07 13:52:11 +02003245/*
3246 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003247 *
3248 * Returns a bitfield containing the flags:
3249 * ERR_FATAL in any fatal error case
3250 * ERR_ALERT if the reason of the error is available in err
3251 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003252 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003253int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003254 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003255{
William Lallemandc9402072019-05-15 15:33:54 +02003256 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003257 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003258 int order = 0;
3259 X509_NAME *xname;
3260 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003261 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003262 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003263#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3264 STACK_OF(GENERAL_NAME) *names;
3265#endif
William Lallemand36b84632019-07-18 19:28:17 +02003266 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003267 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003268 int errcode = 0;
3269
3270 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003271
William Lallemande3af8fb2019-10-08 11:36:53 +02003272 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003273 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003274
William Lallemande3af8fb2019-10-08 11:36:53 +02003275 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003276
William Lallemandc9402072019-05-15 15:33:54 +02003277 ctx = SSL_CTX_new(SSLv23_server_method());
3278 if (!ctx) {
3279 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3280 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003281 errcode |= ERR_ALERT | ERR_FATAL;
3282 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003283 }
3284
Emeric Bruna96b5822019-10-17 13:25:14 +02003285 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3286 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003287 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003288
3289 ckch_inst = ckch_inst_new();
3290 if (!ckch_inst) {
3291 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3292 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003293 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003294 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003295 }
3296
William Lallemand36b84632019-07-18 19:28:17 +02003297 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003298 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003299 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003300 switch(EVP_PKEY_base_id(pkey)) {
3301 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003302 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003303 break;
3304 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003305 kinfo.sig = TLSEXT_signature_ecdsa;
3306 break;
3307 case EVP_PKEY_DSA:
3308 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003309 break;
3310 }
3311 EVP_PKEY_free(pkey);
3312 }
3313
Emeric Brun50bcecc2013-04-22 13:05:23 +02003314 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003315 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003316 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 +02003317 if (order < 0) {
3318 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003319 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003320 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003321 }
3322 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003323 }
3324 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003325#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003326 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003327 if (names) {
3328 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3329 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3330 if (name->type == GEN_DNS) {
3331 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003332 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003333 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003334 if (order < 0) {
3335 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003336 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003337 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003338 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003339 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003340 }
3341 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003342 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003343 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003344#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003345 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003346 i = -1;
3347 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3348 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003349 ASN1_STRING *value;
3350
3351 value = X509_NAME_ENTRY_get_data(entry);
3352 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003353 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003354 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003355 if (order < 0) {
3356 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003357 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003358 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003359 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003360 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003361 }
3362 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003363 /* we must not free the SSL_CTX anymore below, since it's already in
3364 * the tree, so it will be discovered and cleaned in time.
3365 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003366
Emeric Brunfc0421f2012-09-07 17:30:07 +02003367#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003368 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003369 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3370 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003371 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003372 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003373 }
3374#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003375 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003376 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003377 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003378 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003379 SSL_CTX_up_ref(ctx);
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02003380 bind_conf->default_inst = ckch_inst;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003381 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003382
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003383 /* Always keep a reference to the newly constructed SSL_CTX in the
3384 * instance. This way if the instance has no SNIs, the SSL_CTX will
3385 * still be linked. */
3386 SSL_CTX_up_ref(ctx);
3387 ckch_inst->ctx = ctx;
3388
William Lallemand9117de92019-10-04 00:29:42 +02003389 /* everything succeed, the ckch instance can be used */
3390 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003391 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003392 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003393
William Lallemand02e19a52020-04-08 16:11:26 +02003394 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3395
Emeric Brun054563d2019-10-17 13:16:58 +02003396 *ckchi = ckch_inst;
3397 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003398
3399error:
3400 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003401 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003402 if (ckch_inst->is_default)
3403 SSL_CTX_free(ctx);
3404
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003405 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003406 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003407 }
William Lallemandd9199372019-10-04 15:37:05 +02003408 SSL_CTX_free(ctx);
3409
Emeric Brun054563d2019-10-17 13:16:58 +02003410 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003411}
3412
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003413
3414/*
3415 * This function allocate a ckch_inst that will be used on the backend side
3416 * (server line)
3417 *
3418 * Returns a bitfield containing the flags:
3419 * ERR_FATAL in any fatal error case
3420 * ERR_ALERT if the reason of the error is available in err
3421 * ERR_WARN if a warning is available into err
3422 */
3423int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003424 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003425{
3426 SSL_CTX *ctx;
3427 struct cert_key_and_chain *ckch;
3428 struct ckch_inst *ckch_inst = NULL;
3429 int errcode = 0;
3430
3431 *ckchi = NULL;
3432
3433 if (!ckchs || !ckchs->ckch)
3434 return ERR_FATAL;
3435
3436 ckch = ckchs->ckch;
3437
3438 ctx = SSL_CTX_new(SSLv23_client_method());
3439 if (!ctx) {
3440 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3441 err && *err ? *err : "", path);
3442 errcode |= ERR_ALERT | ERR_FATAL;
3443 goto error;
3444 }
3445
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003446 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3447 if (errcode & ERR_CODE)
3448 goto error;
3449
3450 ckch_inst = ckch_inst_new();
3451 if (!ckch_inst) {
3452 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3453 err && *err ? *err : "", path);
3454 errcode |= ERR_ALERT | ERR_FATAL;
3455 goto error;
3456 }
3457
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003458 /* everything succeed, the ckch instance can be used */
3459 ckch_inst->bind_conf = NULL;
3460 ckch_inst->ssl_conf = NULL;
3461 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003462 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003463 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003464
3465 *ckchi = ckch_inst;
3466 return errcode;
3467
3468error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003469 SSL_CTX_free(ctx);
3470
3471 return errcode;
3472}
3473
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003474/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003475static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3476 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003477 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003478{
Emeric Brun054563d2019-10-17 13:16:58 +02003479 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003480
3481 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003482 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 +02003483
Emeric Brun054563d2019-10-17 13:16:58 +02003484 if (errcode & ERR_CODE)
3485 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003486
William Lallemand24bde432020-03-09 16:48:43 +01003487 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003488
3489 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003490 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003491 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003492}
3493
William Lallemanddb26e2b2021-01-26 12:01:46 +01003494/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3495 * fill the SSL_CTX of the server.
3496 *
3497 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003498static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003499 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003500{
3501 int errcode = 0;
3502
3503 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003504 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003505
3506 if (errcode & ERR_CODE)
3507 return errcode;
3508
William Lallemanddb26e2b2021-01-26 12:01:46 +01003509 (*ckch_inst)->server = server;
3510 /* Keep the reference to the SSL_CTX in the server. */
3511 SSL_CTX_up_ref((*ckch_inst)->ctx);
3512 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003513 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003514 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003515 return errcode;
3516}
3517
William Lallemand6be66ec2020-03-06 22:26:32 +01003518
William Lallemand4c68bba2020-03-30 18:45:10 +02003519
3520
3521/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3522 * done once. Zero is returned if the operation fails. No error is returned
3523 * if the random is said as not implemented, because we expect that openssl
3524 * will use another method once needed.
3525 */
3526static int ssl_initialize_random()
3527{
3528 unsigned char random;
3529 static int random_initialized = 0;
3530
3531 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3532 random_initialized = 1;
3533
3534 return random_initialized;
3535}
3536
William Lallemand2954c472020-03-06 21:54:13 +01003537/* Load a crt-list file, this is done in 2 parts:
3538 * - store the content of the file in a crtlist structure with crtlist_entry structures
3539 * - generate the instances by iterating on entries in the crtlist struct
3540 *
3541 * Nothing is locked there, this function is used in the configuration parser.
3542 *
3543 * Returns a set of ERR_* flags possibly with an error in <err>.
3544 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003545int 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 +01003546{
3547 struct crtlist *crtlist = NULL;
3548 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003549 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003550 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003551 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003552 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003553
William Lallemand79d31ec2020-03-25 15:10:49 +01003554 bind_conf_node = malloc(sizeof(*bind_conf_node));
3555 if (!bind_conf_node) {
3556 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3557 cfgerr |= ERR_FATAL | ERR_ALERT;
3558 goto error;
3559 }
3560 bind_conf_node->next = NULL;
3561 bind_conf_node->bind_conf = bind_conf;
3562
William Lallemand41ca9302020-04-08 13:15:18 +02003563 /* strip trailing slashes, including first one */
3564 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3565 *end = 0;
3566
William Lallemand2954c472020-03-06 21:54:13 +01003567 /* look for an existing crtlist or create one */
3568 eb = ebst_lookup(&crtlists_tree, file);
3569 if (eb) {
3570 crtlist = ebmb_entry(eb, struct crtlist, node);
3571 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003572 /* load a crt-list OR a directory */
3573 if (dir)
3574 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3575 else
3576 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3577
William Lallemand2954c472020-03-06 21:54:13 +01003578 if (!(cfgerr & ERR_CODE))
3579 ebst_insert(&crtlists_tree, &crtlist->node);
3580 }
3581
3582 if (cfgerr & ERR_CODE) {
3583 cfgerr |= ERR_FATAL | ERR_ALERT;
3584 goto error;
3585 }
3586
3587 /* generates ckch instance from the crtlist_entry */
3588 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3589 struct ckch_store *store;
3590 struct ckch_inst *ckch_inst = NULL;
3591
3592 store = entry->node.key;
3593 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3594 if (cfgerr & ERR_CODE) {
3595 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3596 goto error;
3597 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003598 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003599 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003600 }
William Lallemand2954c472020-03-06 21:54:13 +01003601
William Lallemand79d31ec2020-03-25 15:10:49 +01003602 /* add the bind_conf to the list */
3603 bind_conf_node->next = crtlist->bind_conf;
3604 crtlist->bind_conf = bind_conf_node;
3605
William Lallemand2954c472020-03-06 21:54:13 +01003606 return cfgerr;
3607error:
3608 {
William Lallemand49398312020-03-30 17:01:33 +02003609 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003610 struct ckch_inst *inst, *s_inst;
3611
William Lallemand49398312020-03-30 17:01:33 +02003612 lastentry = entry; /* which entry we tried to generate last */
3613 if (lastentry) {
3614 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3615 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3616 break;
3617
3618 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003619
William Lallemand49398312020-03-30 17:01:33 +02003620 /* this was not generated for this bind_conf, skip */
3621 if (inst->bind_conf != bind_conf)
3622 continue;
3623
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003624 /* free the sni_ctx and instance */
3625 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003626 }
William Lallemand2954c472020-03-06 21:54:13 +01003627 }
William Lallemand2954c472020-03-06 21:54:13 +01003628 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003629 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003630 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003631 return cfgerr;
3632}
3633
William Lallemand06b22a82020-03-16 14:45:55 +01003634/* Returns a set of ERR_* flags possibly with an error in <err>. */
3635int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3636{
3637 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003638 int cfgerr = 0;
3639 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003640 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003641 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003642
3643 if ((ckchs = ckchs_lookup(path))) {
3644 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003645 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3646 found++;
3647 } else if (stat(path, &buf) == 0) {
3648 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003649 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003650 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003651 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003652 cfgerr |= ERR_ALERT | ERR_FATAL;
3653 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003654 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003655 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003656 }
3657 } else {
3658 /* stat failed, could be a bundle */
3659 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003660 char fp[MAXPATHLEN+1] = {0};
3661 int n = 0;
3662
3663 /* Load all possible certs and keys in separate ckch_store */
3664 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3665 struct stat buf;
3666 int ret;
3667
3668 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3669 if (ret > sizeof(fp))
3670 continue;
3671
3672 if ((ckchs = ckchs_lookup(fp))) {
3673 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003674 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003675 } else {
3676 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003677 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003678 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003679 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003680 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003681 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3682 }
3683 }
3684 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003685#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3686 if (found) {
3687 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3688 err && *err ? *err : "", path);
3689 cfgerr |= ERR_ALERT | ERR_FATAL;
3690 }
3691#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003692 }
3693 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003694 if (!found) {
3695 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3696 err && *err ? *err : "", path, strerror(errno));
3697 cfgerr |= ERR_ALERT | ERR_FATAL;
3698 }
William Lallemand06b22a82020-03-16 14:45:55 +01003699
3700 return cfgerr;
3701}
3702
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003703
3704/* Create a full ssl context and ckch instance that will be used for a specific
3705 * backend server (server configuration line).
3706 * Returns a set of ERR_* flags possibly with an error in <err>.
3707 */
3708int ssl_sock_load_srv_cert(char *path, struct server *server, char **err)
3709{
3710 struct stat buf;
3711 int cfgerr = 0;
3712 struct ckch_store *ckchs;
3713 int found = 0; /* did we found a file to load ? */
3714
3715 if ((ckchs = ckchs_lookup(path))) {
3716 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003717 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003718 found++;
3719 } else if (stat(path, &buf) == 0) {
3720 /* We do not manage directories on backend side. */
3721 if (S_ISDIR(buf.st_mode) == 0) {
3722 ++found;
3723 ckchs = ckchs_load_cert_file(path, err);
3724 if (!ckchs)
3725 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003726 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003727 }
3728 }
3729 if (!found) {
3730 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3731 err && *err ? *err : "", path, strerror(errno));
3732 cfgerr |= ERR_ALERT | ERR_FATAL;
3733 }
3734
3735 return cfgerr;
3736}
3737
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003738/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003739static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003740ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003741{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003742 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003743 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003744 SSL_OP_ALL | /* all known workarounds for bugs */
3745 SSL_OP_NO_SSLv2 |
3746 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003747 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003748 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003749 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003750 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003751 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003752 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003753 SSL_MODE_ENABLE_PARTIAL_WRITE |
3754 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003755 SSL_MODE_RELEASE_BUFFERS |
3756 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003757 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003758 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003759 int flags = MC_SSL_O_ALL;
3760 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003761 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003762
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003763 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003764 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003765
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003766 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003767 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3768 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3769 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003770 else
3771 flags = conf_ssl_methods->flags;
3772
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003773 min = conf_ssl_methods->min;
3774 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003775
3776 /* default minimum is TLSV12, */
3777 if (!min) {
3778 if (!max || (max >= default_min_ver)) {
3779 min = default_min_ver;
3780 } else {
3781 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). "
3782 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3783 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3784 min = max;
3785 }
3786 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003787 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003788 if (min)
3789 flags |= (methodVersions[min].flag - 1);
3790 if (max)
3791 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003792 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003793 min = max = CONF_TLSV_NONE;
3794 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003795 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003796 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003797 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003798 if (min) {
3799 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003800 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3801 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3802 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3803 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003804 hole = 0;
3805 }
3806 max = i;
3807 }
3808 else {
3809 min = max = i;
3810 }
3811 }
3812 else {
3813 if (min)
3814 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003815 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003816 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003817 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3818 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003819 cfgerr += 1;
3820 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003821 /* save real min/max in bind_conf */
3822 conf_ssl_methods->min = min;
3823 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003824
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003825#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003826 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003827 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003828 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003829 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003830 else
William Lallemandd0712f32020-06-11 17:34:00 +02003831 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
3832 /* clear every version flags in case SSL_CTX_new()
3833 * returns an SSL_CTX with disabled versions */
3834 SSL_CTX_clear_options(ctx, methodVersions[i].option);
3835
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003836 if (flags & methodVersions[i].flag)
3837 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02003838
3839 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003840#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003841 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003842 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3843 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003844#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003845
3846 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3847 options |= SSL_OP_NO_TICKET;
3848 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3849 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003850
3851#ifdef SSL_OP_NO_RENEGOTIATION
3852 options |= SSL_OP_NO_RENEGOTIATION;
3853#endif
3854
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003855 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003856
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05003857#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003858 if (global_ssl.async)
3859 mode |= SSL_MODE_ASYNC;
3860#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003861 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003862 if (global_ssl.life_time)
3863 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003864
3865#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3866#ifdef OPENSSL_IS_BORINGSSL
3867 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3868 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05003869#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01003870 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003871 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003872 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3873 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003874#else
3875 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003876#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003877 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003878#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003879 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003880}
3881
William Lallemand4f45bb92017-10-30 20:08:51 +01003882
3883static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3884{
3885 if (first == block) {
3886 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3887 if (first->len > 0)
3888 sh_ssl_sess_tree_delete(sh_ssl_sess);
3889 }
3890}
3891
3892/* return first block from sh_ssl_sess */
3893static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3894{
3895 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3896
3897}
3898
3899/* store a session into the cache
3900 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3901 * data: asn1 encoded session
3902 * data_len: asn1 encoded session length
3903 * Returns 1 id session was stored (else 0)
3904 */
3905static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3906{
3907 struct shared_block *first;
3908 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3909
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003910 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003911 if (!first) {
3912 /* Could not retrieve enough free blocks to store that session */
3913 return 0;
3914 }
3915
3916 /* STORE the key in the first elem */
3917 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3918 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3919 first->len = sizeof(struct sh_ssl_sess_hdr);
3920
3921 /* it returns the already existing node
3922 or current node if none, never returns null */
3923 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
3924 if (oldsh_ssl_sess != sh_ssl_sess) {
3925 /* NOTE: Row couldn't be in use because we lock read & write function */
3926 /* release the reserved row */
3927 shctx_row_dec_hot(ssl_shctx, first);
3928 /* replace the previous session already in the tree */
3929 sh_ssl_sess = oldsh_ssl_sess;
3930 /* ignore the previous session data, only use the header */
3931 first = sh_ssl_sess_first_block(sh_ssl_sess);
3932 shctx_row_inc_hot(ssl_shctx, first);
3933 first->len = sizeof(struct sh_ssl_sess_hdr);
3934 }
3935
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003936 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01003937 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003938 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01003939 }
3940
3941 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003942
3943 return 1;
3944}
William Lallemanded0b5ad2017-10-30 19:36:36 +01003945
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003946/* SSL callback used when a new session is created while connecting to a server */
3947static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
3948{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02003949 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003950 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003951
Willy Tarreau07d94e42018-09-20 10:57:52 +02003952 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003953
William Lallemand3ce6eed2021-02-08 10:43:44 +01003954 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
3955 * one cache per thread, it only prevents to flush it from the CLI in
3956 * another thread */
3957
Olivier Houcharde6060c52017-11-16 17:42:52 +01003958 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
3959 int len;
3960 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003961
Olivier Houcharde6060c52017-11-16 17:42:52 +01003962 len = i2d_SSL_SESSION(sess, NULL);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003963 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003964 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
3965 ptr = s->ssl_ctx.reused_sess[tid].ptr;
3966 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01003967 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
3968 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01003969 s->ssl_ctx.reused_sess[tid].allocated_size = len;
3970 }
3971 if (s->ssl_ctx.reused_sess[tid].ptr) {
3972 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
3973 &ptr);
3974 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01003975 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003976 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01003977 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003978 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003979 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003980 }
3981
3982 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003983}
3984
Olivier Houcharde6060c52017-11-16 17:42:52 +01003985
William Lallemanded0b5ad2017-10-30 19:36:36 +01003986/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01003987int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01003988{
3989 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
3990 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
3991 unsigned char *p;
3992 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02003993 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003994 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003995
3996 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003997 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02003998 * note: SSL_SESSION_set1_id is using
3999 * a memcpy so we need to use a different pointer
4000 * than sid_data or sid_ctx_data to avoid valgrind
4001 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004002 */
4003
4004 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004005
4006 /* copy value in an other buffer */
4007 memcpy(encid, sid_data, sid_length);
4008
4009 /* pad with 0 */
4010 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4011 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4012
4013 /* force length to zero to avoid ASN1 encoding */
4014 SSL_SESSION_set1_id(sess, encid, 0);
4015
4016 /* force length to zero to avoid ASN1 encoding */
4017 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004018
4019 /* check if buffer is large enough for the ASN1 encoded session */
4020 data_len = i2d_SSL_SESSION(sess, NULL);
4021 if (data_len > SHSESS_MAX_DATA_LEN)
4022 goto err;
4023
4024 p = encsess;
4025
4026 /* process ASN1 session encoding before the lock */
4027 i2d_SSL_SESSION(sess, &p);
4028
William Lallemanded0b5ad2017-10-30 19:36:36 +01004029
William Lallemanda3c77cf2017-10-30 23:44:40 +01004030 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004031 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004032 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004033 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004034err:
4035 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004036 SSL_SESSION_set1_id(sess, encid, sid_length);
4037 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004038
4039 return 0; /* do not increment session reference count */
4040}
4041
4042/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004043SSL_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 +01004044{
William Lallemand4f45bb92017-10-30 20:08:51 +01004045 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004046 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4047 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004048 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004049 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004050
4051 global.shctx_lookups++;
4052
4053 /* allow the session to be freed automatically by openssl */
4054 *do_copy = 0;
4055
4056 /* tree key is zeros padded sessionid */
4057 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4058 memcpy(tmpkey, key, key_len);
4059 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4060 key = tmpkey;
4061 }
4062
4063 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004064 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004065
4066 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004067 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4068 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004069 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004070 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004071 global.shctx_misses++;
4072 return NULL;
4073 }
4074
William Lallemand4f45bb92017-10-30 20:08:51 +01004075 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4076 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004077
William Lallemand4f45bb92017-10-30 20:08:51 +01004078 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 +01004079
William Lallemanda3c77cf2017-10-30 23:44:40 +01004080 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004081
4082 /* decode ASN1 session */
4083 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004084 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004085 /* Reset session id and session id contenxt */
4086 if (sess) {
4087 SSL_SESSION_set1_id(sess, key, key_len);
4088 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4089 }
4090
4091 return sess;
4092}
4093
William Lallemand4f45bb92017-10-30 20:08:51 +01004094
William Lallemanded0b5ad2017-10-30 19:36:36 +01004095/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004096void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004097{
William Lallemand4f45bb92017-10-30 20:08:51 +01004098 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004099 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4100 unsigned int sid_length;
4101 const unsigned char *sid_data;
4102 (void)ctx;
4103
4104 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4105 /* tree key is zeros padded sessionid */
4106 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4107 memcpy(tmpkey, sid_data, sid_length);
4108 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4109 sid_data = tmpkey;
4110 }
4111
William Lallemanda3c77cf2017-10-30 23:44:40 +01004112 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004113
4114 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004115 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4116 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004117 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004118 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004119 }
4120
4121 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004122 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004123}
4124
4125/* Set session cache mode to server and disable openssl internal cache.
4126 * Set shared cache callbacks on an ssl context.
4127 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004128void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004129{
4130 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4131
4132 if (!ssl_shctx) {
4133 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4134 return;
4135 }
4136
4137 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4138 SSL_SESS_CACHE_NO_INTERNAL |
4139 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4140
4141 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004142 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4143 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4144 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004145}
William Lallemand7d42ef52020-07-06 11:41:30 +02004146
4147/*
4148 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4149 *
4150 * The format is:
4151 * * <Label> <space> <ClientRandom> <space> <Secret>
4152 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4153 */
4154
William Lallemand722180a2021-06-09 16:46:12 +02004155#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004156void SSL_CTX_keylog(const SSL *ssl, const char *line)
4157{
4158 struct ssl_keylog *keylog;
4159 char *lastarg = NULL;
4160 char *dst = NULL;
4161
4162 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4163 if (!keylog)
4164 return;
4165
4166 lastarg = strrchr(line, ' ');
4167 if (lastarg == NULL || ++lastarg == NULL)
4168 return;
4169
4170 dst = pool_alloc(pool_head_ssl_keylog_str);
4171 if (!dst)
4172 return;
4173
4174 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4175 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4176
4177 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4178 if (keylog->client_random)
4179 goto error;
4180 keylog->client_random = dst;
4181
4182 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4183 if (keylog->client_early_traffic_secret)
4184 goto error;
4185 keylog->client_early_traffic_secret = dst;
4186
4187 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4188 if(keylog->client_handshake_traffic_secret)
4189 goto error;
4190 keylog->client_handshake_traffic_secret = dst;
4191
4192 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4193 if (keylog->server_handshake_traffic_secret)
4194 goto error;
4195 keylog->server_handshake_traffic_secret = dst;
4196
4197 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4198 if (keylog->client_traffic_secret_0)
4199 goto error;
4200 keylog->client_traffic_secret_0 = dst;
4201
4202 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4203 if (keylog->server_traffic_secret_0)
4204 goto error;
4205 keylog->server_traffic_secret_0 = dst;
4206
4207 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4208 if (keylog->early_exporter_secret)
4209 goto error;
4210 keylog->early_exporter_secret = dst;
4211
4212 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4213 if (keylog->exporter_secret)
4214 goto error;
4215 keylog->exporter_secret = dst;
4216 } else {
4217 goto error;
4218 }
4219
4220 return;
4221
4222error:
4223 pool_free(pool_head_ssl_keylog_str, dst);
4224
4225 return;
4226}
4227#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004228
William Lallemand8b453912019-11-21 15:48:10 +01004229/*
4230 * This function applies the SSL configuration on a SSL_CTX
4231 * It returns an error code and fills the <err> buffer
4232 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004233static 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 +01004234{
4235 struct proxy *curproxy = bind_conf->frontend;
4236 int cfgerr = 0;
4237 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004238 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004239 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004240#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004241 const char *conf_ciphersuites;
4242#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004243 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004244
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004245 if (ssl_conf) {
4246 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4247 int i, min, max;
4248 int flags = MC_SSL_O_ALL;
4249
4250 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004251 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4252 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004253 if (min)
4254 flags |= (methodVersions[min].flag - 1);
4255 if (max)
4256 flags |= ~((methodVersions[max].flag << 1) - 1);
4257 min = max = CONF_TLSV_NONE;
4258 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4259 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4260 if (min)
4261 max = i;
4262 else
4263 min = max = i;
4264 }
4265 /* save real min/max */
4266 conf_ssl_methods->min = min;
4267 conf_ssl_methods->max = max;
4268 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004269 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4270 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004271 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004272 }
4273 }
4274
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004275 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004276 case SSL_SOCK_VERIFY_NONE:
4277 verify = SSL_VERIFY_NONE;
4278 break;
4279 case SSL_SOCK_VERIFY_OPTIONAL:
4280 verify = SSL_VERIFY_PEER;
4281 break;
4282 case SSL_SOCK_VERIFY_REQUIRED:
4283 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4284 break;
4285 }
4286 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4287 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004288 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 +01004289 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 +01004290 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 +01004291 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004292 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004293 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004294 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004295 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004296 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004297 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004298 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4299 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4300 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4301 cfgerr |= ERR_ALERT | ERR_FATAL;
4302 }
4303 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004304 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004305 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 +02004306 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004307 }
Emeric Brun850efd52014-01-29 12:24:34 +01004308 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004309 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4310 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004311 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004312 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004313#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004314 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004315 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4316
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004317 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004318 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4319 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004320 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004321 }
Emeric Brun561e5742012-10-02 15:20:55 +02004322 else {
4323 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4324 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004325 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004326#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004327 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004328 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004329#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004330 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004331 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004332 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4333 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004334 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004335 }
4336 }
4337#endif
4338
William Lallemand4f45bb92017-10-30 20:08:51 +01004339 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004340 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4341 if (conf_ciphers &&
4342 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004343 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4344 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004345 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004346 }
4347
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004348#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004349 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4350 if (conf_ciphersuites &&
4351 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004352 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4353 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004354 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004355 }
4356#endif
4357
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004358#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004359 /* If tune.ssl.default-dh-param has not been set,
4360 neither has ssl-default-dh-file and no static DH
4361 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004362 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004363 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004364 (ssl_dh_ptr_index == -1 ||
4365 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004366 /* default to dh-param 2048 */
4367 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004368 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004369
Willy Tarreauef934602016-12-22 23:12:01 +01004370 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004371 if (local_dh_1024 == NULL) {
4372 local_dh_1024 = ssl_get_dh_1024();
4373 }
Willy Tarreauef934602016-12-22 23:12:01 +01004374 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004375 if (local_dh_2048 == NULL) {
4376 local_dh_2048 = ssl_get_dh_2048();
4377 }
Willy Tarreauef934602016-12-22 23:12:01 +01004378 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004379 if (local_dh_4096 == NULL) {
4380 local_dh_4096 = ssl_get_dh_4096();
4381 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004382 }
4383 }
4384 }
4385#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004386
Emeric Brunfc0421f2012-09-07 17:30:07 +02004387 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004388#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004389 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004390#endif
William Lallemand722180a2021-06-09 16:46:12 +02004391#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004392 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4393#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004394
Bernard Spil13c53f82018-02-15 13:34:58 +01004395#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004396 ssl_conf_cur = NULL;
4397 if (ssl_conf && ssl_conf->npn_str)
4398 ssl_conf_cur = ssl_conf;
4399 else if (bind_conf->ssl_conf.npn_str)
4400 ssl_conf_cur = &bind_conf->ssl_conf;
4401 if (ssl_conf_cur)
4402 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004403#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004404#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004405 ssl_conf_cur = NULL;
4406 if (ssl_conf && ssl_conf->alpn_str)
4407 ssl_conf_cur = ssl_conf;
4408 else if (bind_conf->ssl_conf.alpn_str)
4409 ssl_conf_cur = &bind_conf->ssl_conf;
4410 if (ssl_conf_cur)
4411 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004412#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004413#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004414 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4415 if (conf_curves) {
4416 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004417 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4418 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004419 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004420 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004421 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004422 }
4423#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004424#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004425 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004426 int i;
4427 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004428#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004429 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004430 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4431 NULL);
4432
4433 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004434 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004435 return cfgerr;
4436 }
4437#else
4438 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4439 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4440 ECDHE_DEFAULT_CURVE);
4441#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004442
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004443 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004444 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004445 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4446 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004447 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004448 }
4449 else {
4450 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4451 EC_KEY_free(ecdh);
4452 }
4453 }
4454#endif
4455
Emeric Brunfc0421f2012-09-07 17:30:07 +02004456 return cfgerr;
4457}
4458
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004459
4460/*
4461 * Prepare the SSL_CTX based on the bind line configuration.
4462 * Since the CA file loading is made depending on the verify option of the bind
4463 * line, the link between the SSL_CTX and the CA file tree entry is made here.
4464 * If we want to create a link between the CA file entry and the corresponding
4465 * ckch instance (for CA file hot update), it needs to be done after
4466 * ssl_sock_prepare_ctx.
4467 * Returns 0 in case of success.
4468 */
4469int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
4470 SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err)
4471{
4472 int errcode = 0;
4473
4474 errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err);
4475 if (!errcode && ckch_inst)
4476 ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL);
4477
4478 return errcode;
4479}
4480
Evan Broderbe554312013-06-27 00:05:25 -07004481static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4482{
4483 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4484 size_t prefixlen, suffixlen;
4485
4486 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004487 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004488 return 1;
4489
Evan Broderbe554312013-06-27 00:05:25 -07004490 /* The rest of this logic is based on RFC 6125, section 6.4.3
4491 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4492
Emeric Bruna848dae2013-10-08 11:27:28 +02004493 pattern_wildcard = NULL;
4494 pattern_left_label_end = pattern;
4495 while (*pattern_left_label_end != '.') {
4496 switch (*pattern_left_label_end) {
4497 case 0:
4498 /* End of label not found */
4499 return 0;
4500 case '*':
4501 /* If there is more than one wildcards */
4502 if (pattern_wildcard)
4503 return 0;
4504 pattern_wildcard = pattern_left_label_end;
4505 break;
4506 }
4507 pattern_left_label_end++;
4508 }
4509
4510 /* If it's not trivial and there is no wildcard, it can't
4511 * match */
4512 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004513 return 0;
4514
4515 /* Make sure all labels match except the leftmost */
4516 hostname_left_label_end = strchr(hostname, '.');
4517 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004518 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004519 return 0;
4520
4521 /* Make sure the leftmost label of the hostname is long enough
4522 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004523 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004524 return 0;
4525
4526 /* Finally compare the string on either side of the
4527 * wildcard */
4528 prefixlen = pattern_wildcard - pattern;
4529 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004530 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4531 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004532 return 0;
4533
4534 return 1;
4535}
4536
4537static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4538{
4539 SSL *ssl;
4540 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004541 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004542 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004543 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004544
4545 int depth;
4546 X509 *cert;
4547 STACK_OF(GENERAL_NAME) *alt_names;
4548 int i;
4549 X509_NAME *cert_subject;
4550 char *str;
4551
4552 if (ok == 0)
4553 return ok;
4554
4555 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004556 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004557 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004558
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004559 /* We're checking if the provided hostnames match the desired one. The
4560 * desired hostname comes from the SNI we presented if any, or if not
4561 * provided then it may have been explicitly stated using a "verifyhost"
4562 * directive. If neither is set, we don't care about the name so the
4563 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004564 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004565 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004566 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004567 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004568 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004569 if (!servername)
4570 return ok;
4571 }
Evan Broderbe554312013-06-27 00:05:25 -07004572
4573 /* We only need to verify the CN on the actual server cert,
4574 * not the indirect CAs */
4575 depth = X509_STORE_CTX_get_error_depth(ctx);
4576 if (depth != 0)
4577 return ok;
4578
4579 /* At this point, the cert is *not* OK unless we can find a
4580 * hostname match */
4581 ok = 0;
4582
4583 cert = X509_STORE_CTX_get_current_cert(ctx);
4584 /* It seems like this might happen if verify peer isn't set */
4585 if (!cert)
4586 return ok;
4587
4588 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4589 if (alt_names) {
4590 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4591 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4592 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004593#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004594 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4595#else
Evan Broderbe554312013-06-27 00:05:25 -07004596 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004597#endif
Evan Broderbe554312013-06-27 00:05:25 -07004598 ok = ssl_sock_srv_hostcheck(str, servername);
4599 OPENSSL_free(str);
4600 }
4601 }
4602 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004603 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004604 }
4605
4606 cert_subject = X509_get_subject_name(cert);
4607 i = -1;
4608 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4609 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004610 ASN1_STRING *value;
4611 value = X509_NAME_ENTRY_get_data(entry);
4612 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004613 ok = ssl_sock_srv_hostcheck(str, servername);
4614 OPENSSL_free(str);
4615 }
4616 }
4617
Willy Tarreau71d058c2017-07-26 20:09:56 +02004618 /* report the mismatch and indicate if SNI was used or not */
4619 if (!ok && !conn->err_code)
4620 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004621 return ok;
4622}
4623
Emeric Brun94324a42012-10-11 14:00:19 +02004624/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004625int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004626{
4627 int cfgerr = 0;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004628 SSL_CTX *ctx = srv->ssl_ctx.ctx;
Emeric Brun94324a42012-10-11 14:00:19 +02004629
Thierry Fournier383085f2013-01-24 14:15:43 +01004630 /* Make sure openssl opens /dev/urandom before the chroot */
4631 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004632 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004633 cfgerr++;
4634 }
4635
Willy Tarreaufce03112015-01-15 21:32:40 +01004636 /* Automatic memory computations need to know we use SSL there */
4637 global.ssl_used_backend = 1;
4638
4639 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004640 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004641 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004642 ha_alert("out of memory.\n");
Emeric Brun821bb9b2017-06-15 16:37:39 +02004643 cfgerr++;
4644 return cfgerr;
4645 }
4646 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004647 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004648 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004649
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004650 /* The context will be uninitialized if there wasn't any "cert" option
4651 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004652 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004653 ctx = SSL_CTX_new(SSLv23_client_method());
4654 if (!ctx) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004655 ha_alert("unable to allocate ssl context.\n");
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004656 cfgerr++;
4657 return cfgerr;
4658 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004659
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004660 srv->ssl_ctx.ctx = ctx;
4661 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004662
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004663 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 +01004664
4665 return cfgerr;
4666}
4667
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004668/* Initialize an SSL context that will be used on the backend side.
4669 * Returns an error count.
4670 */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004671static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004672{
4673 struct proxy *curproxy = srv->proxy;
4674 int cfgerr = 0;
4675 long options =
4676 SSL_OP_ALL | /* all known workarounds for bugs */
4677 SSL_OP_NO_SSLv2 |
4678 SSL_OP_NO_COMPRESSION;
4679 long mode =
4680 SSL_MODE_ENABLE_PARTIAL_WRITE |
4681 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4682 SSL_MODE_RELEASE_BUFFERS |
4683 SSL_MODE_SMALL_BUFFERS;
4684 int verify = SSL_VERIFY_NONE;
4685 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4686 int i, min, max, hole;
4687 int flags = MC_SSL_O_ALL;
4688
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004689 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004690 ha_warning("no-sslv3/no-tlsv1x are ignored for this server. "
4691 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n");
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004692 else
4693 flags = conf_ssl_methods->flags;
4694
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004695 /* Real min and max should be determinate with configuration and openssl's capabilities */
4696 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004697 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004698 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004699 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004700
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004701 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004702 min = max = CONF_TLSV_NONE;
4703 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004704 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004705 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004706 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004707 if (min) {
4708 if (hole) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004709 ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. "
Christopher Faulet767a84b2017-11-24 16:50:31 +01004710 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4711 proxy_type_str(curproxy), curproxy->id, srv->id,
4712 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004713 hole = 0;
4714 }
4715 max = i;
4716 }
4717 else {
4718 min = max = i;
4719 }
4720 }
4721 else {
4722 if (min)
4723 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004724 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004725 if (!min) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004726 ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004727 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004728 cfgerr += 1;
4729 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004730
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004731#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004732 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004733 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004734 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004735 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004736 else
4737 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4738 if (flags & methodVersions[i].flag)
4739 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004740#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004741 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004742 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4743 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004744#endif
4745
4746 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4747 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004748 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004749
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004750#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004751 if (global_ssl.async)
4752 mode |= SSL_MODE_ASYNC;
4753#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004754 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004755
Emeric Brun850efd52014-01-29 12:24:34 +01004756 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4757 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004758 switch (srv->ssl_ctx.verify) {
4759 case SSL_SOCK_VERIFY_NONE:
4760 verify = SSL_VERIFY_NONE;
4761 break;
4762 case SSL_SOCK_VERIFY_REQUIRED:
4763 verify = SSL_VERIFY_PEER;
4764 break;
4765 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004766 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004767 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004768 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004769 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004770 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004771 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004772 ha_alert("unable to set CA file '%s'.\n",
4773 srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004774 cfgerr++;
4775 }
4776 }
Emeric Brun850efd52014-01-29 12:24:34 +01004777 else {
4778 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004779 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 +01004780 else
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004781 ha_alert("verify is enabled but no CA file specified.\n");
Emeric Brun850efd52014-01-29 12:24:34 +01004782 cfgerr++;
4783 }
Emeric Brunef42d922012-10-11 16:11:36 +02004784#ifdef X509_V_FLAG_CRL_CHECK
4785 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004786 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02004787
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004788 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004789 ha_alert("unable to configure CRL file '%s'.\n",
4790 srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004791 cfgerr++;
4792 }
4793 else {
4794 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4795 }
4796 }
4797#endif
4798 }
4799
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004800 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
4801 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004802 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004803 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004804 ha_alert("unable to set SSL cipher list to '%s'.\n",
4805 srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004806 cfgerr++;
4807 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004808
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004809#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004810 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004811 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02004812 ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n",
4813 srv->ssl_ctx.ciphersuites);
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004814 cfgerr++;
4815 }
4816#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004817#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4818 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004819 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01004820#endif
4821#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4822 if (srv->ssl_ctx.alpn_str)
4823 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4824#endif
4825
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004826
4827 return cfgerr;
4828}
4829
4830/*
4831 * Prepare the frontend's SSL_CTX based on the server line configuration.
4832 * Since the CA file loading is made depending on the verify option of the
4833 * server line, the link between the SSL_CTX and the CA file tree entry is
4834 * made here.
4835 * If we want to create a link between the CA file entry and the corresponding
4836 * ckch instance (for CA file hot update), it needs to be done after
4837 * ssl_sock_prepare_srv_ssl_ctx.
4838 * Returns an error count.
4839 */
4840int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx,
4841 struct ckch_inst *ckch_inst)
4842{
4843 int cfgerr = 0;
4844
4845 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx);
4846 if (!cfgerr && ckch_inst)
4847 ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv);
Emeric Brun94324a42012-10-11 14:00:19 +02004848
4849 return cfgerr;
4850}
4851
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004852
Frédéric Lécailleec216522020-11-23 14:33:30 +01004853/*
4854 * Create an initial CTX used to start the SSL connections.
4855 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
4856 * Returns 0 if succeeded, or something >0 if not.
4857 */
4858#ifdef USE_QUIC
4859static int ssl_initial_ctx(struct bind_conf *bind_conf)
4860{
4861 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
4862 return ssl_quic_initial_ctx(bind_conf);
4863 else
4864 return ssl_sock_initial_ctx(bind_conf);
4865}
4866#else
4867static int ssl_initial_ctx(struct bind_conf *bind_conf)
4868{
4869 return ssl_sock_initial_ctx(bind_conf);
4870}
4871#endif
4872
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004873/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004874 * be NULL, in which case nothing is done. Returns the number of errors
4875 * encountered.
4876 */
Willy Tarreau03209342016-12-22 17:08:28 +01004877int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004878{
4879 struct ebmb_node *node;
4880 struct sni_ctx *sni;
4881 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01004882 int errcode = 0;
4883 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004884
Willy Tarreaufce03112015-01-15 21:32:40 +01004885 /* Automatic memory computations need to know we use SSL there */
4886 global.ssl_used_frontend = 1;
4887
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004888 /* Make sure openssl opens /dev/urandom before the chroot */
4889 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004890 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004891 err++;
4892 }
4893 /* Create initial_ctx used to start the ssl connection before do switchctx */
4894 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01004895 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004896 /* It should not be necessary to call this function, but it's
4897 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01004898 to initial_ctx in ssl_initial_ctx. */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004899 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg);
4900 }
4901 if (bind_conf->default_ctx) {
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02004902 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 +01004903 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004904
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004905 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004906 while (node) {
4907 sni = ebmb_entry(node, struct sni_ctx, name);
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004908 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004909 /* only initialize the CTX on its first occurrence and
4910 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004911 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
4912 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004913 node = ebmb_next(node);
4914 }
4915
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004916 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004917 while (node) {
4918 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01004919 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004920 /* only initialize the CTX on its first occurrence and
4921 if it is not the default_ctx */
Remi Tricot-Le Breton4458b972021-02-19 17:41:55 +01004922 errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004923 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004924 node = ebmb_next(node);
4925 }
William Lallemand8b453912019-11-21 15:48:10 +01004926
4927 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004928 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004929 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004930 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004931 err++;
4932 }
4933
4934 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004935 return err;
4936}
4937
Willy Tarreau55d37912016-12-21 23:38:39 +01004938/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4939 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4940 * alerts are directly emitted since the rest of the stack does it below.
4941 */
4942int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4943{
4944 struct proxy *px = bind_conf->frontend;
4945 int alloc_ctx;
4946 int err;
4947
4948 if (!bind_conf->is_ssl) {
4949 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004950 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4951 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004952 }
4953 return 0;
4954 }
4955 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004956 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004957 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4958 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004959 }
4960 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004961 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4962 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004963 return -1;
4964 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004965 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004966 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004967 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004968 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004969 sizeof(*sh_ssl_sess_tree),
4970 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004971 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004972 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4973 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");
4974 else
4975 ha_alert("Unable to allocate SSL session cache.\n");
4976 return -1;
4977 }
4978 /* free block callback */
4979 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4980 /* init the root tree within the extra space */
4981 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4982 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004983 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004984 err = 0;
4985 /* initialize all certificate contexts */
4986 err += ssl_sock_prepare_all_ctx(bind_conf);
4987
4988 /* initialize CA variables if the certificates generation is enabled */
4989 err += ssl_sock_load_ca(bind_conf);
4990
4991 return -err;
4992}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004993
4994/* release ssl context allocated for servers. */
4995void ssl_sock_free_srv_ctx(struct server *srv)
4996{
Olivier Houchardc7566002018-11-20 23:33:50 +01004997#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4998 if (srv->ssl_ctx.alpn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01004999 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005000#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005001#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01005002 if (srv->ssl_ctx.npn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005003 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005004#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005005 if (srv->ssl_ctx.reused_sess) {
5006 int i;
5007
5008 for (i = 0; i < global.nbthread; i++)
Willy Tarreaue709e822021-02-26 21:06:32 +01005009 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
5010 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005011 }
5012
Willy Tarreaue709e822021-02-26 21:06:32 +01005013 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005014 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005015 srv->ssl_ctx.ctx = NULL;
5016 }
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005017}
5018
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005019/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005020 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5021 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005022void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005023{
5024 struct ebmb_node *node, *back;
5025 struct sni_ctx *sni;
5026
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005027 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005028 while (node) {
5029 sni = ebmb_entry(node, struct sni_ctx, name);
5030 back = ebmb_next(node);
5031 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005032 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005033 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005034 free(sni);
5035 node = back;
5036 }
5037
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005038 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005039 while (node) {
5040 sni = ebmb_entry(node, struct sni_ctx, name);
5041 back = ebmb_next(node);
5042 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005043 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005044 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005045 free(sni);
5046 node = back;
5047 }
William Lallemandb2408692020-06-24 09:54:29 +02005048
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005049 SSL_CTX_free(bind_conf->initial_ctx);
5050 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005051 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005052 bind_conf->default_ctx = NULL;
Remi Tricot-Le Breton40ddea82021-04-13 16:07:29 +02005053 bind_conf->default_inst = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005054 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005055}
William Lallemandb2408692020-06-24 09:54:29 +02005056
5057
5058void ssl_sock_deinit()
5059{
5060 crtlist_deinit(); /* must be free'd before the ckchs */
5061 ckch_deinit();
5062}
5063REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005064
Willy Tarreau795cdab2016-12-22 17:30:54 +01005065/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5066void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5067{
5068 ssl_sock_free_ca(bind_conf);
5069 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005070 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005071 free(bind_conf->ca_sign_file);
5072 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005073 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005074 free(bind_conf->keys_ref->filename);
5075 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005076 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005077 free(bind_conf->keys_ref);
5078 }
5079 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005080 bind_conf->ca_sign_pass = NULL;
5081 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005082}
5083
Christopher Faulet31af49d2015-06-09 17:29:50 +02005084/* Load CA cert file and private key used to generate certificates */
5085int
Willy Tarreau03209342016-12-22 17:08:28 +01005086ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005087{
Willy Tarreau03209342016-12-22 17:08:28 +01005088 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005089 struct cert_key_and_chain *ckch = NULL;
5090 int ret = 0;
5091 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005092
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005093 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005094 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005095
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005096#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005097 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005098 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005099 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005100 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005101 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005102#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005103
Christopher Faulet31af49d2015-06-09 17:29:50 +02005104 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005105 ha_alert("Proxy '%s': cannot enable certificate generation, "
5106 "no CA certificate File configured at [%s:%d].\n",
5107 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005108 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005109 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005110
Shimi Gersner5846c492020-08-23 13:58:12 +03005111 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005112 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005113 if (!ckch) {
5114 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5115 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5116 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005117 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005118
5119 /* Try to parse file */
5120 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5121 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5122 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005123 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005124 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005125 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005126
5127 /* Fail if missing cert or pkey */
5128 if ((!ckch->cert) || (!ckch->key)) {
5129 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5130 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5131 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005132 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005133
Shimi Gersner5846c492020-08-23 13:58:12 +03005134 /* Final assignment to bind */
5135 bind_conf->ca_sign_ckch = ckch;
5136 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005137
Shimi Gersner5846c492020-08-23 13:58:12 +03005138 failed:
5139 if (ckch) {
5140 ssl_sock_free_cert_key_and_chain_contents(ckch);
5141 free(ckch);
5142 }
5143
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005144 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005145 ret++;
5146 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005147}
5148
5149/* Release CA cert and private key used to generate certificated */
5150void
5151ssl_sock_free_ca(struct bind_conf *bind_conf)
5152{
Shimi Gersner5846c492020-08-23 13:58:12 +03005153 if (bind_conf->ca_sign_ckch) {
5154 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005155 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005156 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005157}
5158
Emeric Brun46591952012-05-18 15:47:34 +02005159/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005160 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5161 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5162 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5163 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005164 * 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 +01005165 * as parameters to this function.
5166 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5167 * CO_ER_SSL_NO_MEM.
5168 */
5169int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5170 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5171{
5172 int retry = 1;
5173
5174 retry:
5175 /* Alloc a new SSL session. */
5176 *ssl = SSL_new(ssl_ctx);
5177 if (!*ssl) {
5178 if (!retry--)
5179 goto err;
5180
5181 pool_gc(NULL);
5182 goto retry;
5183 }
5184
5185 *bio = BIO_new(bio_meth);
5186 if (!*bio) {
5187 SSL_free(*ssl);
5188 *ssl = NULL;
5189 if (!retry--)
5190 goto err;
5191
5192 pool_gc(NULL);
5193 goto retry;
5194 }
5195
5196 BIO_set_data(*bio, ctx);
5197 SSL_set_bio(*ssl, *bio, *bio);
5198
5199 /* set connection pointer. */
5200 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5201 SSL_free(*ssl);
5202 *ssl = NULL;
5203 if (!retry--)
5204 goto err;
5205
5206 pool_gc(NULL);
5207 goto retry;
5208 }
5209
5210 return 0;
5211
5212 err:
5213 conn->err_code = CO_ER_SSL_NO_MEM;
5214 return -1;
5215}
5216
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005217/* This function is called when all the XPRT have been initialized. We can
5218 * now attempt to start the SSL handshake.
5219 */
5220static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5221{
5222 struct ssl_sock_ctx *ctx = xprt_ctx;
5223
5224 if (ctx->xprt->start) {
5225 int ret;
5226
5227 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5228 if (ret < 0)
5229 return ret;
5230 }
5231 tasklet_wakeup(ctx->wait_event.tasklet);
5232
5233 return 0;
5234}
5235
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005236/*
Emeric Brun46591952012-05-18 15:47:34 +02005237 * This function is called if SSL * context is not yet allocated. The function
5238 * is designed to be called before any other data-layer operation and sets the
5239 * handshake flag on the connection. It is safe to call it multiple times.
5240 * It returns 0 on success and -1 in error case.
5241 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005242static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005243{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005244 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005245 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005246 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005247 return 0;
5248
Olivier Houchard66ab4982019-02-26 18:37:15 +01005249 ctx = pool_alloc(ssl_sock_ctx_pool);
5250 if (!ctx) {
5251 conn->err_code = CO_ER_SSL_NO_MEM;
5252 return -1;
5253 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005254 ctx->wait_event.tasklet = tasklet_new();
5255 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005256 conn->err_code = CO_ER_SSL_NO_MEM;
5257 pool_free(ssl_sock_ctx_pool, ctx);
5258 return -1;
5259 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005260 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5261 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005262 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005263 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005264 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005265 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005266 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005267 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005268 ctx->xprt_st = 0;
5269 ctx->xprt_ctx = NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005270
5271 /* Only work with sockets for now, this should be adapted when we'll
5272 * add QUIC support.
5273 */
5274 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005275 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005276 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5277 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005278 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005279
Willy Tarreau20879a02012-12-03 16:32:10 +01005280 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5281 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005282 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005283 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005284
Emeric Brun46591952012-05-18 15:47:34 +02005285 /* If it is in client mode initiate SSL session
5286 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005287 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005288 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5289 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005290 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005291
Olivier Houchard66ab4982019-02-26 18:37:15 +01005292 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005293 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005294 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5295 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5296 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 +01005297 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005298 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005299 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005300 } else if (sess) {
5301 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005302 }
5303 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005304 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005305
Emeric Brun46591952012-05-18 15:47:34 +02005306 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005307 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005308
Willy Tarreau4781b152021-04-06 13:53:36 +02005309 _HA_ATOMIC_INC(&sslconns);
5310 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005311 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005312 return 0;
5313 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005314 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005315 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005316
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005317 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5318 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005319 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005320
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005321#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005322 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005323 b_alloc(&ctx->early_buf);
5324 SSL_set_max_early_data(ctx->ssl,
5325 /* Only allow early data if we managed to allocate
5326 * a buffer.
5327 */
5328 (!b_is_null(&ctx->early_buf)) ?
5329 global.tune.bufsize - global.tune.maxrewrite : 0);
5330 }
5331#endif
5332
Olivier Houchard66ab4982019-02-26 18:37:15 +01005333 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005334
Emeric Brun46591952012-05-18 15:47:34 +02005335 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005336 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005337#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005338 if (bc->ssl_conf.early_data)
5339 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005340#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005341
Willy Tarreau4781b152021-04-06 13:53:36 +02005342 _HA_ATOMIC_INC(&sslconns);
5343 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005344 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005345 return 0;
5346 }
5347 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005348 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005349err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005350 if (ctx && ctx->wait_event.tasklet)
5351 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005352 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005353 return -1;
5354}
5355
5356
5357/* This is the callback which is used when an SSL handshake is pending. It
5358 * updates the FD status if it wants some polling before being called again.
5359 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5360 * otherwise it returns non-zero and removes itself from the connection's
5361 * flags (the bit is provided in <flag> by the caller).
5362 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005363static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005364{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005365 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005366 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005367 struct ssl_counters *counters = NULL;
5368 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005369 struct listener *li;
5370 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005371 socklen_t lskerr;
5372 int skerr;
5373
Emeric Brun46591952012-05-18 15:47:34 +02005374
Willy Tarreau3c728722014-01-23 13:50:42 +01005375 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005376 return 0;
5377
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005378 /* get counters */
5379 switch (obj_type(conn->target)) {
5380 case OBJ_TYPE_LISTENER:
5381 li = objt_listener(conn->target);
5382 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5383 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5384 &ssl_stats_module);
5385 break;
5386
5387 case OBJ_TYPE_SERVER:
5388 srv = objt_server(conn->target);
5389 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5390 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5391 &ssl_stats_module);
5392 break;
5393
5394 default:
5395 break;
5396 }
5397
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005398 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005399 goto out_error;
5400
Willy Tarreau06300382021-02-02 15:42:25 +01005401 /* don't start calculating a handshake on a dead connection */
5402 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5403 goto out_error;
5404
5405 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5406 * status from the lower layers, so let's check the FD directly. Ideally
5407 * the xprt layers should provide some status indicating their knowledge
5408 * of shutdowns or error.
5409 */
5410 skerr = 0;
5411 lskerr = sizeof(skerr);
5412 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5413 skerr != 0)
5414 goto out_error;
5415
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005416#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005417 /*
5418 * Check if we have early data. If we do, we have to read them
5419 * before SSL_do_handshake() is called, And there's no way to
5420 * detect early data, except to try to read them
5421 */
5422 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005423 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005424
Olivier Houchard54907bb2019-12-19 15:02:39 +01005425 while (1) {
5426 ret = SSL_read_early_data(ctx->ssl,
5427 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5428 &read_data);
5429 if (ret == SSL_READ_EARLY_DATA_ERROR)
5430 goto check_error;
5431 if (read_data > 0) {
5432 conn->flags |= CO_FL_EARLY_DATA;
5433 b_add(&ctx->early_buf, read_data);
5434 }
5435 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5436 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5437 if (!b_data(&ctx->early_buf))
5438 b_free(&ctx->early_buf);
5439 break;
5440 }
5441 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005442 }
5443#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005444 /* If we use SSL_do_handshake to process a reneg initiated by
5445 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5446 * Usually SSL_write and SSL_read are used and process implicitly
5447 * the reneg handshake.
5448 * Here we use SSL_peek as a workaround for reneg.
5449 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005450 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005451 char c;
5452
Olivier Houchard66ab4982019-02-26 18:37:15 +01005453 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005454 if (ret <= 0) {
5455 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005456 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005457
Emeric Brun674b7432012-11-08 19:21:55 +01005458 if (ret == SSL_ERROR_WANT_WRITE) {
5459 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005460 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005461 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005462 return 0;
5463 }
5464 else if (ret == SSL_ERROR_WANT_READ) {
5465 /* handshake may have been completed but we have
5466 * no more data to read.
5467 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005468 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005469 ret = 1;
5470 goto reneg_ok;
5471 }
5472 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005473 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005474 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005475 return 0;
5476 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005477#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005478 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005479 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005480 return 0;
5481 }
5482#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005483 else if (ret == SSL_ERROR_SYSCALL) {
5484 /* if errno is null, then connection was successfully established */
5485 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5486 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005487 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005488#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5489 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005490 conn->err_code = CO_ER_SSL_HANDSHAKE;
5491#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005492 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005493#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005494 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005495 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005496 empty_handshake = state == TLS_ST_BEFORE;
5497#else
Lukas Tribus49799162019-07-08 14:29:15 +02005498 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5499 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005500#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005501 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005502 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005503 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005504 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5505 else
5506 conn->err_code = CO_ER_SSL_EMPTY;
5507 }
5508 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005509 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005510 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5511 else
5512 conn->err_code = CO_ER_SSL_ABORT;
5513 }
5514 }
5515 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005516 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005517 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005518 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005519 conn->err_code = CO_ER_SSL_HANDSHAKE;
5520 }
Lukas Tribus49799162019-07-08 14:29:15 +02005521#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005522 }
Emeric Brun674b7432012-11-08 19:21:55 +01005523 goto out_error;
5524 }
5525 else {
5526 /* Fail on all other handshake errors */
5527 /* Note: OpenSSL may leave unread bytes in the socket's
5528 * buffer, causing an RST to be emitted upon close() on
5529 * TCP sockets. We first try to drain possibly pending
5530 * data to avoid this as much as possible.
5531 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005532 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005533 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005534 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005535 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005536 goto out_error;
5537 }
5538 }
5539 /* read some data: consider handshake completed */
5540 goto reneg_ok;
5541 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005542 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005543check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005544 if (ret != 1) {
5545 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005546 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005547
5548 if (ret == SSL_ERROR_WANT_WRITE) {
5549 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005550 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005551 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005552 return 0;
5553 }
5554 else if (ret == SSL_ERROR_WANT_READ) {
5555 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005556 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005557 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5558 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005559 return 0;
5560 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005561#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005562 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005563 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005564 return 0;
5565 }
5566#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005567 else if (ret == SSL_ERROR_SYSCALL) {
5568 /* if errno is null, then connection was successfully established */
5569 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5570 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005571 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005572#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5573 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005574 conn->err_code = CO_ER_SSL_HANDSHAKE;
5575#else
5576 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005577#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005578 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005579 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005580 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005581#else
Lukas Tribus49799162019-07-08 14:29:15 +02005582 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5583 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005584#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005585 if (empty_handshake) {
5586 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005587 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005588 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5589 else
5590 conn->err_code = CO_ER_SSL_EMPTY;
5591 }
5592 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005593 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005594 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5595 else
5596 conn->err_code = CO_ER_SSL_ABORT;
5597 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005598 }
5599 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005600 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005601 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5602 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005603 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005604 }
Lukas Tribus49799162019-07-08 14:29:15 +02005605#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005606 }
Willy Tarreau89230192012-09-28 20:22:13 +02005607 goto out_error;
5608 }
Emeric Brun46591952012-05-18 15:47:34 +02005609 else {
5610 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005611 /* Note: OpenSSL may leave unread bytes in the socket's
5612 * buffer, causing an RST to be emitted upon close() on
5613 * TCP sockets. We first try to drain possibly pending
5614 * data to avoid this as much as possible.
5615 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005616 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005617 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005618 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005619 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005620 goto out_error;
5621 }
5622 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005623#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005624 else {
5625 /*
5626 * If the server refused the early data, we have to send a
5627 * 425 to the client, as we no longer have the data to sent
5628 * them again.
5629 */
5630 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005631 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005632 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5633 goto out_error;
5634 }
5635 }
5636 }
5637#endif
5638
Emeric Brun46591952012-05-18 15:47:34 +02005639
Emeric Brun674b7432012-11-08 19:21:55 +01005640reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005641
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005642#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005643 /* ASYNC engine API doesn't support moving read/write
5644 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005645 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005646 */
5647 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005648 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005649#endif
Emeric Brun46591952012-05-18 15:47:34 +02005650 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005651 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005652 if (objt_server(conn->target)) {
5653 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5654 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5655 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005656 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005657 else {
5658 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5659 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5660 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5661 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005662
Willy Tarreau42995282020-11-06 13:19:18 +01005663 if (counters) {
5664 ++counters->sess;
5665 ++counters_px->sess;
5666 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005667 }
Willy Tarreau42995282020-11-06 13:19:18 +01005668 else if (counters) {
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005669 ++counters->reused_sess;
5670 ++counters_px->reused_sess;
Emeric Brun46591952012-05-18 15:47:34 +02005671 }
5672
5673 /* The connection is now established at both layers, it's time to leave */
5674 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5675 return 1;
5676
5677 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005678 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005679 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005680 ERR_clear_error();
5681
Emeric Brun9fa89732012-10-04 17:09:56 +02005682 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005683 if (objt_server(conn->target)) {
5684 struct server *s = __objt_server(conn->target);
5685 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5686 * one cache per thread, it only prevents to flush it from the CLI in
5687 * another thread */
5688
5689 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005690 if (s->ssl_ctx.reused_sess[tid].ptr)
5691 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005692 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005693 }
5694
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005695 if (counters) {
5696 ++counters->failed_handshake;
5697 ++counters_px->failed_handshake;
5698 }
5699
Emeric Brun46591952012-05-18 15:47:34 +02005700 /* Fail on all other handshake errors */
5701 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005702 if (!conn->err_code)
5703 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005704 return 0;
5705}
5706
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005707/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5708 * event subscriber <es> is not allowed to change from a previous call as long
5709 * as at least one event is still subscribed. The <event_type> must only be a
5710 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5711 * unless the transport layer was already released.
5712 */
5713static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005714{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005715 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005716
Olivier Houchard0ff28652019-06-24 18:57:39 +02005717 if (!ctx)
5718 return -1;
5719
Willy Tarreau113d52b2020-01-10 09:20:26 +01005720 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005721 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005722
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005723 ctx->subs = es;
5724 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005725
5726 /* we may have to subscribe to lower layers for new events */
5727 event_type &= ~ctx->wait_event.events;
5728 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5729 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005730 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005731}
5732
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005733/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5734 * The <es> pointer is not allowed to differ from the one passed to the
5735 * subscribe() call. It always returns zero.
5736 */
5737static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005738{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005739 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005740
Willy Tarreau113d52b2020-01-10 09:20:26 +01005741 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005742 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005743
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005744 es->events &= ~event_type;
5745 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005746 ctx->subs = NULL;
5747
5748 /* If we subscribed, and we're not doing the handshake,
5749 * then we subscribed because the upper layer asked for it,
5750 * as the upper layer is no longer interested, we can
5751 * unsubscribe too.
5752 */
5753 event_type &= ctx->wait_event.events;
5754 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5755 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005756
5757 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005758}
5759
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005760/* The connection has been taken over, so destroy the old tasklet and create
5761 * a new one. The original thread ID must be passed into orig_tid
5762 * It should be called with the takeover lock for the old thread held.
5763 * Returns 0 on success, and -1 on failure
5764 */
5765static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
5766{
5767 struct ssl_sock_ctx *ctx = xprt_ctx;
5768 struct tasklet *tl = tasklet_new();
5769
5770 if (!tl)
5771 return -1;
5772
5773 ctx->wait_event.tasklet->context = NULL;
5774 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
5775 ctx->wait_event.tasklet = tl;
5776 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5777 ctx->wait_event.tasklet->context = ctx;
5778 return 0;
5779}
5780
Willy Tarreau41491682021-03-02 17:29:56 +01005781/* notify the next xprt that the connection is about to become idle and that it
5782 * may be stolen at any time after the function returns and that any tasklet in
5783 * the chain must be careful before dereferencing its context.
5784 */
5785static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
5786{
5787 struct ssl_sock_ctx *ctx = xprt_ctx;
5788
5789 if (!ctx || !ctx->wait_event.tasklet)
5790 return;
5791
5792 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5793 if (ctx->xprt)
5794 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
5795}
5796
5797/* notify the next xprt that the connection is not idle anymore and that it may
5798 * not be stolen before the next xprt_set_idle().
5799 */
5800static void ssl_set_used(struct connection *conn, void *xprt_ctx)
5801{
5802 struct ssl_sock_ctx *ctx = xprt_ctx;
5803
5804 if (!ctx || !ctx->wait_event.tasklet)
5805 return;
5806
5807 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5808 if (ctx->xprt)
5809 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
5810}
5811
Olivier Houchard2e055482019-05-27 19:50:12 +02005812/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5813 * Returns 0 on success, and non-zero on failure.
5814 */
5815static 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)
5816{
5817 struct ssl_sock_ctx *ctx = xprt_ctx;
5818
5819 if (oldxprt_ops != NULL)
5820 *oldxprt_ops = ctx->xprt;
5821 if (oldxprt_ctx != NULL)
5822 *oldxprt_ctx = ctx->xprt_ctx;
5823 ctx->xprt = toadd_ops;
5824 ctx->xprt_ctx = toadd_ctx;
5825 return 0;
5826}
5827
Olivier Houchard5149b592019-05-23 17:47:36 +02005828/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5829 * return 0, otherwise just call the remove_xprt method from the underlying
5830 * XPRT.
5831 */
5832static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5833{
5834 struct ssl_sock_ctx *ctx = xprt_ctx;
5835
5836 if (ctx->xprt_ctx == toremove_ctx) {
5837 ctx->xprt_ctx = newctx;
5838 ctx->xprt = newops;
5839 return 0;
5840 }
5841 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
5842}
5843
Willy Tarreau144f84a2021-03-02 16:09:26 +01005844struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02005845{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005846 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005847 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005848 struct connection *conn;
5849 int conn_in_list;
5850 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005851
Willy Tarreau41491682021-03-02 17:29:56 +01005852 if (state & TASK_F_USR1) {
5853 /* the tasklet was idling on an idle connection, it might have
5854 * been stolen, let's be careful!
5855 */
5856 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5857 if (tl->context == NULL) {
5858 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5859 tasklet_free(tl);
5860 return NULL;
5861 }
5862 conn = ctx->conn;
5863 conn_in_list = conn->flags & CO_FL_LIST_MASK;
5864 if (conn_in_list)
5865 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005866 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01005867 } else {
5868 conn = ctx->conn;
5869 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005870 }
Willy Tarreau41491682021-03-02 17:29:56 +01005871
Olivier Houchardea8dd942019-05-20 14:02:16 +02005872 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01005873 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005874 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005875 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
5876 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01005877 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005878 }
5879 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005880 /* If we had an error, or the handshake is done and I/O is available,
5881 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01005882 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02005883 * we can't be sure conn_fd_handler() will be called again.
5884 */
5885 if ((ctx->conn->flags & CO_FL_ERROR) ||
5886 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005887 int woke = 0;
5888
5889 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005890 if (ctx->subs) {
5891 tasklet_wakeup(ctx->subs->tasklet);
5892 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005893 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005894 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005895 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005896
Olivier Houchardea8dd942019-05-20 14:02:16 +02005897 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01005898 * upper layers know. If we have no mux, create it,
5899 * and once we have a mux, call its wake method if we didn't
5900 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02005901 */
5902 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01005903 if (!ctx->conn->mux)
5904 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005905 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005906 ret = ctx->conn->mux->wake(ctx->conn);
5907 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005908 }
5909 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005910#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005911 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005912 else if (b_data(&ctx->early_buf) && ctx->subs &&
5913 ctx->subs->events & SUB_RETRY_RECV) {
5914 tasklet_wakeup(ctx->subs->tasklet);
5915 ctx->subs->events &= ~SUB_RETRY_RECV;
5916 if (!ctx->subs->events)
5917 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005918 }
5919#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005920leave:
5921 if (!ret && conn_in_list) {
5922 struct server *srv = objt_server(conn->target);
5923
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005924 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005925 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005926 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005927 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005928 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005929 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005930 }
Willy Tarreau74163142021-03-13 11:30:19 +01005931 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005932}
5933
Emeric Brun46591952012-05-18 15:47:34 +02005934/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005935 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005936 * buffer wraps, in which case a second call may be performed. The connection's
5937 * flags are updated with whatever special event is detected (error, read0,
5938 * empty). The caller is responsible for taking care of those events and
5939 * avoiding the call if inappropriate. The function does not call the
5940 * connection's polling update function, so the caller is responsible for this.
5941 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005942static 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 +02005943{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005944 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005945 ssize_t ret;
5946 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005947
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005948 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005949 goto out_error;
5950
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005951#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005952 if (b_data(&ctx->early_buf)) {
5953 try = b_contig_space(buf);
5954 if (try > b_data(&ctx->early_buf))
5955 try = b_data(&ctx->early_buf);
5956 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
5957 b_add(buf, try);
5958 b_del(&ctx->early_buf, try);
5959 if (b_data(&ctx->early_buf) == 0)
5960 b_free(&ctx->early_buf);
5961 return try;
5962 }
5963#endif
5964
Willy Tarreau911db9b2020-01-23 16:27:54 +01005965 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005966 /* a handshake was requested */
5967 return 0;
5968
Emeric Brun46591952012-05-18 15:47:34 +02005969 /* read the largest possible block. For this, we perform only one call
5970 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5971 * in which case we accept to do it once again. A new attempt is made on
5972 * EINTR too.
5973 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005974 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005975
Willy Tarreau591d4452018-06-15 17:21:00 +02005976 try = b_contig_space(buf);
5977 if (!try)
5978 break;
5979
Willy Tarreauabf08d92014-01-14 11:31:27 +01005980 if (try > count)
5981 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005982
Olivier Houchard66ab4982019-02-26 18:37:15 +01005983 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005984
Emeric Brune1f38db2012-09-03 20:36:47 +02005985 if (conn->flags & CO_FL_ERROR) {
5986 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005987 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005988 }
Emeric Brun46591952012-05-18 15:47:34 +02005989 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02005990 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005991 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005992 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005993 }
Emeric Brun46591952012-05-18 15:47:34 +02005994 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005995 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005996 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01005997 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02005998 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005999 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006000#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006001 /* Async mode can be re-enabled, because we're leaving data state.*/
6002 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006003 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006004#endif
Emeric Brun46591952012-05-18 15:47:34 +02006005 break;
6006 }
6007 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006008 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006009 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6010 SUB_RETRY_RECV,
6011 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006012 /* handshake is running, and it may need to re-enable read */
6013 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006014#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006015 /* Async mode can be re-enabled, because we're leaving data state.*/
6016 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006017 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006018#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006019 break;
6020 }
Emeric Brun46591952012-05-18 15:47:34 +02006021 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006022 } else if (ret == SSL_ERROR_ZERO_RETURN)
6023 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006024 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6025 * stack before shutting down the connection for
6026 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006027 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6028 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006029 /* otherwise it's a real error */
6030 goto out_error;
6031 }
6032 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006033 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006034 return done;
6035
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006036 clear_ssl_error:
6037 /* Clear openssl global errors stack */
6038 ssl_sock_dump_errors(conn);
6039 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006040 read0:
6041 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006042 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006043
Emeric Brun46591952012-05-18 15:47:34 +02006044 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006045 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006046 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006047 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006048 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006049 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006050}
6051
6052
Willy Tarreau787db9a2018-06-14 18:31:46 +02006053/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6054 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6055 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006056 * Only one call to send() is performed, unless the buffer wraps, in which case
6057 * a second call may be performed. The connection's flags are updated with
6058 * whatever special event is detected (error, empty). The caller is responsible
6059 * for taking care of those events and avoiding the call if inappropriate. The
6060 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006061 * is responsible for this. The buffer's output is not adjusted, it's up to the
6062 * caller to take care of this. It's up to the caller to update the buffer's
6063 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006064 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006065static 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 +02006066{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006067 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006068 ssize_t ret;
6069 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006070
6071 done = 0;
6072
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006073 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006074 goto out_error;
6075
Willy Tarreau911db9b2020-01-23 16:27:54 +01006076 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006077 /* a handshake was requested */
6078 return 0;
6079
6080 /* send the largest possible block. For this we perform only one call
6081 * to send() unless the buffer wraps and we exactly fill the first hunk,
6082 * in which case we accept to do it once again.
6083 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006084 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006085#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006086 size_t written_data;
6087#endif
6088
Willy Tarreau787db9a2018-06-14 18:31:46 +02006089 try = b_contig_data(buf, done);
6090 if (try > count)
6091 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006092
Willy Tarreau7bed9452014-02-02 02:00:24 +01006093 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006094 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006095 global_ssl.max_record && try > global_ssl.max_record) {
6096 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006097 }
6098 else {
6099 /* we need to keep the information about the fact that
6100 * we're not limiting the upcoming send(), because if it
6101 * fails, we'll have to retry with at least as many data.
6102 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006103 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006104 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006105
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006106#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006107 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006108 unsigned int max_early;
6109
Olivier Houchard522eea72017-11-03 16:27:47 +01006110 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006111 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006112 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006113 if (SSL_get0_session(ctx->ssl))
6114 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006115 else
6116 max_early = 0;
6117 }
6118
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006119 if (try + ctx->sent_early_data > max_early) {
6120 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006121 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006122 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006123 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006124 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006125 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006126 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006127 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006128 if (ret == 1) {
6129 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006130 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006131 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006132 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006133 /* Initiate the handshake, now */
6134 tasklet_wakeup(ctx->wait_event.tasklet);
6135 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006136
Olivier Houchardc2aae742017-09-22 18:26:28 +02006137 }
6138
6139 } else
6140#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006141 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006142
Emeric Brune1f38db2012-09-03 20:36:47 +02006143 if (conn->flags & CO_FL_ERROR) {
6144 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006145 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006146 }
Emeric Brun46591952012-05-18 15:47:34 +02006147 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006148 /* A send succeeded, so we can consider ourself connected */
6149 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006150 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006151 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006152 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006153 }
6154 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006155 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006156
Emeric Brun46591952012-05-18 15:47:34 +02006157 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006158 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006159 /* handshake is running, and it may need to re-enable write */
6160 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 Brun282a76a2012-11-08 18:02:56 +01006167 break;
6168 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006169
Emeric Brun46591952012-05-18 15:47:34 +02006170 break;
6171 }
6172 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006173 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006174 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006175 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6176 SUB_RETRY_RECV,
6177 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006178#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006179 /* Async mode can be re-enabled, because we're leaving data state.*/
6180 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006181 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006182#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006183 break;
6184 }
Emeric Brun46591952012-05-18 15:47:34 +02006185 goto out_error;
6186 }
6187 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006188 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006189 return done;
6190
6191 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006192 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006193 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006194 ERR_clear_error();
6195
Emeric Brun46591952012-05-18 15:47:34 +02006196 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006197 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006198}
6199
Willy Tarreau832e2422021-05-13 10:11:03 +02006200void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006201
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006202 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006203
Olivier Houchardea8dd942019-05-20 14:02:16 +02006204
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006205 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006206 if (ctx->wait_event.events != 0)
6207 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6208 ctx->wait_event.events,
6209 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006210 if (ctx->subs) {
6211 ctx->subs->events = 0;
6212 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006213 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006214
Olivier Houchard692c1d02019-05-23 18:41:47 +02006215 if (ctx->xprt->close)
6216 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006217#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006218 if (global_ssl.async) {
6219 OSSL_ASYNC_FD all_fd[32], afd;
6220 size_t num_all_fds = 0;
6221 int i;
6222
Olivier Houchard66ab4982019-02-26 18:37:15 +01006223 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006224 if (num_all_fds > 32) {
6225 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6226 return;
6227 }
6228
Olivier Houchard66ab4982019-02-26 18:37:15 +01006229 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006230
6231 /* If an async job is pending, we must try to
6232 to catch the end using polling before calling
6233 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006234 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006235 for (i=0 ; i < num_all_fds ; i++) {
6236 /* switch on an handler designed to
6237 * handle the SSL_free
6238 */
6239 afd = all_fd[i];
6240 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006241 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006242 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006243 /* To ensure that the fd cache won't be used
6244 * and we'll catch a real RD event.
6245 */
6246 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006247 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006248 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006249 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006250 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006251 return;
6252 }
Emeric Brun3854e012017-05-17 20:42:48 +02006253 /* Else we can remove the fds from the fdtab
6254 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006255 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006256 * because the fd is owned by the engine.
6257 * the engine is responsible to close
6258 */
6259 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006260 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006261 }
6262#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006263 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006264 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006265 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006266 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006267 _HA_ATOMIC_DEC(&sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006268 }
Emeric Brun46591952012-05-18 15:47:34 +02006269}
6270
6271/* This function tries to perform a clean shutdown on an SSL connection, and in
6272 * any case, flags the connection as reusable if no handshake was in progress.
6273 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006274static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006275{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006276 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006277
Willy Tarreau911db9b2020-01-23 16:27:54 +01006278 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006279 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006280 if (!clean)
6281 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006282 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006283 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006284 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006285 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006286 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006287 ERR_clear_error();
6288 }
Emeric Brun46591952012-05-18 15:47:34 +02006289}
6290
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006291
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006292/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006293int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6294{
6295 struct ssl_sock_ctx *ctx;
6296 X509 *crt;
6297
6298 if (!ssl_sock_is_ssl(conn))
6299 return 0;
6300
6301 ctx = conn->xprt_ctx;
6302
6303 crt = SSL_get_certificate(ctx->ssl);
6304 if (!crt)
6305 return 0;
6306
6307 return cert_get_pkey_algo(crt, out);
6308}
6309
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006310/* used for ppv2 cert signature (can be used for logging) */
6311const char *ssl_sock_get_cert_sig(struct connection *conn)
6312{
Christopher Faulet82004142019-09-10 10:12:03 +02006313 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006314
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006315 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6316 X509 *crt;
6317
6318 if (!ssl_sock_is_ssl(conn))
6319 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006320 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006321 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006322 if (!crt)
6323 return NULL;
6324 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6325 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6326}
6327
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006328/* used for ppv2 authority */
6329const char *ssl_sock_get_sni(struct connection *conn)
6330{
6331#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006332 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006333
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006334 if (!ssl_sock_is_ssl(conn))
6335 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006336 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006337 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006338#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006339 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006340#endif
6341}
6342
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006343/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006344const char *ssl_sock_get_cipher_name(struct connection *conn)
6345{
Christopher Faulet82004142019-09-10 10:12:03 +02006346 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006347
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006348 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006349 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006350 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006351 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006352}
6353
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006354/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006355const char *ssl_sock_get_proto_version(struct connection *conn)
6356{
Christopher Faulet82004142019-09-10 10:12:03 +02006357 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006358
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006359 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006360 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006361 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006362 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006363}
6364
Olivier Houchardab28a322018-12-21 19:45:40 +01006365void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6366{
6367#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006368 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006369
Olivier Houcharde488ea82019-06-28 14:10:33 +02006370 if (!ssl_sock_is_ssl(conn))
6371 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006372 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006373 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006374#endif
6375}
6376
Willy Tarreau119a4082016-12-22 21:58:38 +01006377/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6378 * to disable SNI.
6379 */
Willy Tarreau63076412015-07-10 11:33:32 +02006380void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6381{
6382#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006383 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006384
Willy Tarreau119a4082016-12-22 21:58:38 +01006385 char *prev_name;
6386
Willy Tarreau63076412015-07-10 11:33:32 +02006387 if (!ssl_sock_is_ssl(conn))
6388 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006389 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02006390
Willy Tarreau119a4082016-12-22 21:58:38 +01006391 /* if the SNI changes, we must destroy the reusable context so that a
6392 * new connection will present a new SNI. As an optimization we could
6393 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6394 * server.
6395 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006396 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006397 if ((!prev_name && hostname) ||
6398 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006399 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006400
Olivier Houchard66ab4982019-02-26 18:37:15 +01006401 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006402#endif
6403}
6404
Emeric Brun0abf8362014-06-24 18:26:41 +02006405/* Extract peer certificate's common name into the chunk dest
6406 * Returns
6407 * the len of the extracted common name
6408 * or 0 if no CN found in DN
6409 * or -1 on error case (i.e. no peer certificate)
6410 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006411int ssl_sock_get_remote_common_name(struct connection *conn,
6412 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006413{
Christopher Faulet82004142019-09-10 10:12:03 +02006414 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006415 X509 *crt = NULL;
6416 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006417 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006418 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006419 .area = (char *)&find_cn,
6420 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006421 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006422 int result = -1;
David Safb76832014-05-08 23:42:08 -04006423
6424 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006425 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006426 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006427
6428 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006429 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006430 if (!crt)
6431 goto out;
6432
6433 name = X509_get_subject_name(crt);
6434 if (!name)
6435 goto out;
David Safb76832014-05-08 23:42:08 -04006436
Emeric Brun0abf8362014-06-24 18:26:41 +02006437 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6438out:
David Safb76832014-05-08 23:42:08 -04006439 if (crt)
6440 X509_free(crt);
6441
6442 return result;
6443}
6444
Dave McCowan328fb582014-07-30 10:39:13 -04006445/* returns 1 if client passed a certificate for this session, 0 if not */
6446int ssl_sock_get_cert_used_sess(struct connection *conn)
6447{
Christopher Faulet82004142019-09-10 10:12:03 +02006448 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006449 X509 *crt = NULL;
6450
6451 if (!ssl_sock_is_ssl(conn))
6452 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006453 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006454
6455 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006456 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006457 if (!crt)
6458 return 0;
6459
6460 X509_free(crt);
6461 return 1;
6462}
6463
6464/* returns 1 if client passed a certificate for this connection, 0 if not */
6465int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006466{
Christopher Faulet82004142019-09-10 10:12:03 +02006467 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006468
David Safb76832014-05-08 23:42:08 -04006469 if (!ssl_sock_is_ssl(conn))
6470 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006471 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006472 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006473}
6474
6475/* returns result from SSL verify */
6476unsigned int ssl_sock_get_verify_result(struct connection *conn)
6477{
Christopher Faulet82004142019-09-10 10:12:03 +02006478 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006479
David Safb76832014-05-08 23:42:08 -04006480 if (!ssl_sock_is_ssl(conn))
6481 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006482 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006483 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006484}
6485
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006486/* Returns the application layer protocol name in <str> and <len> when known.
6487 * Zero is returned if the protocol name was not found, otherwise non-zero is
6488 * returned. The string is allocated in the SSL context and doesn't have to be
6489 * freed by the caller. NPN is also checked if available since older versions
6490 * of openssl (1.0.1) which are more common in field only support this one.
6491 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006492static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006493{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006494#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6495 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006496 struct ssl_sock_ctx *ctx = xprt_ctx;
6497 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006498 return 0;
6499
6500 *str = NULL;
6501
6502#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006503 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006504 if (*str)
6505 return 1;
6506#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006507#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006508 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006509 if (*str)
6510 return 1;
6511#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006512#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006513 return 0;
6514}
6515
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006516/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006517int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006518{
6519 X509 *ca;
6520 X509_NAME *name = NULL;
6521 ASN1_OCTET_STRING *skid = NULL;
6522 STACK_OF(X509) *chain = NULL;
6523 struct issuer_chain *issuer;
6524 struct eb64_node *node;
6525 char *path;
6526 u64 key;
6527 int ret = 0;
6528
6529 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6530 if (chain == NULL) {
6531 chain = sk_X509_new_null();
6532 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6533 name = X509_get_subject_name(ca);
6534 }
6535 if (!sk_X509_push(chain, ca)) {
6536 X509_free(ca);
6537 goto end;
6538 }
6539 }
6540 if (!chain) {
6541 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6542 goto end;
6543 }
6544 if (!skid) {
6545 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6546 goto end;
6547 }
6548 if (!name) {
6549 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6550 goto end;
6551 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006552 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006553 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006554 issuer = container_of(node, typeof(*issuer), node);
6555 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6556 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6557 goto end;
6558 }
6559 }
6560 issuer = calloc(1, sizeof *issuer);
6561 path = strdup(fp);
6562 if (!issuer || !path) {
6563 free(issuer);
6564 free(path);
6565 goto end;
6566 }
6567 issuer->node.key = key;
6568 issuer->path = path;
6569 issuer->chain = chain;
6570 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006571 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006572 ret = 1;
6573 end:
6574 if (skid)
6575 ASN1_OCTET_STRING_free(skid);
6576 if (chain)
6577 sk_X509_pop_free(chain, X509_free);
6578 return ret;
6579}
6580
William Lallemandda8584c2020-05-14 10:14:37 +02006581 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006582{
6583 AUTHORITY_KEYID *akid;
6584 struct issuer_chain *issuer = NULL;
6585
6586 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006587 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006588 struct eb64_node *node;
6589 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006590 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006591 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6592 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6593 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6594 issuer = ti;
6595 break;
6596 }
6597 }
6598 AUTHORITY_KEYID_free(akid);
6599 }
6600 return issuer;
6601}
6602
William Lallemanddad31052020-05-14 17:47:32 +02006603void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006604{
6605 struct eb64_node *node, *back;
6606 struct issuer_chain *issuer;
6607
William Lallemande0f3fd52020-02-25 14:53:06 +01006608 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006609 while (node) {
6610 issuer = container_of(node, typeof(*issuer), node);
6611 back = eb64_next(node);
6612 eb64_delete(node);
6613 free(issuer->path);
6614 sk_X509_pop_free(issuer->chain, X509_free);
6615 free(issuer);
6616 node = back;
6617 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006618}
6619
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006620#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006621static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006622 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006623
Emeric Brun3854e012017-05-17 20:42:48 +02006624 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006625 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006626 err_code = ERR_ABORT;
6627 }
6628 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006629}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006630#endif
6631
Willy Tarreaude5675a2021-01-20 14:41:29 +01006632/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006633 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006634 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006635static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006636{
6637 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006638 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006639
6640 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006641 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006642
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006643 if (sctx->conn != conn) {
6644 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6645 ret = 1;
6646 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006647 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6648
6649 if (sctx->xprt) {
6650 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6651 if (sctx->xprt_ctx)
6652 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6653 }
6654
6655 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006656
6657 /* as soon as a shutdown is reported the lower layer unregisters its
6658 * subscriber, so the situations below are transient and rare enough to
6659 * be reported as suspicious. In any case they shouldn't last.
6660 */
6661 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6662 ret = 1;
6663 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6664 ret = 1;
6665
Willy Tarreaude5675a2021-01-20 14:41:29 +01006666 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6667 if (sctx->subs) {
6668 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006669 if (sctx->subs->tasklet->calls >= 1000000)
6670 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006671 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6672 sctx->subs->tasklet->calls,
6673 sctx->subs->tasklet->context);
6674 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6675 chunk_appendf(&trash, ")");
6676 }
6677 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6678 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006679 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006680}
6681
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006682#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02006683/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006684 * each reference. The variable <ref> must point to the current node's list
6685 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02006686 */
William Lallemand32af2032016-10-29 18:09:35 +02006687static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006688struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02006689{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006690 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006691 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02006692
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006693 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006694 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006695 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02006696
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006697 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02006698}
6699
6700static inline
6701struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6702{
6703 int id;
6704 char *error;
6705
6706 /* If the reference starts by a '#', this is numeric id. */
6707 if (reference[0] == '#') {
6708 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6709 id = strtol(reference + 1, &error, 10);
6710 if (*error != '\0')
6711 return NULL;
6712
6713 /* Perform the unique id lookup. */
6714 return tlskeys_ref_lookupid(id);
6715 }
6716
6717 /* Perform the string lookup. */
6718 return tlskeys_ref_lookup(reference);
6719}
6720#endif
6721
6722
6723#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6724
6725static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6726
6727static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6728 return cli_io_handler_tlskeys_files(appctx);
6729}
6730
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006731/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6732 * (next index to be dumped), and cli.p0 (next key reference).
6733 */
William Lallemand32af2032016-10-29 18:09:35 +02006734static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6735
6736 struct stream_interface *si = appctx->owner;
6737
6738 switch (appctx->st2) {
6739 case STAT_ST_INIT:
6740 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006741 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006742 * later and restart at the state "STAT_ST_INIT".
6743 */
6744 chunk_reset(&trash);
6745
6746 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6747 chunk_appendf(&trash, "# id secret\n");
6748 else
6749 chunk_appendf(&trash, "# id (file)\n");
6750
Willy Tarreau06d80a92017-10-19 14:32:15 +02006751 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006752 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006753 return 0;
6754 }
6755
William Lallemand32af2032016-10-29 18:09:35 +02006756 /* Now, we start the browsing of the references lists.
6757 * Note that the following call to LIST_ELEM return bad pointer. The only
6758 * available field of this pointer is <list>. It is used with the function
6759 * tlskeys_list_get_next() for retruning the first available entry
6760 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006761 if (appctx->ctx.cli.p0 == NULL)
6762 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006763
6764 appctx->st2 = STAT_ST_LIST;
6765 /* fall through */
6766
6767 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006768 while (appctx->ctx.cli.p0) {
6769 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006770
6771 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006772 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006773 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006774
6775 if (appctx->ctx.cli.i1 == 0)
6776 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6777
William Lallemand32af2032016-10-29 18:09:35 +02006778 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006779 int head;
6780
6781 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6782 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006783 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006784 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006785
6786 chunk_reset(t2);
6787 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006788 if (ref->key_size_bits == 128) {
6789 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6790 sizeof(struct tls_sess_key_128),
6791 t2->area, t2->size);
6792 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6793 t2->area);
6794 }
6795 else if (ref->key_size_bits == 256) {
6796 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6797 sizeof(struct tls_sess_key_256),
6798 t2->area, t2->size);
6799 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6800 t2->area);
6801 }
6802 else {
6803 /* This case should never happen */
6804 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6805 }
William Lallemand32af2032016-10-29 18:09:35 +02006806
Willy Tarreau06d80a92017-10-19 14:32:15 +02006807 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006808 /* let's try again later from this stream. We add ourselves into
6809 * this stream's users so that it can remove us upon termination.
6810 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006811 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006812 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006813 return 0;
6814 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006815 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006816 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006817 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006818 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006819 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006820 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006821 /* let's try again later from this stream. We add ourselves into
6822 * this stream's users so that it can remove us upon termination.
6823 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006824 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006825 return 0;
6826 }
6827
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006828 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006829 break;
6830
6831 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006832 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006833 }
6834
6835 appctx->st2 = STAT_ST_FIN;
6836 /* fall through */
6837
6838 default:
6839 appctx->st2 = STAT_ST_FIN;
6840 return 1;
6841 }
6842 return 0;
6843}
6844
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006845/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006846static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006847{
William Lallemand32af2032016-10-29 18:09:35 +02006848 /* no parameter, shows only file list */
6849 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006850 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006851 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006852 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006853 }
6854
6855 if (args[2][0] == '*') {
6856 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006857 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006858 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006859 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006860 if (!appctx->ctx.cli.p0)
6861 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006862 }
William Lallemand32af2032016-10-29 18:09:35 +02006863 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006864 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006865}
6866
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006867static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006868{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006869 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006870 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006871
William Lallemand32af2032016-10-29 18:09:35 +02006872 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006873 if (!*args[3] || !*args[4])
6874 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 +02006875
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006876 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006877 if (!ref)
6878 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006879
Willy Tarreau1c913e42018-08-22 05:26:57 +02006880 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006881 if (ret < 0)
6882 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01006883
Willy Tarreau1c913e42018-08-22 05:26:57 +02006884 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02006885 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
6886 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006887
Willy Tarreau9d008692019-08-09 11:21:01 +02006888 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006889}
William Lallemandd4f946c2019-12-05 10:26:40 +01006890#endif
William Lallemand419e6342020-04-08 12:05:39 +02006891
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006892static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006893{
6894#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
6895 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006896 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006897
6898 if (!payload)
6899 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02006900
6901 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006902 if (!*payload)
6903 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006904
6905 /* remove \r and \n from the payload */
6906 for (i = 0, j = 0; payload[i]; i++) {
6907 if (payload[i] == '\r' || payload[i] == '\n')
6908 continue;
6909 payload[j++] = payload[i];
6910 }
6911 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006912
Willy Tarreau1c913e42018-08-22 05:26:57 +02006913 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006914 if (ret < 0)
6915 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006916
Willy Tarreau1c913e42018-08-22 05:26:57 +02006917 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02006918 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02006919 if (err)
6920 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
6921 else
6922 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006923 }
Willy Tarreau9d008692019-08-09 11:21:01 +02006924
6925 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006926#else
Willy Tarreau9d008692019-08-09 11:21:01 +02006927 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 +02006928#endif
6929
Elliot Otchet71f82972020-01-15 08:12:14 -05006930}
6931
Remi Tricot-Le Bretond92fd112021-06-10 13:51:13 +02006932
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02006933#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 +02006934static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx);
6935#endif
6936
6937/* parsing function for 'show ssl ocsp-response [id]' */
6938static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
6939{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02006940#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 +02006941 if (*args[3]) {
6942 struct certificate_ocsp *ocsp = NULL;
6943 char *key = NULL;
6944 int key_length = 0;
6945
6946 if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) {
6947 return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n");
6948 }
6949
6950 if (parse_binary(args[3], &key, &key_length, NULL)) {
6951
6952 char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {};
6953 memcpy(full_key, key, key_length);
6954
6955 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH);
6956 }
6957 if (key)
6958 ha_free(&key);
6959
6960 if (!ocsp) {
6961 return cli_err(appctx, "Certificate ID does not match any certificate.\n");
6962 }
6963
6964 appctx->ctx.cli.p0 = ocsp;
6965 appctx->io_handler = cli_io_handler_show_ocspresponse_detail;
6966 }
6967
6968 return 0;
6969
6970#else
6971 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
6972#endif
6973}
6974
6975
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02006976#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 +02006977/*
6978 * This function dumps the details of an OCSP_CERTID. It is based on
6979 * ocsp_certid_print in OpenSSL.
6980 */
6981static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent)
6982{
6983 ASN1_OCTET_STRING *piNameHash = NULL;
6984 ASN1_OCTET_STRING *piKeyHash = NULL;
6985 ASN1_INTEGER *pSerial = NULL;
6986
6987 if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) {
6988
6989 BIO_printf(bp, "%*sCertificate ID:\n", indent, "");
6990 indent += 2;
6991 BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, "");
6992 i2a_ASN1_STRING(bp, piNameHash, 0);
6993 BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, "");
6994 i2a_ASN1_STRING(bp, piKeyHash, 0);
6995 BIO_printf(bp, "\n%*sSerial Number: ", indent, "");
6996 i2a_ASN1_INTEGER(bp, pSerial);
6997 BIO_printf(bp, "\n");
6998 }
6999 return 1;
7000}
7001#endif
7002
7003/*
7004 * IO handler of "show ssl ocsp-response". The command taking a specific ID
7005 * is managed in cli_io_handler_show_ocspresponse_detail.
7006 */
7007static int cli_io_handler_show_ocspresponse(struct appctx *appctx)
7008{
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007009#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 +02007010 struct buffer *trash = alloc_trash_chunk();
7011 struct buffer *tmp = NULL;
7012 struct ebmb_node *node;
7013 struct stream_interface *si = appctx->owner;
7014 struct certificate_ocsp *ocsp = NULL;
7015 BIO *bio = NULL;
7016 int write = -1;
7017
7018 if (trash == NULL)
7019 return 1;
7020
7021 tmp = alloc_trash_chunk();
7022 if (!tmp)
7023 goto end;
7024
7025 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7026 goto end;
7027
7028 if (!appctx->ctx.cli.p0) {
7029 chunk_appendf(trash, "# Certificate IDs\n");
7030 node = ebmb_first(&cert_ocsp_tree);
7031 } else {
7032 node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key;
7033 }
7034
7035 while (node) {
7036 OCSP_CERTID *certid = NULL;
7037 const unsigned char *p = NULL;
7038 int i;
7039
7040 ocsp = ebmb_entry(node, struct certificate_ocsp, key);
7041
7042 /* Dump the key in hexadecimal */
7043 chunk_appendf(trash, "Certificate ID key : ");
7044 for (i = 0; i < ocsp->key_length; ++i) {
7045 chunk_appendf(trash, "%02x", ocsp->key_data[i]);
7046 }
7047 chunk_appendf(trash, "\n");
7048
7049 p = ocsp->key_data;
7050
7051 /* Decode the certificate ID (serialized into the key). */
7052 d2i_OCSP_CERTID(&certid, &p, ocsp->key_length);
7053
7054 /* Dump the CERTID info */
7055 ocsp_certid_print(bio, certid, 1);
7056 write = BIO_read(bio, tmp->area, tmp->size-1);
7057 tmp->area[write] = '\0';
7058
7059 chunk_appendf(trash, "%s\n", tmp->area);
7060
7061 node = ebmb_next(node);
7062 if (ci_putchk(si_ic(si), trash) == -1) {
7063 si_rx_room_blk(si);
7064 goto yield;
7065 }
7066 }
7067
7068end:
7069 appctx->ctx.cli.p0 = NULL;
7070 if (trash)
7071 free_trash_chunk(trash);
7072 if (tmp)
7073 free_trash_chunk(tmp);
7074 if (bio)
7075 BIO_free(bio);
7076 return 1;
7077
7078yield:
7079
7080 if (trash)
7081 free_trash_chunk(trash);
7082 if (tmp)
7083 free_trash_chunk(tmp);
7084 if (bio)
7085 BIO_free(bio);
7086 appctx->ctx.cli.p0 = ocsp;
7087 return 0;
7088#else
7089 return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n");
7090#endif
7091}
7092
7093
Remi Tricot-Le Breton3faf0cb2021-06-10 18:10:32 +02007094#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 +02007095/*
7096 * Dump the details about an OCSP response in DER format stored in
7097 * <ocsp_response> into buffer <out>.
7098 * Returns 0 in case of success.
7099 */
7100int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out)
7101{
7102 BIO *bio = NULL;
7103 int write = -1;
7104 OCSP_RESPONSE *resp;
7105 const unsigned char *p;
7106
7107 if (!ocsp_response)
7108 return -1;
7109
7110 if ((bio = BIO_new(BIO_s_mem())) == NULL)
7111 return -1;
7112
7113 p = (const unsigned char*)ocsp_response->area;
7114
7115 resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data);
7116 if (!resp) {
7117 chunk_appendf(out, "Unable to parse OCSP response");
7118 return -1;
7119 }
7120
7121 if (OCSP_RESPONSE_print(bio, resp, 0) != 0) {
7122 write = BIO_read(bio, out->area, out->size - 1);
7123 out->area[write] = '\0';
7124 out->data = write;
7125 }
7126
7127 if (bio)
7128 BIO_free(bio);
7129
7130 return 0;
7131}
7132
7133/*
7134 * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>.
7135 * Returns 0 in case of success.
7136 */
7137int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out)
7138{
7139 struct certificate_ocsp *ocsp;
7140
7141 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH);
7142 if (!ocsp)
7143 return -1;
7144
7145 return ssl_ocsp_response_print(&ocsp->response, out);
7146}
7147
7148
7149/* IO handler of details "show ssl ocsp-response <id>". */
7150static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx)
7151{
7152 struct buffer *trash = alloc_trash_chunk();
7153 struct certificate_ocsp *ocsp = NULL;
7154 struct stream_interface *si = appctx->owner;
7155
7156 ocsp = appctx->ctx.cli.p0;
7157
7158 if (trash == NULL)
7159 return 1;
7160
7161 ssl_ocsp_response_print(&ocsp->response, trash);
7162
7163 if (ci_putchk(si_ic(si), trash) == -1) {
7164 si_rx_room_blk(si);
7165 goto yield;
7166 }
7167 appctx->ctx.cli.p0 = NULL;
7168 if (trash)
7169 free_trash_chunk(trash);
7170 return 1;
7171
7172yield:
7173 if (trash)
7174 free_trash_chunk(trash);
7175
7176 return 0;
7177}
7178#endif
7179
William Lallemand32af2032016-10-29 18:09:35 +02007180/* register cli keywords */
7181static struct cli_kw_list cli_kws = {{ },{
7182#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007183 { { "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 },
7184 { { "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 +02007185#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02007186 { { "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 +02007187
7188 { { "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 +02007189 { { NULL }, NULL, NULL, NULL }
7190}};
7191
Willy Tarreau0108d902018-11-25 19:14:37 +01007192INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02007193
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02007194/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02007195struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02007196 .snd_buf = ssl_sock_from_buf,
7197 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01007198 .subscribe = ssl_subscribe,
7199 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02007200 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02007201 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02007202 .rcv_pipe = NULL,
7203 .snd_pipe = NULL,
7204 .shutr = NULL,
7205 .shutw = ssl_sock_shutw,
7206 .close = ssl_sock_close,
7207 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01007208 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01007209 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01007210 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01007211 .prepare_srv = ssl_sock_prepare_srv_ctx,
7212 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01007213 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02007214 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01007215 .set_idle = ssl_set_idle,
7216 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01007217 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01007218 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02007219};
7220
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007221enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
7222 struct session *sess, struct stream *s, int flags)
7223{
7224 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007225 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007226
7227 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007228 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007229
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007230 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007231 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01007232 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02007233 s->req.flags |= CF_READ_NULL;
7234 return ACT_RET_YIELD;
7235 }
7236 }
7237 return (ACT_RET_CONT);
7238}
7239
7240static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7241{
7242 rule->action_ptr = ssl_action_wait_for_hs;
7243
7244 return ACT_RET_PRS_OK;
7245}
7246
7247static struct action_kw_list http_req_actions = {ILH, {
7248 { "wait-for-handshake", ssl_parse_wait_for_hs },
7249 { /* END */ }
7250}};
7251
Willy Tarreau0108d902018-11-25 19:14:37 +01007252INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7253
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007254#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007255
7256static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7257{
7258 if (ptr) {
7259 chunk_destroy(ptr);
7260 free(ptr);
7261 }
7262}
7263
7264#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007265
7266#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7267static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7268{
7269 struct ocsp_cbk_arg *ocsp_arg;
7270
7271 if (ptr) {
7272 ocsp_arg = ptr;
7273
7274 if (ocsp_arg->is_single) {
7275 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7276 ocsp_arg->s_ocsp = NULL;
7277 } else {
7278 int i;
7279
7280 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7281 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7282 ocsp_arg->m_ocsp[i] = NULL;
7283 }
7284 }
7285 free(ocsp_arg);
7286 }
7287}
7288#endif
7289
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007290static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7291{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007292 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007293}
William Lallemand7d42ef52020-07-06 11:41:30 +02007294
William Lallemand722180a2021-06-09 16:46:12 +02007295#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007296static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7297{
7298 struct ssl_keylog *keylog;
7299
7300 if (!ptr)
7301 return;
7302
7303 keylog = ptr;
7304
7305 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7306 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7307 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7308 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7309 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7310 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7311 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7312 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7313
7314 pool_free(pool_head_ssl_keylog, ptr);
7315}
7316#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007317
Emeric Brun46591952012-05-18 15:47:34 +02007318__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007319static void __ssl_sock_init(void)
7320{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007321#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007322 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007323 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007324#endif
Emeric Brun46591952012-05-18 15:47:34 +02007325
Willy Tarreauef934602016-12-22 23:12:01 +01007326 if (global_ssl.listen_default_ciphers)
7327 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7328 if (global_ssl.connect_default_ciphers)
7329 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007330#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007331 if (global_ssl.listen_default_ciphersuites)
7332 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7333 if (global_ssl.connect_default_ciphersuites)
7334 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7335#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007336
Willy Tarreau13e14102016-12-22 20:25:26 +01007337 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007338#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007339 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007340#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007341#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007342 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007343 n = sk_SSL_COMP_num(cm);
7344 while (n--) {
7345 (void) sk_SSL_COMP_pop(cm);
7346 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007347#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007348
Willy Tarreau5db847a2019-05-09 14:13:35 +02007349#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007350 ssl_locking_init();
7351#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007352#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007353 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7354#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007355
7356#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7357 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7358#endif
7359
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007360 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007361 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 +02007362#ifdef HAVE_SSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007363 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7364#endif
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007365#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007366 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007367 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007368#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007369#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7370 hap_register_post_check(tlskeys_finalize_config);
7371#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007372
7373 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7374 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7375
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007376 hap_register_post_deinit(ssl_free_global_issuers);
7377
Willy Tarreau80713382018-11-26 10:19:54 +01007378#ifndef OPENSSL_NO_DH
7379 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7380 hap_register_post_deinit(ssl_free_dh);
7381#endif
7382#ifndef OPENSSL_NO_ENGINE
7383 hap_register_post_deinit(ssl_free_engines);
7384#endif
7385 /* Load SSL string for the verbose & debug mode. */
7386 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007387 ha_meth = BIO_meth_new(0x666, "ha methods");
7388 BIO_meth_set_write(ha_meth, ha_ssl_write);
7389 BIO_meth_set_read(ha_meth, ha_ssl_read);
7390 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7391 BIO_meth_set_create(ha_meth, ha_ssl_new);
7392 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7393 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7394 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007395
7396 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007397
Dragan Dosen9ac98092020-05-11 15:51:45 +02007398 /* Try to register dedicated SSL/TLS protocol message callbacks for
7399 * heartbleed attack (CVE-2014-0160) and clienthello.
7400 */
7401 hap_register_post_check(ssl_sock_register_msg_callbacks);
7402
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007403 /* Try to free all callbacks that were registered by using
7404 * ssl_sock_register_msg_callback().
7405 */
7406 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007407}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007408
Willy Tarreau80713382018-11-26 10:19:54 +01007409/* Compute and register the version string */
7410static void ssl_register_build_options()
7411{
7412 char *ptr = NULL;
7413 int i;
7414
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007415 memprintf(&ptr, "Built with OpenSSL version : "
7416#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007417 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007418#else /* OPENSSL_IS_BORINGSSL */
7419 OPENSSL_VERSION_TEXT
7420 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007421 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007422 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007423#endif
7424 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007425#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007426 "no (library version too old)"
7427#elif defined(OPENSSL_NO_TLSEXT)
7428 "no (disabled via OPENSSL_NO_TLSEXT)"
7429#else
7430 "yes"
7431#endif
7432 "", ptr);
7433
7434 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7435#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7436 "yes"
7437#else
7438#ifdef OPENSSL_NO_TLSEXT
7439 "no (because of OPENSSL_NO_TLSEXT)"
7440#else
7441 "no (version might be too old, 0.9.8f min needed)"
7442#endif
7443#endif
7444 "", ptr);
7445
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007446 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7447 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7448 if (methodVersions[i].option)
7449 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007450
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007451 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007452}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007453
Willy Tarreau80713382018-11-26 10:19:54 +01007454INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007455
Emeric Brun46591952012-05-18 15:47:34 +02007456
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007457#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007458void ssl_free_engines(void) {
7459 struct ssl_engine_list *wl, *wlb;
7460 /* free up engine list */
7461 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7462 ENGINE_finish(wl->e);
7463 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007464 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007465 free(wl);
7466 }
7467}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007468#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007469
Remi Gacogned3a23c32015-05-28 16:39:47 +02007470#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007471void ssl_free_dh(void) {
7472 if (local_dh_1024) {
7473 DH_free(local_dh_1024);
7474 local_dh_1024 = NULL;
7475 }
7476 if (local_dh_2048) {
7477 DH_free(local_dh_2048);
7478 local_dh_2048 = NULL;
7479 }
7480 if (local_dh_4096) {
7481 DH_free(local_dh_4096);
7482 local_dh_4096 = NULL;
7483 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007484 if (global_dh) {
7485 DH_free(global_dh);
7486 global_dh = NULL;
7487 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007488}
7489#endif
7490
7491__attribute__((destructor))
7492static void __ssl_sock_deinit(void)
7493{
7494#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007495 if (ssl_ctx_lru_tree) {
7496 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007497 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007498 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007499#endif
7500
Willy Tarreau5db847a2019-05-09 14:13:35 +02007501#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007502 ERR_remove_state(0);
7503 ERR_free_strings();
7504
7505 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007506#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007507
Willy Tarreau5db847a2019-05-09 14:13:35 +02007508#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007509 CRYPTO_cleanup_all_ex_data();
7510#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007511 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007512}
7513
William Dauchyf6370442020-11-14 19:25:33 +01007514/* Activate ssl on server <s>.
7515 * do nothing if there is no change to apply
7516 *
7517 * Must be called with the server lock held.
7518 */
7519void ssl_sock_set_srv(struct server *s, signed char use_ssl)
7520{
7521 if (s->use_ssl == use_ssl)
7522 return;
7523
7524 s->use_ssl = use_ssl;
7525 if (s->use_ssl == 1)
7526 s->xprt = &ssl_sock;
7527 else
7528 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
7529}
7530
Emeric Brun46591952012-05-18 15:47:34 +02007531/*
7532 * Local variables:
7533 * c-indent-level: 8
7534 * c-basic-offset: 8
7535 * End:
7536 */