blob: 83cb2cb7a0429f4d645d98d8e3bca46d109df081 [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
Christopher Faulet31af49d2015-06-09 17:29:50 +020043#include <import/lru.h>
44#include <import/xxhash.h>
45
Emeric Brun46591952012-05-18 15:47:34 +020046#include <common/buffer.h>
Willy Tarreau843b7cb2018-07-13 10:54:26 +020047#include <common/chunk.h>
Emeric Brun46591952012-05-18 15:47:34 +020048#include <common/compat.h>
49#include <common/config.h>
50#include <common/debug.h>
Willy Tarreau79eeafa2012-09-14 07:53:05 +020051#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010052#include <common/initcall.h>
Willy Tarreau55994562019-05-09 14:52:44 +020053#include <common/openssl-compat.h>
Emeric Brun46591952012-05-18 15:47:34 +020054#include <common/standard.h>
55#include <common/ticks.h>
56#include <common/time.h>
Nenad Merdanovic05552d42015-02-27 19:56:49 +010057#include <common/base64.h>
Emeric Brun46591952012-05-18 15:47:34 +020058
William Lallemand2954c472020-03-06 21:54:13 +010059#include <ebpttree.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020060#include <ebsttree.h>
61
William Lallemand32af2032016-10-29 18:09:35 +020062#include <types/applet.h>
63#include <types/cli.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020064#include <types/global.h>
65#include <types/ssl_sock.h>
William Lallemand32af2032016-10-29 18:09:35 +020066#include <types/stats.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020067
Willy Tarreau7875d092012-09-10 08:20:03 +020068#include <proto/acl.h>
69#include <proto/arg.h>
William Lallemand32af2032016-10-29 18:09:35 +020070#include <proto/channel.h>
Emeric Brun46591952012-05-18 15:47:34 +020071#include <proto/connection.h>
William Lallemand32af2032016-10-29 18:09:35 +020072#include <proto/cli.h>
Emeric Brun46591952012-05-18 15:47:34 +020073#include <proto/fd.h>
74#include <proto/freq_ctr.h>
75#include <proto/frontend.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020076#include <proto/http_rules.h>
Willy Tarreau79eeafa2012-09-14 07:53:05 +020077#include <proto/listener.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010078#include <proto/pattern.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020079#include <proto/proto_tcp.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020080#include <proto/http_ana.h>
Willy Tarreau92faadf2012-10-10 23:04:25 +020081#include <proto/server.h>
William Lallemand32af2032016-10-29 18:09:35 +020082#include <proto/stream_interface.h>
Emeric Brun46591952012-05-18 15:47:34 +020083#include <proto/log.h>
Emeric Brun94324a42012-10-11 14:00:19 +020084#include <proto/proxy.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020085#include <proto/shctx.h>
William Lallemandc69973f2020-05-12 17:42:42 +020086#include <proto/ssl_ckch.h>
William Lallemand6e9556b2020-05-12 17:52:44 +020087#include <proto/ssl_crtlist.h>
Emeric Brun46591952012-05-18 15:47:34 +020088#include <proto/ssl_sock.h>
William Lallemand6a66a5e2020-05-15 12:01:17 +020089#include <proto/ssl_utils.h>
Willy Tarreau9ad7bd42015-04-03 19:19:59 +020090#include <proto/stream.h>
Emeric Brun46591952012-05-18 15:47:34 +020091#include <proto/task.h>
Nenad Merdanovicc31499d2019-03-23 11:00:32 +010092#include <proto/vars.h>
Emeric Brun46591952012-05-18 15:47:34 +020093
Willy Tarreau9356dac2019-05-10 09:22:53 +020094/* ***** READ THIS before adding code here! *****
95 *
96 * Due to API incompatibilities between multiple OpenSSL versions and their
97 * derivatives, it's often tempting to add macros to (re-)define certain
98 * symbols. Please do not do this here, and do it in common/openssl-compat.h
99 * exclusively so that the whole code consistently uses the same macros.
100 *
101 * Whenever possible if a macro is missing in certain versions, it's better
102 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
103 */
104
Willy Tarreau71b734c2014-01-28 15:19:44 +0100105int sslconns = 0;
106int totalsslconns = 0;
Emeric Brunece0c332017-12-06 13:51:49 +0100107int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +0200108
William Lallemande0f3fd52020-02-25 14:53:06 +0100109static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
110
William Lallemand7fd8b452020-05-07 15:20:43 +0200111struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100112#ifdef LISTEN_DEFAULT_CIPHERS
113 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
114#endif
115#ifdef CONNECT_DEFAULT_CIPHERS
116 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
117#endif
Emmanuel Hocdet839af572019-05-14 16:27:35 +0200118#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200119#ifdef LISTEN_DEFAULT_CIPHERSUITES
120 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
121#endif
122#ifdef CONNECT_DEFAULT_CIPHERSUITES
123 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
124#endif
125#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100126 .listen_default_ssloptions = BC_SSL_O_NONE,
127 .connect_default_ssloptions = SRV_SSL_O_NONE,
128
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200129 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
130 .listen_default_sslmethods.min = CONF_TLSV_NONE,
131 .listen_default_sslmethods.max = CONF_TLSV_NONE,
132 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
133 .connect_default_sslmethods.min = CONF_TLSV_NONE,
134 .connect_default_sslmethods.max = CONF_TLSV_NONE,
135
Willy Tarreauef934602016-12-22 23:12:01 +0100136#ifdef DEFAULT_SSL_MAX_RECORD
137 .max_record = DEFAULT_SSL_MAX_RECORD,
138#endif
139 .default_dh_param = SSL_DEFAULT_DH_PARAM,
140 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100141 .capture_cipherlist = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100142 .extra_files = SSL_GF_ALL,
Willy Tarreauef934602016-12-22 23:12:01 +0100143};
144
Olivier Houcharda8955d52019-04-07 22:00:38 +0200145static BIO_METHOD *ha_meth;
146
Olivier Houchard66ab4982019-02-26 18:37:15 +0100147DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
148
Olivier Houchardea8dd942019-05-20 14:02:16 +0200149static struct task *ssl_sock_io_cb(struct task *, void *, unsigned short);
Olivier Houchard000694c2019-05-23 14:45:12 +0200150static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200151
Olivier Houcharda8955d52019-04-07 22:00:38 +0200152/* Methods to implement OpenSSL BIO */
153static int ha_ssl_write(BIO *h, const char *buf, int num)
154{
155 struct buffer tmpbuf;
156 struct ssl_sock_ctx *ctx;
157 int ret;
158
159 ctx = BIO_get_data(h);
160 tmpbuf.size = num;
161 tmpbuf.area = (void *)(uintptr_t)buf;
162 tmpbuf.data = num;
163 tmpbuf.head = 0;
164 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200165 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200166 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200167 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200168 } else if (ret == 0)
169 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200170 return ret;
171}
172
173static int ha_ssl_gets(BIO *h, char *buf, int size)
174{
175
176 return 0;
177}
178
179static int ha_ssl_puts(BIO *h, const char *str)
180{
181
182 return ha_ssl_write(h, str, strlen(str));
183}
184
185static int ha_ssl_read(BIO *h, char *buf, int size)
186{
187 struct buffer tmpbuf;
188 struct ssl_sock_ctx *ctx;
189 int ret;
190
191 ctx = BIO_get_data(h);
192 tmpbuf.size = size;
193 tmpbuf.area = buf;
194 tmpbuf.data = 0;
195 tmpbuf.head = 0;
196 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200197 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200198 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200199 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200200 } else if (ret == 0)
201 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200202
203 return ret;
204}
205
206static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
207{
208 int ret = 0;
209 switch (cmd) {
210 case BIO_CTRL_DUP:
211 case BIO_CTRL_FLUSH:
212 ret = 1;
213 break;
214 }
215 return ret;
216}
217
218static int ha_ssl_new(BIO *h)
219{
220 BIO_set_init(h, 1);
221 BIO_set_data(h, NULL);
222 BIO_clear_flags(h, ~0);
223 return 1;
224}
225
226static int ha_ssl_free(BIO *data)
227{
228
229 return 1;
230}
231
232
Willy Tarreau5db847a2019-05-09 14:13:35 +0200233#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100234
Emeric Brun821bb9b2017-06-15 16:37:39 +0200235static HA_RWLOCK_T *ssl_rwlocks;
236
237
238unsigned long ssl_id_function(void)
239{
240 return (unsigned long)tid;
241}
242
243void ssl_locking_function(int mode, int n, const char * file, int line)
244{
245 if (mode & CRYPTO_LOCK) {
246 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100247 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200248 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100249 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200250 }
251 else {
252 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100253 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200254 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100255 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200256 }
257}
258
259static int ssl_locking_init(void)
260{
261 int i;
262
263 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
264 if (!ssl_rwlocks)
265 return -1;
266
267 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100268 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200269
270 CRYPTO_set_id_callback(ssl_id_function);
271 CRYPTO_set_locking_callback(ssl_locking_function);
272
273 return 0;
274}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100275
Emeric Brun821bb9b2017-06-15 16:37:39 +0200276#endif
277
William Lallemand150bfa82019-09-19 17:12:49 +0200278__decl_hathreads(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200279
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100280
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200281/*
Emmanuel Hocdetb270e812019-11-21 19:09:31 +0100282 * deduplicate cafile (and crlfile)
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200283 */
284struct cafile_entry {
285 X509_STORE *ca_store;
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200286 STACK_OF(X509_NAME) *ca_list;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200287 struct ebmb_node node;
288 char path[0];
289};
290
291static struct eb_root cafile_tree = EB_ROOT_UNIQUE;
292
293static X509_STORE* ssl_store_get0_locations_file(char *path)
294{
295 struct ebmb_node *eb;
296
297 eb = ebst_lookup(&cafile_tree, path);
298 if (eb) {
299 struct cafile_entry *ca_e;
300 ca_e = ebmb_entry(eb, struct cafile_entry, node);
301 return ca_e->ca_store;
302 }
303 return NULL;
304}
305
William Lallemanddad31052020-05-14 17:47:32 +0200306int ssl_store_load_locations_file(char *path)
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200307{
308 if (ssl_store_get0_locations_file(path) == NULL) {
309 struct cafile_entry *ca_e;
310 X509_STORE *store = X509_STORE_new();
311 if (X509_STORE_load_locations(store, path, NULL)) {
312 int pathlen;
313 pathlen = strlen(path);
314 ca_e = calloc(1, sizeof(*ca_e) + pathlen + 1);
315 if (ca_e) {
316 memcpy(ca_e->path, path, pathlen + 1);
317 ca_e->ca_store = store;
318 ebst_insert(&cafile_tree, &ca_e->node);
319 return 1;
320 }
321 }
322 X509_STORE_free(store);
323 return 0;
324 }
325 return 1;
326}
327
328/* mimic what X509_STORE_load_locations do with store_ctx */
329static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
330{
331 X509_STORE *store;
332 store = ssl_store_get0_locations_file(path);
333 if (store_ctx && store) {
334 int i;
335 X509_OBJECT *obj;
336 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
337 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
338 obj = sk_X509_OBJECT_value(objs, i);
339 switch (X509_OBJECT_get_type(obj)) {
340 case X509_LU_X509:
341 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
342 break;
343 case X509_LU_CRL:
344 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
345 break;
346 default:
347 break;
348 }
349 }
350 return 1;
351 }
352 return 0;
353}
354
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500355/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200356static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
357{
358 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
359 return ssl_set_cert_crl_file(store_ctx, path);
360}
361
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200362/*
363 Extract CA_list from CA_file already in tree.
364 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
365 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
366*/
367static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
368{
369 struct ebmb_node *eb;
370 struct cafile_entry *ca_e;
371
372 eb = ebst_lookup(&cafile_tree, path);
373 if (!eb)
374 return NULL;
375 ca_e = ebmb_entry(eb, struct cafile_entry, node);
376
377 if (ca_e->ca_list == NULL) {
378 int i;
379 unsigned long key;
380 struct eb_root ca_name_tree = EB_ROOT;
381 struct eb64_node *node, *back;
382 struct {
383 struct eb64_node node;
384 X509_NAME *xname;
385 } *ca_name;
386 STACK_OF(X509_OBJECT) *objs;
387 STACK_OF(X509_NAME) *skn;
388 X509 *x;
389 X509_NAME *xn;
390
391 skn = sk_X509_NAME_new_null();
392 /* take x509 from cafile_tree */
393 objs = X509_STORE_get0_objects(ca_e->ca_store);
394 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
395 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
396 if (!x)
397 continue;
398 xn = X509_get_subject_name(x);
399 if (!xn)
400 continue;
401 /* Check for duplicates. */
402 key = X509_NAME_hash(xn);
403 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
404 node && ca_name == NULL;
405 node = eb64_next(node)) {
406 ca_name = container_of(node, typeof(*ca_name), node);
407 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
408 ca_name = NULL;
409 }
410 /* find a duplicate */
411 if (ca_name)
412 continue;
413 ca_name = calloc(1, sizeof *ca_name);
414 xn = X509_NAME_dup(xn);
415 if (!ca_name ||
416 !xn ||
417 !sk_X509_NAME_push(skn, xn)) {
418 free(ca_name);
419 X509_NAME_free(xn);
420 sk_X509_NAME_pop_free(skn, X509_NAME_free);
421 sk_X509_NAME_free(skn);
422 skn = NULL;
423 break;
424 }
425 ca_name->node.key = key;
426 ca_name->xname = xn;
427 eb64_insert(&ca_name_tree, &ca_name->node);
428 }
429 ca_e->ca_list = skn;
430 /* remove temporary ca_name tree */
431 node = eb64_first(&ca_name_tree);
432 while (node) {
433 ca_name = container_of(node, typeof(*ca_name), node);
434 back = eb64_next(node);
435 eb64_delete(node);
436 free(ca_name);
437 node = back;
438 }
439 }
440 return ca_e->ca_list;
441}
442
Willy Tarreaubafbe012017-11-24 17:34:44 +0100443struct pool_head *pool_head_ssl_capture = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200444int ssl_capture_ptr_index = -1;
Thierry FOURNIER28962c92018-06-17 21:37:05 +0200445static int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100446
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200447#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
448struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
449#endif
450
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200451#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200452unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000453struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
454struct ssl_engine_list {
455 struct list list;
456 ENGINE *e;
457};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200458#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000459
Remi Gacogne8de54152014-07-15 11:36:40 +0200460#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200461static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200462static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200463static DH *local_dh_1024 = NULL;
464static DH *local_dh_2048 = NULL;
465static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100466static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200467#endif /* OPENSSL_NO_DH */
468
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100469#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200470/* X509V3 Extensions that will be added on generated certificates */
471#define X509V3_EXT_SIZE 5
472static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
473 "basicConstraints",
474 "nsComment",
475 "subjectKeyIdentifier",
476 "authorityKeyIdentifier",
477 "keyUsage",
478};
479static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
480 "CA:FALSE",
481 "\"OpenSSL Generated Certificate\"",
482 "hash",
483 "keyid,issuer:always",
484 "nonRepudiation,digitalSignature,keyEncipherment"
485};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200486/* LRU cache to store generated certificate */
487static struct lru64_head *ssl_ctx_lru_tree = NULL;
488static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200489static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100490__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200491
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200492#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
493
Willy Tarreau9a1ab082019-05-09 13:26:41 +0200494#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
yanbzhube2774d2015-12-10 15:07:30 -0500495/* The order here matters for picking a default context,
496 * keep the most common keytype at the bottom of the list
497 */
498const char *SSL_SOCK_KEYTYPE_NAMES[] = {
499 "dsa",
500 "ecdsa",
501 "rsa"
502};
yanbzhube2774d2015-12-10 15:07:30 -0500503#endif
504
William Lallemandc3cd35f2017-11-28 11:04:43 +0100505static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100506static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
507
Dragan Dosen9ac98092020-05-11 15:51:45 +0200508/* Dedicated callback functions for heartbeat and clienthello.
509 */
510#ifdef TLS1_RT_HEARTBEAT
511static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
512 int content_type, const void *buf, size_t len,
513 SSL *ssl);
514#endif
515static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
516 int content_type, const void *buf, size_t len,
517 SSL *ssl);
518
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200519/* List head of all registered SSL/TLS protocol message callbacks. */
520struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
521
522/* Registers the function <func> in order to be called on SSL/TLS protocol
523 * message processing. It will return 0 if the function <func> is not set
524 * or if it fails to allocate memory.
525 */
526int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
527{
528 struct ssl_sock_msg_callback *cbk;
529
530 if (!func)
531 return 0;
532
533 cbk = calloc(1, sizeof(*cbk));
534 if (!cbk) {
535 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
536 return 0;
537 }
538
539 cbk->func = func;
540
541 LIST_ADDQ(&ssl_sock_msg_callbacks, &cbk->list);
542
543 return 1;
544}
545
Dragan Dosen9ac98092020-05-11 15:51:45 +0200546/* Used to register dedicated SSL/TLS protocol message callbacks.
547 */
548static int ssl_sock_register_msg_callbacks(void)
549{
550#ifdef TLS1_RT_HEARTBEAT
551 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
552 return ERR_ABORT;
553#endif
554 if (global_ssl.capture_cipherlist > 0) {
555 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
556 return ERR_ABORT;
557 }
558 return 0;
559}
560
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200561/* Used to free all SSL/TLS protocol message callbacks that were
562 * registered by using ssl_sock_register_msg_callback().
563 */
564static void ssl_sock_unregister_msg_callbacks(void)
565{
566 struct ssl_sock_msg_callback *cbk, *cbkback;
567
568 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
569 LIST_DEL(&cbk->list);
570 free(cbk);
571 }
572}
573
Dragan Doseneb607fe2020-05-11 17:17:06 +0200574SSL *ssl_sock_get_ssl_object(struct connection *conn)
575{
576 if (!ssl_sock_is_ssl(conn))
577 return NULL;
578
579 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
580}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100581/*
582 * This function gives the detail of the SSL error. It is used only
583 * if the debug mode and the verbose mode are activated. It dump all
584 * the SSL error until the stack was empty.
585 */
586static forceinline void ssl_sock_dump_errors(struct connection *conn)
587{
588 unsigned long ret;
589
590 if (unlikely(global.mode & MODE_DEBUG)) {
591 while(1) {
592 ret = ERR_get_error();
593 if (ret == 0)
594 return;
595 fprintf(stderr, "fd[%04x] OpenSSL error[0x%lx] %s: %s\n",
Willy Tarreau585744b2017-08-24 14:31:19 +0200596 (unsigned short)conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100597 ERR_func_error_string(ret), ERR_reason_error_string(ret));
598 }
599 }
600}
601
yanbzhube2774d2015-12-10 15:07:30 -0500602
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200603#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200604int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000605{
606 int err_code = ERR_ABORT;
607 ENGINE *engine;
608 struct ssl_engine_list *el;
609
610 /* grab the structural reference to the engine */
611 engine = ENGINE_by_id(engine_id);
612 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100613 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000614 goto fail_get;
615 }
616
617 if (!ENGINE_init(engine)) {
618 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100619 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000620 goto fail_init;
621 }
622
623 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100624 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000625 goto fail_set_method;
626 }
627
628 el = calloc(1, sizeof(*el));
629 el->e = engine;
630 LIST_ADD(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100631 nb_engines++;
632 if (global_ssl.async)
633 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000634 return 0;
635
636fail_set_method:
637 /* release the functional reference from ENGINE_init() */
638 ENGINE_finish(engine);
639
640fail_init:
641 /* release the structural reference from ENGINE_by_id() */
642 ENGINE_free(engine);
643
644fail_get:
645 return err_code;
646}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200647#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000648
Willy Tarreau5db847a2019-05-09 14:13:35 +0200649#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brun3854e012017-05-17 20:42:48 +0200650/*
651 * openssl async fd handler
652 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200653void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000654{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200655 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000656
Emeric Brun3854e012017-05-17 20:42:48 +0200657 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000658 * to poll this fd until it is requested
659 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000660 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000661 fd_cant_recv(fd);
662
663 /* crypto engine is available, let's notify the associated
664 * connection that it can pursue its processing.
665 */
Olivier Houchard03abf2d2019-05-28 10:12:02 +0200666 ssl_sock_io_cb(NULL, ctx, 0);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000667}
668
Emeric Brun3854e012017-05-17 20:42:48 +0200669/*
670 * openssl async delayed SSL_free handler
671 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200672void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000673{
674 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200675 OSSL_ASYNC_FD all_fd[32];
676 size_t num_all_fds = 0;
677 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000678
Emeric Brun3854e012017-05-17 20:42:48 +0200679 /* We suppose that the async job for a same SSL *
680 * are serialized. So if we are awake it is
681 * because the running job has just finished
682 * and we can remove all async fds safely
683 */
684 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
685 if (num_all_fds > 32) {
686 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
687 return;
688 }
689
690 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
691 for (i=0 ; i < num_all_fds ; i++)
692 fd_remove(all_fd[i]);
693
694 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000695 SSL_free(ssl);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +0100696 _HA_ATOMIC_SUB(&sslconns, 1);
697 _HA_ATOMIC_SUB(&jobs, 1);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000698}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000699/*
Emeric Brun3854e012017-05-17 20:42:48 +0200700 * function used to manage a returned SSL_ERROR_WANT_ASYNC
701 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000702 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200703static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000704{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100705 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200706 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200707 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000708 size_t num_add_fds = 0;
709 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200710 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000711
712 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
713 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200714 if (num_add_fds > 32 || num_del_fds > 32) {
715 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 +0000716 return;
717 }
718
Emeric Brun3854e012017-05-17 20:42:48 +0200719 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000720
Emeric Brun3854e012017-05-17 20:42:48 +0200721 /* We remove unused fds from the fdtab */
722 for (i=0 ; i < num_del_fds ; i++)
723 fd_remove(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000724
Emeric Brun3854e012017-05-17 20:42:48 +0200725 /* We add new fds to the fdtab */
726 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200727 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000728 }
729
Emeric Brun3854e012017-05-17 20:42:48 +0200730 num_add_fds = 0;
731 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
732 if (num_add_fds > 32) {
733 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
734 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000735 }
Emeric Brun3854e012017-05-17 20:42:48 +0200736
737 /* We activate the polling for all known async fds */
738 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000739 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200740 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000741 /* To ensure that the fd cache won't be used
742 * We'll prefer to catch a real RD event
743 * because handling an EAGAIN on this fd will
744 * result in a context switch and also
745 * some engines uses a fd in blocking mode.
746 */
747 fd_cant_recv(add_fd[i]);
748 }
Emeric Brun3854e012017-05-17 20:42:48 +0200749
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000750}
751#endif
752
William Lallemand104a7a62019-10-14 14:14:59 +0200753#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200754/*
755 * This function returns the number of seconds elapsed
756 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
757 * date presented un ASN1_GENERALIZEDTIME.
758 *
759 * In parsing error case, it returns -1.
760 */
761static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
762{
763 long epoch;
764 char *p, *end;
765 const unsigned short month_offset[12] = {
766 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
767 };
768 int year, month;
769
770 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
771
772 p = (char *)d->data;
773 end = p + d->length;
774
775 if (end - p < 4) return -1;
776 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
777 p += 4;
778 if (end - p < 2) return -1;
779 month = 10 * (p[0] - '0') + p[1] - '0';
780 if (month < 1 || month > 12) return -1;
781 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
782 We consider leap years and the current month (<marsh or not) */
783 epoch = ( ((year - 1970) * 365)
784 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
785 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
786 + month_offset[month-1]
787 ) * 24 * 60 * 60;
788 p += 2;
789 if (end - p < 2) return -1;
790 /* Add the number of seconds of completed days of current month */
791 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
792 p += 2;
793 if (end - p < 2) return -1;
794 /* Add the completed hours of the current day */
795 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
796 p += 2;
797 if (end - p < 2) return -1;
798 /* Add the completed minutes of the current hour */
799 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
800 p += 2;
801 if (p == end) return -1;
802 /* Test if there is available seconds */
803 if (p[0] < '0' || p[0] > '9')
804 goto nosec;
805 if (end - p < 2) return -1;
806 /* Add the seconds of the current minute */
807 epoch += 10 * (p[0] - '0') + p[1] - '0';
808 p += 2;
809 if (p == end) return -1;
810 /* Ignore seconds float part if present */
811 if (p[0] == '.') {
812 do {
813 if (++p == end) return -1;
814 } while (p[0] >= '0' && p[0] <= '9');
815 }
816
817nosec:
818 if (p[0] == 'Z') {
819 if (end - p != 1) return -1;
820 return epoch;
821 }
822 else if (p[0] == '+') {
823 if (end - p != 5) return -1;
824 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700825 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 +0200826 }
827 else if (p[0] == '-') {
828 if (end - p != 5) return -1;
829 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700830 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 +0200831 }
832
833 return -1;
834}
835
William Lallemand104a7a62019-10-14 14:14:59 +0200836/*
837 * struct alignment works here such that the key.key is the same as key_data
838 * Do not change the placement of key_data
839 */
840struct certificate_ocsp {
841 struct ebmb_node key;
842 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
843 struct buffer response;
844 long expire;
845};
846
847struct ocsp_cbk_arg {
848 int is_single;
849 int single_kt;
850 union {
851 struct certificate_ocsp *s_ocsp;
852 /*
853 * m_ocsp will have multiple entries dependent on key type
854 * Entry 0 - DSA
855 * Entry 1 - ECDSA
856 * Entry 2 - RSA
857 */
858 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
859 };
860};
861
Emeric Brun1d3865b2014-06-20 15:37:32 +0200862static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200863
864/* This function starts to check if the OCSP response (in DER format) contained
865 * in chunk 'ocsp_response' is valid (else exits on error).
866 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
867 * contained in the OCSP Response and exits on error if no match.
868 * If it's a valid OCSP Response:
869 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
870 * pointed by 'ocsp'.
871 * If 'ocsp' is NULL, the function looks up into the OCSP response's
872 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
873 * from the response) and exits on error if not found. Finally, If an OCSP response is
874 * already present in the container, it will be overwritten.
875 *
876 * Note: OCSP response containing more than one OCSP Single response is not
877 * considered valid.
878 *
879 * Returns 0 on success, 1 in error case.
880 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200881static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
882 struct certificate_ocsp *ocsp,
883 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200884{
885 OCSP_RESPONSE *resp;
886 OCSP_BASICRESP *bs = NULL;
887 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200888 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200889 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200890 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200891 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200892 int reason;
893 int ret = 1;
894
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200895 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
896 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200897 if (!resp) {
898 memprintf(err, "Unable to parse OCSP response");
899 goto out;
900 }
901
902 rc = OCSP_response_status(resp);
903 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
904 memprintf(err, "OCSP response status not successful");
905 goto out;
906 }
907
908 bs = OCSP_response_get1_basic(resp);
909 if (!bs) {
910 memprintf(err, "Failed to get basic response from OCSP Response");
911 goto out;
912 }
913
914 count_sr = OCSP_resp_count(bs);
915 if (count_sr > 1) {
916 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
917 goto out;
918 }
919
920 sr = OCSP_resp_get0(bs, 0);
921 if (!sr) {
922 memprintf(err, "Failed to get OCSP single response");
923 goto out;
924 }
925
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200926 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
927
Emeric Brun4147b2e2014-06-16 18:36:30 +0200928 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200929 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200930 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200931 goto out;
932 }
933
Emeric Brun13a6b482014-06-20 15:44:34 +0200934 if (!nextupd) {
935 memprintf(err, "OCSP single response: missing nextupdate");
936 goto out;
937 }
938
Emeric Brunc8b27b62014-06-19 14:16:17 +0200939 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200940 if (!rc) {
941 memprintf(err, "OCSP single response: no longer valid.");
942 goto out;
943 }
944
945 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200946 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200947 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
948 goto out;
949 }
950 }
951
952 if (!ocsp) {
953 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
954 unsigned char *p;
955
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200956 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200957 if (!rc) {
958 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
959 goto out;
960 }
961
962 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
963 memprintf(err, "OCSP single response: Certificate ID too long");
964 goto out;
965 }
966
967 p = key;
968 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200969 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200970 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
971 if (!ocsp) {
972 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
973 goto out;
974 }
975 }
976
977 /* According to comments on "chunk_dup", the
978 previous chunk buffer will be freed */
979 if (!chunk_dup(&ocsp->response, ocsp_response)) {
980 memprintf(err, "OCSP response: Memory allocation error");
981 goto out;
982 }
983
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200984 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
985
Emeric Brun4147b2e2014-06-16 18:36:30 +0200986 ret = 0;
987out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +0100988 ERR_clear_error();
989
Emeric Brun4147b2e2014-06-16 18:36:30 +0200990 if (bs)
991 OCSP_BASICRESP_free(bs);
992
993 if (resp)
994 OCSP_RESPONSE_free(resp);
995
996 return ret;
997}
998/*
999 * External function use to update the OCSP response in the OCSP response's
1000 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1001 * to update in DER format.
1002 *
1003 * Returns 0 on success, 1 in error case.
1004 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001005int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001006{
1007 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1008}
1009
William Lallemand4a660132019-10-14 14:51:41 +02001010#endif
1011
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001012#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1013static 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)
1014{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001015 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001016 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001017 struct connection *conn;
1018 int head;
1019 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001020 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001021
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001022 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001023 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001024 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1025
1026 keys = ref->tlskeys;
1027 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001028
1029 if (enc) {
1030 memcpy(key_name, keys[head].name, 16);
1031
1032 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001033 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001034
Emeric Brun9e754772019-01-10 17:51:55 +01001035 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001036
Emeric Brun9e754772019-01-10 17:51:55 +01001037 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1038 goto end;
1039
Willy Tarreau9356dac2019-05-10 09:22:53 +02001040 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001041 ret = 1;
1042 }
1043 else if (ref->key_size_bits == 256 ) {
1044
1045 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1046 goto end;
1047
Willy Tarreau9356dac2019-05-10 09:22:53 +02001048 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001049 ret = 1;
1050 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001051 } else {
1052 for (i = 0; i < TLS_TICKETS_NO; i++) {
1053 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1054 goto found;
1055 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001056 ret = 0;
1057 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001058
Christopher Faulet16f45c82018-02-16 11:23:49 +01001059 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001060 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001061 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 +01001062 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1063 goto end;
1064 /* 2 for key renewal, 1 if current key is still valid */
1065 ret = i ? 2 : 1;
1066 }
1067 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001068 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 +01001069 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1070 goto end;
1071 /* 2 for key renewal, 1 if current key is still valid */
1072 ret = i ? 2 : 1;
1073 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001074 }
Emeric Brun9e754772019-01-10 17:51:55 +01001075
Christopher Faulet16f45c82018-02-16 11:23:49 +01001076 end:
1077 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1078 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001079}
1080
1081struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1082{
1083 struct tls_keys_ref *ref;
1084
1085 list_for_each_entry(ref, &tlskeys_reference, list)
1086 if (ref->filename && strcmp(filename, ref->filename) == 0)
1087 return ref;
1088 return NULL;
1089}
1090
1091struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1092{
1093 struct tls_keys_ref *ref;
1094
1095 list_for_each_entry(ref, &tlskeys_reference, list)
1096 if (ref->unique_id == unique_id)
1097 return ref;
1098 return NULL;
1099}
1100
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001101/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001102 * match existing ones, this function returns -1
1103 * else it returns 0 on success.
1104 */
1105int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001106 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001107{
Emeric Brun9e754772019-01-10 17:51:55 +01001108 if (ref->key_size_bits == 128) {
1109 if (tlskey->data != sizeof(struct tls_sess_key_128))
1110 return -1;
1111 }
1112 else if (ref->key_size_bits == 256) {
1113 if (tlskey->data != sizeof(struct tls_sess_key_256))
1114 return -1;
1115 }
1116 else
1117 return -1;
1118
Christopher Faulet16f45c82018-02-16 11:23:49 +01001119 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001120 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1121 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001122 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1123 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001124
1125 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001126}
1127
Willy Tarreau83061a82018-07-13 11:56:34 +02001128int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001129{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001130 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1131
1132 if(!ref) {
1133 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1134 return 1;
1135 }
Emeric Brun9e754772019-01-10 17:51:55 +01001136 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1137 memprintf(err, "Invalid key size");
1138 return 1;
1139 }
1140
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001141 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001142}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001143
1144/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001145 * automatic ids. It's called just after the basic checks. It returns
1146 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001147 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001148static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001149{
1150 int i = 0;
1151 struct tls_keys_ref *ref, *ref2, *ref3;
1152 struct list tkr = LIST_HEAD_INIT(tkr);
1153
1154 list_for_each_entry(ref, &tlskeys_reference, list) {
1155 if (ref->unique_id == -1) {
1156 /* Look for the first free id. */
1157 while (1) {
1158 list_for_each_entry(ref2, &tlskeys_reference, list) {
1159 if (ref2->unique_id == i) {
1160 i++;
1161 break;
1162 }
1163 }
1164 if (&ref2->list == &tlskeys_reference)
1165 break;
1166 }
1167
1168 /* Uses the unique id and increment it for the next entry. */
1169 ref->unique_id = i;
1170 i++;
1171 }
1172 }
1173
1174 /* This sort the reference list by id. */
1175 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
1176 LIST_DEL(&ref->list);
1177 list_for_each_entry(ref3, &tkr, list) {
1178 if (ref->unique_id < ref3->unique_id) {
1179 LIST_ADDQ(&ref3->list, &ref->list);
1180 break;
1181 }
1182 }
1183 if (&ref3->list == &tkr)
1184 LIST_ADDQ(&tkr, &ref->list);
1185 }
1186
1187 /* swap root */
1188 LIST_ADD(&tkr, &tlskeys_reference);
1189 LIST_DEL(&tkr);
Willy Tarreaud1c57502016-12-22 22:46:15 +01001190 return 0;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001191}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001192#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1193
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001194#ifndef OPENSSL_NO_OCSP
yanbzhube2774d2015-12-10 15:07:30 -05001195int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1196{
1197 switch (evp_keytype) {
1198 case EVP_PKEY_RSA:
1199 return 2;
1200 case EVP_PKEY_DSA:
1201 return 0;
1202 case EVP_PKEY_EC:
1203 return 1;
1204 }
1205
1206 return -1;
1207}
1208
Emeric Brun4147b2e2014-06-16 18:36:30 +02001209/*
1210 * Callback used to set OCSP status extension content in server hello.
1211 */
1212int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1213{
yanbzhube2774d2015-12-10 15:07:30 -05001214 struct certificate_ocsp *ocsp;
1215 struct ocsp_cbk_arg *ocsp_arg;
1216 char *ssl_buf;
1217 EVP_PKEY *ssl_pkey;
1218 int key_type;
1219 int index;
1220
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001221 ocsp_arg = arg;
yanbzhube2774d2015-12-10 15:07:30 -05001222
1223 ssl_pkey = SSL_get_privatekey(ssl);
1224 if (!ssl_pkey)
1225 return SSL_TLSEXT_ERR_NOACK;
1226
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001227 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001228
1229 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1230 ocsp = ocsp_arg->s_ocsp;
1231 else {
1232 /* For multiple certs per context, we have to find the correct OCSP response based on
1233 * the certificate type
1234 */
1235 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1236
1237 if (index < 0)
1238 return SSL_TLSEXT_ERR_NOACK;
1239
1240 ocsp = ocsp_arg->m_ocsp[index];
1241
1242 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001243
1244 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001245 !ocsp->response.area ||
1246 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001247 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001248 return SSL_TLSEXT_ERR_NOACK;
1249
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001250 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001251 if (!ssl_buf)
1252 return SSL_TLSEXT_ERR_NOACK;
1253
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001254 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1255 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001256
1257 return SSL_TLSEXT_ERR_OK;
1258}
1259
William Lallemand4a660132019-10-14 14:51:41 +02001260#endif
1261
1262#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001263/*
1264 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001265 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1266 * status extension, the issuer's certificate is mandatory. It should be
1267 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001268 *
William Lallemand246c0242019-10-11 08:59:13 +02001269 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1270 * OCSP response. If file is empty or content is not a valid OCSP response,
1271 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1272 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001273 *
1274 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001275 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001276 */
William Lallemand4a660132019-10-14 14:51:41 +02001277#ifndef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001278static 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 +02001279{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001280 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001281 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001282 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001283 struct certificate_ocsp *ocsp = NULL, *iocsp;
1284 char *warn = NULL;
1285 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001286 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001287
Emeric Brun4147b2e2014-06-16 18:36:30 +02001288
William Lallemand246c0242019-10-11 08:59:13 +02001289 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001290 if (!x)
1291 goto out;
1292
William Lallemand246c0242019-10-11 08:59:13 +02001293 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001294 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1295 if (chain) {
1296 /* check if one of the certificate of the chain is the issuer */
1297 for (i = 0; i < sk_X509_num(chain); i++) {
1298 X509 *ti = sk_X509_value(chain, i);
1299 if (X509_check_issued(ti, x) == X509_V_OK) {
1300 issuer = ti;
1301 break;
1302 }
1303 }
1304 }
William Lallemand246c0242019-10-11 08:59:13 +02001305 if (!issuer)
1306 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001307
1308 cid = OCSP_cert_to_id(0, x, issuer);
1309 if (!cid)
1310 goto out;
1311
1312 i = i2d_OCSP_CERTID(cid, NULL);
1313 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1314 goto out;
1315
Vincent Bernat02779b62016-04-03 13:48:43 +02001316 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001317 if (!ocsp)
1318 goto out;
1319
1320 p = ocsp->key_data;
1321 i2d_OCSP_CERTID(cid, &p);
1322
1323 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1324 if (iocsp == ocsp)
1325 ocsp = NULL;
1326
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001327#ifndef SSL_CTX_get_tlsext_status_cb
1328# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1329 *cb = (void (*) (void))ctx->tlsext_status_cb;
1330#endif
1331 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1332
1333 if (!callback) {
Vincent Bernat02779b62016-04-03 13:48:43 +02001334 struct ocsp_cbk_arg *cb_arg = calloc(1, sizeof(*cb_arg));
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001335 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001336
1337 cb_arg->is_single = 1;
1338 cb_arg->s_ocsp = iocsp;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001339
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001340 pkey = X509_get_pubkey(x);
1341 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1342 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001343
1344 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
1345 SSL_CTX_set_tlsext_status_arg(ctx, cb_arg);
1346 } else {
1347 /*
1348 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1349 * Update that cb_arg with the new cert's staple
1350 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001351 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001352 struct certificate_ocsp *tmp_ocsp;
1353 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001354 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001355 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001356
1357#ifdef SSL_CTX_get_tlsext_status_arg
1358 SSL_CTX_ctrl(ctx, SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG, 0, &cb_arg);
1359#else
1360 cb_arg = ctx->tlsext_status_arg;
1361#endif
yanbzhube2774d2015-12-10 15:07:30 -05001362
1363 /*
1364 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1365 * the order of operations below matter, take care when changing it
1366 */
1367 tmp_ocsp = cb_arg->s_ocsp;
1368 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1369 cb_arg->s_ocsp = NULL;
1370 cb_arg->m_ocsp[index] = tmp_ocsp;
1371 cb_arg->is_single = 0;
1372 cb_arg->single_kt = 0;
1373
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001374 pkey = X509_get_pubkey(x);
1375 key_type = EVP_PKEY_base_id(pkey);
1376 EVP_PKEY_free(pkey);
1377
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001378 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
yanbzhube2774d2015-12-10 15:07:30 -05001379 if (index >= 0 && !cb_arg->m_ocsp[index])
1380 cb_arg->m_ocsp[index] = iocsp;
1381
1382 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001383
1384 ret = 0;
1385
1386 warn = NULL;
William Lallemand246c0242019-10-11 08:59:13 +02001387 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, ocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001388 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001390 }
1391
1392out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001393 if (cid)
1394 OCSP_CERTID_free(cid);
1395
1396 if (ocsp)
1397 free(ocsp);
1398
1399 if (warn)
1400 free(warn);
1401
Emeric Brun4147b2e2014-06-16 18:36:30 +02001402 return ret;
1403}
William Lallemand4a660132019-10-14 14:51:41 +02001404#else /* OPENSSL_IS_BORINGSSL */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001405static 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 +02001406{
William Lallemand4a660132019-10-14 14:51:41 +02001407 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 +02001408}
1409#endif
1410
William Lallemand4a660132019-10-14 14:51:41 +02001411#endif
1412
1413
Willy Tarreau5db847a2019-05-09 14:13:35 +02001414#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001415
1416#define CT_EXTENSION_TYPE 18
1417
William Lallemand03c331c2020-05-13 10:10:01 +02001418int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001419
1420int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1421{
Willy Tarreau83061a82018-07-13 11:56:34 +02001422 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001423
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001424 *out = (unsigned char *) sctl->area;
1425 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001426
1427 return 1;
1428}
1429
1430int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1431{
1432 return 1;
1433}
1434
William Lallemanda17f4112019-10-10 15:16:44 +02001435static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001436{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001437 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001438
William Lallemanda17f4112019-10-10 15:16:44 +02001439 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 +01001440 goto out;
1441
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001442 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1443
1444 ret = 0;
1445
1446out:
1447 return ret;
1448}
1449
1450#endif
1451
Emeric Brune1f38db2012-09-03 20:36:47 +02001452void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1453{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001454 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001455 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001456 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001457 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001458
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001459#ifndef SSL_OP_NO_RENEGOTIATION
1460 /* Please note that BoringSSL defines this macro to zero so don't
1461 * change this to #if and do not assign a default value to this macro!
1462 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001463 if (where & SSL_CB_HANDSHAKE_START) {
1464 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001465 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 +02001466 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001467 conn->err_code = CO_ER_SSL_RENEG;
1468 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001469 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001470#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001471
1472 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001473 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001474 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001475 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001476 consider that the buffering was activated,
1477 so we rise the output buffer size from 4k
1478 to 16k */
1479 write_bio = SSL_get_wbio(ssl);
1480 if (write_bio != SSL_get_rbio(ssl)) {
1481 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001482 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001483 }
1484 }
1485 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001486}
1487
Emeric Brune64aef12012-09-21 13:15:06 +02001488/* Callback is called for each certificate of the chain during a verify
1489 ok is set to 1 if preverify detect no error on current certificate.
1490 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001491int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001492{
1493 SSL *ssl;
1494 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001495 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001496 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001497
1498 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001499 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001500
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001501 ctx = conn->xprt_ctx;
1502
1503 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001504
Emeric Brun81c00f02012-09-21 14:31:21 +02001505 if (ok) /* no errors */
1506 return ok;
1507
1508 depth = X509_STORE_CTX_get_error_depth(x_store);
1509 err = X509_STORE_CTX_get_error(x_store);
1510
1511 /* check if CA error needs to be ignored */
1512 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001513 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1514 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1515 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001516 }
1517
Willy Tarreau731248f2020-02-04 14:02:02 +01001518 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001519 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001520 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001521 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001522 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001523
Willy Tarreau20879a02012-12-03 16:32:10 +01001524 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001525 return 0;
1526 }
1527
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001528 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1529 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001530
Emeric Brun81c00f02012-09-21 14:31:21 +02001531 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001532 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001533 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001534 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001535 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001536 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001537
Willy Tarreau20879a02012-12-03 16:32:10 +01001538 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001539 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001540}
1541
Dragan Dosen9ac98092020-05-11 15:51:45 +02001542#ifdef TLS1_RT_HEARTBEAT
1543static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1544 int content_type, const void *buf, size_t len,
1545 SSL *ssl)
1546{
1547 /* test heartbeat received (write_p is set to 0
1548 for a received record) */
1549 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1550 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1551 const unsigned char *p = buf;
1552 unsigned int payload;
1553
1554 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1555
1556 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1557 if (*p != TLS1_HB_REQUEST)
1558 return;
1559
1560 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1561 goto kill_it;
1562
1563 payload = (p[1] * 256) + p[2];
1564 if (3 + payload + 16 <= len)
1565 return; /* OK no problem */
1566 kill_it:
1567 /* We have a clear heartbleed attack (CVE-2014-0160), the
1568 * advertised payload is larger than the advertised packet
1569 * length, so we have garbage in the buffer between the
1570 * payload and the end of the buffer (p+len). We can't know
1571 * if the SSL stack is patched, and we don't know if we can
1572 * safely wipe out the area between p+3+len and payload.
1573 * So instead, we prevent the response from being sent by
1574 * setting the max_send_fragment to 0 and we report an SSL
1575 * error, which will kill this connection. It will be reported
1576 * above as SSL_ERROR_SSL while an other handshake failure with
1577 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1578 */
1579 ssl->max_send_fragment = 0;
1580 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1581 }
1582}
1583#endif
1584
1585static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1586 int content_type, const void *buf, size_t len,
1587 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001588{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001589 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001590 unsigned char *msg;
1591 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001592 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001593
1594 /* This function is called for "from client" and "to server"
1595 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001596 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001597 */
1598
1599 /* "write_p" is set to 0 is the bytes are received messages,
1600 * otherwise it is set to 1.
1601 */
1602 if (write_p != 0)
1603 return;
1604
1605 /* content_type contains the type of message received or sent
1606 * according with the SSL/TLS protocol spec. This message is
1607 * encoded with one byte. The value 256 (two bytes) is used
1608 * for designing the SSL/TLS record layer. According with the
1609 * rfc6101, the expected message (other than 256) are:
1610 * - change_cipher_spec(20)
1611 * - alert(21)
1612 * - handshake(22)
1613 * - application_data(23)
1614 * - (255)
1615 * We are interessed by the handshake and specially the client
1616 * hello.
1617 */
1618 if (content_type != 22)
1619 return;
1620
1621 /* The message length is at least 4 bytes, containing the
1622 * message type and the message length.
1623 */
1624 if (len < 4)
1625 return;
1626
1627 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001628 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001629 * - hello_request(0)
1630 * - client_hello(1)
1631 * - server_hello(2)
1632 * - certificate(11)
1633 * - server_key_exchange (12)
1634 * - certificate_request(13)
1635 * - server_hello_done(14)
1636 * We are interested by the client hello.
1637 */
1638 msg = (unsigned char *)buf;
1639 if (msg[0] != 1)
1640 return;
1641
1642 /* Next three bytes are the length of the message. The total length
1643 * must be this decoded length + 4. If the length given as argument
1644 * is not the same, we abort the protocol dissector.
1645 */
1646 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1647 if (len < rec_len + 4)
1648 return;
1649 msg += 4;
1650 end = msg + rec_len;
1651 if (end < msg)
1652 return;
1653
1654 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1655 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001656 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1657 */
1658 msg += 1 + 1 + 4 + 28;
1659 if (msg > end)
1660 return;
1661
1662 /* Next, is session id:
1663 * if present, we have to jump by length + 1 for the size information
1664 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001665 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001666 if (msg[0] > 0)
1667 msg += msg[0];
1668 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001669 if (msg > end)
1670 return;
1671
1672 /* Next two bytes are the ciphersuite length. */
1673 if (msg + 2 > end)
1674 return;
1675 rec_len = (msg[0] << 8) + msg[1];
1676 msg += 2;
1677 if (msg + rec_len > end || msg + rec_len < msg)
1678 return;
1679
Willy Tarreaubafbe012017-11-24 17:34:44 +01001680 capture = pool_alloc_dirty(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001681 if (!capture)
1682 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001683 /* Compute the xxh64 of the ciphersuite. */
1684 capture->xxh64 = XXH64(msg, rec_len, 0);
1685
1686 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001687 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1688 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001689 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001690
1691 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001692}
1693
Emeric Brun29f037d2014-04-25 19:05:36 +02001694/* Callback is called for ssl protocol analyse */
1695void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1696{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001697 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1698 struct ssl_sock_msg_callback *cbk;
1699
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001700 /* Try to call all callback functions that were registered by using
1701 * ssl_sock_register_msg_callback().
1702 */
1703 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1704 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1705 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001706}
1707
Bernard Spil13c53f82018-02-15 13:34:58 +01001708#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001709static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1710 const unsigned char *in, unsigned int inlen,
1711 void *arg)
1712{
1713 struct server *srv = arg;
1714
1715 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1716 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1717 return SSL_TLSEXT_ERR_OK;
1718 return SSL_TLSEXT_ERR_NOACK;
1719}
1720#endif
1721
1722#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001723/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001724 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001725 */
1726static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1727 unsigned int *len, void *arg)
1728{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001729 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001730
1731 *data = (const unsigned char *)conf->npn_str;
1732 *len = conf->npn_len;
1733 return SSL_TLSEXT_ERR_OK;
1734}
1735#endif
1736
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001737#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001738/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001739 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001740 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001741static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1742 unsigned char *outlen,
1743 const unsigned char *server,
1744 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001745{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001746 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001747
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001748 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1749 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1750 return SSL_TLSEXT_ERR_NOACK;
1751 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001752 return SSL_TLSEXT_ERR_OK;
1753}
1754#endif
1755
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001756#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001757#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001758
Christopher Faulet30548802015-06-11 13:39:32 +02001759/* Create a X509 certificate with the specified servername and serial. This
1760 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001761static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001762ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001763{
Christopher Faulet7969a332015-10-09 11:15:03 +02001764 X509 *cacert = bind_conf->ca_sign_cert;
1765 EVP_PKEY *capkey = bind_conf->ca_sign_pkey;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001766 SSL_CTX *ssl_ctx = NULL;
1767 X509 *newcrt = NULL;
1768 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001769 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001770 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001771 X509_NAME *name;
1772 const EVP_MD *digest;
1773 X509V3_CTX ctx;
1774 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001775 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001776
Christopher Faulet48a83322017-07-28 16:56:09 +02001777 /* Get the private key of the default certificate and use it */
Willy Tarreau5db847a2019-05-09 14:13:35 +02001778#if (HA_OPENSSL_VERSION_NUMBER >= 0x10002000L)
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001779 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1780#else
1781 tmp_ssl = SSL_new(bind_conf->default_ctx);
1782 if (tmp_ssl)
1783 pkey = SSL_get_privatekey(tmp_ssl);
1784#endif
1785 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001786 goto mkcert_error;
1787
1788 /* Create the certificate */
1789 if (!(newcrt = X509_new()))
1790 goto mkcert_error;
1791
1792 /* Set version number for the certificate (X509v3) and the serial
1793 * number */
1794 if (X509_set_version(newcrt, 2L) != 1)
1795 goto mkcert_error;
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01001796 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001797
1798 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001799 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1800 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001801 goto mkcert_error;
1802
1803 /* set public key in the certificate */
1804 if (X509_set_pubkey(newcrt, pkey) != 1)
1805 goto mkcert_error;
1806
1807 /* Set issuer name from the CA */
1808 if (!(name = X509_get_subject_name(cacert)))
1809 goto mkcert_error;
1810 if (X509_set_issuer_name(newcrt, name) != 1)
1811 goto mkcert_error;
1812
1813 /* Set the subject name using the same, but the CN */
1814 name = X509_NAME_dup(name);
1815 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1816 (const unsigned char *)servername,
1817 -1, -1, 0) != 1) {
1818 X509_NAME_free(name);
1819 goto mkcert_error;
1820 }
1821 if (X509_set_subject_name(newcrt, name) != 1) {
1822 X509_NAME_free(name);
1823 goto mkcert_error;
1824 }
1825 X509_NAME_free(name);
1826
1827 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001828 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001829 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1830 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1831 X509_EXTENSION *ext;
1832
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001833 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001834 goto mkcert_error;
1835 if (!X509_add_ext(newcrt, ext, -1)) {
1836 X509_EXTENSION_free(ext);
1837 goto mkcert_error;
1838 }
1839 X509_EXTENSION_free(ext);
1840 }
1841
1842 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001843
1844 key_type = EVP_PKEY_base_id(capkey);
1845
1846 if (key_type == EVP_PKEY_DSA)
1847 digest = EVP_sha1();
1848 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001849 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001850 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02001851 digest = EVP_sha256();
1852 else {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02001853#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000000fL) && !defined(OPENSSL_IS_BORINGSSL)
Christopher Faulet7969a332015-10-09 11:15:03 +02001854 int nid;
1855
1856 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
1857 goto mkcert_error;
1858 if (!(digest = EVP_get_digestbynid(nid)))
1859 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02001860#else
1861 goto mkcert_error;
1862#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02001863 }
1864
Christopher Faulet31af49d2015-06-09 17:29:50 +02001865 if (!(X509_sign(newcrt, capkey, digest)))
1866 goto mkcert_error;
1867
1868 /* Create and set the new SSL_CTX */
1869 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
1870 goto mkcert_error;
1871 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
1872 goto mkcert_error;
1873 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
1874 goto mkcert_error;
1875 if (!SSL_CTX_check_private_key(ssl_ctx))
1876 goto mkcert_error;
1877
1878 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02001879
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01001880#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001881 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01001882#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001883#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
1884 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001885 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001886 EC_KEY *ecc;
1887 int nid;
1888
1889 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
1890 goto end;
1891 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
1892 goto end;
1893 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
1894 EC_KEY_free(ecc);
1895 }
1896#endif
1897 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02001898 return ssl_ctx;
1899
1900 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001901 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001902 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001903 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
1904 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001905 return NULL;
1906}
1907
Christopher Faulet7969a332015-10-09 11:15:03 +02001908SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001909ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02001910{
Willy Tarreau07d94e42018-09-20 10:57:52 +02001911 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01001912 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001913
Olivier Houchard66ab4982019-02-26 18:37:15 +01001914 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02001915}
1916
Christopher Faulet30548802015-06-11 13:39:32 +02001917/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02001918 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02001919SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02001920ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02001921{
1922 struct lru64 *lru = NULL;
1923
1924 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02001925 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001926 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02001927 if (lru && lru->domain) {
1928 if (ssl)
1929 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02001930 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02001931 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02001932 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02001933 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02001934 }
1935 return NULL;
1936}
1937
Emeric Brun821bb9b2017-06-15 16:37:39 +02001938/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
1939 * function is not thread-safe, it should only be used to check if a certificate
1940 * exists in the lru cache (with no warranty it will not be removed by another
1941 * thread). It is kept for backward compatibility. */
1942SSL_CTX *
1943ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
1944{
1945 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
1946}
1947
Christopher Fauletd2cab922015-07-28 16:03:47 +02001948/* Set a certificate int the LRU cache used to store generated
1949 * certificate. Return 0 on success, otherwise -1 */
1950int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001951ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02001952{
1953 struct lru64 *lru = NULL;
1954
1955 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001956 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001957 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02001958 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001959 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02001960 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02001961 }
Christopher Faulet30548802015-06-11 13:39:32 +02001962 if (lru->domain && lru->data)
1963 lru->free((SSL_CTX *)lru->data);
Christopher Faulet7969a332015-10-09 11:15:03 +02001964 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001965 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02001966 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02001967 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02001968 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02001969}
1970
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001971/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02001972unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001973ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02001974{
1975 return XXH32(data, len, ssl_ctx_lru_seed);
1976}
1977
Willy Tarreau2f63ef42015-10-20 15:16:01 +02001978/* Generate a cert and immediately assign it to the SSL session so that the cert's
1979 * refcount is maintained regardless of the cert's presence in the LRU cache.
1980 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02001981static int
Christopher Faulet7969a332015-10-09 11:15:03 +02001982ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001983{
1984 X509 *cacert = bind_conf->ca_sign_cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001985 SSL_CTX *ssl_ctx = NULL;
1986 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001987 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001988
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001989 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001990 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001991 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001992 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001993 if (lru && lru->domain)
1994 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02001995 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001996 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001997 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02001998 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02001999 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002000 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002001 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002002 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002003 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002004 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002005 SSL_set_SSL_CTX(ssl, ssl_ctx);
2006 /* No LRU cache, this CTX will be released as soon as the session dies */
2007 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002008 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002009 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002010 return 0;
2011}
2012static int
2013ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2014{
2015 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002016 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002017
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002018 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002019 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002020 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002021 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002022 }
2023 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002024}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002025#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002026
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002027#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002028
2029static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002030{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002031#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002032 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002033 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2034#endif
2035}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002036static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2037 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002038 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2039}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002040static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002041#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002042 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002043 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2044#endif
2045}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002046static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002047#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002048 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002049 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2050#endif
2051}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002052/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002053static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2054/* Unusable in this context. */
2055static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2056static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2057static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2058static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2059static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002060#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002061
2062static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2063 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002064 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2065}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002066static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2067 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2068 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2069}
2070static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2071 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002072 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2073}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002074static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2075 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2076 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2077}
2078static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2079 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002080 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2081}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002082static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2083 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2084 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2085}
2086static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2087 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002088 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2089}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002090static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2091 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2092 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2093}
2094static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002095#if SSL_OP_NO_TLSv1_3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002096 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002097 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2098#endif
2099}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002100static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
2101#if SSL_OP_NO_TLSv1_3
2102 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2103 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002104#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002105}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002106#endif
2107static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2108static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002109
William Lallemand7fd8b452020-05-07 15:20:43 +02002110struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002111 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2112 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2113 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2114 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2115 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2116 {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 +02002117};
2118
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002119static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2120{
2121 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2122 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2123 SSL_set_SSL_CTX(ssl, ctx);
2124}
2125
Willy Tarreau5db847a2019-05-09 14:13:35 +02002126#if ((HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(OPENSSL_IS_BORINGSSL))
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002127
2128static int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
2129{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002130 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002131 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002132
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002133 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2134 return SSL_TLSEXT_ERR_OK;
2135 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002136}
2137
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002138#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002139static int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
2140{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002141 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002142#else
2143static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
2144{
2145#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002146 struct connection *conn;
2147 struct bind_conf *s;
2148 const uint8_t *extension_data;
2149 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002150 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002151
2152 char *wildp = NULL;
2153 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002154 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002155 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002156 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002157 int i;
2158
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002159 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002160 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002161
Olivier Houchard9679ac92017-10-27 14:58:08 +02002162 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002163 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002164#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002165 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2166 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002167#else
2168 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2169#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002170 /*
2171 * The server_name extension was given too much extensibility when it
2172 * was written, so parsing the normal case is a bit complex.
2173 */
2174 size_t len;
2175 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002176 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002177 /* Extract the length of the supplied list of names. */
2178 len = (*extension_data++) << 8;
2179 len |= *extension_data++;
2180 if (len + 2 != extension_len)
2181 goto abort;
2182 /*
2183 * The list in practice only has a single element, so we only consider
2184 * the first one.
2185 */
2186 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2187 goto abort;
2188 extension_len = len - 1;
2189 /* Now we can finally pull out the byte array with the actual hostname. */
2190 if (extension_len <= 2)
2191 goto abort;
2192 len = (*extension_data++) << 8;
2193 len |= *extension_data++;
2194 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2195 || memchr(extension_data, 0, len) != NULL)
2196 goto abort;
2197 servername = extension_data;
2198 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002199 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002200#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2201 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002202 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002203 }
2204#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002205 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002206 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002207 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002208 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002209 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002210 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002211 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002212 goto abort;
2213 }
2214
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002215 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002216#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002217 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002218#else
2219 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2220#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002221 uint8_t sign;
2222 size_t len;
2223 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002224 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002225 len = (*extension_data++) << 8;
2226 len |= *extension_data++;
2227 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002228 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002229 if (len % 2 != 0)
2230 goto abort;
2231 for (; len > 0; len -= 2) {
2232 extension_data++; /* hash */
2233 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002234 switch (sign) {
2235 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002236 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002237 break;
2238 case TLSEXT_signature_ecdsa:
2239 has_ecdsa_sig = 1;
2240 break;
2241 default:
2242 continue;
2243 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002244 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002245 break;
2246 }
2247 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002248 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002249 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002250 }
2251 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002252 const SSL_CIPHER *cipher;
2253 size_t len;
2254 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002255 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002256#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002257 len = ctx->cipher_suites_len;
2258 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002259#else
2260 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2261#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002262 if (len % 2 != 0)
2263 goto abort;
2264 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002265#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002266 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002267 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002268#else
2269 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2270#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002271 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002272 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002273 break;
2274 }
2275 }
2276 }
2277
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002278 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002279 trash.area[i] = tolower(servername[i]);
2280 if (!wildp && (trash.area[i] == '.'))
2281 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002282 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002283 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002284
William Lallemand150bfa82019-09-19 17:12:49 +02002285 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002286
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002287 for (i = 0; i < 2; i++) {
2288 if (i == 0) /* lookup in full qualified names */
2289 node = ebst_lookup(&s->sni_ctx, trash.area);
2290 else if (i == 1 && wildp) /* lookup in wildcards names */
2291 node = ebst_lookup(&s->sni_w_ctx, wildp);
2292 else
2293 break;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002294 for (n = node; n; n = ebmb_next_dup(n)) {
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002295 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002296 if (!container_of(n, struct sni_ctx, name)->neg) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002297 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002298 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002299 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002300 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002301 break;
2302 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002303 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002304 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002305 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002306 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002307 if (!node_anonymous)
2308 node_anonymous = n;
2309 break;
2310 }
2311 }
2312 }
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002313 /* select by key_signature priority order */
2314 node = (has_ecdsa_sig && node_ecdsa) ? node_ecdsa
2315 : ((has_rsa_sig && node_rsa) ? node_rsa
2316 : (node_anonymous ? node_anonymous
2317 : (node_ecdsa ? node_ecdsa /* no ecdsa signature case (< TLSv1.2) */
2318 : node_rsa /* no rsa signature case (far far away) */
2319 )));
2320 if (node) {
2321 /* switch ctx */
2322 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2323 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
Olivier Houchard35a63cc2017-11-02 19:04:38 +01002324 if (conf) {
2325 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2326 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2327 if (conf->early_data)
2328 allow_early = 1;
2329 }
William Lallemand02010472019-10-18 11:02:19 +02002330 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchard35a63cc2017-11-02 19:04:38 +01002331 goto allow_early;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002332 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002333 }
William Lallemand150bfa82019-09-19 17:12:49 +02002334
William Lallemand02010472019-10-18 11:02:19 +02002335 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002336#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002337 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002338 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002339 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002340 }
2341#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002342 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002343 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002344 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002345 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002346 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002347 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002348allow_early:
2349#ifdef OPENSSL_IS_BORINGSSL
2350 if (allow_early)
2351 SSL_set_early_data_enabled(ssl, 1);
2352#else
2353 if (!allow_early)
2354 SSL_set_max_early_data(ssl, 0);
2355#endif
2356 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002357 abort:
2358 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2359 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002360#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002361 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002362#else
2363 *al = SSL_AD_UNRECOGNIZED_NAME;
2364 return 0;
2365#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002366}
2367
2368#else /* OPENSSL_IS_BORINGSSL */
2369
Emeric Brunfc0421f2012-09-07 17:30:07 +02002370/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2371 * warning when no match is found, which implies the default (first) cert
2372 * will keep being used.
2373 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002374static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002375{
2376 const char *servername;
2377 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002378 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002379 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002380 int i;
2381 (void)al; /* shut gcc stupid warning */
2382
2383 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002384 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002385#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002386 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2387 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002388#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002389 if (s->strict_sni)
2390 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002391 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002392 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002393 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002394 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002395 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002396
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002397 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002398 if (!servername[i])
2399 break;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002400 trash.area[i] = tolower(servername[i]);
2401 if (!wildp && (trash.area[i] == '.'))
2402 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002403 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002404 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002405
William Lallemand150bfa82019-09-19 17:12:49 +02002406 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002407 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002408 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002409 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2410 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002411 if (!container_of(n, struct sni_ctx, name)->neg) {
2412 node = n;
2413 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002414 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002415 }
2416 if (!node && wildp) {
2417 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002418 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2419 /* lookup a not neg filter */
2420 if (!container_of(n, struct sni_ctx, name)->neg) {
2421 node = n;
2422 break;
2423 }
2424 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002425 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002426 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002427#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002428 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2429 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002430 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002431 return SSL_TLSEXT_ERR_OK;
2432 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002433#endif
William Lallemand21724f02019-11-04 17:56:13 +01002434 if (s->strict_sni) {
2435 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002436 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002437 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002438 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002439 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002440 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002441 }
2442
2443 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002444 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002445 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002446 return SSL_TLSEXT_ERR_OK;
2447}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002448#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002449#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2450
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002451#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002452
2453static DH * ssl_get_dh_1024(void)
2454{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002455 static unsigned char dh1024_p[]={
2456 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2457 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2458 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2459 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2460 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2461 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2462 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2463 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2464 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2465 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2466 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2467 };
2468 static unsigned char dh1024_g[]={
2469 0x02,
2470 };
2471
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002472 BIGNUM *p;
2473 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002474 DH *dh = DH_new();
2475 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002476 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2477 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002478
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002479 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002480 DH_free(dh);
2481 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002482 } else {
2483 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002484 }
2485 }
2486 return dh;
2487}
2488
2489static DH *ssl_get_dh_2048(void)
2490{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002491 static unsigned char dh2048_p[]={
2492 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2493 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2494 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2495 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2496 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2497 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2498 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2499 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2500 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2501 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2502 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2503 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2504 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2505 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2506 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2507 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2508 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2509 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2510 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2511 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2512 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2513 0xB7,0x1F,0x77,0xF3,
2514 };
2515 static unsigned char dh2048_g[]={
2516 0x02,
2517 };
2518
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002519 BIGNUM *p;
2520 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002521 DH *dh = DH_new();
2522 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002523 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2524 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002525
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002526 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002527 DH_free(dh);
2528 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002529 } else {
2530 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002531 }
2532 }
2533 return dh;
2534}
2535
2536static DH *ssl_get_dh_4096(void)
2537{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002538 static unsigned char dh4096_p[]={
2539 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2540 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2541 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2542 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2543 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2544 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2545 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2546 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2547 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2548 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2549 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2550 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2551 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2552 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2553 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2554 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2555 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2556 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2557 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2558 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2559 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2560 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2561 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2562 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2563 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2564 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2565 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2566 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2567 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2568 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2569 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2570 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2571 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2572 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2573 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2574 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2575 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2576 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2577 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2578 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2579 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2580 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2581 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002582 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002583 static unsigned char dh4096_g[]={
2584 0x02,
2585 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002586
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002587 BIGNUM *p;
2588 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002589 DH *dh = DH_new();
2590 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002591 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2592 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002593
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002594 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002595 DH_free(dh);
2596 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002597 } else {
2598 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002599 }
2600 }
2601 return dh;
2602}
2603
2604/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002605 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002606static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2607{
2608 DH *dh = NULL;
2609 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002610 int type;
2611
2612 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002613
2614 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2615 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2616 */
2617 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2618 keylen = EVP_PKEY_bits(pkey);
2619 }
2620
Willy Tarreauef934602016-12-22 23:12:01 +01002621 if (keylen > global_ssl.default_dh_param) {
2622 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002623 }
2624
Remi Gacogned3a341a2015-05-29 16:26:17 +02002625 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002626 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002627 }
2628 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002629 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002630 }
2631 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002632 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002633 }
2634
2635 return dh;
2636}
2637
Remi Gacogne47783ef2015-05-29 15:53:22 +02002638static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002639{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002640 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002641 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002642
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002643 if (in == NULL)
2644 goto end;
2645
Remi Gacogne47783ef2015-05-29 15:53:22 +02002646 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002647 goto end;
2648
Remi Gacogne47783ef2015-05-29 15:53:22 +02002649 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2650
2651end:
2652 if (in)
2653 BIO_free(in);
2654
Emeric Brune1b4ed42018-08-16 15:14:12 +02002655 ERR_clear_error();
2656
Remi Gacogne47783ef2015-05-29 15:53:22 +02002657 return dh;
2658}
2659
2660int ssl_sock_load_global_dh_param_from_file(const char *filename)
2661{
2662 global_dh = ssl_sock_get_dh_from_file(filename);
2663
2664 if (global_dh) {
2665 return 0;
2666 }
2667
2668 return -1;
2669}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002670#endif
2671
William Lallemand9117de92019-10-04 00:29:42 +02002672/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02002673static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02002674 struct bind_conf *s, struct ssl_bind_conf *conf,
2675 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002676{
2677 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002678 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002679
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002680 if (*name == '!') {
2681 neg = 1;
2682 name++;
2683 }
2684 if (*name == '*') {
2685 wild = 1;
2686 name++;
2687 }
2688 /* !* filter is a nop */
2689 if (neg && wild)
2690 return order;
2691 if (*name) {
2692 int j, len;
2693 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002694 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002695 trash.area[j] = tolower(name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002696 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02002697 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002698 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002699
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002700 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002701 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02002702 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002703 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02002704 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002705 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002706 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002707 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002708 sc->order = order++;
2709 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02002710 sc->wild = wild;
2711 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01002712 sc->ckch_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02002713 LIST_ADDQ(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002714 }
2715 return order;
2716}
2717
William Lallemand6af03992019-07-23 15:00:54 +02002718/*
William Lallemand1d29c742019-10-04 00:53:29 +02002719 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
2720 * This function can't return an error.
2721 *
2722 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
2723 */
William Lallemandc756bbd2020-05-13 17:23:59 +02002724void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02002725{
2726
2727 struct sni_ctx *sc0, *sc0b, *sc1;
2728 struct ebmb_node *node;
William Lallemand21724f02019-11-04 17:56:13 +01002729 int def = 0;
William Lallemand1d29c742019-10-04 00:53:29 +02002730
2731 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
2732
2733 /* ignore if sc0 was already inserted in a tree */
2734 if (sc0->name.node.leaf_p)
2735 continue;
2736
2737 /* Check for duplicates. */
2738 if (sc0->wild)
2739 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
2740 else
2741 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
2742
2743 for (; node; node = ebmb_next_dup(node)) {
2744 sc1 = ebmb_entry(node, struct sni_ctx, name);
2745 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
2746 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
2747 /* it's a duplicate, we should remove and free it */
2748 LIST_DEL(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02002749 SSL_CTX_free(sc0->ctx);
William Lallemand1d29c742019-10-04 00:53:29 +02002750 free(sc0);
2751 sc0 = NULL;
William Lallemande15029b2019-10-14 10:46:58 +02002752 break;
William Lallemand1d29c742019-10-04 00:53:29 +02002753 }
2754 }
2755
2756 /* if duplicate, ignore the insertion */
2757 if (!sc0)
2758 continue;
2759
2760 if (sc0->wild)
2761 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
2762 else
2763 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
William Lallemand21724f02019-11-04 17:56:13 +01002764
2765 /* replace the default_ctx if required with the first ctx */
2766 if (ckch_inst->is_default && !def) {
William Lallemand02e19a52020-04-08 16:11:26 +02002767 SSL_CTX_free(bind_conf->default_ctx);
2768 SSL_CTX_up_ref(sc0->ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002769 bind_conf->default_ctx = sc0->ctx;
2770 def = 1;
2771 }
William Lallemand1d29c742019-10-04 00:53:29 +02002772 }
2773}
2774
2775/*
William Lallemande3af8fb2019-10-08 11:36:53 +02002776 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02002777 */
William Lallemande3af8fb2019-10-08 11:36:53 +02002778struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02002779
William Lallemand2954c472020-03-06 21:54:13 +01002780/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02002781struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02002782
Emeric Brun7a883362019-10-17 13:27:40 +02002783/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002784 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02002785 * DH parameter is loaded into the SSL_CTX and if there is no
2786 * DH parameter available in ckchs nor in global, the default
2787 * DH parameters are applied on the SSL_CTX.
2788 * Returns a bitfield containing the flags:
2789 * ERR_FATAL in any fatal error case
2790 * ERR_ALERT if a reason of the error is availabine in err
2791 * ERR_WARN if a warning is available into err
2792 * The value 0 means there is no error nor warning and
2793 * the operation succeed.
2794 */
William Lallemandfa892222019-07-23 16:06:08 +02002795#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02002796static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
2797 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02002798{
Emeric Brun7a883362019-10-17 13:27:40 +02002799 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02002800 DH *dh = NULL;
2801
William Lallemanda8c73742019-07-31 18:31:34 +02002802 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02002803 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02002804 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
2805 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
2806 err && *err ? *err : "", path);
2807#if defined(SSL_CTX_set_dh_auto)
2808 SSL_CTX_set_dh_auto(ctx, 1);
2809 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
2810 err && *err ? *err : "");
2811#else
2812 memprintf(err, "%s, DH ciphers won't be available.\n",
2813 err && *err ? *err : "");
2814#endif
2815 ret |= ERR_WARN;
2816 goto end;
2817 }
William Lallemandfa892222019-07-23 16:06:08 +02002818
2819 if (ssl_dh_ptr_index >= 0) {
2820 /* store a pointer to the DH params to avoid complaining about
2821 ssl-default-dh-param not being set for this SSL_CTX */
2822 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
2823 }
2824 }
2825 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02002826 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
2827 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
2828 err && *err ? *err : "", path);
2829#if defined(SSL_CTX_set_dh_auto)
2830 SSL_CTX_set_dh_auto(ctx, 1);
2831 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
2832 err && *err ? *err : "");
2833#else
2834 memprintf(err, "%s, DH ciphers won't be available.\n",
2835 err && *err ? *err : "");
2836#endif
2837 ret |= ERR_WARN;
2838 goto end;
2839 }
William Lallemandfa892222019-07-23 16:06:08 +02002840 }
2841 else {
2842 /* Clear openssl global errors stack */
2843 ERR_clear_error();
2844
2845 if (global_ssl.default_dh_param <= 1024) {
2846 /* we are limited to DH parameter of 1024 bits anyway */
2847 if (local_dh_1024 == NULL)
2848 local_dh_1024 = ssl_get_dh_1024();
2849
Emeric Brun7a883362019-10-17 13:27:40 +02002850 if (local_dh_1024 == NULL) {
2851 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
2852 err && *err ? *err : "", path);
2853 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02002854 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02002855 }
William Lallemandfa892222019-07-23 16:06:08 +02002856
Emeric Bruna9363eb2019-10-17 14:53:03 +02002857 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
2858 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
2859 err && *err ? *err : "", path);
2860#if defined(SSL_CTX_set_dh_auto)
2861 SSL_CTX_set_dh_auto(ctx, 1);
2862 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
2863 err && *err ? *err : "");
2864#else
2865 memprintf(err, "%s, DH ciphers won't be available.\n",
2866 err && *err ? *err : "");
2867#endif
2868 ret |= ERR_WARN;
2869 goto end;
2870 }
William Lallemandfa892222019-07-23 16:06:08 +02002871 }
2872 else {
2873 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
2874 }
William Lallemand8d0f8932019-10-17 18:03:58 +02002875 }
2876
William Lallemandf9568fc2019-10-16 18:27:58 +02002877end:
William Lallemandf9568fc2019-10-16 18:27:58 +02002878 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02002879 return ret;
2880}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02002881#endif
William Lallemandfa892222019-07-23 16:06:08 +02002882
yanbzhu488a4d22015-12-01 15:16:07 -05002883/* Loads the info in ckch into ctx
Emeric Bruna96b5822019-10-17 13:25:14 +02002884 * Returns a bitfield containing the flags:
2885 * ERR_FATAL in any fatal error case
2886 * ERR_ALERT if the reason of the error is available in err
2887 * ERR_WARN if a warning is available into err
2888 * The value 0 means there is no error nor warning and
2889 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05002890 */
2891static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
2892{
Emeric Bruna96b5822019-10-17 13:25:14 +02002893 int errcode = 0;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01002894 STACK_OF(X509) *find_chain = NULL;
Emeric Bruna96b5822019-10-17 13:25:14 +02002895
yanbzhu488a4d22015-12-01 15:16:07 -05002896 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
2897 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
2898 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02002899 errcode |= ERR_ALERT | ERR_FATAL;
2900 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05002901 }
2902
2903 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
2904 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
2905 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02002906 errcode |= ERR_ALERT | ERR_FATAL;
2907 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05002908 }
2909
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01002910 if (ckch->chain) {
2911 find_chain = ckch->chain;
2912 } else {
2913 /* Find Certificate Chain in global */
2914 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01002915 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01002916 if (issuer)
2917 find_chain = issuer->chain;
2918 }
William Lallemand85888572020-02-27 14:48:35 +01002919
William Lallemandf187ce62020-06-02 18:27:20 +02002920 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
2921 if (find_chain)
2922#ifdef SSL_CTX_set1_chain
2923 if (!SSL_CTX_set1_chain(ctx, find_chain)) {
2924 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
2925 err && *err ? *err : "", path);
2926 errcode |= ERR_ALERT | ERR_FATAL;
2927 goto end;
2928 }
2929#else
2930 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01002931 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02002932 STACK_OF(X509) *chain;
2933 chain = X509_chain_up_ref(find_chain);
2934 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01002935 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01002936 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
2937 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02002938 X509_free(ca);
2939 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01002940 errcode |= ERR_ALERT | ERR_FATAL;
2941 goto end;
2942 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01002943 }
William Lallemandf187ce62020-06-02 18:27:20 +02002944#endif
yanbzhu488a4d22015-12-01 15:16:07 -05002945
William Lallemandfa892222019-07-23 16:06:08 +02002946#ifndef OPENSSL_NO_DH
2947 /* store a NULL pointer to indicate we have not yet loaded
2948 a custom DH param file */
2949 if (ssl_dh_ptr_index >= 0) {
2950 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
2951 }
2952
Emeric Brun7a883362019-10-17 13:27:40 +02002953 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
2954 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02002955 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
2956 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02002957 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02002958 }
2959#endif
2960
William Lallemanda17f4112019-10-10 15:16:44 +02002961#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
2962 if (sctl_ex_index >= 0 && ckch->sctl) {
2963 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
2964 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01002965 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02002966 errcode |= ERR_ALERT | ERR_FATAL;
2967 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02002968 }
2969 }
2970#endif
2971
William Lallemand4a660132019-10-14 14:51:41 +02002972#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02002973 /* Load OCSP Info into context */
2974 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01002975 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01002976 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",
2977 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02002978 errcode |= ERR_ALERT | ERR_FATAL;
2979 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02002980 }
2981 }
William Lallemand246c0242019-10-11 08:59:13 +02002982#endif
2983
Emeric Bruna96b5822019-10-17 13:25:14 +02002984 end:
2985 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05002986}
2987
William Lallemandc4ecddf2019-07-31 16:50:08 +02002988#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
yanbzhu08ce6ab2015-12-02 13:01:29 -05002989
William Lallemand28a8fce2019-10-04 17:36:55 +02002990static int ssl_sock_populate_sni_keytypes_hplr(const char *str, struct eb_root *sni_keytypes, int key_index)
yanbzhu08ce6ab2015-12-02 13:01:29 -05002991{
2992 struct sni_keytype *s_kt = NULL;
2993 struct ebmb_node *node;
2994 int i;
2995
2996 for (i = 0; i < trash.size; i++) {
2997 if (!str[i])
2998 break;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002999 trash.area[i] = tolower(str[i]);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003000 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003001 trash.area[i] = 0;
3002 node = ebst_lookup(sni_keytypes, trash.area);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003003 if (!node) {
3004 /* CN not found in tree */
3005 s_kt = malloc(sizeof(struct sni_keytype) + i + 1);
3006 /* Using memcpy here instead of strncpy.
3007 * strncpy will cause sig_abrt errors under certain versions of gcc with -O2
3008 * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60792
3009 */
William Lallemand28a8fce2019-10-04 17:36:55 +02003010 if (!s_kt)
3011 return -1;
3012
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003013 memcpy(s_kt->name.key, trash.area, i+1);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003014 s_kt->keytypes = 0;
3015 ebst_insert(sni_keytypes, &s_kt->name);
3016 } else {
3017 /* CN found in tree */
3018 s_kt = container_of(node, struct sni_keytype, name);
3019 }
3020
3021 /* Mark that this CN has the keytype of key_index via keytypes mask */
3022 s_kt->keytypes |= 1<<key_index;
3023
William Lallemand28a8fce2019-10-04 17:36:55 +02003024 return 0;
3025
William Lallemand6af03992019-07-23 15:00:54 +02003026}
3027
William Lallemandc4ecddf2019-07-31 16:50:08 +02003028#endif
William Lallemand36b84632019-07-18 19:28:17 +02003029
William Lallemandc4ecddf2019-07-31 16:50:08 +02003030#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
3031
William Lallemand36b84632019-07-18 19:28:17 +02003032/*
William Lallemande3af8fb2019-10-08 11:36:53 +02003033 * Take a ckch_store which contains a multi-certificate bundle.
William Lallemand36b84632019-07-18 19:28:17 +02003034 * Group these certificates into a set of SSL_CTX*
yanbzhu08ce6ab2015-12-02 13:01:29 -05003035 * based on shared and unique CN and SAN entries. Add these SSL_CTX* to the SNI tree.
3036 *
Joseph Herlant017b3da2018-11-15 09:07:59 -08003037 * This will allow the user to explicitly group multiple cert/keys for a single purpose
yanbzhu08ce6ab2015-12-02 13:01:29 -05003038 *
Emeric Brun054563d2019-10-17 13:16:58 +02003039 * Returns a bitfield containing the flags:
3040 * ERR_FATAL in any fatal error case
3041 * ERR_ALERT if the reason of the error is available in err
3042 * ERR_WARN if a warning is available into err
William Lallemand36b84632019-07-18 19:28:17 +02003043 *
yanbzhu08ce6ab2015-12-02 13:01:29 -05003044 */
William Lallemandda8584c2020-05-14 10:14:37 +02003045int ckch_inst_new_load_multi_store(const char *path, struct ckch_store *ckchs,
3046 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
3047 char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
yanbzhu08ce6ab2015-12-02 13:01:29 -05003048{
William Lallemand36b84632019-07-18 19:28:17 +02003049 int i = 0, n = 0;
3050 struct cert_key_and_chain *certs_and_keys;
William Lallemand4b989f22019-10-04 18:36:55 +02003051 struct eb_root sni_keytypes_map = EB_ROOT;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003052 struct ebmb_node *node;
3053 struct ebmb_node *next;
3054 /* Array of SSL_CTX pointers corresponding to each possible combo
3055 * of keytypes
3056 */
3057 struct key_combo_ctx key_combos[SSL_SOCK_POSSIBLE_KT_COMBOS] = { {0} };
Emeric Brun054563d2019-10-17 13:16:58 +02003058 int errcode = 0;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003059 X509_NAME *xname = NULL;
3060 char *str = NULL;
3061#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3062 STACK_OF(GENERAL_NAME) *names = NULL;
3063#endif
William Lallemand614ca0d2019-10-07 13:52:11 +02003064 struct ckch_inst *ckch_inst;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003065
Emeric Brun054563d2019-10-17 13:16:58 +02003066 *ckchi = NULL;
3067
William Lallemande3af8fb2019-10-08 11:36:53 +02003068 if (!ckchs || !ckchs->ckch || !ckchs->multi) {
William Lallemand36b84632019-07-18 19:28:17 +02003069 memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n",
3070 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003071 return ERR_ALERT | ERR_FATAL;
William Lallemand614ca0d2019-10-07 13:52:11 +02003072 }
3073
3074 ckch_inst = ckch_inst_new();
3075 if (!ckch_inst) {
3076 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3077 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003078 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemand614ca0d2019-10-07 13:52:11 +02003079 goto end;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003080 }
3081
William Lallemande3af8fb2019-10-08 11:36:53 +02003082 certs_and_keys = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003083
yanbzhu08ce6ab2015-12-02 13:01:29 -05003084 /* Process each ckch and update keytypes for each CN/SAN
3085 * for example, if CN/SAN www.a.com is associated with
3086 * certs with keytype 0 and 2, then at the end of the loop,
3087 * www.a.com will have:
3088 * keyindex = 0 | 1 | 4 = 5
3089 */
3090 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
William Lallemand28a8fce2019-10-04 17:36:55 +02003091 int ret;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003092
3093 if (!ssl_sock_is_ckch_valid(&certs_and_keys[n]))
3094 continue;
3095
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003096 if (fcount) {
William Lallemand28a8fce2019-10-04 17:36:55 +02003097 for (i = 0; i < fcount; i++) {
3098 ret = ssl_sock_populate_sni_keytypes_hplr(sni_filter[i], &sni_keytypes_map, n);
3099 if (ret < 0) {
3100 memprintf(err, "%sunable to allocate SSL context.\n",
3101 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003102 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemand28a8fce2019-10-04 17:36:55 +02003103 goto end;
3104 }
3105 }
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003106 } else {
3107 /* A lot of the following code is OpenSSL boilerplate for processing CN's and SAN's,
3108 * so the line that contains logic is marked via comments
3109 */
3110 xname = X509_get_subject_name(certs_and_keys[n].cert);
3111 i = -1;
3112 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3113 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003114 ASN1_STRING *value;
3115 value = X509_NAME_ENTRY_get_data(entry);
3116 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003117 /* Important line is here */
William Lallemand28a8fce2019-10-04 17:36:55 +02003118 ret = ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003119
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003120 OPENSSL_free(str);
3121 str = NULL;
William Lallemand28a8fce2019-10-04 17:36:55 +02003122 if (ret < 0) {
3123 memprintf(err, "%sunable to allocate SSL context.\n",
3124 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003125 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemand28a8fce2019-10-04 17:36:55 +02003126 goto end;
3127 }
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003128 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003129 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003130
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003131 /* Do the above logic for each SAN */
yanbzhu08ce6ab2015-12-02 13:01:29 -05003132#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003133 names = X509_get_ext_d2i(certs_and_keys[n].cert, NID_subject_alt_name, NULL, NULL);
3134 if (names) {
3135 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3136 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003137
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003138 if (name->type == GEN_DNS) {
3139 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
3140 /* Important line is here */
William Lallemand28a8fce2019-10-04 17:36:55 +02003141 ret = ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003142
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003143 OPENSSL_free(str);
3144 str = NULL;
William Lallemand28a8fce2019-10-04 17:36:55 +02003145 if (ret < 0) {
3146 memprintf(err, "%sunable to allocate SSL context.\n",
3147 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003148 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemand28a8fce2019-10-04 17:36:55 +02003149 goto end;
3150 }
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003151 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003152 }
3153 }
3154 }
3155 }
3156#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
3157 }
3158
3159 /* If no files found, return error */
3160 if (eb_is_empty(&sni_keytypes_map)) {
3161 memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n",
3162 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003163 errcode |= ERR_ALERT | ERR_FATAL;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003164 goto end;
3165 }
3166
3167 /* We now have a map of CN/SAN to keytypes that are loaded in
3168 * Iterate through the map to create the SSL_CTX's (if needed)
3169 * and add each CTX to the SNI tree
3170 *
3171 * Some math here:
Joseph Herlant017b3da2018-11-15 09:07:59 -08003172 * There are 2^n - 1 possible combinations, each unique
yanbzhu08ce6ab2015-12-02 13:01:29 -05003173 * combination is denoted by the key in the map. Each key
3174 * has a value between 1 and 2^n - 1. Conveniently, the array
3175 * of SSL_CTX* is sized 2^n. So, we can simply use the i'th
3176 * entry in the array to correspond to the unique combo (key)
3177 * associated with i. This unique key combo (i) will be associated
3178 * with combos[i-1]
3179 */
3180
3181 node = ebmb_first(&sni_keytypes_map);
3182 while (node) {
3183 SSL_CTX *cur_ctx;
Bertrand Jacquin33423092016-11-13 16:37:13 +00003184 char cur_file[MAXPATHLEN+1];
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003185 const struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
yanbzhu08ce6ab2015-12-02 13:01:29 -05003186
3187 str = (char *)container_of(node, struct sni_keytype, name)->name.key;
3188 i = container_of(node, struct sni_keytype, name)->keytypes;
3189 cur_ctx = key_combos[i-1].ctx;
3190
3191 if (cur_ctx == NULL) {
3192 /* need to create SSL_CTX */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003193 cur_ctx = SSL_CTX_new(SSLv23_server_method());
yanbzhu08ce6ab2015-12-02 13:01:29 -05003194 if (cur_ctx == NULL) {
3195 memprintf(err, "%sunable to allocate SSL context.\n",
3196 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003197 errcode |= ERR_ALERT | ERR_FATAL;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003198 goto end;
3199 }
3200
yanbzhube2774d2015-12-10 15:07:30 -05003201 /* Load all required certs/keys/chains/OCSPs info into SSL_CTX */
yanbzhu08ce6ab2015-12-02 13:01:29 -05003202 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3203 if (i & (1<<n)) {
3204 /* Key combo contains ckch[n] */
Bertrand Jacquin33423092016-11-13 16:37:13 +00003205 snprintf(cur_file, MAXPATHLEN+1, "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
Emeric Bruna96b5822019-10-17 13:25:14 +02003206 errcode |= ssl_sock_put_ckch_into_ctx(cur_file, &certs_and_keys[n], cur_ctx, err);
3207 if (errcode & ERR_CODE)
yanbzhu08ce6ab2015-12-02 13:01:29 -05003208 goto end;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003209 }
3210 }
3211
yanbzhu08ce6ab2015-12-02 13:01:29 -05003212 /* Update key_combos */
3213 key_combos[i-1].ctx = cur_ctx;
3214 }
3215
3216 /* Update SNI Tree */
William Lallemand9117de92019-10-04 00:29:42 +02003217
William Lallemand1d29c742019-10-04 00:53:29 +02003218 key_combos[i-1].order = ckch_inst_add_cert_sni(cur_ctx, ckch_inst, bind_conf, ssl_conf,
William Lallemandfe49bb32019-10-03 23:46:33 +02003219 kinfo, str, key_combos[i-1].order);
3220 if (key_combos[i-1].order < 0) {
3221 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003222 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandfe49bb32019-10-03 23:46:33 +02003223 goto end;
3224 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003225 node = ebmb_next(node);
3226 }
3227
3228
3229 /* Mark a default context if none exists, using the ctx that has the most shared keys */
3230 if (!bind_conf->default_ctx) {
3231 for (i = SSL_SOCK_POSSIBLE_KT_COMBOS - 1; i >= 0; i--) {
3232 if (key_combos[i].ctx) {
3233 bind_conf->default_ctx = key_combos[i].ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003234 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003235 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003236 SSL_CTX_up_ref(bind_conf->default_ctx);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003237 break;
3238 }
3239 }
3240 }
3241
William Lallemand614ca0d2019-10-07 13:52:11 +02003242 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003243 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003244 ckch_inst->ckch_store = ckchs;
William Lallemand02e19a52020-04-08 16:11:26 +02003245
yanbzhu08ce6ab2015-12-02 13:01:29 -05003246end:
3247
3248 if (names)
3249 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
3250
yanbzhu08ce6ab2015-12-02 13:01:29 -05003251 node = ebmb_first(&sni_keytypes_map);
3252 while (node) {
3253 next = ebmb_next(node);
3254 ebmb_delete(node);
William Lallemand8ed5b962019-10-04 17:24:39 +02003255 free(ebmb_entry(node, struct sni_keytype, name));
yanbzhu08ce6ab2015-12-02 13:01:29 -05003256 node = next;
3257 }
3258
William Lallemand02e19a52020-04-08 16:11:26 +02003259 /* we need to free the ctx since we incremented the refcount where it's used */
3260 for (i = 0; i < SSL_SOCK_POSSIBLE_KT_COMBOS; i++) {
3261 if (key_combos[i].ctx)
3262 SSL_CTX_free(key_combos[i].ctx);
3263 }
3264
Emeric Brun054563d2019-10-17 13:16:58 +02003265 if (errcode & ERR_CODE && ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003266 if (ckch_inst->is_default) {
3267 SSL_CTX_free(bind_conf->default_ctx);
3268 bind_conf->default_ctx = NULL;
3269 }
3270
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003271 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003272 ckch_inst = NULL;
William Lallemand0c6d12f2019-10-04 18:38:51 +02003273 }
3274
Emeric Brun054563d2019-10-17 13:16:58 +02003275 *ckchi = ckch_inst;
3276 return errcode;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003277}
3278#else
3279/* This is a dummy, that just logs an error and returns error */
William Lallemandda8584c2020-05-14 10:14:37 +02003280int ckch_inst_new_load_multi_store(const char *path, struct ckch_store *ckchs,
3281 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
3282 char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
yanbzhu08ce6ab2015-12-02 13:01:29 -05003283{
3284 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3285 err && *err ? *err : "", path, strerror(errno));
Emeric Brun054563d2019-10-17 13:16:58 +02003286 return ERR_ALERT | ERR_FATAL;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003287}
3288
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003289#endif /* #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL: Support for loading multiple certs into a single SSL_CTX */
yanbzhu488a4d22015-12-01 15:16:07 -05003290
William Lallemand614ca0d2019-10-07 13:52:11 +02003291/*
3292 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003293 *
3294 * Returns a bitfield containing the flags:
3295 * ERR_FATAL in any fatal error case
3296 * ERR_ALERT if the reason of the error is available in err
3297 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003298 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003299int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003300 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003301{
William Lallemandc9402072019-05-15 15:33:54 +02003302 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003303 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003304 int order = 0;
3305 X509_NAME *xname;
3306 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003307 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003308 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003309#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3310 STACK_OF(GENERAL_NAME) *names;
3311#endif
William Lallemand36b84632019-07-18 19:28:17 +02003312 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003313 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003314 int errcode = 0;
3315
3316 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003317
William Lallemande3af8fb2019-10-08 11:36:53 +02003318 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003319 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003320
William Lallemande3af8fb2019-10-08 11:36:53 +02003321 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003322
William Lallemandc9402072019-05-15 15:33:54 +02003323 ctx = SSL_CTX_new(SSLv23_server_method());
3324 if (!ctx) {
3325 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3326 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003327 errcode |= ERR_ALERT | ERR_FATAL;
3328 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003329 }
3330
Emeric Bruna96b5822019-10-17 13:25:14 +02003331 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3332 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003333 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003334
3335 ckch_inst = ckch_inst_new();
3336 if (!ckch_inst) {
3337 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3338 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003339 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003340 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003341 }
3342
William Lallemand36b84632019-07-18 19:28:17 +02003343 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003344 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003345 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003346 switch(EVP_PKEY_base_id(pkey)) {
3347 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003348 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003349 break;
3350 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003351 kinfo.sig = TLSEXT_signature_ecdsa;
3352 break;
3353 case EVP_PKEY_DSA:
3354 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003355 break;
3356 }
3357 EVP_PKEY_free(pkey);
3358 }
3359
Emeric Brun50bcecc2013-04-22 13:05:23 +02003360 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003361 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003362 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 +02003363 if (order < 0) {
3364 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003365 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003366 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003367 }
3368 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003369 }
3370 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003371#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003372 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003373 if (names) {
3374 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3375 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3376 if (name->type == GEN_DNS) {
3377 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003378 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003379 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003380 if (order < 0) {
3381 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003382 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003383 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003384 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003385 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003386 }
3387 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003388 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003389 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003390#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003391 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003392 i = -1;
3393 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3394 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003395 ASN1_STRING *value;
3396
3397 value = X509_NAME_ENTRY_get_data(entry);
3398 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003399 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003400 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003401 if (order < 0) {
3402 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003403 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003404 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003405 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003406 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003407 }
3408 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003409 /* we must not free the SSL_CTX anymore below, since it's already in
3410 * the tree, so it will be discovered and cleaned in time.
3411 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003412
Emeric Brunfc0421f2012-09-07 17:30:07 +02003413#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003414 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003415 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3416 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003417 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003418 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003419 }
3420#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003421 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003422 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003423 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003424 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003425 SSL_CTX_up_ref(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003426 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003427
William Lallemand9117de92019-10-04 00:29:42 +02003428 /* everything succeed, the ckch instance can be used */
3429 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003430 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003431 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003432
William Lallemand02e19a52020-04-08 16:11:26 +02003433 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3434
Emeric Brun054563d2019-10-17 13:16:58 +02003435 *ckchi = ckch_inst;
3436 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003437
3438error:
3439 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003440 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003441 if (ckch_inst->is_default)
3442 SSL_CTX_free(ctx);
3443
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003444 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003445 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003446 }
William Lallemandd9199372019-10-04 15:37:05 +02003447 SSL_CTX_free(ctx);
3448
Emeric Brun054563d2019-10-17 13:16:58 +02003449 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003450}
3451
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003452/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003453static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3454 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003455 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003456{
Emeric Brun054563d2019-10-17 13:16:58 +02003457 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003458
3459 /* we found the ckchs in the tree, we can use it directly */
3460 if (ckchs->multi)
William Lallemand24bde432020-03-09 16:48:43 +01003461 errcode |= ckch_inst_new_load_multi_store(path, ckchs, bind_conf, ssl_conf, sni_filter, fcount, ckch_inst, err);
William Lallemand614ca0d2019-10-07 13:52:11 +02003462 else
William Lallemand24bde432020-03-09 16:48:43 +01003463 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 +02003464
Emeric Brun054563d2019-10-17 13:16:58 +02003465 if (errcode & ERR_CODE)
3466 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003467
William Lallemand24bde432020-03-09 16:48:43 +01003468 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003469
3470 /* succeed, add the instance to the ckch_store's list of instance */
William Lallemand24bde432020-03-09 16:48:43 +01003471 LIST_ADDQ(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003472 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003473}
3474
William Lallemand6be66ec2020-03-06 22:26:32 +01003475
William Lallemand4c68bba2020-03-30 18:45:10 +02003476
3477
3478/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3479 * done once. Zero is returned if the operation fails. No error is returned
3480 * if the random is said as not implemented, because we expect that openssl
3481 * will use another method once needed.
3482 */
3483static int ssl_initialize_random()
3484{
3485 unsigned char random;
3486 static int random_initialized = 0;
3487
3488 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3489 random_initialized = 1;
3490
3491 return random_initialized;
3492}
3493
William Lallemand2954c472020-03-06 21:54:13 +01003494/* Load a crt-list file, this is done in 2 parts:
3495 * - store the content of the file in a crtlist structure with crtlist_entry structures
3496 * - generate the instances by iterating on entries in the crtlist struct
3497 *
3498 * Nothing is locked there, this function is used in the configuration parser.
3499 *
3500 * Returns a set of ERR_* flags possibly with an error in <err>.
3501 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003502int 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 +01003503{
3504 struct crtlist *crtlist = NULL;
3505 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003506 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003507 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003508 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003509 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003510
William Lallemand79d31ec2020-03-25 15:10:49 +01003511 bind_conf_node = malloc(sizeof(*bind_conf_node));
3512 if (!bind_conf_node) {
3513 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3514 cfgerr |= ERR_FATAL | ERR_ALERT;
3515 goto error;
3516 }
3517 bind_conf_node->next = NULL;
3518 bind_conf_node->bind_conf = bind_conf;
3519
William Lallemand41ca9302020-04-08 13:15:18 +02003520 /* strip trailing slashes, including first one */
3521 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3522 *end = 0;
3523
William Lallemand2954c472020-03-06 21:54:13 +01003524 /* look for an existing crtlist or create one */
3525 eb = ebst_lookup(&crtlists_tree, file);
3526 if (eb) {
3527 crtlist = ebmb_entry(eb, struct crtlist, node);
3528 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003529 /* load a crt-list OR a directory */
3530 if (dir)
3531 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3532 else
3533 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3534
William Lallemand2954c472020-03-06 21:54:13 +01003535 if (!(cfgerr & ERR_CODE))
3536 ebst_insert(&crtlists_tree, &crtlist->node);
3537 }
3538
3539 if (cfgerr & ERR_CODE) {
3540 cfgerr |= ERR_FATAL | ERR_ALERT;
3541 goto error;
3542 }
3543
3544 /* generates ckch instance from the crtlist_entry */
3545 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3546 struct ckch_store *store;
3547 struct ckch_inst *ckch_inst = NULL;
3548
3549 store = entry->node.key;
3550 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3551 if (cfgerr & ERR_CODE) {
3552 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3553 goto error;
3554 }
William Lallemand49398312020-03-30 17:01:33 +02003555 LIST_ADDQ(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003556 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003557 }
William Lallemand2954c472020-03-06 21:54:13 +01003558
William Lallemand79d31ec2020-03-25 15:10:49 +01003559 /* add the bind_conf to the list */
3560 bind_conf_node->next = crtlist->bind_conf;
3561 crtlist->bind_conf = bind_conf_node;
3562
William Lallemand2954c472020-03-06 21:54:13 +01003563 return cfgerr;
3564error:
3565 {
William Lallemand49398312020-03-30 17:01:33 +02003566 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003567 struct ckch_inst *inst, *s_inst;
3568
William Lallemand49398312020-03-30 17:01:33 +02003569 lastentry = entry; /* which entry we tried to generate last */
3570 if (lastentry) {
3571 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3572 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3573 break;
3574
3575 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003576
William Lallemand49398312020-03-30 17:01:33 +02003577 /* this was not generated for this bind_conf, skip */
3578 if (inst->bind_conf != bind_conf)
3579 continue;
3580
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003581 /* free the sni_ctx and instance */
3582 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003583 }
William Lallemand2954c472020-03-06 21:54:13 +01003584 }
William Lallemand2954c472020-03-06 21:54:13 +01003585 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003586 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003587 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003588 return cfgerr;
3589}
3590
William Lallemand06b22a82020-03-16 14:45:55 +01003591/* Returns a set of ERR_* flags possibly with an error in <err>. */
3592int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3593{
3594 struct stat buf;
3595 char fp[MAXPATHLEN+1];
3596 int cfgerr = 0;
3597 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003598 struct ckch_inst *ckch_inst = NULL;
William Lallemand06b22a82020-03-16 14:45:55 +01003599
3600 if ((ckchs = ckchs_lookup(path))) {
3601 /* we found the ckchs in the tree, we can use it directly */
William Lallemand24bde432020-03-09 16:48:43 +01003602 return ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003603 }
3604 if (stat(path, &buf) == 0) {
3605 if (S_ISDIR(buf.st_mode) == 0) {
3606 ckchs = ckchs_load_cert_file(path, 0, err);
3607 if (!ckchs)
3608 return ERR_ALERT | ERR_FATAL;
3609
William Lallemand24bde432020-03-09 16:48:43 +01003610 return ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003611 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003612 return ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003613 }
3614 } else {
3615 /* stat failed, could be a bundle */
3616 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
3617 /* try to load a bundle if it is permitted */
3618 ckchs = ckchs_load_cert_file(path, 1, err);
3619 if (!ckchs)
3620 return ERR_ALERT | ERR_FATAL;
William Lallemand24bde432020-03-09 16:48:43 +01003621 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003622 } else {
3623 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3624 err && *err ? *err : "", fp, strerror(errno));
3625 cfgerr |= ERR_ALERT | ERR_FATAL;
3626 }
3627 }
3628
3629 return cfgerr;
3630}
3631
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003632/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003633static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003634ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003635{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003636 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003637 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003638 SSL_OP_ALL | /* all known workarounds for bugs */
3639 SSL_OP_NO_SSLv2 |
3640 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003641 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003642 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003643 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003644 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003645 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003646 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003647 SSL_MODE_ENABLE_PARTIAL_WRITE |
3648 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003649 SSL_MODE_RELEASE_BUFFERS |
3650 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003651 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003652 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003653 int flags = MC_SSL_O_ALL;
3654 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003655 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003656
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003657 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003658 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003659
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003660 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003661 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3662 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3663 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003664 else
3665 flags = conf_ssl_methods->flags;
3666
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003667 min = conf_ssl_methods->min;
3668 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003669
3670 /* default minimum is TLSV12, */
3671 if (!min) {
3672 if (!max || (max >= default_min_ver)) {
3673 min = default_min_ver;
3674 } else {
3675 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). "
3676 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3677 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3678 min = max;
3679 }
3680 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003681 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003682 if (min)
3683 flags |= (methodVersions[min].flag - 1);
3684 if (max)
3685 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003686 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003687 min = max = CONF_TLSV_NONE;
3688 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003689 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003690 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003691 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003692 if (min) {
3693 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003694 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3695 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3696 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3697 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003698 hole = 0;
3699 }
3700 max = i;
3701 }
3702 else {
3703 min = max = i;
3704 }
3705 }
3706 else {
3707 if (min)
3708 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003709 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003710 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003711 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3712 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003713 cfgerr += 1;
3714 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003715 /* save real min/max in bind_conf */
3716 conf_ssl_methods->min = min;
3717 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003718
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003719#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003720 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003721 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003722 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003723 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003724 else
3725 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
3726 if (flags & methodVersions[i].flag)
3727 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003728#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003729 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003730 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3731 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003732#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003733
3734 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3735 options |= SSL_OP_NO_TICKET;
3736 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3737 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003738
3739#ifdef SSL_OP_NO_RENEGOTIATION
3740 options |= SSL_OP_NO_RENEGOTIATION;
3741#endif
3742
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003743 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003744
Willy Tarreau5db847a2019-05-09 14:13:35 +02003745#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003746 if (global_ssl.async)
3747 mode |= SSL_MODE_ASYNC;
3748#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003749 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003750 if (global_ssl.life_time)
3751 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003752
3753#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3754#ifdef OPENSSL_IS_BORINGSSL
3755 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3756 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05003757#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01003758 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003759 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003760 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3761 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003762#else
3763 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003764#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003765 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003766#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003767 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003768}
3769
William Lallemand4f45bb92017-10-30 20:08:51 +01003770
3771static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3772{
3773 if (first == block) {
3774 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3775 if (first->len > 0)
3776 sh_ssl_sess_tree_delete(sh_ssl_sess);
3777 }
3778}
3779
3780/* return first block from sh_ssl_sess */
3781static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3782{
3783 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3784
3785}
3786
3787/* store a session into the cache
3788 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3789 * data: asn1 encoded session
3790 * data_len: asn1 encoded session length
3791 * Returns 1 id session was stored (else 0)
3792 */
3793static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3794{
3795 struct shared_block *first;
3796 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3797
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003798 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003799 if (!first) {
3800 /* Could not retrieve enough free blocks to store that session */
3801 return 0;
3802 }
3803
3804 /* STORE the key in the first elem */
3805 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3806 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3807 first->len = sizeof(struct sh_ssl_sess_hdr);
3808
3809 /* it returns the already existing node
3810 or current node if none, never returns null */
3811 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
3812 if (oldsh_ssl_sess != sh_ssl_sess) {
3813 /* NOTE: Row couldn't be in use because we lock read & write function */
3814 /* release the reserved row */
3815 shctx_row_dec_hot(ssl_shctx, first);
3816 /* replace the previous session already in the tree */
3817 sh_ssl_sess = oldsh_ssl_sess;
3818 /* ignore the previous session data, only use the header */
3819 first = sh_ssl_sess_first_block(sh_ssl_sess);
3820 shctx_row_inc_hot(ssl_shctx, first);
3821 first->len = sizeof(struct sh_ssl_sess_hdr);
3822 }
3823
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003824 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01003825 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003826 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01003827 }
3828
3829 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003830
3831 return 1;
3832}
William Lallemanded0b5ad2017-10-30 19:36:36 +01003833
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003834/* SSL callback used when a new session is created while connecting to a server */
3835static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
3836{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02003837 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003838 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003839
Willy Tarreau07d94e42018-09-20 10:57:52 +02003840 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003841
Olivier Houcharde6060c52017-11-16 17:42:52 +01003842 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
3843 int len;
3844 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003845
Olivier Houcharde6060c52017-11-16 17:42:52 +01003846 len = i2d_SSL_SESSION(sess, NULL);
3847 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
3848 ptr = s->ssl_ctx.reused_sess[tid].ptr;
3849 } else {
3850 free(s->ssl_ctx.reused_sess[tid].ptr);
3851 ptr = s->ssl_ctx.reused_sess[tid].ptr = malloc(len);
3852 s->ssl_ctx.reused_sess[tid].allocated_size = len;
3853 }
3854 if (s->ssl_ctx.reused_sess[tid].ptr) {
3855 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
3856 &ptr);
3857 }
3858 } else {
3859 free(s->ssl_ctx.reused_sess[tid].ptr);
3860 s->ssl_ctx.reused_sess[tid].ptr = NULL;
3861 }
3862
3863 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003864}
3865
Olivier Houcharde6060c52017-11-16 17:42:52 +01003866
William Lallemanded0b5ad2017-10-30 19:36:36 +01003867/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01003868int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01003869{
3870 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
3871 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
3872 unsigned char *p;
3873 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02003874 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003875 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003876
3877 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003878 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02003879 * note: SSL_SESSION_set1_id is using
3880 * a memcpy so we need to use a different pointer
3881 * than sid_data or sid_ctx_data to avoid valgrind
3882 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01003883 */
3884
3885 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02003886
3887 /* copy value in an other buffer */
3888 memcpy(encid, sid_data, sid_length);
3889
3890 /* pad with 0 */
3891 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
3892 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
3893
3894 /* force length to zero to avoid ASN1 encoding */
3895 SSL_SESSION_set1_id(sess, encid, 0);
3896
3897 /* force length to zero to avoid ASN1 encoding */
3898 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003899
3900 /* check if buffer is large enough for the ASN1 encoded session */
3901 data_len = i2d_SSL_SESSION(sess, NULL);
3902 if (data_len > SHSESS_MAX_DATA_LEN)
3903 goto err;
3904
3905 p = encsess;
3906
3907 /* process ASN1 session encoding before the lock */
3908 i2d_SSL_SESSION(sess, &p);
3909
William Lallemanded0b5ad2017-10-30 19:36:36 +01003910
William Lallemanda3c77cf2017-10-30 23:44:40 +01003911 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003912 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01003913 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01003914 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003915err:
3916 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02003917 SSL_SESSION_set1_id(sess, encid, sid_length);
3918 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01003919
3920 return 0; /* do not increment session reference count */
3921}
3922
3923/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01003924SSL_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 +01003925{
William Lallemand4f45bb92017-10-30 20:08:51 +01003926 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003927 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
3928 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01003929 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01003930 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003931
3932 global.shctx_lookups++;
3933
3934 /* allow the session to be freed automatically by openssl */
3935 *do_copy = 0;
3936
3937 /* tree key is zeros padded sessionid */
3938 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
3939 memcpy(tmpkey, key, key_len);
3940 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
3941 key = tmpkey;
3942 }
3943
3944 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01003945 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003946
3947 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01003948 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
3949 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01003950 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01003951 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003952 global.shctx_misses++;
3953 return NULL;
3954 }
3955
William Lallemand4f45bb92017-10-30 20:08:51 +01003956 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
3957 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003958
William Lallemand4f45bb92017-10-30 20:08:51 +01003959 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 +01003960
William Lallemanda3c77cf2017-10-30 23:44:40 +01003961 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003962
3963 /* decode ASN1 session */
3964 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01003965 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01003966 /* Reset session id and session id contenxt */
3967 if (sess) {
3968 SSL_SESSION_set1_id(sess, key, key_len);
3969 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
3970 }
3971
3972 return sess;
3973}
3974
William Lallemand4f45bb92017-10-30 20:08:51 +01003975
William Lallemanded0b5ad2017-10-30 19:36:36 +01003976/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01003977void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01003978{
William Lallemand4f45bb92017-10-30 20:08:51 +01003979 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01003980 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
3981 unsigned int sid_length;
3982 const unsigned char *sid_data;
3983 (void)ctx;
3984
3985 sid_data = SSL_SESSION_get_id(sess, &sid_length);
3986 /* tree key is zeros padded sessionid */
3987 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
3988 memcpy(tmpkey, sid_data, sid_length);
3989 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
3990 sid_data = tmpkey;
3991 }
3992
William Lallemanda3c77cf2017-10-30 23:44:40 +01003993 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01003994
3995 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01003996 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
3997 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01003998 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01003999 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004000 }
4001
4002 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004003 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004004}
4005
4006/* Set session cache mode to server and disable openssl internal cache.
4007 * Set shared cache callbacks on an ssl context.
4008 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004009void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004010{
4011 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4012
4013 if (!ssl_shctx) {
4014 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4015 return;
4016 }
4017
4018 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4019 SSL_SESS_CACHE_NO_INTERNAL |
4020 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4021
4022 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004023 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4024 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4025 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004026}
4027
William Lallemand8b453912019-11-21 15:48:10 +01004028/*
4029 * This function applies the SSL configuration on a SSL_CTX
4030 * It returns an error code and fills the <err> buffer
4031 */
4032int 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 +01004033{
4034 struct proxy *curproxy = bind_conf->frontend;
4035 int cfgerr = 0;
4036 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004037 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004038 const char *conf_ciphers;
Emmanuel Hocdet839af572019-05-14 16:27:35 +02004039#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004040 const char *conf_ciphersuites;
4041#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004042 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004043
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004044 if (ssl_conf) {
4045 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4046 int i, min, max;
4047 int flags = MC_SSL_O_ALL;
4048
4049 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004050 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4051 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004052 if (min)
4053 flags |= (methodVersions[min].flag - 1);
4054 if (max)
4055 flags |= ~((methodVersions[max].flag << 1) - 1);
4056 min = max = CONF_TLSV_NONE;
4057 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4058 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4059 if (min)
4060 max = i;
4061 else
4062 min = max = i;
4063 }
4064 /* save real min/max */
4065 conf_ssl_methods->min = min;
4066 conf_ssl_methods->max = max;
4067 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004068 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4069 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004070 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004071 }
4072 }
4073
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004074 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004075 case SSL_SOCK_VERIFY_NONE:
4076 verify = SSL_VERIFY_NONE;
4077 break;
4078 case SSL_SOCK_VERIFY_OPTIONAL:
4079 verify = SSL_VERIFY_PEER;
4080 break;
4081 case SSL_SOCK_VERIFY_REQUIRED:
4082 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4083 break;
4084 }
4085 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4086 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004087 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 +01004088 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 +01004089 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 +01004090 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004091 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004092 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004093 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004094 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004095 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004096 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004097 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4098 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4099 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4100 cfgerr |= ERR_ALERT | ERR_FATAL;
4101 }
4102 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004103 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004104 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 +02004105 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004106 }
Emeric Brun850efd52014-01-29 12:24:34 +01004107 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004108 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4109 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004110 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004111 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004112#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004113 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004114 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4115
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004116 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004117 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4118 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004119 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004120 }
Emeric Brun561e5742012-10-02 15:20:55 +02004121 else {
4122 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4123 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004124 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004125#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004126 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004127 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004128#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004129 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004130 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004131 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4132 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004133 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004134 }
4135 }
4136#endif
4137
William Lallemand4f45bb92017-10-30 20:08:51 +01004138 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004139 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4140 if (conf_ciphers &&
4141 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004142 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4143 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004144 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004145 }
4146
Emmanuel Hocdet839af572019-05-14 16:27:35 +02004147#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004148 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4149 if (conf_ciphersuites &&
4150 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004151 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4152 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004153 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004154 }
4155#endif
4156
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004157#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004158 /* If tune.ssl.default-dh-param has not been set,
4159 neither has ssl-default-dh-file and no static DH
4160 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004161 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004162 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004163 (ssl_dh_ptr_index == -1 ||
4164 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004165 /* default to dh-param 2048 */
4166 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004167 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004168
Willy Tarreauef934602016-12-22 23:12:01 +01004169 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004170 if (local_dh_1024 == NULL) {
4171 local_dh_1024 = ssl_get_dh_1024();
4172 }
Willy Tarreauef934602016-12-22 23:12:01 +01004173 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004174 if (local_dh_2048 == NULL) {
4175 local_dh_2048 = ssl_get_dh_2048();
4176 }
Willy Tarreauef934602016-12-22 23:12:01 +01004177 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004178 if (local_dh_4096 == NULL) {
4179 local_dh_4096 = ssl_get_dh_4096();
4180 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004181 }
4182 }
4183 }
4184#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004185
Emeric Brunfc0421f2012-09-07 17:30:07 +02004186 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004187#if HA_OPENSSL_VERSION_NUMBER >= 0x00907000L
Emeric Brun29f037d2014-04-25 19:05:36 +02004188 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004189#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004190
Bernard Spil13c53f82018-02-15 13:34:58 +01004191#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004192 ssl_conf_cur = NULL;
4193 if (ssl_conf && ssl_conf->npn_str)
4194 ssl_conf_cur = ssl_conf;
4195 else if (bind_conf->ssl_conf.npn_str)
4196 ssl_conf_cur = &bind_conf->ssl_conf;
4197 if (ssl_conf_cur)
4198 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004199#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004200#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004201 ssl_conf_cur = NULL;
4202 if (ssl_conf && ssl_conf->alpn_str)
4203 ssl_conf_cur = ssl_conf;
4204 else if (bind_conf->ssl_conf.alpn_str)
4205 ssl_conf_cur = &bind_conf->ssl_conf;
4206 if (ssl_conf_cur)
4207 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004208#endif
Lukas Tribusd14b49c2019-11-24 18:20:40 +01004209#if ((HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL) || defined(LIBRESSL_VERSION_NUMBER))
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004210 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4211 if (conf_curves) {
4212 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004213 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4214 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004215 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004216 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004217 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004218 }
4219#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004220#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004221 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004222 int i;
4223 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004224#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004225 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004226 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4227 NULL);
4228
4229 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004230 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004231 return cfgerr;
4232 }
4233#else
4234 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4235 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4236 ECDHE_DEFAULT_CURVE);
4237#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004238
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004239 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004240 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004241 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4242 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004243 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004244 }
4245 else {
4246 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4247 EC_KEY_free(ecdh);
4248 }
4249 }
4250#endif
4251
Emeric Brunfc0421f2012-09-07 17:30:07 +02004252 return cfgerr;
4253}
4254
Evan Broderbe554312013-06-27 00:05:25 -07004255static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4256{
4257 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4258 size_t prefixlen, suffixlen;
4259
4260 /* Trivial case */
4261 if (strcmp(pattern, hostname) == 0)
4262 return 1;
4263
Evan Broderbe554312013-06-27 00:05:25 -07004264 /* The rest of this logic is based on RFC 6125, section 6.4.3
4265 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4266
Emeric Bruna848dae2013-10-08 11:27:28 +02004267 pattern_wildcard = NULL;
4268 pattern_left_label_end = pattern;
4269 while (*pattern_left_label_end != '.') {
4270 switch (*pattern_left_label_end) {
4271 case 0:
4272 /* End of label not found */
4273 return 0;
4274 case '*':
4275 /* If there is more than one wildcards */
4276 if (pattern_wildcard)
4277 return 0;
4278 pattern_wildcard = pattern_left_label_end;
4279 break;
4280 }
4281 pattern_left_label_end++;
4282 }
4283
4284 /* If it's not trivial and there is no wildcard, it can't
4285 * match */
4286 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004287 return 0;
4288
4289 /* Make sure all labels match except the leftmost */
4290 hostname_left_label_end = strchr(hostname, '.');
4291 if (!hostname_left_label_end
4292 || strcmp(pattern_left_label_end, hostname_left_label_end) != 0)
4293 return 0;
4294
4295 /* Make sure the leftmost label of the hostname is long enough
4296 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004297 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004298 return 0;
4299
4300 /* Finally compare the string on either side of the
4301 * wildcard */
4302 prefixlen = pattern_wildcard - pattern;
4303 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
Emeric Bruna848dae2013-10-08 11:27:28 +02004304 if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0))
4305 || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004306 return 0;
4307
4308 return 1;
4309}
4310
4311static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4312{
4313 SSL *ssl;
4314 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004315 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004316 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004317 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004318
4319 int depth;
4320 X509 *cert;
4321 STACK_OF(GENERAL_NAME) *alt_names;
4322 int i;
4323 X509_NAME *cert_subject;
4324 char *str;
4325
4326 if (ok == 0)
4327 return ok;
4328
4329 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004330 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004331 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004332
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004333 /* We're checking if the provided hostnames match the desired one. The
4334 * desired hostname comes from the SNI we presented if any, or if not
4335 * provided then it may have been explicitly stated using a "verifyhost"
4336 * directive. If neither is set, we don't care about the name so the
4337 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004338 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004339 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004340 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004341 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004342 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004343 if (!servername)
4344 return ok;
4345 }
Evan Broderbe554312013-06-27 00:05:25 -07004346
4347 /* We only need to verify the CN on the actual server cert,
4348 * not the indirect CAs */
4349 depth = X509_STORE_CTX_get_error_depth(ctx);
4350 if (depth != 0)
4351 return ok;
4352
4353 /* At this point, the cert is *not* OK unless we can find a
4354 * hostname match */
4355 ok = 0;
4356
4357 cert = X509_STORE_CTX_get_current_cert(ctx);
4358 /* It seems like this might happen if verify peer isn't set */
4359 if (!cert)
4360 return ok;
4361
4362 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4363 if (alt_names) {
4364 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4365 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4366 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004367#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004368 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4369#else
Evan Broderbe554312013-06-27 00:05:25 -07004370 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004371#endif
Evan Broderbe554312013-06-27 00:05:25 -07004372 ok = ssl_sock_srv_hostcheck(str, servername);
4373 OPENSSL_free(str);
4374 }
4375 }
4376 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004377 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004378 }
4379
4380 cert_subject = X509_get_subject_name(cert);
4381 i = -1;
4382 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4383 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004384 ASN1_STRING *value;
4385 value = X509_NAME_ENTRY_get_data(entry);
4386 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004387 ok = ssl_sock_srv_hostcheck(str, servername);
4388 OPENSSL_free(str);
4389 }
4390 }
4391
Willy Tarreau71d058c2017-07-26 20:09:56 +02004392 /* report the mismatch and indicate if SNI was used or not */
4393 if (!ok && !conn->err_code)
4394 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004395 return ok;
4396}
4397
Emeric Brun94324a42012-10-11 14:00:19 +02004398/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004399int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004400{
Willy Tarreau03209342016-12-22 17:08:28 +01004401 struct proxy *curproxy = srv->proxy;
Emeric Brun94324a42012-10-11 14:00:19 +02004402 int cfgerr = 0;
Remi Gacogneaf5c3da2014-05-19 10:29:58 +02004403 long options =
Emeric Brun94324a42012-10-11 14:00:19 +02004404 SSL_OP_ALL | /* all known workarounds for bugs */
4405 SSL_OP_NO_SSLv2 |
4406 SSL_OP_NO_COMPRESSION;
Remi Gacogneaf5c3da2014-05-19 10:29:58 +02004407 long mode =
Emeric Brun94324a42012-10-11 14:00:19 +02004408 SSL_MODE_ENABLE_PARTIAL_WRITE |
4409 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004410 SSL_MODE_RELEASE_BUFFERS |
4411 SSL_MODE_SMALL_BUFFERS;
Emeric Brun850efd52014-01-29 12:24:34 +01004412 int verify = SSL_VERIFY_NONE;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004413 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004414 struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004415 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004416 int flags = MC_SSL_O_ALL;
Emeric Brun94324a42012-10-11 14:00:19 +02004417
Thierry Fournier383085f2013-01-24 14:15:43 +01004418 /* Make sure openssl opens /dev/urandom before the chroot */
4419 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004420 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004421 cfgerr++;
4422 }
4423
Willy Tarreaufce03112015-01-15 21:32:40 +01004424 /* Automatic memory computations need to know we use SSL there */
4425 global.ssl_used_backend = 1;
4426
4427 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004428 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004429 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004430 ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n",
4431 curproxy->id, srv->id,
4432 srv->conf.file, srv->conf.line);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004433 cfgerr++;
4434 return cfgerr;
4435 }
4436 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004437 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004438 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004439
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004440 ctx = SSL_CTX_new(SSLv23_client_method());
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004441 if (!ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004442 ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n",
4443 proxy_type_str(curproxy), curproxy->id,
4444 srv->id);
Emeric Brun94324a42012-10-11 14:00:19 +02004445 cfgerr++;
4446 return cfgerr;
4447 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004448
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004449 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004450 ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. "
4451 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4452 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004453 else
4454 flags = conf_ssl_methods->flags;
4455
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004456 /* Real min and max should be determinate with configuration and openssl's capabilities */
4457 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004458 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004459 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004460 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004461
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004462 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004463 min = max = CONF_TLSV_NONE;
4464 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004465 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004466 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004467 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004468 if (min) {
4469 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004470 ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. "
4471 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4472 proxy_type_str(curproxy), curproxy->id, srv->id,
4473 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004474 hole = 0;
4475 }
4476 max = i;
4477 }
4478 else {
4479 min = max = i;
4480 }
4481 }
4482 else {
4483 if (min)
4484 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004485 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004486 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004487 ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
4488 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004489 cfgerr += 1;
4490 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004491
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004492#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004493 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004494 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004495 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004496 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004497 else
4498 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4499 if (flags & methodVersions[i].flag)
4500 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004501#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004502 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004503 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4504 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004505#endif
4506
4507 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4508 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004509 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004510
Willy Tarreau5db847a2019-05-09 14:13:35 +02004511#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004512 if (global_ssl.async)
4513 mode |= SSL_MODE_ASYNC;
4514#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004515 SSL_CTX_set_mode(ctx, mode);
4516 srv->ssl_ctx.ctx = ctx;
4517
Emeric Bruna7aa3092012-10-26 12:58:00 +02004518 if (srv->ssl_ctx.client_crt) {
4519 if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004520 ha_alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n",
4521 proxy_type_str(curproxy), curproxy->id,
4522 srv->id, srv->ssl_ctx.client_crt);
Emeric Bruna7aa3092012-10-26 12:58:00 +02004523 cfgerr++;
4524 }
4525 else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004526 ha_alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n",
4527 proxy_type_str(curproxy), curproxy->id,
4528 srv->id, srv->ssl_ctx.client_crt);
Emeric Bruna7aa3092012-10-26 12:58:00 +02004529 cfgerr++;
4530 }
4531 else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004532 ha_alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n",
4533 proxy_type_str(curproxy), curproxy->id,
4534 srv->id, srv->ssl_ctx.client_crt);
Emeric Bruna7aa3092012-10-26 12:58:00 +02004535 cfgerr++;
4536 }
4537 }
Emeric Brun94324a42012-10-11 14:00:19 +02004538
Emeric Brun850efd52014-01-29 12:24:34 +01004539 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4540 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004541 switch (srv->ssl_ctx.verify) {
4542 case SSL_SOCK_VERIFY_NONE:
4543 verify = SSL_VERIFY_NONE;
4544 break;
4545 case SSL_SOCK_VERIFY_REQUIRED:
4546 verify = SSL_VERIFY_PEER;
4547 break;
4548 }
Evan Broderbe554312013-06-27 00:05:25 -07004549 SSL_CTX_set_verify(srv->ssl_ctx.ctx,
Emeric Brun850efd52014-01-29 12:24:34 +01004550 verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004551 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004552 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004553 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004554 /* set CAfile to verify */
4555 if (!ssl_set_verify_locations_file(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file)) {
4556 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to set CA file '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004557 curproxy->id, srv->id,
4558 srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004559 cfgerr++;
4560 }
4561 }
Emeric Brun850efd52014-01-29 12:24:34 +01004562 else {
4563 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004564 ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled by default but no CA file specified. If you're running on a LAN where you're certain to trust the server's certificate, please set an explicit 'verify none' statement on the 'server' line, or use 'ssl-server-verify none' in the global section to disable server-side verifications by default.\n",
4565 curproxy->id, srv->id,
4566 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004567 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01004568 ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n",
4569 curproxy->id, srv->id,
4570 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004571 cfgerr++;
4572 }
Emeric Brunef42d922012-10-11 16:11:36 +02004573#ifdef X509_V_FLAG_CRL_CHECK
4574 if (srv->ssl_ctx.crl_file) {
4575 X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx);
4576
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004577 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004578 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n",
4579 curproxy->id, srv->id,
4580 srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004581 cfgerr++;
4582 }
4583 else {
4584 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4585 }
4586 }
4587#endif
4588 }
4589
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004590 SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_CLIENT |
4591 SSL_SESS_CACHE_NO_INTERNAL_STORE);
4592 SSL_CTX_sess_set_new_cb(srv->ssl_ctx.ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004593 if (srv->ssl_ctx.ciphers &&
4594 !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004595 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n",
4596 curproxy->id, srv->id,
4597 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004598 cfgerr++;
4599 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004600
Emmanuel Hocdet839af572019-05-14 16:27:35 +02004601#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004602 if (srv->ssl_ctx.ciphersuites &&
Pierre Cheynierbc34cd12019-03-21 16:15:47 +00004603 !SSL_CTX_set_ciphersuites(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphersuites)) {
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004604 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n",
4605 curproxy->id, srv->id,
4606 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites);
4607 cfgerr++;
4608 }
4609#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004610#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4611 if (srv->ssl_ctx.npn_str)
4612 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, srv);
4613#endif
4614#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4615 if (srv->ssl_ctx.alpn_str)
4616 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4617#endif
4618
Emeric Brun94324a42012-10-11 14:00:19 +02004619
4620 return cfgerr;
4621}
4622
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004623/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004624 * be NULL, in which case nothing is done. Returns the number of errors
4625 * encountered.
4626 */
Willy Tarreau03209342016-12-22 17:08:28 +01004627int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004628{
4629 struct ebmb_node *node;
4630 struct sni_ctx *sni;
4631 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01004632 int errcode = 0;
4633 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004634
Willy Tarreaufce03112015-01-15 21:32:40 +01004635 /* Automatic memory computations need to know we use SSL there */
4636 global.ssl_used_frontend = 1;
4637
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004638 /* Make sure openssl opens /dev/urandom before the chroot */
4639 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004640 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004641 err++;
4642 }
4643 /* Create initial_ctx used to start the ssl connection before do switchctx */
4644 if (!bind_conf->initial_ctx) {
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004645 err += ssl_sock_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004646 /* It should not be necessary to call this function, but it's
4647 necessary first to check and move all initialisation related
4648 to initial_ctx in ssl_sock_initial_ctx. */
William Lallemand8b453912019-11-21 15:48:10 +01004649 errcode |= ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx, &errmsg);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004650 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004651 if (bind_conf->default_ctx)
William Lallemand8b453912019-11-21 15:48:10 +01004652 errcode |= ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, &errmsg);
Emeric Brun0bed9942014-10-30 19:25:24 +01004653
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004654 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004655 while (node) {
4656 sni = ebmb_entry(node, struct sni_ctx, name);
Emeric Brun0bed9942014-10-30 19:25:24 +01004657 if (!sni->order && sni->ctx != bind_conf->default_ctx)
4658 /* only initialize the CTX on its first occurrence and
4659 if it is not the default_ctx */
William Lallemand8b453912019-11-21 15:48:10 +01004660 errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004661 node = ebmb_next(node);
4662 }
4663
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004664 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004665 while (node) {
4666 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01004667 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004668 /* only initialize the CTX on its first occurrence and
4669 if it is not the default_ctx */
William Lallemand8b453912019-11-21 15:48:10 +01004670 errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg);
4671 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004672 node = ebmb_next(node);
4673 }
William Lallemand8b453912019-11-21 15:48:10 +01004674
4675 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004676 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004677 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004678 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004679 err++;
4680 }
4681
4682 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004683 return err;
4684}
4685
Willy Tarreau55d37912016-12-21 23:38:39 +01004686/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4687 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4688 * alerts are directly emitted since the rest of the stack does it below.
4689 */
4690int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4691{
4692 struct proxy *px = bind_conf->frontend;
4693 int alloc_ctx;
4694 int err;
4695
4696 if (!bind_conf->is_ssl) {
4697 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004698 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4699 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004700 }
4701 return 0;
4702 }
4703 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004704 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004705 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4706 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004707 }
4708 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004709 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4710 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004711 return -1;
4712 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004713 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004714 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004715 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004716 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004717 sizeof(*sh_ssl_sess_tree),
4718 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004719 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004720 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4721 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");
4722 else
4723 ha_alert("Unable to allocate SSL session cache.\n");
4724 return -1;
4725 }
4726 /* free block callback */
4727 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4728 /* init the root tree within the extra space */
4729 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4730 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004731 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004732 err = 0;
4733 /* initialize all certificate contexts */
4734 err += ssl_sock_prepare_all_ctx(bind_conf);
4735
4736 /* initialize CA variables if the certificates generation is enabled */
4737 err += ssl_sock_load_ca(bind_conf);
4738
4739 return -err;
4740}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004741
4742/* release ssl context allocated for servers. */
4743void ssl_sock_free_srv_ctx(struct server *srv)
4744{
Olivier Houchardc7566002018-11-20 23:33:50 +01004745#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4746 if (srv->ssl_ctx.alpn_str)
4747 free(srv->ssl_ctx.alpn_str);
4748#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01004749#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01004750 if (srv->ssl_ctx.npn_str)
4751 free(srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01004752#endif
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004753 if (srv->ssl_ctx.ctx)
4754 SSL_CTX_free(srv->ssl_ctx.ctx);
4755}
4756
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004757/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004758 * be NULL, in which case nothing is done. The default_ctx is nullified too.
4759 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004760void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004761{
4762 struct ebmb_node *node, *back;
4763 struct sni_ctx *sni;
4764
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004765 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004766 while (node) {
4767 sni = ebmb_entry(node, struct sni_ctx, name);
4768 back = ebmb_next(node);
4769 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02004770 SSL_CTX_free(sni->ctx);
4771 if (!sni->order) { /* only free the CTX conf on its first occurrence */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004772 ssl_sock_free_ssl_conf(sni->conf);
4773 free(sni->conf);
4774 sni->conf = NULL;
4775 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004776 free(sni);
4777 node = back;
4778 }
4779
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004780 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004781 while (node) {
4782 sni = ebmb_entry(node, struct sni_ctx, name);
4783 back = ebmb_next(node);
4784 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02004785 SSL_CTX_free(sni->ctx);
4786 if (!sni->order) { /* only free the SSL conf its first occurrence */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004787 ssl_sock_free_ssl_conf(sni->conf);
4788 free(sni->conf);
4789 sni->conf = NULL;
4790 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004791 free(sni);
4792 node = back;
4793 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004794 SSL_CTX_free(bind_conf->initial_ctx);
4795 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02004796 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004797 bind_conf->default_ctx = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004798 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02004799}
4800
Willy Tarreau795cdab2016-12-22 17:30:54 +01004801/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
4802void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
4803{
4804 ssl_sock_free_ca(bind_conf);
4805 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004806 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01004807 free(bind_conf->ca_sign_file);
4808 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02004809 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01004810 free(bind_conf->keys_ref->filename);
4811 free(bind_conf->keys_ref->tlskeys);
4812 LIST_DEL(&bind_conf->keys_ref->list);
4813 free(bind_conf->keys_ref);
4814 }
4815 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01004816 bind_conf->ca_sign_pass = NULL;
4817 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01004818}
4819
Christopher Faulet31af49d2015-06-09 17:29:50 +02004820/* Load CA cert file and private key used to generate certificates */
4821int
Willy Tarreau03209342016-12-22 17:08:28 +01004822ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02004823{
Willy Tarreau03209342016-12-22 17:08:28 +01004824 struct proxy *px = bind_conf->frontend;
Christopher Faulet31af49d2015-06-09 17:29:50 +02004825 FILE *fp;
4826 X509 *cacert = NULL;
4827 EVP_PKEY *capkey = NULL;
4828 int err = 0;
4829
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02004830 if (!bind_conf->generate_certs)
Christopher Faulet31af49d2015-06-09 17:29:50 +02004831 return err;
4832
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01004833#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02004834 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01004835 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004836 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02004837 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004838 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02004839#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02004840
Christopher Faulet31af49d2015-06-09 17:29:50 +02004841 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004842 ha_alert("Proxy '%s': cannot enable certificate generation, "
4843 "no CA certificate File configured at [%s:%d].\n",
4844 px->id, bind_conf->file, bind_conf->line);
Christopher Faulet31af49d2015-06-09 17:29:50 +02004845 goto load_error;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004846 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02004847
4848 /* read in the CA certificate */
4849 if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004850 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n",
4851 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
Christopher Faulet31af49d2015-06-09 17:29:50 +02004852 goto load_error;
4853 }
4854 if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004855 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n",
4856 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004857 goto read_error;
Christopher Faulet31af49d2015-06-09 17:29:50 +02004858 }
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004859 rewind(fp);
Christopher Faulet31af49d2015-06-09 17:29:50 +02004860 if (!(capkey = PEM_read_PrivateKey(fp, NULL, NULL, bind_conf->ca_sign_pass))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004861 ha_alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n",
4862 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004863 goto read_error;
Christopher Faulet31af49d2015-06-09 17:29:50 +02004864 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02004865
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004866 fclose (fp);
Christopher Faulet31af49d2015-06-09 17:29:50 +02004867 bind_conf->ca_sign_cert = cacert;
4868 bind_conf->ca_sign_pkey = capkey;
4869 return err;
4870
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004871 read_error:
4872 fclose (fp);
Christopher Faulet31af49d2015-06-09 17:29:50 +02004873 if (capkey) EVP_PKEY_free(capkey);
4874 if (cacert) X509_free(cacert);
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02004875 load_error:
4876 bind_conf->generate_certs = 0;
4877 err++;
Christopher Faulet31af49d2015-06-09 17:29:50 +02004878 return err;
4879}
4880
4881/* Release CA cert and private key used to generate certificated */
4882void
4883ssl_sock_free_ca(struct bind_conf *bind_conf)
4884{
Christopher Faulet31af49d2015-06-09 17:29:50 +02004885 if (bind_conf->ca_sign_pkey)
4886 EVP_PKEY_free(bind_conf->ca_sign_pkey);
4887 if (bind_conf->ca_sign_cert)
4888 X509_free(bind_conf->ca_sign_cert);
Willy Tarreau94ff03a2016-12-22 17:57:46 +01004889 bind_conf->ca_sign_pkey = NULL;
4890 bind_conf->ca_sign_cert = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02004891}
4892
Emeric Brun46591952012-05-18 15:47:34 +02004893/*
4894 * This function is called if SSL * context is not yet allocated. The function
4895 * is designed to be called before any other data-layer operation and sets the
4896 * handshake flag on the connection. It is safe to call it multiple times.
4897 * It returns 0 on success and -1 in error case.
4898 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01004899static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02004900{
Olivier Houchard66ab4982019-02-26 18:37:15 +01004901 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02004902 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01004903 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02004904 return 0;
4905
Willy Tarreau3c728722014-01-23 13:50:42 +01004906 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02004907 return 0;
4908
Olivier Houchard66ab4982019-02-26 18:37:15 +01004909 ctx = pool_alloc(ssl_sock_ctx_pool);
4910 if (!ctx) {
4911 conn->err_code = CO_ER_SSL_NO_MEM;
4912 return -1;
4913 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004914 ctx->wait_event.tasklet = tasklet_new();
4915 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02004916 conn->err_code = CO_ER_SSL_NO_MEM;
4917 pool_free(ssl_sock_ctx_pool, ctx);
4918 return -1;
4919 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02004920 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
4921 ctx->wait_event.tasklet->context = ctx;
Olivier Houchardea8dd942019-05-20 14:02:16 +02004922 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01004923 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01004924 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02004925 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01004926 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02004927 ctx->xprt_st = 0;
4928 ctx->xprt_ctx = NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02004929
4930 /* Only work with sockets for now, this should be adapted when we'll
4931 * add QUIC support.
4932 */
4933 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02004934 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02004935 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
4936 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02004937 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01004938
Willy Tarreau20879a02012-12-03 16:32:10 +01004939 if (global.maxsslconn && sslconns >= global.maxsslconn) {
4940 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02004941 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01004942 }
Willy Tarreau403edff2012-09-06 11:58:37 +02004943
Emeric Brun46591952012-05-18 15:47:34 +02004944 /* If it is in client mode initiate SSL session
4945 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01004946 if (objt_server(conn->target)) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004947 int may_retry = 1;
4948
4949 retry_connect:
Emeric Brun46591952012-05-18 15:47:34 +02004950 /* Alloc a new SSL session ctx */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004951 ctx->ssl = SSL_new(__objt_server(conn->target)->ssl_ctx.ctx);
4952 if (!ctx->ssl) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004953 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01004954 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004955 goto retry_connect;
4956 }
Willy Tarreau20879a02012-12-03 16:32:10 +01004957 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004958 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01004959 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02004960 ctx->bio = BIO_new(ha_meth);
4961 if (!ctx->bio) {
Olivier Houchardefe5e8e2020-01-24 15:17:38 +01004962 SSL_free(ctx->ssl);
4963 ctx->ssl = NULL;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004964 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01004965 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004966 goto retry_connect;
4967 }
Emeric Brun55476152014-11-12 17:35:37 +01004968 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004969 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01004970 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02004971 BIO_set_data(ctx->bio, ctx);
Olivier Houcharda8955d52019-04-07 22:00:38 +02004972 SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio);
Emeric Brun46591952012-05-18 15:47:34 +02004973
Evan Broderbe554312013-06-27 00:05:25 -07004974 /* set connection pointer */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004975 if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) {
4976 SSL_free(ctx->ssl);
4977 ctx->ssl = NULL;
Emeric Brun55476152014-11-12 17:35:37 +01004978 conn->xprt_ctx = NULL;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004979 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01004980 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01004981 goto retry_connect;
4982 }
Emeric Brun55476152014-11-12 17:35:37 +01004983 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004984 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01004985 }
4986
Olivier Houchard66ab4982019-02-26 18:37:15 +01004987 SSL_set_connect_state(ctx->ssl);
Willy Tarreau07d94e42018-09-20 10:57:52 +02004988 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
4989 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
4990 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 +01004991 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004992 SSL_SESSION_free(sess);
Willy Tarreau07d94e42018-09-20 10:57:52 +02004993 free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
4994 __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004995 } else if (sess) {
4996 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01004997 }
4998 }
Evan Broderbe554312013-06-27 00:05:25 -07004999
Emeric Brun46591952012-05-18 15:47:34 +02005000 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005001 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005002
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005003 _HA_ATOMIC_ADD(&sslconns, 1);
5004 _HA_ATOMIC_ADD(&totalsslconns, 1);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005005 *xprt_ctx = ctx;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005006 /* Start the handshake */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005007 tasklet_wakeup(ctx->wait_event.tasklet);
Emeric Brun46591952012-05-18 15:47:34 +02005008 return 0;
5009 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005010 else if (objt_listener(conn->target)) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005011 int may_retry = 1;
5012
5013 retry_accept:
Emeric Brun46591952012-05-18 15:47:34 +02005014 /* Alloc a new SSL session ctx */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005015 ctx->ssl = SSL_new(__objt_listener(conn->target)->bind_conf->initial_ctx);
5016 if (!ctx->ssl) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005017 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005018 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005019 goto retry_accept;
5020 }
Willy Tarreau20879a02012-12-03 16:32:10 +01005021 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005022 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005023 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02005024 ctx->bio = BIO_new(ha_meth);
5025 if (!ctx->bio) {
Olivier Houchardefe5e8e2020-01-24 15:17:38 +01005026 SSL_free(ctx->ssl);
5027 ctx->ssl = NULL;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005028 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005029 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005030 goto retry_accept;
5031 }
Emeric Brun55476152014-11-12 17:35:37 +01005032 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005033 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005034 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02005035 BIO_set_data(ctx->bio, ctx);
Olivier Houcharda8955d52019-04-07 22:00:38 +02005036 SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio);
Emeric Brun46591952012-05-18 15:47:34 +02005037
Emeric Brune1f38db2012-09-03 20:36:47 +02005038 /* set connection pointer */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005039 if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) {
5040 SSL_free(ctx->ssl);
5041 ctx->ssl = NULL;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005042 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005043 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005044 goto retry_accept;
5045 }
Emeric Brun55476152014-11-12 17:35:37 +01005046 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005047 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005048 }
5049
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005050#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
5051 if (__objt_listener(conn->target)->bind_conf->ssl_conf.early_data) {
5052 b_alloc(&ctx->early_buf);
5053 SSL_set_max_early_data(ctx->ssl,
5054 /* Only allow early data if we managed to allocate
5055 * a buffer.
5056 */
5057 (!b_is_null(&ctx->early_buf)) ?
5058 global.tune.bufsize - global.tune.maxrewrite : 0);
5059 }
5060#endif
5061
Olivier Houchard66ab4982019-02-26 18:37:15 +01005062 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005063
Emeric Brun46591952012-05-18 15:47:34 +02005064 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005065 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005066#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchardc2aae742017-09-22 18:26:28 +02005067 conn->flags |= CO_FL_EARLY_SSL_HS;
5068#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005069
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005070 _HA_ATOMIC_ADD(&sslconns, 1);
5071 _HA_ATOMIC_ADD(&totalsslconns, 1);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005072 *xprt_ctx = ctx;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005073 /* Start the handshake */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005074 tasklet_wakeup(ctx->wait_event.tasklet);
Emeric Brun46591952012-05-18 15:47:34 +02005075 return 0;
5076 }
5077 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005078 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005079err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005080 if (ctx && ctx->wait_event.tasklet)
5081 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005082 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005083 return -1;
5084}
5085
5086
5087/* This is the callback which is used when an SSL handshake is pending. It
5088 * updates the FD status if it wants some polling before being called again.
5089 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5090 * otherwise it returns non-zero and removes itself from the connection's
5091 * flags (the bit is provided in <flag> by the caller).
5092 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005093static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005094{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005095 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005096 int ret;
5097
Willy Tarreau3c728722014-01-23 13:50:42 +01005098 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005099 return 0;
5100
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005101 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005102 goto out_error;
5103
Willy Tarreau5db847a2019-05-09 14:13:35 +02005104#if HA_OPENSSL_VERSION_NUMBER >= 0x10101000L
Olivier Houchardc2aae742017-09-22 18:26:28 +02005105 /*
5106 * Check if we have early data. If we do, we have to read them
5107 * before SSL_do_handshake() is called, And there's no way to
5108 * detect early data, except to try to read them
5109 */
5110 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005111 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005112
Olivier Houchard54907bb2019-12-19 15:02:39 +01005113 while (1) {
5114 ret = SSL_read_early_data(ctx->ssl,
5115 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5116 &read_data);
5117 if (ret == SSL_READ_EARLY_DATA_ERROR)
5118 goto check_error;
5119 if (read_data > 0) {
5120 conn->flags |= CO_FL_EARLY_DATA;
5121 b_add(&ctx->early_buf, read_data);
5122 }
5123 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5124 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5125 if (!b_data(&ctx->early_buf))
5126 b_free(&ctx->early_buf);
5127 break;
5128 }
5129 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005130 }
5131#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005132 /* If we use SSL_do_handshake to process a reneg initiated by
5133 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5134 * Usually SSL_write and SSL_read are used and process implicitly
5135 * the reneg handshake.
5136 * Here we use SSL_peek as a workaround for reneg.
5137 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005138 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005139 char c;
5140
Olivier Houchard66ab4982019-02-26 18:37:15 +01005141 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005142 if (ret <= 0) {
5143 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005144 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005145
Emeric Brun674b7432012-11-08 19:21:55 +01005146 if (ret == SSL_ERROR_WANT_WRITE) {
5147 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005148 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005149 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005150 return 0;
5151 }
5152 else if (ret == SSL_ERROR_WANT_READ) {
5153 /* handshake may have been completed but we have
5154 * no more data to read.
5155 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005156 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005157 ret = 1;
5158 goto reneg_ok;
5159 }
5160 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005161 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005162 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005163 return 0;
5164 }
Willy Tarreau5db847a2019-05-09 14:13:35 +02005165#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005166 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005167 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005168 return 0;
5169 }
5170#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005171 else if (ret == SSL_ERROR_SYSCALL) {
5172 /* if errno is null, then connection was successfully established */
5173 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5174 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005175 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005176#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5177 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005178 conn->err_code = CO_ER_SSL_HANDSHAKE;
5179#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005180 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005181#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005182 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005183 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005184 empty_handshake = state == TLS_ST_BEFORE;
5185#else
Lukas Tribus49799162019-07-08 14:29:15 +02005186 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5187 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005188#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005189 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005190 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005191 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005192 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5193 else
5194 conn->err_code = CO_ER_SSL_EMPTY;
5195 }
5196 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005197 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005198 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5199 else
5200 conn->err_code = CO_ER_SSL_ABORT;
5201 }
5202 }
5203 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005204 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005205 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005206 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005207 conn->err_code = CO_ER_SSL_HANDSHAKE;
5208 }
Lukas Tribus49799162019-07-08 14:29:15 +02005209#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005210 }
Emeric Brun674b7432012-11-08 19:21:55 +01005211 goto out_error;
5212 }
5213 else {
5214 /* Fail on all other handshake errors */
5215 /* Note: OpenSSL may leave unread bytes in the socket's
5216 * buffer, causing an RST to be emitted upon close() on
5217 * TCP sockets. We first try to drain possibly pending
5218 * data to avoid this as much as possible.
5219 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01005220 conn_sock_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005221 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005222 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005223 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005224 goto out_error;
5225 }
5226 }
5227 /* read some data: consider handshake completed */
5228 goto reneg_ok;
5229 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005230 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005231check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005232 if (ret != 1) {
5233 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005234 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005235
5236 if (ret == SSL_ERROR_WANT_WRITE) {
5237 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005238 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005239 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005240 return 0;
5241 }
5242 else if (ret == SSL_ERROR_WANT_READ) {
5243 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005244 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005245 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5246 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005247 return 0;
5248 }
Willy Tarreau5db847a2019-05-09 14:13:35 +02005249#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005250 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005251 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005252 return 0;
5253 }
5254#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005255 else if (ret == SSL_ERROR_SYSCALL) {
5256 /* if errno is null, then connection was successfully established */
5257 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5258 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005259 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005260#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5261 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005262 conn->err_code = CO_ER_SSL_HANDSHAKE;
5263#else
5264 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005265#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005266 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005267 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005268 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005269#else
Lukas Tribus49799162019-07-08 14:29:15 +02005270 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5271 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005272#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005273 if (empty_handshake) {
5274 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005275 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005276 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5277 else
5278 conn->err_code = CO_ER_SSL_EMPTY;
5279 }
5280 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005281 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005282 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5283 else
5284 conn->err_code = CO_ER_SSL_ABORT;
5285 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005286 }
5287 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005288 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005289 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5290 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005291 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005292 }
Lukas Tribus49799162019-07-08 14:29:15 +02005293#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005294 }
Willy Tarreau89230192012-09-28 20:22:13 +02005295 goto out_error;
5296 }
Emeric Brun46591952012-05-18 15:47:34 +02005297 else {
5298 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005299 /* Note: OpenSSL may leave unread bytes in the socket's
5300 * buffer, causing an RST to be emitted upon close() on
5301 * TCP sockets. We first try to drain possibly pending
5302 * data to avoid this as much as possible.
5303 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01005304 conn_sock_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005305 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005306 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005307 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005308 goto out_error;
5309 }
5310 }
Willy Tarreau5db847a2019-05-09 14:13:35 +02005311#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchard522eea72017-11-03 16:27:47 +01005312 else {
5313 /*
5314 * If the server refused the early data, we have to send a
5315 * 425 to the client, as we no longer have the data to sent
5316 * them again.
5317 */
5318 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005319 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005320 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5321 goto out_error;
5322 }
5323 }
5324 }
5325#endif
5326
Emeric Brun46591952012-05-18 15:47:34 +02005327
Emeric Brun674b7432012-11-08 19:21:55 +01005328reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005329
Willy Tarreau5db847a2019-05-09 14:13:35 +02005330#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005331 /* ASYNC engine API doesn't support moving read/write
5332 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005333 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005334 */
5335 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005336 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005337#endif
Emeric Brun46591952012-05-18 15:47:34 +02005338 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005339 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005340 if (objt_server(conn->target)) {
5341 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5342 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5343 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005344 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005345 else {
5346 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5347 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5348 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5349 }
Emeric Brun46591952012-05-18 15:47:34 +02005350 }
5351
5352 /* The connection is now established at both layers, it's time to leave */
5353 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5354 return 1;
5355
5356 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005357 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005358 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005359 ERR_clear_error();
5360
Emeric Brun9fa89732012-10-04 17:09:56 +02005361 /* free resumed session if exists */
Willy Tarreau07d94e42018-09-20 10:57:52 +02005362 if (objt_server(conn->target) && __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5363 free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
5364 __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL;
Emeric Brun9fa89732012-10-04 17:09:56 +02005365 }
5366
Emeric Brun46591952012-05-18 15:47:34 +02005367 /* Fail on all other handshake errors */
5368 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005369 if (!conn->err_code)
5370 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005371 return 0;
5372}
5373
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005374/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5375 * event subscriber <es> is not allowed to change from a previous call as long
5376 * as at least one event is still subscribed. The <event_type> must only be a
5377 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5378 * unless the transport layer was already released.
5379 */
5380static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005381{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005382 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005383
Olivier Houchard0ff28652019-06-24 18:57:39 +02005384 if (!ctx)
5385 return -1;
5386
Willy Tarreau113d52b2020-01-10 09:20:26 +01005387 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005388 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005389
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005390 ctx->subs = es;
5391 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005392
5393 /* we may have to subscribe to lower layers for new events */
5394 event_type &= ~ctx->wait_event.events;
5395 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5396 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005397 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005398}
5399
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005400/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5401 * The <es> pointer is not allowed to differ from the one passed to the
5402 * subscribe() call. It always returns zero.
5403 */
5404static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005405{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005406 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005407
Willy Tarreau113d52b2020-01-10 09:20:26 +01005408 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005409 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005410
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005411 es->events &= ~event_type;
5412 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005413 ctx->subs = NULL;
5414
5415 /* If we subscribed, and we're not doing the handshake,
5416 * then we subscribed because the upper layer asked for it,
5417 * as the upper layer is no longer interested, we can
5418 * unsubscribe too.
5419 */
5420 event_type &= ctx->wait_event.events;
5421 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5422 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005423
5424 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005425}
5426
Olivier Houchard2e055482019-05-27 19:50:12 +02005427/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5428 * Returns 0 on success, and non-zero on failure.
5429 */
5430static 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)
5431{
5432 struct ssl_sock_ctx *ctx = xprt_ctx;
5433
5434 if (oldxprt_ops != NULL)
5435 *oldxprt_ops = ctx->xprt;
5436 if (oldxprt_ctx != NULL)
5437 *oldxprt_ctx = ctx->xprt_ctx;
5438 ctx->xprt = toadd_ops;
5439 ctx->xprt_ctx = toadd_ctx;
5440 return 0;
5441}
5442
Olivier Houchard5149b592019-05-23 17:47:36 +02005443/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5444 * return 0, otherwise just call the remove_xprt method from the underlying
5445 * XPRT.
5446 */
5447static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5448{
5449 struct ssl_sock_ctx *ctx = xprt_ctx;
5450
5451 if (ctx->xprt_ctx == toremove_ctx) {
5452 ctx->xprt_ctx = newctx;
5453 ctx->xprt = newops;
5454 return 0;
5455 }
5456 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
5457}
5458
Olivier Houchardea8dd942019-05-20 14:02:16 +02005459static struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned short state)
5460{
5461 struct ssl_sock_ctx *ctx = context;
5462
5463 /* First if we're doing an handshake, try that */
5464 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS)
5465 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
5466 /* If we had an error, or the handshake is done and I/O is available,
5467 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01005468 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02005469 * we can't be sure conn_fd_handler() will be called again.
5470 */
5471 if ((ctx->conn->flags & CO_FL_ERROR) ||
5472 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
5473 int ret = 0;
5474 int woke = 0;
5475
5476 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005477 if (ctx->subs) {
5478 tasklet_wakeup(ctx->subs->tasklet);
5479 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005480 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005481 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005482 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005483
Olivier Houchardea8dd942019-05-20 14:02:16 +02005484 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01005485 * upper layers know. If we have no mux, create it,
5486 * and once we have a mux, call its wake method if we didn't
5487 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02005488 */
5489 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01005490 if (!ctx->conn->mux)
5491 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005492 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
5493 ctx->conn->mux->wake(ctx->conn);
5494 return NULL;
5495 }
5496 }
Olivier Houchard54907bb2019-12-19 15:02:39 +01005497#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
5498 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005499 else if (b_data(&ctx->early_buf) && ctx->subs &&
5500 ctx->subs->events & SUB_RETRY_RECV) {
5501 tasklet_wakeup(ctx->subs->tasklet);
5502 ctx->subs->events &= ~SUB_RETRY_RECV;
5503 if (!ctx->subs->events)
5504 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005505 }
5506#endif
Olivier Houchardea8dd942019-05-20 14:02:16 +02005507 return NULL;
5508}
5509
Emeric Brun46591952012-05-18 15:47:34 +02005510/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005511 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005512 * buffer wraps, in which case a second call may be performed. The connection's
5513 * flags are updated with whatever special event is detected (error, read0,
5514 * empty). The caller is responsible for taking care of those events and
5515 * avoiding the call if inappropriate. The function does not call the
5516 * connection's polling update function, so the caller is responsible for this.
5517 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005518static 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 +02005519{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005520 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005521 ssize_t ret;
5522 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005523
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005524 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005525 goto out_error;
5526
Olivier Houchard54907bb2019-12-19 15:02:39 +01005527#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
5528 if (b_data(&ctx->early_buf)) {
5529 try = b_contig_space(buf);
5530 if (try > b_data(&ctx->early_buf))
5531 try = b_data(&ctx->early_buf);
5532 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
5533 b_add(buf, try);
5534 b_del(&ctx->early_buf, try);
5535 if (b_data(&ctx->early_buf) == 0)
5536 b_free(&ctx->early_buf);
5537 return try;
5538 }
5539#endif
5540
Willy Tarreau911db9b2020-01-23 16:27:54 +01005541 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005542 /* a handshake was requested */
5543 return 0;
5544
Emeric Brun46591952012-05-18 15:47:34 +02005545 /* read the largest possible block. For this, we perform only one call
5546 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5547 * in which case we accept to do it once again. A new attempt is made on
5548 * EINTR too.
5549 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005550 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005551
Willy Tarreau591d4452018-06-15 17:21:00 +02005552 try = b_contig_space(buf);
5553 if (!try)
5554 break;
5555
Willy Tarreauabf08d92014-01-14 11:31:27 +01005556 if (try > count)
5557 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005558
Olivier Houchard66ab4982019-02-26 18:37:15 +01005559 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005560
Emeric Brune1f38db2012-09-03 20:36:47 +02005561 if (conn->flags & CO_FL_ERROR) {
5562 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005563 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005564 }
Emeric Brun46591952012-05-18 15:47:34 +02005565 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02005566 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005567 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005568 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005569 }
Emeric Brun46591952012-05-18 15:47:34 +02005570 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005571 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005572 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01005573 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02005574 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005575 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005576#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005577 /* Async mode can be re-enabled, because we're leaving data state.*/
5578 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005579 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005580#endif
Emeric Brun46591952012-05-18 15:47:34 +02005581 break;
5582 }
5583 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005584 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005585 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5586 SUB_RETRY_RECV,
5587 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01005588 /* handshake is running, and it may need to re-enable read */
5589 conn->flags |= CO_FL_SSL_WAIT_HS;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005590#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005591 /* Async mode can be re-enabled, because we're leaving data state.*/
5592 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005593 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005594#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01005595 break;
5596 }
Emeric Brun46591952012-05-18 15:47:34 +02005597 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005598 } else if (ret == SSL_ERROR_ZERO_RETURN)
5599 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005600 /* For SSL_ERROR_SYSCALL, make sure to clear the error
5601 * stack before shutting down the connection for
5602 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01005603 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
5604 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02005605 /* otherwise it's a real error */
5606 goto out_error;
5607 }
5608 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005609 leave:
Emeric Brun46591952012-05-18 15:47:34 +02005610 return done;
5611
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005612 clear_ssl_error:
5613 /* Clear openssl global errors stack */
5614 ssl_sock_dump_errors(conn);
5615 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02005616 read0:
5617 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005618 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005619
Emeric Brun46591952012-05-18 15:47:34 +02005620 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01005621 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01005622 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005623 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005624 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005625 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02005626}
5627
5628
Willy Tarreau787db9a2018-06-14 18:31:46 +02005629/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
5630 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
5631 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02005632 * Only one call to send() is performed, unless the buffer wraps, in which case
5633 * a second call may be performed. The connection's flags are updated with
5634 * whatever special event is detected (error, empty). The caller is responsible
5635 * for taking care of those events and avoiding the call if inappropriate. The
5636 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02005637 * is responsible for this. The buffer's output is not adjusted, it's up to the
5638 * caller to take care of this. It's up to the caller to update the buffer's
5639 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02005640 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005641static 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 +02005642{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005643 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02005644 ssize_t ret;
5645 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02005646
5647 done = 0;
5648
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005649 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005650 goto out_error;
5651
Willy Tarreau911db9b2020-01-23 16:27:54 +01005652 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005653 /* a handshake was requested */
5654 return 0;
5655
5656 /* send the largest possible block. For this we perform only one call
5657 * to send() unless the buffer wraps and we exactly fill the first hunk,
5658 * in which case we accept to do it once again.
5659 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02005660 while (count) {
Willy Tarreau5db847a2019-05-09 14:13:35 +02005661#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchardc2aae742017-09-22 18:26:28 +02005662 size_t written_data;
5663#endif
5664
Willy Tarreau787db9a2018-06-14 18:31:46 +02005665 try = b_contig_data(buf, done);
5666 if (try > count)
5667 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01005668
Willy Tarreau7bed9452014-02-02 02:00:24 +01005669 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005670 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01005671 global_ssl.max_record && try > global_ssl.max_record) {
5672 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01005673 }
5674 else {
5675 /* we need to keep the information about the fact that
5676 * we're not limiting the upcoming send(), because if it
5677 * fails, we'll have to retry with at least as many data.
5678 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005679 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01005680 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01005681
Willy Tarreau5db847a2019-05-09 14:13:35 +02005682#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchard010941f2019-05-03 20:56:19 +02005683 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005684 unsigned int max_early;
5685
Olivier Houchard522eea72017-11-03 16:27:47 +01005686 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01005687 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01005688 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005689 if (SSL_get0_session(ctx->ssl))
5690 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01005691 else
5692 max_early = 0;
5693 }
5694
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005695 if (try + ctx->sent_early_data > max_early) {
5696 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01005697 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02005698 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02005699 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005700 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01005701 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005702 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005703 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005704 if (ret == 1) {
5705 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005706 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02005707 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005708 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02005709 /* Initiate the handshake, now */
5710 tasklet_wakeup(ctx->wait_event.tasklet);
5711 }
Olivier Houchard522eea72017-11-03 16:27:47 +01005712
Olivier Houchardc2aae742017-09-22 18:26:28 +02005713 }
5714
5715 } else
5716#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01005717 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01005718
Emeric Brune1f38db2012-09-03 20:36:47 +02005719 if (conn->flags & CO_FL_ERROR) {
5720 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005721 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005722 }
Emeric Brun46591952012-05-18 15:47:34 +02005723 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005724 /* A send succeeded, so we can consider ourself connected */
5725 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005726 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02005727 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005728 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005729 }
5730 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005731 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005732
Emeric Brun46591952012-05-18 15:47:34 +02005733 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005734 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01005735 /* handshake is running, and it may need to re-enable write */
5736 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005737 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005738#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005739 /* Async mode can be re-enabled, because we're leaving data state.*/
5740 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005741 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005742#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01005743 break;
5744 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005745
Emeric Brun46591952012-05-18 15:47:34 +02005746 break;
5747 }
5748 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01005749 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02005750 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005751 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5752 SUB_RETRY_RECV,
5753 &ctx->wait_event);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005754#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005755 /* Async mode can be re-enabled, because we're leaving data state.*/
5756 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005757 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005758#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005759 break;
5760 }
Emeric Brun46591952012-05-18 15:47:34 +02005761 goto out_error;
5762 }
5763 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005764 leave:
Emeric Brun46591952012-05-18 15:47:34 +02005765 return done;
5766
5767 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005768 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005769 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005770 ERR_clear_error();
5771
Emeric Brun46591952012-05-18 15:47:34 +02005772 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005773 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02005774}
5775
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005776static void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02005777
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005778 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005779
Olivier Houchardea8dd942019-05-20 14:02:16 +02005780
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005781 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005782 if (ctx->wait_event.events != 0)
5783 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
5784 ctx->wait_event.events,
5785 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01005786 if (ctx->subs) {
5787 ctx->subs->events = 0;
5788 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005789 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005790
Olivier Houchard692c1d02019-05-23 18:41:47 +02005791 if (ctx->xprt->close)
5792 ctx->xprt->close(conn, ctx->xprt_ctx);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005793#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brun3854e012017-05-17 20:42:48 +02005794 if (global_ssl.async) {
5795 OSSL_ASYNC_FD all_fd[32], afd;
5796 size_t num_all_fds = 0;
5797 int i;
5798
Olivier Houchard66ab4982019-02-26 18:37:15 +01005799 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02005800 if (num_all_fds > 32) {
5801 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
5802 return;
5803 }
5804
Olivier Houchard66ab4982019-02-26 18:37:15 +01005805 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02005806
5807 /* If an async job is pending, we must try to
5808 to catch the end using polling before calling
5809 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005810 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02005811 for (i=0 ; i < num_all_fds ; i++) {
5812 /* switch on an handler designed to
5813 * handle the SSL_free
5814 */
5815 afd = all_fd[i];
5816 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005817 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02005818 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00005819 /* To ensure that the fd cache won't be used
5820 * and we'll catch a real RD event.
5821 */
5822 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02005823 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005824 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005825 pool_free(ssl_sock_ctx_pool, ctx);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005826 _HA_ATOMIC_ADD(&jobs, 1);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005827 return;
5828 }
Emeric Brun3854e012017-05-17 20:42:48 +02005829 /* Else we can remove the fds from the fdtab
5830 * and call SSL_free.
5831 * note: we do a fd_remove and not a delete
5832 * because the fd is owned by the engine.
5833 * the engine is responsible to close
5834 */
5835 for (i=0 ; i < num_all_fds ; i++)
5836 fd_remove(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005837 }
5838#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01005839 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01005840 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005841 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005842 pool_free(ssl_sock_ctx_pool, ctx);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005843 _HA_ATOMIC_SUB(&sslconns, 1);
Emeric Brun46591952012-05-18 15:47:34 +02005844 }
Emeric Brun46591952012-05-18 15:47:34 +02005845}
5846
5847/* This function tries to perform a clean shutdown on an SSL connection, and in
5848 * any case, flags the connection as reusable if no handshake was in progress.
5849 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005850static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02005851{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005852 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005853
Willy Tarreau911db9b2020-01-23 16:27:54 +01005854 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005855 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01005856 if (!clean)
5857 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005858 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02005859 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005860 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01005861 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005862 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005863 ERR_clear_error();
5864 }
Emeric Brun46591952012-05-18 15:47:34 +02005865}
5866
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01005867
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005868/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01005869int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
5870{
5871 struct ssl_sock_ctx *ctx;
5872 X509 *crt;
5873
5874 if (!ssl_sock_is_ssl(conn))
5875 return 0;
5876
5877 ctx = conn->xprt_ctx;
5878
5879 crt = SSL_get_certificate(ctx->ssl);
5880 if (!crt)
5881 return 0;
5882
5883 return cert_get_pkey_algo(crt, out);
5884}
5885
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01005886/* used for ppv2 cert signature (can be used for logging) */
5887const char *ssl_sock_get_cert_sig(struct connection *conn)
5888{
Christopher Faulet82004142019-09-10 10:12:03 +02005889 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005890
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01005891 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
5892 X509 *crt;
5893
5894 if (!ssl_sock_is_ssl(conn))
5895 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02005896 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005897 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01005898 if (!crt)
5899 return NULL;
5900 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
5901 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
5902}
5903
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01005904/* used for ppv2 authority */
5905const char *ssl_sock_get_sni(struct connection *conn)
5906{
5907#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02005908 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005909
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01005910 if (!ssl_sock_is_ssl(conn))
5911 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02005912 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005913 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01005914#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01005915 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01005916#endif
5917}
5918
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02005919/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02005920const char *ssl_sock_get_cipher_name(struct connection *conn)
5921{
Christopher Faulet82004142019-09-10 10:12:03 +02005922 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005923
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02005924 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02005925 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02005926 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005927 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02005928}
5929
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02005930/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02005931const char *ssl_sock_get_proto_version(struct connection *conn)
5932{
Christopher Faulet82004142019-09-10 10:12:03 +02005933 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005934
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02005935 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02005936 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02005937 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005938 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02005939}
5940
Olivier Houchardab28a322018-12-21 19:45:40 +01005941void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
5942{
5943#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02005944 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005945
Olivier Houcharde488ea82019-06-28 14:10:33 +02005946 if (!ssl_sock_is_ssl(conn))
5947 return;
Christopher Faulet82004142019-09-10 10:12:03 +02005948 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005949 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01005950#endif
5951}
5952
Willy Tarreau119a4082016-12-22 21:58:38 +01005953/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
5954 * to disable SNI.
5955 */
Willy Tarreau63076412015-07-10 11:33:32 +02005956void ssl_sock_set_servername(struct connection *conn, const char *hostname)
5957{
5958#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02005959 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005960
Willy Tarreau119a4082016-12-22 21:58:38 +01005961 char *prev_name;
5962
Willy Tarreau63076412015-07-10 11:33:32 +02005963 if (!ssl_sock_is_ssl(conn))
5964 return;
Christopher Faulet82004142019-09-10 10:12:03 +02005965 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02005966
Willy Tarreau119a4082016-12-22 21:58:38 +01005967 /* if the SNI changes, we must destroy the reusable context so that a
5968 * new connection will present a new SNI. As an optimization we could
5969 * later imagine having a small cache of ssl_ctx to hold a few SNI per
5970 * server.
5971 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005972 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01005973 if ((!prev_name && hostname) ||
5974 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01005975 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01005976
Olivier Houchard66ab4982019-02-26 18:37:15 +01005977 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02005978#endif
5979}
5980
Emeric Brun0abf8362014-06-24 18:26:41 +02005981/* Extract peer certificate's common name into the chunk dest
5982 * Returns
5983 * the len of the extracted common name
5984 * or 0 if no CN found in DN
5985 * or -1 on error case (i.e. no peer certificate)
5986 */
Willy Tarreau83061a82018-07-13 11:56:34 +02005987int ssl_sock_get_remote_common_name(struct connection *conn,
5988 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04005989{
Christopher Faulet82004142019-09-10 10:12:03 +02005990 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04005991 X509 *crt = NULL;
5992 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04005993 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02005994 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02005995 .area = (char *)&find_cn,
5996 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04005997 };
Emeric Brun0abf8362014-06-24 18:26:41 +02005998 int result = -1;
David Safb76832014-05-08 23:42:08 -04005999
6000 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006001 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006002 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006003
6004 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006005 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006006 if (!crt)
6007 goto out;
6008
6009 name = X509_get_subject_name(crt);
6010 if (!name)
6011 goto out;
David Safb76832014-05-08 23:42:08 -04006012
Emeric Brun0abf8362014-06-24 18:26:41 +02006013 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6014out:
David Safb76832014-05-08 23:42:08 -04006015 if (crt)
6016 X509_free(crt);
6017
6018 return result;
6019}
6020
Dave McCowan328fb582014-07-30 10:39:13 -04006021/* returns 1 if client passed a certificate for this session, 0 if not */
6022int ssl_sock_get_cert_used_sess(struct connection *conn)
6023{
Christopher Faulet82004142019-09-10 10:12:03 +02006024 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006025 X509 *crt = NULL;
6026
6027 if (!ssl_sock_is_ssl(conn))
6028 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006029 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006030
6031 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006032 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006033 if (!crt)
6034 return 0;
6035
6036 X509_free(crt);
6037 return 1;
6038}
6039
6040/* returns 1 if client passed a certificate for this connection, 0 if not */
6041int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006042{
Christopher Faulet82004142019-09-10 10:12:03 +02006043 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006044
David Safb76832014-05-08 23:42:08 -04006045 if (!ssl_sock_is_ssl(conn))
6046 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006047 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006048 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006049}
6050
6051/* returns result from SSL verify */
6052unsigned int ssl_sock_get_verify_result(struct connection *conn)
6053{
Christopher Faulet82004142019-09-10 10:12:03 +02006054 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006055
David Safb76832014-05-08 23:42:08 -04006056 if (!ssl_sock_is_ssl(conn))
6057 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006058 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006059 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006060}
6061
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006062/* Returns the application layer protocol name in <str> and <len> when known.
6063 * Zero is returned if the protocol name was not found, otherwise non-zero is
6064 * returned. The string is allocated in the SSL context and doesn't have to be
6065 * freed by the caller. NPN is also checked if available since older versions
6066 * of openssl (1.0.1) which are more common in field only support this one.
6067 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006068static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006069{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006070#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6071 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006072 struct ssl_sock_ctx *ctx = xprt_ctx;
6073 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006074 return 0;
6075
6076 *str = NULL;
6077
6078#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006079 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006080 if (*str)
6081 return 1;
6082#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006083#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006084 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006085 if (*str)
6086 return 1;
6087#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006088#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006089 return 0;
6090}
6091
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006092/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006093int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006094{
6095 X509 *ca;
6096 X509_NAME *name = NULL;
6097 ASN1_OCTET_STRING *skid = NULL;
6098 STACK_OF(X509) *chain = NULL;
6099 struct issuer_chain *issuer;
6100 struct eb64_node *node;
6101 char *path;
6102 u64 key;
6103 int ret = 0;
6104
6105 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6106 if (chain == NULL) {
6107 chain = sk_X509_new_null();
6108 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6109 name = X509_get_subject_name(ca);
6110 }
6111 if (!sk_X509_push(chain, ca)) {
6112 X509_free(ca);
6113 goto end;
6114 }
6115 }
6116 if (!chain) {
6117 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6118 goto end;
6119 }
6120 if (!skid) {
6121 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6122 goto end;
6123 }
6124 if (!name) {
6125 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6126 goto end;
6127 }
6128 key = XXH64(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006129 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006130 issuer = container_of(node, typeof(*issuer), node);
6131 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6132 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6133 goto end;
6134 }
6135 }
6136 issuer = calloc(1, sizeof *issuer);
6137 path = strdup(fp);
6138 if (!issuer || !path) {
6139 free(issuer);
6140 free(path);
6141 goto end;
6142 }
6143 issuer->node.key = key;
6144 issuer->path = path;
6145 issuer->chain = chain;
6146 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006147 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006148 ret = 1;
6149 end:
6150 if (skid)
6151 ASN1_OCTET_STRING_free(skid);
6152 if (chain)
6153 sk_X509_pop_free(chain, X509_free);
6154 return ret;
6155}
6156
William Lallemandda8584c2020-05-14 10:14:37 +02006157 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006158{
6159 AUTHORITY_KEYID *akid;
6160 struct issuer_chain *issuer = NULL;
6161
6162 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
6163 if (akid) {
6164 struct eb64_node *node;
6165 u64 hk;
6166 hk = XXH64(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
6167 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6168 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6169 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6170 issuer = ti;
6171 break;
6172 }
6173 }
6174 AUTHORITY_KEYID_free(akid);
6175 }
6176 return issuer;
6177}
6178
William Lallemanddad31052020-05-14 17:47:32 +02006179void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006180{
6181 struct eb64_node *node, *back;
6182 struct issuer_chain *issuer;
6183
William Lallemande0f3fd52020-02-25 14:53:06 +01006184 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006185 while (node) {
6186 issuer = container_of(node, typeof(*issuer), node);
6187 back = eb64_next(node);
6188 eb64_delete(node);
6189 free(issuer->path);
6190 sk_X509_pop_free(issuer->chain, X509_free);
6191 free(issuer);
6192 node = back;
6193 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006194}
6195
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006196#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006197static int ssl_check_async_engine_count(void) {
6198 int err_code = 0;
6199
Emeric Brun3854e012017-05-17 20:42:48 +02006200 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006201 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006202 err_code = ERR_ABORT;
6203 }
6204 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006205}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006206#endif
6207
William Lallemand32af2032016-10-29 18:09:35 +02006208/* This function is used with TLS ticket keys management. It permits to browse
6209 * each reference. The variable <getnext> must contain the current node,
6210 * <end> point to the root node.
6211 */
6212#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6213static inline
6214struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end)
6215{
6216 struct tls_keys_ref *ref = getnext;
6217
6218 while (1) {
6219
6220 /* Get next list entry. */
6221 ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list);
6222
6223 /* If the entry is the last of the list, return NULL. */
6224 if (&ref->list == end)
6225 return NULL;
6226
6227 return ref;
6228 }
6229}
6230
6231static inline
6232struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6233{
6234 int id;
6235 char *error;
6236
6237 /* If the reference starts by a '#', this is numeric id. */
6238 if (reference[0] == '#') {
6239 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6240 id = strtol(reference + 1, &error, 10);
6241 if (*error != '\0')
6242 return NULL;
6243
6244 /* Perform the unique id lookup. */
6245 return tlskeys_ref_lookupid(id);
6246 }
6247
6248 /* Perform the string lookup. */
6249 return tlskeys_ref_lookup(reference);
6250}
6251#endif
6252
6253
6254#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6255
6256static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6257
6258static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6259 return cli_io_handler_tlskeys_files(appctx);
6260}
6261
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006262/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6263 * (next index to be dumped), and cli.p0 (next key reference).
6264 */
William Lallemand32af2032016-10-29 18:09:35 +02006265static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6266
6267 struct stream_interface *si = appctx->owner;
6268
6269 switch (appctx->st2) {
6270 case STAT_ST_INIT:
6271 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006272 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006273 * later and restart at the state "STAT_ST_INIT".
6274 */
6275 chunk_reset(&trash);
6276
6277 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6278 chunk_appendf(&trash, "# id secret\n");
6279 else
6280 chunk_appendf(&trash, "# id (file)\n");
6281
Willy Tarreau06d80a92017-10-19 14:32:15 +02006282 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006283 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006284 return 0;
6285 }
6286
William Lallemand32af2032016-10-29 18:09:35 +02006287 /* Now, we start the browsing of the references lists.
6288 * Note that the following call to LIST_ELEM return bad pointer. The only
6289 * available field of this pointer is <list>. It is used with the function
6290 * tlskeys_list_get_next() for retruning the first available entry
6291 */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006292 if (appctx->ctx.cli.p0 == NULL) {
6293 appctx->ctx.cli.p0 = LIST_ELEM(&tlskeys_reference, struct tls_keys_ref *, list);
6294 appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006295 }
6296
6297 appctx->st2 = STAT_ST_LIST;
6298 /* fall through */
6299
6300 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006301 while (appctx->ctx.cli.p0) {
6302 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006303
6304 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006305 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006306 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006307
6308 if (appctx->ctx.cli.i1 == 0)
6309 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6310
William Lallemand32af2032016-10-29 18:09:35 +02006311 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006312 int head;
6313
6314 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6315 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006316 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006317 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006318
6319 chunk_reset(t2);
6320 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006321 if (ref->key_size_bits == 128) {
6322 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6323 sizeof(struct tls_sess_key_128),
6324 t2->area, t2->size);
6325 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6326 t2->area);
6327 }
6328 else if (ref->key_size_bits == 256) {
6329 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6330 sizeof(struct tls_sess_key_256),
6331 t2->area, t2->size);
6332 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6333 t2->area);
6334 }
6335 else {
6336 /* This case should never happen */
6337 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6338 }
William Lallemand32af2032016-10-29 18:09:35 +02006339
Willy Tarreau06d80a92017-10-19 14:32:15 +02006340 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006341 /* let's try again later from this stream. We add ourselves into
6342 * this stream's users so that it can remove us upon termination.
6343 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006344 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006345 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006346 return 0;
6347 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006348 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006349 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006350 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006351 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006352 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006353 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006354 /* let's try again later from this stream. We add ourselves into
6355 * this stream's users so that it can remove us upon termination.
6356 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006357 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006358 return 0;
6359 }
6360
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006361 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006362 break;
6363
6364 /* get next list entry and check the end of the list */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006365 appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006366 }
6367
6368 appctx->st2 = STAT_ST_FIN;
6369 /* fall through */
6370
6371 default:
6372 appctx->st2 = STAT_ST_FIN;
6373 return 1;
6374 }
6375 return 0;
6376}
6377
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006378/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006379static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006380{
William Lallemand32af2032016-10-29 18:09:35 +02006381 /* no parameter, shows only file list */
6382 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006383 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006384 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006385 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006386 }
6387
6388 if (args[2][0] == '*') {
6389 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006390 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006391 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006392 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006393 if (!appctx->ctx.cli.p0)
6394 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006395 }
William Lallemand32af2032016-10-29 18:09:35 +02006396 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006397 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006398}
6399
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006400static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006401{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006402 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006403 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006404
William Lallemand32af2032016-10-29 18:09:35 +02006405 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006406 if (!*args[3] || !*args[4])
6407 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 +02006408
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006409 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006410 if (!ref)
6411 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006412
Willy Tarreau1c913e42018-08-22 05:26:57 +02006413 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006414 if (ret < 0)
6415 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01006416
Willy Tarreau1c913e42018-08-22 05:26:57 +02006417 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02006418 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
6419 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006420
Willy Tarreau9d008692019-08-09 11:21:01 +02006421 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006422}
William Lallemandd4f946c2019-12-05 10:26:40 +01006423#endif
William Lallemand419e6342020-04-08 12:05:39 +02006424
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006425static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006426{
6427#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
6428 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006429 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006430
6431 if (!payload)
6432 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02006433
6434 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006435 if (!*payload)
6436 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006437
6438 /* remove \r and \n from the payload */
6439 for (i = 0, j = 0; payload[i]; i++) {
6440 if (payload[i] == '\r' || payload[i] == '\n')
6441 continue;
6442 payload[j++] = payload[i];
6443 }
6444 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006445
Willy Tarreau1c913e42018-08-22 05:26:57 +02006446 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006447 if (ret < 0)
6448 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006449
Willy Tarreau1c913e42018-08-22 05:26:57 +02006450 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02006451 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02006452 if (err)
6453 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
6454 else
6455 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006456 }
Willy Tarreau9d008692019-08-09 11:21:01 +02006457
6458 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006459#else
Willy Tarreau9d008692019-08-09 11:21:01 +02006460 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 +02006461#endif
6462
Elliot Otchet71f82972020-01-15 08:12:14 -05006463}
6464
William Lallemand32af2032016-10-29 18:09:35 +02006465/* register cli keywords */
6466static struct cli_kw_list cli_kws = {{ },{
6467#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6468 { { "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 },
Lukas Tribusf4bbc432017-10-24 12:26:31 +02006469 { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|keyfile] <tlskey>: set the next TLS key for the <id> or <keyfile> listener to <tlskey>", cli_parse_set_tlskeys, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02006470#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006471 { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02006472 { { NULL }, NULL, NULL, NULL }
6473}};
6474
Willy Tarreau0108d902018-11-25 19:14:37 +01006475INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02006476
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02006477/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02006478struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02006479 .snd_buf = ssl_sock_from_buf,
6480 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01006481 .subscribe = ssl_subscribe,
6482 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02006483 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02006484 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02006485 .rcv_pipe = NULL,
6486 .snd_pipe = NULL,
6487 .shutr = NULL,
6488 .shutw = ssl_sock_shutw,
6489 .close = ssl_sock_close,
6490 .init = ssl_sock_init,
Willy Tarreau55d37912016-12-21 23:38:39 +01006491 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01006492 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01006493 .prepare_srv = ssl_sock_prepare_srv_ctx,
6494 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006495 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01006496 .name = "SSL",
Emeric Brun46591952012-05-18 15:47:34 +02006497};
6498
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006499enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
6500 struct session *sess, struct stream *s, int flags)
6501{
6502 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006503 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006504
6505 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006506 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006507
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006508 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006509 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006510 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006511 s->req.flags |= CF_READ_NULL;
6512 return ACT_RET_YIELD;
6513 }
6514 }
6515 return (ACT_RET_CONT);
6516}
6517
6518static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
6519{
6520 rule->action_ptr = ssl_action_wait_for_hs;
6521
6522 return ACT_RET_PRS_OK;
6523}
6524
6525static struct action_kw_list http_req_actions = {ILH, {
6526 { "wait-for-handshake", ssl_parse_wait_for_hs },
6527 { /* END */ }
6528}};
6529
Willy Tarreau0108d902018-11-25 19:14:37 +01006530INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
6531
Willy Tarreau5db847a2019-05-09 14:13:35 +02006532#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01006533
6534static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
6535{
6536 if (ptr) {
6537 chunk_destroy(ptr);
6538 free(ptr);
6539 }
6540}
6541
6542#endif
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01006543static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
6544{
Willy Tarreaubafbe012017-11-24 17:34:44 +01006545 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01006546}
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01006547
Emeric Brun46591952012-05-18 15:47:34 +02006548__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02006549static void __ssl_sock_init(void)
6550{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05006551#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02006552 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05006553 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05006554#endif
Emeric Brun46591952012-05-18 15:47:34 +02006555
Willy Tarreauef934602016-12-22 23:12:01 +01006556 if (global_ssl.listen_default_ciphers)
6557 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
6558 if (global_ssl.connect_default_ciphers)
6559 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Emmanuel Hocdet839af572019-05-14 16:27:35 +02006560#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02006561 if (global_ssl.listen_default_ciphersuites)
6562 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
6563 if (global_ssl.connect_default_ciphersuites)
6564 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
6565#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01006566
Willy Tarreau13e14102016-12-22 20:25:26 +01006567 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02006568#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02006569 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08006570#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05006571#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02006572 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05006573 n = sk_SSL_COMP_num(cm);
6574 while (n--) {
6575 (void) sk_SSL_COMP_pop(cm);
6576 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05006577#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05006578
Willy Tarreau5db847a2019-05-09 14:13:35 +02006579#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02006580 ssl_locking_init();
6581#endif
Willy Tarreau5db847a2019-05-09 14:13:35 +02006582#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01006583 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
6584#endif
Thierry FOURNIER28962c92018-06-17 21:37:05 +02006585 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02006586 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006587#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00006588 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006589 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006590#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01006591#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6592 hap_register_post_check(tlskeys_finalize_config);
6593#endif
Willy Tarreau80713382018-11-26 10:19:54 +01006594
6595 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
6596 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
6597
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006598 hap_register_post_deinit(ssl_free_global_issuers);
6599
Willy Tarreau80713382018-11-26 10:19:54 +01006600#ifndef OPENSSL_NO_DH
6601 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
6602 hap_register_post_deinit(ssl_free_dh);
6603#endif
6604#ifndef OPENSSL_NO_ENGINE
6605 hap_register_post_deinit(ssl_free_engines);
6606#endif
6607 /* Load SSL string for the verbose & debug mode. */
6608 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02006609 ha_meth = BIO_meth_new(0x666, "ha methods");
6610 BIO_meth_set_write(ha_meth, ha_ssl_write);
6611 BIO_meth_set_read(ha_meth, ha_ssl_read);
6612 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
6613 BIO_meth_set_create(ha_meth, ha_ssl_new);
6614 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
6615 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
6616 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02006617
6618 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02006619
Dragan Dosen9ac98092020-05-11 15:51:45 +02006620 /* Try to register dedicated SSL/TLS protocol message callbacks for
6621 * heartbleed attack (CVE-2014-0160) and clienthello.
6622 */
6623 hap_register_post_check(ssl_sock_register_msg_callbacks);
6624
Dragan Dosen1e7ed042020-05-08 18:30:00 +02006625 /* Try to free all callbacks that were registered by using
6626 * ssl_sock_register_msg_callback().
6627 */
6628 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01006629}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01006630
Willy Tarreau80713382018-11-26 10:19:54 +01006631/* Compute and register the version string */
6632static void ssl_register_build_options()
6633{
6634 char *ptr = NULL;
6635 int i;
6636
Willy Tarreauc2c0b612016-12-21 19:23:20 +01006637 memprintf(&ptr, "Built with OpenSSL version : "
6638#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01006639 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01006640#else /* OPENSSL_IS_BORINGSSL */
6641 OPENSSL_VERSION_TEXT
6642 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08006643 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02006644 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01006645#endif
6646 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02006647#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01006648 "no (library version too old)"
6649#elif defined(OPENSSL_NO_TLSEXT)
6650 "no (disabled via OPENSSL_NO_TLSEXT)"
6651#else
6652 "yes"
6653#endif
6654 "", ptr);
6655
6656 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
6657#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
6658 "yes"
6659#else
6660#ifdef OPENSSL_NO_TLSEXT
6661 "no (because of OPENSSL_NO_TLSEXT)"
6662#else
6663 "no (version might be too old, 0.9.8f min needed)"
6664#endif
6665#endif
6666 "", ptr);
6667
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02006668 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
6669 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
6670 if (methodVersions[i].option)
6671 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01006672
Willy Tarreauc2c0b612016-12-21 19:23:20 +01006673 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01006674}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01006675
Willy Tarreau80713382018-11-26 10:19:54 +01006676INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02006677
Emeric Brun46591952012-05-18 15:47:34 +02006678
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006679#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00006680void ssl_free_engines(void) {
6681 struct ssl_engine_list *wl, *wlb;
6682 /* free up engine list */
6683 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
6684 ENGINE_finish(wl->e);
6685 ENGINE_free(wl->e);
6686 LIST_DEL(&wl->list);
6687 free(wl);
6688 }
6689}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006690#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02006691
Remi Gacogned3a23c32015-05-28 16:39:47 +02006692#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00006693void ssl_free_dh(void) {
6694 if (local_dh_1024) {
6695 DH_free(local_dh_1024);
6696 local_dh_1024 = NULL;
6697 }
6698 if (local_dh_2048) {
6699 DH_free(local_dh_2048);
6700 local_dh_2048 = NULL;
6701 }
6702 if (local_dh_4096) {
6703 DH_free(local_dh_4096);
6704 local_dh_4096 = NULL;
6705 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02006706 if (global_dh) {
6707 DH_free(global_dh);
6708 global_dh = NULL;
6709 }
Grant Zhang872f9c22017-01-21 01:10:18 +00006710}
6711#endif
6712
6713__attribute__((destructor))
6714static void __ssl_sock_deinit(void)
6715{
6716#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02006717 if (ssl_ctx_lru_tree) {
6718 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01006719 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02006720 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02006721#endif
6722
Willy Tarreau5db847a2019-05-09 14:13:35 +02006723#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02006724 ERR_remove_state(0);
6725 ERR_free_strings();
6726
6727 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08006728#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02006729
Willy Tarreau5db847a2019-05-09 14:13:35 +02006730#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02006731 CRYPTO_cleanup_all_ex_data();
6732#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02006733 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02006734}
6735
Emeric Brun46591952012-05-18 15:47:34 +02006736/*
6737 * Local variables:
6738 * c-indent-level: 8
6739 * c-basic-offset: 8
6740 * End:
6741 */