blob: c0843ea80c921678c7c628d7eb822efcbe67ab78 [file] [log] [blame]
yanbzhu08ce6ab2015-12-02 13:01:29 -05001
Emeric Brun46591952012-05-18 15:47:34 +02002/*
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003 * SSL/TLS transport layer over SOCK_STREAM sockets
Emeric Brun46591952012-05-18 15:47:34 +02004 *
5 * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Willy Tarreau69845df2012-09-10 09:43:09 +020012 * Acknowledgement:
13 * We'd like to specially thank the Stud project authors for a very clean
14 * and well documented code which helped us understand how the OpenSSL API
15 * ought to be used in non-blocking mode. This is one difficult part which
16 * is not easy to get from the OpenSSL doc, and reading the Stud code made
17 * it much more obvious than the examples in the OpenSSL package. Keep up
18 * the good works, guys !
19 *
20 * Stud is an extremely efficient and scalable SSL/TLS proxy which combines
21 * particularly well with haproxy. For more info about this project, visit :
22 * https://github.com/bumptech/stud
23 *
Emeric Brun46591952012-05-18 15:47:34 +020024 */
25
Willy Tarreau8d164dc2019-05-10 09:35:00 +020026/* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */
Emeric Brun46591952012-05-18 15:47:34 +020027#define _GNU_SOURCE
Emeric Brunfc0421f2012-09-07 17:30:07 +020028#include <ctype.h>
29#include <dirent.h>
Emeric Brun46591952012-05-18 15:47:34 +020030#include <errno.h>
31#include <fcntl.h>
32#include <stdio.h>
33#include <stdlib.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020034#include <string.h>
35#include <unistd.h>
Emeric Brun46591952012-05-18 15:47:34 +020036
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020040#include <netdb.h>
Emeric Brun46591952012-05-18 15:47:34 +020041#include <netinet/tcp.h>
42
Willy Tarreaub2551052020-06-09 09:07:15 +020043#include <import/ebpttree.h>
44#include <import/ebsttree.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020045#include <import/lru.h>
46#include <import/xxhash.h>
47
Willy Tarreaub2551052020-06-09 09:07:15 +020048#include <haproxy/api.h>
49#include <haproxy/arg.h>
50#include <haproxy/base64.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020051#include <haproxy/channel.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020052#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020053#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020054#include <haproxy/connection.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020055#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020056#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020057#include <haproxy/fd.h>
58#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020059#include <haproxy/frontend.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020060#include <haproxy/global.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020061#include <haproxy/http_rules.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020062#include <haproxy/log.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +020063#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020064#include <haproxy/pattern-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020066#include <haproxy/proxy.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020067#include <haproxy/server.h>
Willy Tarreau334099c2020-06-03 18:38:48 +020068#include <haproxy/shctx.h>
Willy Tarreau47d7f902020-06-04 14:25:47 +020069#include <haproxy/ssl_ckch.h>
Willy Tarreau52d88722020-06-04 14:29:23 +020070#include <haproxy/ssl_crtlist.h>
Willy Tarreau209108d2020-06-04 20:30:20 +020071#include <haproxy/ssl_sock.h>
Willy Tarreaub2bd8652020-06-04 14:21:22 +020072#include <haproxy/ssl_utils.h>
Amaury Denoyelle9963fa72020-11-03 17:10:00 +010073#include <haproxy/stats.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream-t.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020075#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020076#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020077#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020078#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/tools.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020080#include <haproxy/vars.h>
Frédéric Lécailleec216522020-11-23 14:33:30 +010081#include <haproxy/xprt_quic.h>
Emeric Brun46591952012-05-18 15:47:34 +020082
Emeric Brun46591952012-05-18 15:47:34 +020083
Willy Tarreau9356dac2019-05-10 09:22:53 +020084/* ***** READ THIS before adding code here! *****
85 *
86 * Due to API incompatibilities between multiple OpenSSL versions and their
87 * derivatives, it's often tempting to add macros to (re-)define certain
88 * symbols. Please do not do this here, and do it in common/openssl-compat.h
89 * exclusively so that the whole code consistently uses the same macros.
90 *
91 * Whenever possible if a macro is missing in certain versions, it's better
92 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
93 */
94
Willy Tarreau71b734c2014-01-28 15:19:44 +010095int sslconns = 0;
96int totalsslconns = 0;
Emeric Brunece0c332017-12-06 13:51:49 +010097int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +020098
William Lallemande0f3fd52020-02-25 14:53:06 +010099static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */
100
William Lallemand7fd8b452020-05-07 15:20:43 +0200101struct global_ssl global_ssl = {
Willy Tarreauef934602016-12-22 23:12:01 +0100102#ifdef LISTEN_DEFAULT_CIPHERS
103 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
104#endif
105#ifdef CONNECT_DEFAULT_CIPHERS
106 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
107#endif
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +0500108#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200109 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200110 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
111#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100112 .listen_default_ssloptions = BC_SSL_O_NONE,
113 .connect_default_ssloptions = SRV_SSL_O_NONE,
114
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200115 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
116 .listen_default_sslmethods.min = CONF_TLSV_NONE,
117 .listen_default_sslmethods.max = CONF_TLSV_NONE,
118 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
119 .connect_default_sslmethods.min = CONF_TLSV_NONE,
120 .connect_default_sslmethods.max = CONF_TLSV_NONE,
121
Willy Tarreauef934602016-12-22 23:12:01 +0100122#ifdef DEFAULT_SSL_MAX_RECORD
123 .max_record = DEFAULT_SSL_MAX_RECORD,
124#endif
125 .default_dh_param = SSL_DEFAULT_DH_PARAM,
126 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100127 .capture_cipherlist = 0,
William Lallemand3af48e72020-02-03 17:15:52 +0100128 .extra_files = SSL_GF_ALL,
William Lallemand8e8581e2020-10-20 17:36:46 +0200129 .extra_files_noext = 0,
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500130#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200131 .keylog = 0
132#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100133};
134
Olivier Houcharda8955d52019-04-07 22:00:38 +0200135static BIO_METHOD *ha_meth;
136
Olivier Houchard66ab4982019-02-26 18:37:15 +0100137DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
138
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100139/* ssl stats module */
140enum {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100141 SSL_ST_SESS,
142 SSL_ST_REUSED_SESS,
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100143 SSL_ST_FAILED_HANDSHAKE,
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100144
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100145 SSL_ST_STATS_COUNT /* must be the last member of the enum */
146};
147
148static struct name_desc ssl_stats[] = {
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100149 [SSL_ST_SESS] = { .name = "ssl_sess",
150 .desc = "Total number of ssl sessions established" },
151 [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess",
152 .desc = "Total number of ssl sessions reused" },
153 [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake",
154 .desc = "Total number of failed handshake" },
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100155};
156
157static struct ssl_counters {
Amaury Denoyelled0447a72020-11-03 17:10:02 +0100158 long long sess;
159 long long reused_sess;
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100160 long long failed_handshake;
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100161} ssl_counters;
162
163static void ssl_fill_stats(void *data, struct field *stats)
164{
Amaury Denoyellefbc33772020-11-03 17:10:01 +0100165 struct ssl_counters *counters = data;
166
Amaury Denoyelle034c1622020-11-13 16:05:00 +0100167 stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess);
168 stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess);
169 stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake);
Amaury Denoyelle9963fa72020-11-03 17:10:00 +0100170}
171
172static struct stats_module ssl_stats_module = {
173 .name = "ssl",
174 .fill_stats = ssl_fill_stats,
175 .stats = ssl_stats,
176 .stats_count = SSL_ST_STATS_COUNT,
177 .counters = &ssl_counters,
178 .counters_size = sizeof(ssl_counters),
179 .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV),
180 .clearable = 1,
181};
182
183INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module);
184
Willy Tarreau691d5032021-01-20 14:55:01 +0100185/* ssl_sock_io_cb is exported to see it resolved in "show fd" */
Willy Tarreau144f84a2021-03-02 16:09:26 +0100186struct task *ssl_sock_io_cb(struct task *, void *, unsigned int);
Olivier Houchard000694c2019-05-23 14:45:12 +0200187static int ssl_sock_handshake(struct connection *conn, unsigned int flag);
Olivier Houchardea8dd942019-05-20 14:02:16 +0200188
Olivier Houcharda8955d52019-04-07 22:00:38 +0200189/* Methods to implement OpenSSL BIO */
190static int ha_ssl_write(BIO *h, const char *buf, int num)
191{
192 struct buffer tmpbuf;
193 struct ssl_sock_ctx *ctx;
194 int ret;
195
196 ctx = BIO_get_data(h);
197 tmpbuf.size = num;
198 tmpbuf.area = (void *)(uintptr_t)buf;
199 tmpbuf.data = num;
200 tmpbuf.head = 0;
201 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200202 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200203 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200204 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200205 } else if (ret == 0)
206 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200207 return ret;
208}
209
210static int ha_ssl_gets(BIO *h, char *buf, int size)
211{
212
213 return 0;
214}
215
216static int ha_ssl_puts(BIO *h, const char *str)
217{
218
219 return ha_ssl_write(h, str, strlen(str));
220}
221
222static int ha_ssl_read(BIO *h, char *buf, int size)
223{
224 struct buffer tmpbuf;
225 struct ssl_sock_ctx *ctx;
226 int ret;
227
228 ctx = BIO_get_data(h);
229 tmpbuf.size = size;
230 tmpbuf.area = buf;
231 tmpbuf.data = 0;
232 tmpbuf.head = 0;
233 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200234 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200235 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200236 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200237 } else if (ret == 0)
238 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200239
240 return ret;
241}
242
243static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
244{
245 int ret = 0;
246 switch (cmd) {
247 case BIO_CTRL_DUP:
248 case BIO_CTRL_FLUSH:
249 ret = 1;
250 break;
251 }
252 return ret;
253}
254
255static int ha_ssl_new(BIO *h)
256{
257 BIO_set_init(h, 1);
258 BIO_set_data(h, NULL);
259 BIO_clear_flags(h, ~0);
260 return 1;
261}
262
263static int ha_ssl_free(BIO *data)
264{
265
266 return 1;
267}
268
269
Willy Tarreau5db847a2019-05-09 14:13:35 +0200270#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100271
Emeric Brun821bb9b2017-06-15 16:37:39 +0200272static HA_RWLOCK_T *ssl_rwlocks;
273
274
275unsigned long ssl_id_function(void)
276{
277 return (unsigned long)tid;
278}
279
280void ssl_locking_function(int mode, int n, const char * file, int line)
281{
282 if (mode & CRYPTO_LOCK) {
283 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100284 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200285 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100286 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200287 }
288 else {
289 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100290 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200291 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100292 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200293 }
294}
295
296static int ssl_locking_init(void)
297{
298 int i;
299
300 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
301 if (!ssl_rwlocks)
302 return -1;
303
304 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100305 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200306
307 CRYPTO_set_id_callback(ssl_id_function);
308 CRYPTO_set_locking_callback(ssl_locking_function);
309
310 return 0;
311}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100312
Emeric Brun821bb9b2017-06-15 16:37:39 +0200313#endif
314
Willy Tarreauaf613e82020-06-05 08:40:51 +0200315__decl_thread(HA_SPINLOCK_T ckch_lock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200316
William Lallemandbc6ca7c2019-10-29 23:48:19 +0100317
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200318/*
Emmanuel Hocdetb270e812019-11-21 19:09:31 +0100319 * deduplicate cafile (and crlfile)
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200320 */
321struct cafile_entry {
322 X509_STORE *ca_store;
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200323 STACK_OF(X509_NAME) *ca_list;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200324 struct ebmb_node node;
325 char path[0];
326};
327
328static struct eb_root cafile_tree = EB_ROOT_UNIQUE;
329
330static X509_STORE* ssl_store_get0_locations_file(char *path)
331{
332 struct ebmb_node *eb;
333
334 eb = ebst_lookup(&cafile_tree, path);
335 if (eb) {
336 struct cafile_entry *ca_e;
337 ca_e = ebmb_entry(eb, struct cafile_entry, node);
338 return ca_e->ca_store;
339 }
340 return NULL;
341}
342
Remi Tricot-Le Bretonfb00f312021-03-23 16:41:53 +0100343int ssl_store_load_locations_file(char *path, int create_if_none)
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200344{
Remi Tricot-Le Bretonfb00f312021-03-23 16:41:53 +0100345 X509_STORE *store = ssl_store_get0_locations_file(path);
346
347 /* If this function is called by the CLI, we should not call the
348 * X509_STORE_load_locations function because it performs forbidden disk
349 * accesses. */
350 if (!store && create_if_none) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200351 struct cafile_entry *ca_e;
Remi Tricot-Le Bretonfb00f312021-03-23 16:41:53 +0100352 store = X509_STORE_new();
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200353 if (X509_STORE_load_locations(store, path, NULL)) {
354 int pathlen;
355 pathlen = strlen(path);
356 ca_e = calloc(1, sizeof(*ca_e) + pathlen + 1);
357 if (ca_e) {
358 memcpy(ca_e->path, path, pathlen + 1);
359 ca_e->ca_store = store;
360 ebst_insert(&cafile_tree, &ca_e->node);
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200361 }
Remi Tricot-Le Bretonfb00f312021-03-23 16:41:53 +0100362 } else {
363 X509_STORE_free(store);
364 store = NULL;
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200365 }
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200366 }
Remi Tricot-Le Bretonfb00f312021-03-23 16:41:53 +0100367 return (store != NULL);
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200368}
369
370/* mimic what X509_STORE_load_locations do with store_ctx */
371static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
372{
373 X509_STORE *store;
374 store = ssl_store_get0_locations_file(path);
375 if (store_ctx && store) {
376 int i;
377 X509_OBJECT *obj;
378 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
379 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
380 obj = sk_X509_OBJECT_value(objs, i);
381 switch (X509_OBJECT_get_type(obj)) {
382 case X509_LU_X509:
383 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
384 break;
385 case X509_LU_CRL:
386 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
387 break;
388 default:
389 break;
390 }
391 }
392 return 1;
393 }
394 return 0;
395}
396
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500397/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200398static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
399{
400 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
401 return ssl_set_cert_crl_file(store_ctx, path);
402}
403
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200404/*
405 Extract CA_list from CA_file already in tree.
406 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
407 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
408*/
409static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
410{
411 struct ebmb_node *eb;
412 struct cafile_entry *ca_e;
413
414 eb = ebst_lookup(&cafile_tree, path);
415 if (!eb)
416 return NULL;
417 ca_e = ebmb_entry(eb, struct cafile_entry, node);
418
419 if (ca_e->ca_list == NULL) {
420 int i;
421 unsigned long key;
422 struct eb_root ca_name_tree = EB_ROOT;
423 struct eb64_node *node, *back;
424 struct {
425 struct eb64_node node;
426 X509_NAME *xname;
427 } *ca_name;
428 STACK_OF(X509_OBJECT) *objs;
429 STACK_OF(X509_NAME) *skn;
430 X509 *x;
431 X509_NAME *xn;
432
433 skn = sk_X509_NAME_new_null();
434 /* take x509 from cafile_tree */
435 objs = X509_STORE_get0_objects(ca_e->ca_store);
436 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
437 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
438 if (!x)
439 continue;
440 xn = X509_get_subject_name(x);
441 if (!xn)
442 continue;
443 /* Check for duplicates. */
444 key = X509_NAME_hash(xn);
445 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
446 node && ca_name == NULL;
447 node = eb64_next(node)) {
448 ca_name = container_of(node, typeof(*ca_name), node);
449 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
450 ca_name = NULL;
451 }
452 /* find a duplicate */
453 if (ca_name)
454 continue;
455 ca_name = calloc(1, sizeof *ca_name);
456 xn = X509_NAME_dup(xn);
457 if (!ca_name ||
458 !xn ||
459 !sk_X509_NAME_push(skn, xn)) {
460 free(ca_name);
461 X509_NAME_free(xn);
462 sk_X509_NAME_pop_free(skn, X509_NAME_free);
463 sk_X509_NAME_free(skn);
464 skn = NULL;
465 break;
466 }
467 ca_name->node.key = key;
468 ca_name->xname = xn;
469 eb64_insert(&ca_name_tree, &ca_name->node);
470 }
471 ca_e->ca_list = skn;
472 /* remove temporary ca_name tree */
473 node = eb64_first(&ca_name_tree);
474 while (node) {
475 ca_name = container_of(node, typeof(*ca_name), node);
476 back = eb64_next(node);
477 eb64_delete(node);
478 free(ca_name);
479 node = back;
480 }
481 }
482 return ca_e->ca_list;
483}
484
Willy Tarreauff882702021-04-10 17:23:00 +0200485struct pool_head *pool_head_ssl_capture __read_mostly = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200486int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100487int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100488
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500489#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200490int ssl_keylog_index = -1;
Willy Tarreauff882702021-04-10 17:23:00 +0200491struct pool_head *pool_head_ssl_keylog __read_mostly = NULL;
492struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL;
William Lallemand7d42ef52020-07-06 11:41:30 +0200493#endif
494
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200495#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
496struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
497#endif
498
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200499#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200500unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000501struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
502struct ssl_engine_list {
503 struct list list;
504 ENGINE *e;
505};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200506#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000507
Remi Gacogne8de54152014-07-15 11:36:40 +0200508#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200509static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200510static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200511static DH *local_dh_1024 = NULL;
512static DH *local_dh_2048 = NULL;
513static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100514static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200515#endif /* OPENSSL_NO_DH */
516
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100517#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200518/* X509V3 Extensions that will be added on generated certificates */
519#define X509V3_EXT_SIZE 5
520static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
521 "basicConstraints",
522 "nsComment",
523 "subjectKeyIdentifier",
524 "authorityKeyIdentifier",
525 "keyUsage",
526};
527static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
528 "CA:FALSE",
529 "\"OpenSSL Generated Certificate\"",
530 "hash",
531 "keyid,issuer:always",
532 "nonRepudiation,digitalSignature,keyEncipherment"
533};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200534/* LRU cache to store generated certificate */
535static struct lru64_head *ssl_ctx_lru_tree = NULL;
536static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200537static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100538__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200539
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200540#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
541
yanbzhube2774d2015-12-10 15:07:30 -0500542/* The order here matters for picking a default context,
543 * keep the most common keytype at the bottom of the list
544 */
545const char *SSL_SOCK_KEYTYPE_NAMES[] = {
546 "dsa",
547 "ecdsa",
548 "rsa"
549};
yanbzhube2774d2015-12-10 15:07:30 -0500550
William Lallemandc3cd35f2017-11-28 11:04:43 +0100551static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100552static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
553
Dragan Dosen9ac98092020-05-11 15:51:45 +0200554/* Dedicated callback functions for heartbeat and clienthello.
555 */
556#ifdef TLS1_RT_HEARTBEAT
557static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
558 int content_type, const void *buf, size_t len,
559 SSL *ssl);
560#endif
561static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
562 int content_type, const void *buf, size_t len,
563 SSL *ssl);
564
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500565#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200566static void ssl_init_keylog(struct connection *conn, int write_p, int version,
567 int content_type, const void *buf, size_t len,
568 SSL *ssl);
569#endif
570
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200571/* List head of all registered SSL/TLS protocol message callbacks. */
572struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
573
574/* Registers the function <func> in order to be called on SSL/TLS protocol
575 * message processing. It will return 0 if the function <func> is not set
576 * or if it fails to allocate memory.
577 */
578int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
579{
580 struct ssl_sock_msg_callback *cbk;
581
582 if (!func)
583 return 0;
584
585 cbk = calloc(1, sizeof(*cbk));
586 if (!cbk) {
587 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
588 return 0;
589 }
590
591 cbk->func = func;
592
Willy Tarreau2b718102021-04-21 07:32:39 +0200593 LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200594
595 return 1;
596}
597
Dragan Dosen9ac98092020-05-11 15:51:45 +0200598/* Used to register dedicated SSL/TLS protocol message callbacks.
599 */
600static int ssl_sock_register_msg_callbacks(void)
601{
602#ifdef TLS1_RT_HEARTBEAT
603 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
604 return ERR_ABORT;
605#endif
606 if (global_ssl.capture_cipherlist > 0) {
607 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
608 return ERR_ABORT;
609 }
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500610#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200611 if (global_ssl.keylog > 0) {
612 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
613 return ERR_ABORT;
614 }
615#endif
616
Christopher Fauletfc633b62020-11-06 15:24:23 +0100617 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200618}
619
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200620/* Used to free all SSL/TLS protocol message callbacks that were
621 * registered by using ssl_sock_register_msg_callback().
622 */
623static void ssl_sock_unregister_msg_callbacks(void)
624{
625 struct ssl_sock_msg_callback *cbk, *cbkback;
626
627 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200628 LIST_DELETE(&cbk->list);
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200629 free(cbk);
630 }
631}
632
Dragan Doseneb607fe2020-05-11 17:17:06 +0200633SSL *ssl_sock_get_ssl_object(struct connection *conn)
634{
635 if (!ssl_sock_is_ssl(conn))
636 return NULL;
637
638 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
639}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100640/*
641 * This function gives the detail of the SSL error. It is used only
642 * if the debug mode and the verbose mode are activated. It dump all
643 * the SSL error until the stack was empty.
644 */
645static forceinline void ssl_sock_dump_errors(struct connection *conn)
646{
647 unsigned long ret;
648
649 if (unlikely(global.mode & MODE_DEBUG)) {
650 while(1) {
651 ret = ERR_get_error();
652 if (ret == 0)
653 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100654 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
655 conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100656 ERR_func_error_string(ret), ERR_reason_error_string(ret));
657 }
658 }
659}
660
yanbzhube2774d2015-12-10 15:07:30 -0500661
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200662#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200663int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000664{
665 int err_code = ERR_ABORT;
666 ENGINE *engine;
667 struct ssl_engine_list *el;
668
669 /* grab the structural reference to the engine */
670 engine = ENGINE_by_id(engine_id);
671 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100672 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000673 goto fail_get;
674 }
675
676 if (!ENGINE_init(engine)) {
677 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100678 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000679 goto fail_init;
680 }
681
682 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100683 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000684 goto fail_set_method;
685 }
686
687 el = calloc(1, sizeof(*el));
Remi Tricot-Le Breton46697c82021-05-12 17:45:21 +0200688 if (!el)
689 goto fail_alloc;
Grant Zhang872f9c22017-01-21 01:10:18 +0000690 el->e = engine;
Willy Tarreau2b718102021-04-21 07:32:39 +0200691 LIST_INSERT(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100692 nb_engines++;
693 if (global_ssl.async)
694 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000695 return 0;
696
Remi Tricot-Le Breton46697c82021-05-12 17:45:21 +0200697fail_alloc:
Grant Zhang872f9c22017-01-21 01:10:18 +0000698fail_set_method:
699 /* release the functional reference from ENGINE_init() */
700 ENGINE_finish(engine);
701
702fail_init:
703 /* release the structural reference from ENGINE_by_id() */
704 ENGINE_free(engine);
705
706fail_get:
707 return err_code;
708}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200709#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000710
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500711#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200712/*
713 * openssl async fd handler
714 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200715void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000716{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200717 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000718
Emeric Brun3854e012017-05-17 20:42:48 +0200719 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000720 * to poll this fd until it is requested
721 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000722 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000723 fd_cant_recv(fd);
724
725 /* crypto engine is available, let's notify the associated
726 * connection that it can pursue its processing.
727 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200728 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000729}
730
Emeric Brun3854e012017-05-17 20:42:48 +0200731/*
732 * openssl async delayed SSL_free handler
733 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200734void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000735{
736 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200737 OSSL_ASYNC_FD all_fd[32];
738 size_t num_all_fds = 0;
739 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000740
Emeric Brun3854e012017-05-17 20:42:48 +0200741 /* We suppose that the async job for a same SSL *
742 * are serialized. So if we are awake it is
743 * because the running job has just finished
744 * and we can remove all async fds safely
745 */
746 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
747 if (num_all_fds > 32) {
748 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
749 return;
750 }
751
752 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
753 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200754 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200755
756 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000757 SSL_free(ssl);
Willy Tarreau4781b152021-04-06 13:53:36 +0200758 _HA_ATOMIC_DEC(&sslconns);
759 _HA_ATOMIC_DEC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000760}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000761/*
Emeric Brun3854e012017-05-17 20:42:48 +0200762 * function used to manage a returned SSL_ERROR_WANT_ASYNC
763 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000764 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200765static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000766{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100767 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200768 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200769 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000770 size_t num_add_fds = 0;
771 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200772 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000773
774 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
775 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200776 if (num_add_fds > 32 || num_del_fds > 32) {
777 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 +0000778 return;
779 }
780
Emeric Brun3854e012017-05-17 20:42:48 +0200781 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000782
Emeric Brun3854e012017-05-17 20:42:48 +0200783 /* We remove unused fds from the fdtab */
784 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200785 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000786
Emeric Brun3854e012017-05-17 20:42:48 +0200787 /* We add new fds to the fdtab */
788 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200789 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000790 }
791
Emeric Brun3854e012017-05-17 20:42:48 +0200792 num_add_fds = 0;
793 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
794 if (num_add_fds > 32) {
795 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
796 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000797 }
Emeric Brun3854e012017-05-17 20:42:48 +0200798
799 /* We activate the polling for all known async fds */
800 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000801 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200802 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000803 /* To ensure that the fd cache won't be used
804 * We'll prefer to catch a real RD event
805 * because handling an EAGAIN on this fd will
806 * result in a context switch and also
807 * some engines uses a fd in blocking mode.
808 */
809 fd_cant_recv(add_fd[i]);
810 }
Emeric Brun3854e012017-05-17 20:42:48 +0200811
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000812}
813#endif
814
William Lallemand104a7a62019-10-14 14:14:59 +0200815#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200816/*
817 * This function returns the number of seconds elapsed
818 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
819 * date presented un ASN1_GENERALIZEDTIME.
820 *
821 * In parsing error case, it returns -1.
822 */
823static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
824{
825 long epoch;
826 char *p, *end;
827 const unsigned short month_offset[12] = {
828 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
829 };
830 int year, month;
831
832 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
833
834 p = (char *)d->data;
835 end = p + d->length;
836
837 if (end - p < 4) return -1;
838 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
839 p += 4;
840 if (end - p < 2) return -1;
841 month = 10 * (p[0] - '0') + p[1] - '0';
842 if (month < 1 || month > 12) return -1;
843 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
844 We consider leap years and the current month (<marsh or not) */
845 epoch = ( ((year - 1970) * 365)
846 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
847 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
848 + month_offset[month-1]
849 ) * 24 * 60 * 60;
850 p += 2;
851 if (end - p < 2) return -1;
852 /* Add the number of seconds of completed days of current month */
853 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
854 p += 2;
855 if (end - p < 2) return -1;
856 /* Add the completed hours of the current day */
857 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
858 p += 2;
859 if (end - p < 2) return -1;
860 /* Add the completed minutes of the current hour */
861 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
862 p += 2;
863 if (p == end) return -1;
864 /* Test if there is available seconds */
865 if (p[0] < '0' || p[0] > '9')
866 goto nosec;
867 if (end - p < 2) return -1;
868 /* Add the seconds of the current minute */
869 epoch += 10 * (p[0] - '0') + p[1] - '0';
870 p += 2;
871 if (p == end) return -1;
872 /* Ignore seconds float part if present */
873 if (p[0] == '.') {
874 do {
875 if (++p == end) return -1;
876 } while (p[0] >= '0' && p[0] <= '9');
877 }
878
879nosec:
880 if (p[0] == 'Z') {
881 if (end - p != 1) return -1;
882 return epoch;
883 }
884 else if (p[0] == '+') {
885 if (end - p != 5) return -1;
886 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700887 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 +0200888 }
889 else if (p[0] == '-') {
890 if (end - p != 5) return -1;
891 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700892 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 +0200893 }
894
895 return -1;
896}
897
William Lallemand104a7a62019-10-14 14:14:59 +0200898/*
899 * struct alignment works here such that the key.key is the same as key_data
900 * Do not change the placement of key_data
901 */
902struct certificate_ocsp {
903 struct ebmb_node key;
904 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
905 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200906 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200907 long expire;
908};
909
910struct ocsp_cbk_arg {
911 int is_single;
912 int single_kt;
913 union {
914 struct certificate_ocsp *s_ocsp;
915 /*
916 * m_ocsp will have multiple entries dependent on key type
917 * Entry 0 - DSA
918 * Entry 1 - ECDSA
919 * Entry 2 - RSA
920 */
921 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
922 };
923};
924
Emeric Brun1d3865b2014-06-20 15:37:32 +0200925static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200926
927/* This function starts to check if the OCSP response (in DER format) contained
928 * in chunk 'ocsp_response' is valid (else exits on error).
929 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
930 * contained in the OCSP Response and exits on error if no match.
931 * If it's a valid OCSP Response:
932 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
933 * pointed by 'ocsp'.
934 * If 'ocsp' is NULL, the function looks up into the OCSP response's
935 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
936 * from the response) and exits on error if not found. Finally, If an OCSP response is
937 * already present in the container, it will be overwritten.
938 *
939 * Note: OCSP response containing more than one OCSP Single response is not
940 * considered valid.
941 *
942 * Returns 0 on success, 1 in error case.
943 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200944static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
945 struct certificate_ocsp *ocsp,
946 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200947{
948 OCSP_RESPONSE *resp;
949 OCSP_BASICRESP *bs = NULL;
950 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200951 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200952 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200953 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200954 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200955 int reason;
956 int ret = 1;
957
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200958 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
959 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200960 if (!resp) {
961 memprintf(err, "Unable to parse OCSP response");
962 goto out;
963 }
964
965 rc = OCSP_response_status(resp);
966 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
967 memprintf(err, "OCSP response status not successful");
968 goto out;
969 }
970
971 bs = OCSP_response_get1_basic(resp);
972 if (!bs) {
973 memprintf(err, "Failed to get basic response from OCSP Response");
974 goto out;
975 }
976
977 count_sr = OCSP_resp_count(bs);
978 if (count_sr > 1) {
979 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
980 goto out;
981 }
982
983 sr = OCSP_resp_get0(bs, 0);
984 if (!sr) {
985 memprintf(err, "Failed to get OCSP single response");
986 goto out;
987 }
988
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200989 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
990
Emeric Brun4147b2e2014-06-16 18:36:30 +0200991 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200992 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200993 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200994 goto out;
995 }
996
Emeric Brun13a6b482014-06-20 15:44:34 +0200997 if (!nextupd) {
998 memprintf(err, "OCSP single response: missing nextupdate");
999 goto out;
1000 }
1001
Emeric Brunc8b27b62014-06-19 14:16:17 +02001002 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001003 if (!rc) {
1004 memprintf(err, "OCSP single response: no longer valid.");
1005 goto out;
1006 }
1007
1008 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001009 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +02001010 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
1011 goto out;
1012 }
1013 }
1014
1015 if (!ocsp) {
1016 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
1017 unsigned char *p;
1018
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001019 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001020 if (!rc) {
1021 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
1022 goto out;
1023 }
1024
1025 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
1026 memprintf(err, "OCSP single response: Certificate ID too long");
1027 goto out;
1028 }
1029
1030 p = key;
1031 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001032 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001033 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
1034 if (!ocsp) {
1035 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
1036 goto out;
1037 }
1038 }
1039
1040 /* According to comments on "chunk_dup", the
1041 previous chunk buffer will be freed */
1042 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1043 memprintf(err, "OCSP response: Memory allocation error");
1044 goto out;
1045 }
1046
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001047 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
1048
Emeric Brun4147b2e2014-06-16 18:36:30 +02001049 ret = 0;
1050out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001051 ERR_clear_error();
1052
Emeric Brun4147b2e2014-06-16 18:36:30 +02001053 if (bs)
1054 OCSP_BASICRESP_free(bs);
1055
1056 if (resp)
1057 OCSP_RESPONSE_free(resp);
1058
1059 return ret;
1060}
1061/*
1062 * External function use to update the OCSP response in the OCSP response's
1063 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1064 * to update in DER format.
1065 *
1066 * Returns 0 on success, 1 in error case.
1067 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001068int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001069{
1070 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1071}
1072
William Lallemand4a660132019-10-14 14:51:41 +02001073#endif
1074
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001075#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1076static 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)
1077{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001078 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001079 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001080 struct connection *conn;
1081 int head;
1082 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001083 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001084
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001085 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001086 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001087 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1088
1089 keys = ref->tlskeys;
1090 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001091
1092 if (enc) {
1093 memcpy(key_name, keys[head].name, 16);
1094
1095 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001096 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001097
Emeric Brun9e754772019-01-10 17:51:55 +01001098 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001099
Emeric Brun9e754772019-01-10 17:51:55 +01001100 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1101 goto end;
1102
Willy Tarreau9356dac2019-05-10 09:22:53 +02001103 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001104 ret = 1;
1105 }
1106 else if (ref->key_size_bits == 256 ) {
1107
1108 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1109 goto end;
1110
Willy Tarreau9356dac2019-05-10 09:22:53 +02001111 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001112 ret = 1;
1113 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001114 } else {
1115 for (i = 0; i < TLS_TICKETS_NO; i++) {
1116 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1117 goto found;
1118 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001119 ret = 0;
1120 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001121
Christopher Faulet16f45c82018-02-16 11:23:49 +01001122 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001123 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001124 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 +01001125 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1126 goto end;
1127 /* 2 for key renewal, 1 if current key is still valid */
1128 ret = i ? 2 : 1;
1129 }
1130 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001131 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 +01001132 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1133 goto end;
1134 /* 2 for key renewal, 1 if current key is still valid */
1135 ret = i ? 2 : 1;
1136 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001137 }
Emeric Brun9e754772019-01-10 17:51:55 +01001138
Christopher Faulet16f45c82018-02-16 11:23:49 +01001139 end:
1140 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1141 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001142}
1143
1144struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1145{
1146 struct tls_keys_ref *ref;
1147
1148 list_for_each_entry(ref, &tlskeys_reference, list)
1149 if (ref->filename && strcmp(filename, ref->filename) == 0)
1150 return ref;
1151 return NULL;
1152}
1153
1154struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1155{
1156 struct tls_keys_ref *ref;
1157
1158 list_for_each_entry(ref, &tlskeys_reference, list)
1159 if (ref->unique_id == unique_id)
1160 return ref;
1161 return NULL;
1162}
1163
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001164/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001165 * match existing ones, this function returns -1
1166 * else it returns 0 on success.
1167 */
1168int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001169 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001170{
Emeric Brun9e754772019-01-10 17:51:55 +01001171 if (ref->key_size_bits == 128) {
1172 if (tlskey->data != sizeof(struct tls_sess_key_128))
1173 return -1;
1174 }
1175 else if (ref->key_size_bits == 256) {
1176 if (tlskey->data != sizeof(struct tls_sess_key_256))
1177 return -1;
1178 }
1179 else
1180 return -1;
1181
Christopher Faulet16f45c82018-02-16 11:23:49 +01001182 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001183 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1184 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001185 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1186 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001187
1188 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001189}
1190
Willy Tarreau83061a82018-07-13 11:56:34 +02001191int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001192{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001193 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1194
1195 if(!ref) {
1196 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1197 return 1;
1198 }
Emeric Brun9e754772019-01-10 17:51:55 +01001199 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1200 memprintf(err, "Invalid key size");
1201 return 1;
1202 }
1203
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001204 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001205}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001206
1207/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001208 * automatic ids. It's called just after the basic checks. It returns
1209 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001210 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001211static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001212{
1213 int i = 0;
1214 struct tls_keys_ref *ref, *ref2, *ref3;
1215 struct list tkr = LIST_HEAD_INIT(tkr);
1216
1217 list_for_each_entry(ref, &tlskeys_reference, list) {
1218 if (ref->unique_id == -1) {
1219 /* Look for the first free id. */
1220 while (1) {
1221 list_for_each_entry(ref2, &tlskeys_reference, list) {
1222 if (ref2->unique_id == i) {
1223 i++;
1224 break;
1225 }
1226 }
1227 if (&ref2->list == &tlskeys_reference)
1228 break;
1229 }
1230
1231 /* Uses the unique id and increment it for the next entry. */
1232 ref->unique_id = i;
1233 i++;
1234 }
1235 }
1236
1237 /* This sort the reference list by id. */
1238 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001239 LIST_DELETE(&ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001240 list_for_each_entry(ref3, &tkr, list) {
1241 if (ref->unique_id < ref3->unique_id) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001242 LIST_APPEND(&ref3->list, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001243 break;
1244 }
1245 }
1246 if (&ref3->list == &tkr)
Willy Tarreau2b718102021-04-21 07:32:39 +02001247 LIST_APPEND(&tkr, &ref->list);
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001248 }
1249
1250 /* swap root */
Willy Tarreau2b718102021-04-21 07:32:39 +02001251 LIST_INSERT(&tkr, &tlskeys_reference);
1252 LIST_DELETE(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001253 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001254}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001255#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1256
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001257#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001258int ocsp_ex_index = -1;
1259
yanbzhube2774d2015-12-10 15:07:30 -05001260int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1261{
1262 switch (evp_keytype) {
1263 case EVP_PKEY_RSA:
1264 return 2;
1265 case EVP_PKEY_DSA:
1266 return 0;
1267 case EVP_PKEY_EC:
1268 return 1;
1269 }
1270
1271 return -1;
1272}
1273
Emeric Brun4147b2e2014-06-16 18:36:30 +02001274/*
1275 * Callback used to set OCSP status extension content in server hello.
1276 */
1277int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1278{
yanbzhube2774d2015-12-10 15:07:30 -05001279 struct certificate_ocsp *ocsp;
1280 struct ocsp_cbk_arg *ocsp_arg;
1281 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001282 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001283 EVP_PKEY *ssl_pkey;
1284 int key_type;
1285 int index;
1286
William Lallemand76b4a122020-08-04 17:41:39 +02001287 ctx = SSL_get_SSL_CTX(ssl);
1288 if (!ctx)
1289 return SSL_TLSEXT_ERR_NOACK;
1290
1291 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1292 if (!ocsp_arg)
1293 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001294
1295 ssl_pkey = SSL_get_privatekey(ssl);
1296 if (!ssl_pkey)
1297 return SSL_TLSEXT_ERR_NOACK;
1298
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001299 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001300
1301 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1302 ocsp = ocsp_arg->s_ocsp;
1303 else {
1304 /* For multiple certs per context, we have to find the correct OCSP response based on
1305 * the certificate type
1306 */
1307 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1308
1309 if (index < 0)
1310 return SSL_TLSEXT_ERR_NOACK;
1311
1312 ocsp = ocsp_arg->m_ocsp[index];
1313
1314 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001315
1316 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001317 !ocsp->response.area ||
1318 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001319 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001320 return SSL_TLSEXT_ERR_NOACK;
1321
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001322 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001323 if (!ssl_buf)
1324 return SSL_TLSEXT_ERR_NOACK;
1325
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001326 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1327 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001328
1329 return SSL_TLSEXT_ERR_OK;
1330}
1331
William Lallemand4a660132019-10-14 14:51:41 +02001332#endif
1333
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001334#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001335
1336
1337/*
1338 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1339 * used anymore. Also removes it from the tree if free'd.
1340 */
1341static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1342{
1343 if (!ocsp)
1344 return;
1345
1346 ocsp->refcount--;
1347 if (ocsp->refcount <= 0) {
1348 ebmb_delete(&ocsp->key);
1349 chunk_destroy(&ocsp->response);
1350 free(ocsp);
1351 }
1352}
1353
1354
Emeric Brun4147b2e2014-06-16 18:36:30 +02001355/*
1356 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001357 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1358 * status extension, the issuer's certificate is mandatory. It should be
1359 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001360 *
William Lallemand246c0242019-10-11 08:59:13 +02001361 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1362 * OCSP response. If file is empty or content is not a valid OCSP response,
1363 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1364 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001365 *
1366 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001367 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001368 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001369static 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 +02001370{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001371 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001372 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001373 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001374 struct certificate_ocsp *ocsp = NULL, *iocsp;
1375 char *warn = NULL;
1376 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001377 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001378
Emeric Brun4147b2e2014-06-16 18:36:30 +02001379
William Lallemand246c0242019-10-11 08:59:13 +02001380 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001381 if (!x)
1382 goto out;
1383
William Lallemand246c0242019-10-11 08:59:13 +02001384 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001385 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1386 if (chain) {
1387 /* check if one of the certificate of the chain is the issuer */
1388 for (i = 0; i < sk_X509_num(chain); i++) {
1389 X509 *ti = sk_X509_value(chain, i);
1390 if (X509_check_issued(ti, x) == X509_V_OK) {
1391 issuer = ti;
1392 break;
1393 }
1394 }
1395 }
William Lallemand246c0242019-10-11 08:59:13 +02001396 if (!issuer)
1397 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001398
1399 cid = OCSP_cert_to_id(0, x, issuer);
1400 if (!cid)
1401 goto out;
1402
1403 i = i2d_OCSP_CERTID(cid, NULL);
1404 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1405 goto out;
1406
Vincent Bernat02779b62016-04-03 13:48:43 +02001407 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001408 if (!ocsp)
1409 goto out;
1410
1411 p = ocsp->key_data;
1412 i2d_OCSP_CERTID(cid, &p);
1413
1414 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1415 if (iocsp == ocsp)
1416 ocsp = NULL;
1417
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001418#ifndef SSL_CTX_get_tlsext_status_cb
1419# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1420 *cb = (void (*) (void))ctx->tlsext_status_cb;
1421#endif
1422 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1423
1424 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001425 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001426 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001427
William Lallemanda560c062020-07-31 11:43:20 +02001428 cb_arg = calloc(1, sizeof(*cb_arg));
1429 if (!cb_arg)
1430 goto out;
1431
yanbzhube2774d2015-12-10 15:07:30 -05001432 cb_arg->is_single = 1;
1433 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001434 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001435
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001436 pkey = X509_get_pubkey(x);
1437 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1438 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001439
1440 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001441 SSL_CTX_set_ex_data(ctx, ocsp_ex_index, cb_arg); /* we use the ex_data instead of the cb_arg function here, so we can use the cleanup callback to free */
1442
yanbzhube2774d2015-12-10 15:07:30 -05001443 } else {
1444 /*
1445 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1446 * Update that cb_arg with the new cert's staple
1447 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001448 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001449 struct certificate_ocsp *tmp_ocsp;
1450 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001451 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001452 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001453
William Lallemand76b4a122020-08-04 17:41:39 +02001454 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001455
1456 /*
1457 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1458 * the order of operations below matter, take care when changing it
1459 */
1460 tmp_ocsp = cb_arg->s_ocsp;
1461 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1462 cb_arg->s_ocsp = NULL;
1463 cb_arg->m_ocsp[index] = tmp_ocsp;
1464 cb_arg->is_single = 0;
1465 cb_arg->single_kt = 0;
1466
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001467 pkey = X509_get_pubkey(x);
1468 key_type = EVP_PKEY_base_id(pkey);
1469 EVP_PKEY_free(pkey);
1470
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001471 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001472 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001473 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001474 iocsp->refcount++;
1475 }
yanbzhube2774d2015-12-10 15:07:30 -05001476 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001477
1478 ret = 0;
1479
1480 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001481 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001482 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001483 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001484 }
1485
1486out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001487 if (cid)
1488 OCSP_CERTID_free(cid);
1489
1490 if (ocsp)
1491 free(ocsp);
1492
1493 if (warn)
1494 free(warn);
1495
Emeric Brun4147b2e2014-06-16 18:36:30 +02001496 return ret;
1497}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001498#endif
1499
1500#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001501static 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 +02001502{
William Lallemand4a660132019-10-14 14:51:41 +02001503 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 +02001504}
1505#endif
1506
William Lallemand4a660132019-10-14 14:51:41 +02001507
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001508#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001509
1510#define CT_EXTENSION_TYPE 18
1511
William Lallemand03c331c2020-05-13 10:10:01 +02001512int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001513
1514int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1515{
Willy Tarreau83061a82018-07-13 11:56:34 +02001516 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001517
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001518 *out = (unsigned char *) sctl->area;
1519 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001520
1521 return 1;
1522}
1523
1524int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1525{
1526 return 1;
1527}
1528
William Lallemanda17f4112019-10-10 15:16:44 +02001529static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001530{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001531 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001532
William Lallemanda17f4112019-10-10 15:16:44 +02001533 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 +01001534 goto out;
1535
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001536 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1537
1538 ret = 0;
1539
1540out:
1541 return ret;
1542}
1543
1544#endif
1545
Emeric Brune1f38db2012-09-03 20:36:47 +02001546void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1547{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001548 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001549 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001550 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001551 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001552
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001553#ifndef SSL_OP_NO_RENEGOTIATION
1554 /* Please note that BoringSSL defines this macro to zero so don't
1555 * change this to #if and do not assign a default value to this macro!
1556 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001557 if (where & SSL_CB_HANDSHAKE_START) {
1558 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001559 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 +02001560 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001561 conn->err_code = CO_ER_SSL_RENEG;
1562 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001563 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001564#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001565
1566 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001567 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001568 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001569 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001570 consider that the buffering was activated,
1571 so we rise the output buffer size from 4k
1572 to 16k */
1573 write_bio = SSL_get_wbio(ssl);
1574 if (write_bio != SSL_get_rbio(ssl)) {
1575 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001576 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001577 }
1578 }
1579 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001580}
1581
Emeric Brune64aef12012-09-21 13:15:06 +02001582/* Callback is called for each certificate of the chain during a verify
1583 ok is set to 1 if preverify detect no error on current certificate.
1584 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001585int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001586{
1587 SSL *ssl;
1588 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001589 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001590 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001591
1592 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001593 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001594
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001595 ctx = conn->xprt_ctx;
1596
1597 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001598
Emeric Brun81c00f02012-09-21 14:31:21 +02001599 if (ok) /* no errors */
1600 return ok;
1601
1602 depth = X509_STORE_CTX_get_error_depth(x_store);
1603 err = X509_STORE_CTX_get_error(x_store);
1604
1605 /* check if CA error needs to be ignored */
1606 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001607 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1608 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1609 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001610 }
1611
Willy Tarreau731248f2020-02-04 14:02:02 +01001612 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001613 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001614 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001615 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001616 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001617
Willy Tarreau20879a02012-12-03 16:32:10 +01001618 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001619 return 0;
1620 }
1621
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001622 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1623 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001624
Emeric Brun81c00f02012-09-21 14:31:21 +02001625 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001626 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001627 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001628 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001629 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001630 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001631
Willy Tarreau20879a02012-12-03 16:32:10 +01001632 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001633 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001634}
1635
Dragan Dosen9ac98092020-05-11 15:51:45 +02001636#ifdef TLS1_RT_HEARTBEAT
1637static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1638 int content_type, const void *buf, size_t len,
1639 SSL *ssl)
1640{
1641 /* test heartbeat received (write_p is set to 0
1642 for a received record) */
1643 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1644 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1645 const unsigned char *p = buf;
1646 unsigned int payload;
1647
1648 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1649
1650 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1651 if (*p != TLS1_HB_REQUEST)
1652 return;
1653
1654 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1655 goto kill_it;
1656
1657 payload = (p[1] * 256) + p[2];
1658 if (3 + payload + 16 <= len)
1659 return; /* OK no problem */
1660 kill_it:
1661 /* We have a clear heartbleed attack (CVE-2014-0160), the
1662 * advertised payload is larger than the advertised packet
1663 * length, so we have garbage in the buffer between the
1664 * payload and the end of the buffer (p+len). We can't know
1665 * if the SSL stack is patched, and we don't know if we can
1666 * safely wipe out the area between p+3+len and payload.
1667 * So instead, we prevent the response from being sent by
1668 * setting the max_send_fragment to 0 and we report an SSL
1669 * error, which will kill this connection. It will be reported
1670 * above as SSL_ERROR_SSL while an other handshake failure with
1671 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1672 */
1673 ssl->max_send_fragment = 0;
1674 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1675 }
1676}
1677#endif
1678
1679static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1680 int content_type, const void *buf, size_t len,
1681 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001682{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001683 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001684 unsigned char *msg;
1685 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001686 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001687
1688 /* This function is called for "from client" and "to server"
1689 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001690 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001691 */
1692
1693 /* "write_p" is set to 0 is the bytes are received messages,
1694 * otherwise it is set to 1.
1695 */
1696 if (write_p != 0)
1697 return;
1698
1699 /* content_type contains the type of message received or sent
1700 * according with the SSL/TLS protocol spec. This message is
1701 * encoded with one byte. The value 256 (two bytes) is used
1702 * for designing the SSL/TLS record layer. According with the
1703 * rfc6101, the expected message (other than 256) are:
1704 * - change_cipher_spec(20)
1705 * - alert(21)
1706 * - handshake(22)
1707 * - application_data(23)
1708 * - (255)
1709 * We are interessed by the handshake and specially the client
1710 * hello.
1711 */
1712 if (content_type != 22)
1713 return;
1714
1715 /* The message length is at least 4 bytes, containing the
1716 * message type and the message length.
1717 */
1718 if (len < 4)
1719 return;
1720
1721 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001722 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001723 * - hello_request(0)
1724 * - client_hello(1)
1725 * - server_hello(2)
1726 * - certificate(11)
1727 * - server_key_exchange (12)
1728 * - certificate_request(13)
1729 * - server_hello_done(14)
1730 * We are interested by the client hello.
1731 */
1732 msg = (unsigned char *)buf;
1733 if (msg[0] != 1)
1734 return;
1735
1736 /* Next three bytes are the length of the message. The total length
1737 * must be this decoded length + 4. If the length given as argument
1738 * is not the same, we abort the protocol dissector.
1739 */
1740 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1741 if (len < rec_len + 4)
1742 return;
1743 msg += 4;
1744 end = msg + rec_len;
1745 if (end < msg)
1746 return;
1747
1748 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1749 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001750 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1751 */
1752 msg += 1 + 1 + 4 + 28;
1753 if (msg > end)
1754 return;
1755
1756 /* Next, is session id:
1757 * if present, we have to jump by length + 1 for the size information
1758 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001759 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001760 if (msg[0] > 0)
1761 msg += msg[0];
1762 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001763 if (msg > end)
1764 return;
1765
1766 /* Next two bytes are the ciphersuite length. */
1767 if (msg + 2 > end)
1768 return;
1769 rec_len = (msg[0] << 8) + msg[1];
1770 msg += 2;
1771 if (msg + rec_len > end || msg + rec_len < msg)
1772 return;
1773
Willy Tarreaub454e902021-03-22 15:09:41 +01001774 capture = pool_alloc(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001775 if (!capture)
1776 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001777 /* Compute the xxh64 of the ciphersuite. */
1778 capture->xxh64 = XXH64(msg, rec_len, 0);
1779
1780 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001781 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1782 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001783 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001784
1785 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001786}
William Lallemand7d42ef52020-07-06 11:41:30 +02001787
1788
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05001789#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001790static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1791 int content_type, const void *buf, size_t len,
1792 SSL *ssl)
1793{
1794 struct ssl_keylog *keylog;
1795
1796 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1797 return;
1798
Willy Tarreauf208ac02021-03-22 21:10:12 +01001799 keylog = pool_zalloc(pool_head_ssl_keylog);
William Lallemand7d42ef52020-07-06 11:41:30 +02001800 if (!keylog)
1801 return;
1802
William Lallemand7d42ef52020-07-06 11:41:30 +02001803 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1804 pool_free(pool_head_ssl_keylog, keylog);
1805 return;
1806 }
1807}
1808#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001809
Emeric Brun29f037d2014-04-25 19:05:36 +02001810/* Callback is called for ssl protocol analyse */
1811void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1812{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001813 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1814 struct ssl_sock_msg_callback *cbk;
1815
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001816 /* Try to call all callback functions that were registered by using
1817 * ssl_sock_register_msg_callback().
1818 */
1819 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1820 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1821 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001822}
1823
Bernard Spil13c53f82018-02-15 13:34:58 +01001824#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001825static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1826 const unsigned char *in, unsigned int inlen,
1827 void *arg)
1828{
1829 struct server *srv = arg;
1830
1831 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1832 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1833 return SSL_TLSEXT_ERR_OK;
1834 return SSL_TLSEXT_ERR_NOACK;
1835}
1836#endif
1837
1838#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001839/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001840 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001841 */
1842static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1843 unsigned int *len, void *arg)
1844{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001845 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001846
1847 *data = (const unsigned char *)conf->npn_str;
1848 *len = conf->npn_len;
1849 return SSL_TLSEXT_ERR_OK;
1850}
1851#endif
1852
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001853#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001854/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001855 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001856 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001857static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1858 unsigned char *outlen,
1859 const unsigned char *server,
1860 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001861{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001862 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001863
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001864 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1865 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1866 return SSL_TLSEXT_ERR_NOACK;
1867 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001868 return SSL_TLSEXT_ERR_OK;
1869}
1870#endif
1871
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001872#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001873#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001874
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001875/* Configure a DNS SAN extenion on a certificate. */
1876int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
1877 int failure = 0;
1878 X509_EXTENSION *san_ext = NULL;
1879 CONF *conf = NULL;
1880 struct buffer *san_name = get_trash_chunk();
1881
1882 conf = NCONF_new(NULL);
1883 if (!conf) {
1884 failure = 1;
1885 goto cleanup;
1886 }
1887
1888 /* Build an extension based on the DNS entry above */
1889 chunk_appendf(san_name, "DNS:%s", servername);
1890 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
1891 if (!san_ext) {
1892 failure = 1;
1893 goto cleanup;
1894 }
1895
1896 /* Add the extension */
1897 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
1898 failure = 1;
1899 goto cleanup;
1900 }
1901
1902 /* Success */
1903 failure = 0;
1904
1905cleanup:
1906 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
1907 if (NULL != conf) NCONF_free(conf);
1908
1909 return failure;
1910}
1911
Christopher Faulet30548802015-06-11 13:39:32 +02001912/* Create a X509 certificate with the specified servername and serial. This
1913 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001914static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001915ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001916{
Shimi Gersner5846c492020-08-23 13:58:12 +03001917 X509 *cacert = bind_conf->ca_sign_ckch->cert;
1918 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001919 SSL_CTX *ssl_ctx = NULL;
1920 X509 *newcrt = NULL;
1921 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001922 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001923 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001924 X509_NAME *name;
1925 const EVP_MD *digest;
1926 X509V3_CTX ctx;
1927 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001928 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001929
Christopher Faulet48a83322017-07-28 16:56:09 +02001930 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05001931#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001932 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1933#else
1934 tmp_ssl = SSL_new(bind_conf->default_ctx);
1935 if (tmp_ssl)
1936 pkey = SSL_get_privatekey(tmp_ssl);
1937#endif
1938 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001939 goto mkcert_error;
1940
1941 /* Create the certificate */
1942 if (!(newcrt = X509_new()))
1943 goto mkcert_error;
1944
1945 /* Set version number for the certificate (X509v3) and the serial
1946 * number */
1947 if (X509_set_version(newcrt, 2L) != 1)
1948 goto mkcert_error;
Willy Tarreau1db42732021-04-06 11:44:07 +02001949 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001950
1951 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001952 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1953 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001954 goto mkcert_error;
1955
1956 /* set public key in the certificate */
1957 if (X509_set_pubkey(newcrt, pkey) != 1)
1958 goto mkcert_error;
1959
1960 /* Set issuer name from the CA */
1961 if (!(name = X509_get_subject_name(cacert)))
1962 goto mkcert_error;
1963 if (X509_set_issuer_name(newcrt, name) != 1)
1964 goto mkcert_error;
1965
1966 /* Set the subject name using the same, but the CN */
1967 name = X509_NAME_dup(name);
1968 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1969 (const unsigned char *)servername,
1970 -1, -1, 0) != 1) {
1971 X509_NAME_free(name);
1972 goto mkcert_error;
1973 }
1974 if (X509_set_subject_name(newcrt, name) != 1) {
1975 X509_NAME_free(name);
1976 goto mkcert_error;
1977 }
1978 X509_NAME_free(name);
1979
1980 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001981 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001982 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1983 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1984 X509_EXTENSION *ext;
1985
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001986 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001987 goto mkcert_error;
1988 if (!X509_add_ext(newcrt, ext, -1)) {
1989 X509_EXTENSION_free(ext);
1990 goto mkcert_error;
1991 }
1992 X509_EXTENSION_free(ext);
1993 }
1994
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001995 /* Add SAN extension */
1996 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
1997 goto mkcert_error;
1998 }
1999
Christopher Faulet31af49d2015-06-09 17:29:50 +02002000 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002001
2002 key_type = EVP_PKEY_base_id(capkey);
2003
2004 if (key_type == EVP_PKEY_DSA)
2005 digest = EVP_sha1();
2006 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002007 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002008 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002009 digest = EVP_sha256();
2010 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002011#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002012 int nid;
2013
2014 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2015 goto mkcert_error;
2016 if (!(digest = EVP_get_digestbynid(nid)))
2017 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002018#else
2019 goto mkcert_error;
2020#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002021 }
2022
Christopher Faulet31af49d2015-06-09 17:29:50 +02002023 if (!(X509_sign(newcrt, capkey, digest)))
2024 goto mkcert_error;
2025
2026 /* Create and set the new SSL_CTX */
2027 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2028 goto mkcert_error;
2029 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2030 goto mkcert_error;
2031 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2032 goto mkcert_error;
2033 if (!SSL_CTX_check_private_key(ssl_ctx))
2034 goto mkcert_error;
2035
Shimi Gersner5846c492020-08-23 13:58:12 +03002036 /* Build chaining the CA cert and the rest of the chain, keep these order */
2037#if defined(SSL_CTX_add1_chain_cert)
2038 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2039 goto mkcert_error;
2040 }
2041
2042 if (bind_conf->ca_sign_ckch->chain) {
2043 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2044 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2045 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2046 goto mkcert_error;
2047 }
2048 }
2049 }
2050#endif
2051
Christopher Faulet31af49d2015-06-09 17:29:50 +02002052 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002053
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002054#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002055 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002056#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002057#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2058 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002059 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002060 EC_KEY *ecc;
2061 int nid;
2062
2063 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2064 goto end;
2065 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2066 goto end;
2067 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2068 EC_KEY_free(ecc);
2069 }
2070#endif
2071 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002072 return ssl_ctx;
2073
2074 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002075 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002076 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002077 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2078 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002079 return NULL;
2080}
2081
Christopher Faulet7969a332015-10-09 11:15:03 +02002082SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002083ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02002084{
Willy Tarreau07d94e42018-09-20 10:57:52 +02002085 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01002086 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002087
Olivier Houchard66ab4982019-02-26 18:37:15 +01002088 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02002089}
2090
Christopher Faulet30548802015-06-11 13:39:32 +02002091/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002092 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002093SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002094ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002095{
2096 struct lru64 *lru = NULL;
2097
2098 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002099 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002100 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002101 if (lru && lru->domain) {
2102 if (ssl)
2103 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002104 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002105 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002106 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002107 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002108 }
2109 return NULL;
2110}
2111
Emeric Brun821bb9b2017-06-15 16:37:39 +02002112/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2113 * function is not thread-safe, it should only be used to check if a certificate
2114 * exists in the lru cache (with no warranty it will not be removed by another
2115 * thread). It is kept for backward compatibility. */
2116SSL_CTX *
2117ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2118{
2119 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2120}
2121
Christopher Fauletd2cab922015-07-28 16:03:47 +02002122/* Set a certificate int the LRU cache used to store generated
2123 * certificate. Return 0 on success, otherwise -1 */
2124int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002125ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002126{
2127 struct lru64 *lru = NULL;
2128
2129 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002130 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002131 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002132 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002133 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002134 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002135 }
Christopher Faulet30548802015-06-11 13:39:32 +02002136 if (lru->domain && lru->data)
2137 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002138 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002139 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002140 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002141 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002142 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002143}
2144
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002145/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002146unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002147ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002148{
2149 return XXH32(data, len, ssl_ctx_lru_seed);
2150}
2151
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002152/* Generate a cert and immediately assign it to the SSL session so that the cert's
2153 * refcount is maintained regardless of the cert's presence in the LRU cache.
2154 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002155static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002156ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002157{
Shimi Gersner5846c492020-08-23 13:58:12 +03002158 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002159 SSL_CTX *ssl_ctx = NULL;
2160 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002161 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002162
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002163 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002164 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002165 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002166 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002167 if (lru && lru->domain)
2168 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002169 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002170 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002171 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002172 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002173 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002174 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002175 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002176 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002177 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002178 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002179 SSL_set_SSL_CTX(ssl, ssl_ctx);
2180 /* No LRU cache, this CTX will be released as soon as the session dies */
2181 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002182 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002183 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002184 return 0;
2185}
2186static int
2187ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2188{
2189 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002190 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002191
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002192 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002193 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002194 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002195 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002196 }
2197 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002198}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002199#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002200
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002201#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002202
2203static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002204{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002205#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002206 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002207 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2208#endif
2209}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002210static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2211 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002212 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2213}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002214static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002215#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002216 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002217 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2218#endif
2219}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002220static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002221#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002222 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002223 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2224#endif
2225}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002226/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002227static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2228/* Unusable in this context. */
2229static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2230static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2231static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2232static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2233static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002234#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002235
2236static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2237 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002238 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2239}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002240static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2241 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2242 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2243}
2244static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2245 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002246 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2247}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002248static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2249 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2250 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2251}
2252static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2253 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002254 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2255}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002256static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2257 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2258 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2259}
2260static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2261 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002262 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2263}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002264static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2265 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2266 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2267}
2268static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002269#if SSL_OP_NO_TLSv1_3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002270 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002271 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2272#endif
2273}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002274static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
2275#if SSL_OP_NO_TLSv1_3
2276 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2277 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002278#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002279}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002280#endif
2281static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2282static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002283
William Lallemand7fd8b452020-05-07 15:20:43 +02002284struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002285 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2286 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2287 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2288 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2289 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2290 {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 +02002291};
2292
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002293static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2294{
2295 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2296 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2297 SSL_set_SSL_CTX(ssl, ctx);
2298}
2299
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002300#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002301
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002302int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002303{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002304 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002305 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002306
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002307 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2308 return SSL_TLSEXT_ERR_OK;
2309 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002310}
2311
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002312#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002313int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002314{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002315 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002316#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002317int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002318{
2319#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002320 struct connection *conn;
2321 struct bind_conf *s;
2322 const uint8_t *extension_data;
2323 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002324 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002325
2326 char *wildp = NULL;
2327 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002328 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002329 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002330 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002331 int i;
2332
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002333 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002334 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002335
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002336#ifdef USE_QUIC
2337 if (conn->qc) {
2338 /* Look for the QUIC transport parameters. */
2339#ifdef OPENSSL_IS_BORINGSSL
2340 if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2341 &extension_data, &extension_len))
2342#else
2343 if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2344 &extension_data, &extension_len))
2345#endif
2346 goto abort;
2347
2348 if (!quic_transport_params_store(conn->qc, 0, extension_data,
2349 extension_data + extension_len))
2350 goto abort;
2351 }
2352#endif
2353
Olivier Houchard9679ac92017-10-27 14:58:08 +02002354 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002355 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002356#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002357 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2358 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002359#else
2360 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2361#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002362 /*
2363 * The server_name extension was given too much extensibility when it
2364 * was written, so parsing the normal case is a bit complex.
2365 */
2366 size_t len;
2367 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002368 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002369 /* Extract the length of the supplied list of names. */
2370 len = (*extension_data++) << 8;
2371 len |= *extension_data++;
2372 if (len + 2 != extension_len)
2373 goto abort;
2374 /*
2375 * The list in practice only has a single element, so we only consider
2376 * the first one.
2377 */
2378 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2379 goto abort;
2380 extension_len = len - 1;
2381 /* Now we can finally pull out the byte array with the actual hostname. */
2382 if (extension_len <= 2)
2383 goto abort;
2384 len = (*extension_data++) << 8;
2385 len |= *extension_data++;
2386 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2387 || memchr(extension_data, 0, len) != NULL)
2388 goto abort;
2389 servername = extension_data;
2390 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002391 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002392#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2393 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002394 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002395 }
2396#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002397 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002398 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002399 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002400 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002401 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002402 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002403 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002404 goto abort;
2405 }
2406
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002407 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002408#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002409 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002410#else
2411 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2412#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002413 uint8_t sign;
2414 size_t len;
2415 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002416 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002417 len = (*extension_data++) << 8;
2418 len |= *extension_data++;
2419 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002420 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002421 if (len % 2 != 0)
2422 goto abort;
2423 for (; len > 0; len -= 2) {
2424 extension_data++; /* hash */
2425 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002426 switch (sign) {
2427 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002428 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002429 break;
2430 case TLSEXT_signature_ecdsa:
2431 has_ecdsa_sig = 1;
2432 break;
2433 default:
2434 continue;
2435 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002436 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002437 break;
2438 }
2439 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002440 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002441 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002442 }
2443 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002444 const SSL_CIPHER *cipher;
2445 size_t len;
2446 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002447 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002448#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002449 len = ctx->cipher_suites_len;
2450 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002451#else
2452 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2453#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002454 if (len % 2 != 0)
2455 goto abort;
2456 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002457#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002458 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002459 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002460#else
2461 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2462#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002463 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002464 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002465 break;
2466 }
2467 }
2468 }
2469
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002470 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002471 trash.area[i] = tolower(servername[i]);
2472 if (!wildp && (trash.area[i] == '.'))
2473 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002474 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002475 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002476
William Lallemand150bfa82019-09-19 17:12:49 +02002477 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002478
William Lallemand94bd3192020-08-14 14:43:35 +02002479 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2480 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002481 for (i = 0; i < 2; i++) {
2482 if (i == 0) /* lookup in full qualified names */
2483 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002484 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002485 node = ebst_lookup(&s->sni_w_ctx, wildp);
2486 else
2487 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002488
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002489 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002490
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002491 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002492 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002493 struct sni_ctx *sni, *sni_tmp;
2494 int skip = 0;
2495
2496 if (i == 1 && wildp) { /* wildcard */
2497 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2498 sni = container_of(n, struct sni_ctx, name);
2499 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002500 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002501 skip = 1;
2502 break;
2503 }
2504 }
2505 if (skip)
2506 continue;
2507 }
2508
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002509 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002510 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002511 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002512 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002513 break;
2514 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002515 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002516 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002517 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002518 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002519 if (!node_anonymous)
2520 node_anonymous = n;
2521 break;
2522 }
2523 }
2524 }
William Lallemand94bd3192020-08-14 14:43:35 +02002525 }
2526 /* Once the certificates are found, select them depending on what is
2527 * supported in the client and by key_signature priority order: EDSA >
2528 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002529 if (has_ecdsa_sig && node_ecdsa)
2530 node = node_ecdsa;
2531 else if (has_rsa_sig && node_rsa)
2532 node = node_rsa;
2533 else if (node_anonymous)
2534 node = node_anonymous;
2535 else if (node_ecdsa)
2536 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2537 else
2538 node = node_rsa; /* no rsa signature case (far far away) */
2539
William Lallemand94bd3192020-08-14 14:43:35 +02002540 if (node) {
2541 /* switch ctx */
2542 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2543 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2544 if (conf) {
2545 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2546 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2547 if (conf->early_data)
2548 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002549 }
William Lallemand94bd3192020-08-14 14:43:35 +02002550 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2551 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002552 }
William Lallemand150bfa82019-09-19 17:12:49 +02002553
William Lallemand02010472019-10-18 11:02:19 +02002554 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002555#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002556 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002557 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002558 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002559 }
2560#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002561 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002562 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002563 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002564 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002565 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002566 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002567allow_early:
2568#ifdef OPENSSL_IS_BORINGSSL
2569 if (allow_early)
2570 SSL_set_early_data_enabled(ssl, 1);
2571#else
2572 if (!allow_early)
2573 SSL_set_max_early_data(ssl, 0);
2574#endif
2575 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002576 abort:
2577 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2578 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002579#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002580 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002581#else
2582 *al = SSL_AD_UNRECOGNIZED_NAME;
2583 return 0;
2584#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002585}
2586
2587#else /* OPENSSL_IS_BORINGSSL */
2588
Emeric Brunfc0421f2012-09-07 17:30:07 +02002589/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2590 * warning when no match is found, which implies the default (first) cert
2591 * will keep being used.
2592 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002593static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002594{
2595 const char *servername;
2596 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002597 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002598 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002599 int i;
2600 (void)al; /* shut gcc stupid warning */
2601
2602 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002603 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002604#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002605 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2606 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002607#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002608 if (s->strict_sni)
2609 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002610 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002611 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002612 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002613 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002614 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002615
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002616 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002617 if (!servername[i])
2618 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002619 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002620 if (!wildp && (trash.area[i] == '.'))
2621 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002622 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002623 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002624
William Lallemand150bfa82019-09-19 17:12:49 +02002625 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002626 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002627 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002628 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2629 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002630 if (!container_of(n, struct sni_ctx, name)->neg) {
2631 node = n;
2632 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002633 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002634 }
2635 if (!node && wildp) {
2636 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002637 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2638 /* lookup a not neg filter */
2639 if (!container_of(n, struct sni_ctx, name)->neg) {
2640 node = n;
2641 break;
2642 }
2643 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002644 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002645 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002646#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002647 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2648 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002649 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002650 return SSL_TLSEXT_ERR_OK;
2651 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002652#endif
William Lallemand21724f02019-11-04 17:56:13 +01002653 if (s->strict_sni) {
2654 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002655 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002656 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002657 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002658 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002659 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002660 }
2661
2662 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002663 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002664 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002665 return SSL_TLSEXT_ERR_OK;
2666}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002667#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002668#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2669
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002670#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002671
2672static DH * ssl_get_dh_1024(void)
2673{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002674 static unsigned char dh1024_p[]={
2675 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2676 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2677 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2678 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2679 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2680 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2681 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2682 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2683 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2684 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2685 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2686 };
2687 static unsigned char dh1024_g[]={
2688 0x02,
2689 };
2690
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002691 BIGNUM *p;
2692 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002693 DH *dh = DH_new();
2694 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002695 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2696 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002697
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002698 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002699 DH_free(dh);
2700 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002701 } else {
2702 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002703 }
2704 }
2705 return dh;
2706}
2707
2708static DH *ssl_get_dh_2048(void)
2709{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002710 static unsigned char dh2048_p[]={
2711 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2712 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2713 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2714 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2715 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2716 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2717 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2718 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2719 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2720 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2721 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2722 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2723 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2724 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2725 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2726 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2727 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2728 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2729 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2730 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2731 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2732 0xB7,0x1F,0x77,0xF3,
2733 };
2734 static unsigned char dh2048_g[]={
2735 0x02,
2736 };
2737
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002738 BIGNUM *p;
2739 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002740 DH *dh = DH_new();
2741 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002742 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2743 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002744
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002745 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002746 DH_free(dh);
2747 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002748 } else {
2749 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002750 }
2751 }
2752 return dh;
2753}
2754
2755static DH *ssl_get_dh_4096(void)
2756{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002757 static unsigned char dh4096_p[]={
2758 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2759 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2760 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2761 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2762 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2763 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2764 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2765 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2766 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2767 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2768 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2769 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2770 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2771 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2772 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2773 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2774 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2775 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2776 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2777 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2778 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2779 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2780 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2781 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2782 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2783 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2784 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2785 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2786 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2787 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2788 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2789 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2790 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2791 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2792 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2793 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2794 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2795 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2796 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2797 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2798 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2799 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2800 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002801 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002802 static unsigned char dh4096_g[]={
2803 0x02,
2804 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002805
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002806 BIGNUM *p;
2807 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002808 DH *dh = DH_new();
2809 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002810 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2811 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002812
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002813 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002814 DH_free(dh);
2815 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002816 } else {
2817 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002818 }
2819 }
2820 return dh;
2821}
2822
2823/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002824 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002825static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2826{
2827 DH *dh = NULL;
2828 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002829 int type;
2830
2831 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002832
2833 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2834 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2835 */
2836 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2837 keylen = EVP_PKEY_bits(pkey);
2838 }
2839
Willy Tarreauef934602016-12-22 23:12:01 +01002840 if (keylen > global_ssl.default_dh_param) {
2841 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002842 }
2843
Remi Gacogned3a341a2015-05-29 16:26:17 +02002844 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002845 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002846 }
2847 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002848 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002849 }
2850 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002851 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002852 }
2853
2854 return dh;
2855}
2856
Remi Gacogne47783ef2015-05-29 15:53:22 +02002857static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002858{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002859 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002860 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002861
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002862 if (in == NULL)
2863 goto end;
2864
Remi Gacogne47783ef2015-05-29 15:53:22 +02002865 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002866 goto end;
2867
Remi Gacogne47783ef2015-05-29 15:53:22 +02002868 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2869
2870end:
2871 if (in)
2872 BIO_free(in);
2873
Emeric Brune1b4ed42018-08-16 15:14:12 +02002874 ERR_clear_error();
2875
Remi Gacogne47783ef2015-05-29 15:53:22 +02002876 return dh;
2877}
2878
2879int ssl_sock_load_global_dh_param_from_file(const char *filename)
2880{
2881 global_dh = ssl_sock_get_dh_from_file(filename);
2882
2883 if (global_dh) {
2884 return 0;
2885 }
2886
2887 return -1;
2888}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002889#endif
2890
William Lallemand9117de92019-10-04 00:29:42 +02002891/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02002892static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02002893 struct bind_conf *s, struct ssl_bind_conf *conf,
2894 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002895{
2896 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002897 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002898
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002899 if (*name == '!') {
2900 neg = 1;
2901 name++;
2902 }
2903 if (*name == '*') {
2904 wild = 1;
2905 name++;
2906 }
2907 /* !* filter is a nop */
2908 if (neg && wild)
2909 return order;
2910 if (*name) {
2911 int j, len;
2912 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002913 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02002914 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002915 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02002916 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002917 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002918
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002919 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002920 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02002921 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002922 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02002923 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002924 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002925 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002926 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002927 sc->order = order++;
2928 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02002929 sc->wild = wild;
2930 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01002931 sc->ckch_inst = ckch_inst;
Willy Tarreau2b718102021-04-21 07:32:39 +02002932 LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002933 }
2934 return order;
2935}
2936
William Lallemand6af03992019-07-23 15:00:54 +02002937/*
William Lallemand1d29c742019-10-04 00:53:29 +02002938 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
2939 * This function can't return an error.
2940 *
2941 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
2942 */
William Lallemandc756bbd2020-05-13 17:23:59 +02002943void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02002944{
2945
2946 struct sni_ctx *sc0, *sc0b, *sc1;
2947 struct ebmb_node *node;
2948
2949 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
2950
2951 /* ignore if sc0 was already inserted in a tree */
2952 if (sc0->name.node.leaf_p)
2953 continue;
2954
2955 /* Check for duplicates. */
2956 if (sc0->wild)
2957 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
2958 else
2959 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
2960
2961 for (; node; node = ebmb_next_dup(node)) {
2962 sc1 = ebmb_entry(node, struct sni_ctx, name);
2963 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
2964 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
2965 /* it's a duplicate, we should remove and free it */
Willy Tarreau2b718102021-04-21 07:32:39 +02002966 LIST_DELETE(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02002967 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002968 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02002969 break;
William Lallemand1d29c742019-10-04 00:53:29 +02002970 }
2971 }
2972
2973 /* if duplicate, ignore the insertion */
2974 if (!sc0)
2975 continue;
2976
2977 if (sc0->wild)
2978 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
2979 else
2980 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002981 }
William Lallemand21724f02019-11-04 17:56:13 +01002982
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01002983 /* replace the default_ctx if required with the instance's ctx. */
2984 if (ckch_inst->is_default) {
2985 SSL_CTX_free(bind_conf->default_ctx);
2986 SSL_CTX_up_ref(ckch_inst->ctx);
2987 bind_conf->default_ctx = ckch_inst->ctx;
William Lallemand1d29c742019-10-04 00:53:29 +02002988 }
2989}
2990
2991/*
William Lallemande3af8fb2019-10-08 11:36:53 +02002992 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02002993 */
William Lallemande3af8fb2019-10-08 11:36:53 +02002994struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02002995
William Lallemand2954c472020-03-06 21:54:13 +01002996/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02002997struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02002998
Emeric Brun7a883362019-10-17 13:27:40 +02002999/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05003000 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02003001 * DH parameter is loaded into the SSL_CTX and if there is no
3002 * DH parameter available in ckchs nor in global, the default
3003 * DH parameters are applied on the SSL_CTX.
3004 * Returns a bitfield containing the flags:
3005 * ERR_FATAL in any fatal error case
3006 * ERR_ALERT if a reason of the error is availabine in err
3007 * ERR_WARN if a warning is available into err
3008 * The value 0 means there is no error nor warning and
3009 * the operation succeed.
3010 */
William Lallemandfa892222019-07-23 16:06:08 +02003011#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003012static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3013 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003014{
Emeric Brun7a883362019-10-17 13:27:40 +02003015 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02003016 DH *dh = NULL;
3017
William Lallemanda8c73742019-07-31 18:31:34 +02003018 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003019 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02003020 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
3021 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3022 err && *err ? *err : "", path);
3023#if defined(SSL_CTX_set_dh_auto)
3024 SSL_CTX_set_dh_auto(ctx, 1);
3025 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3026 err && *err ? *err : "");
3027#else
3028 memprintf(err, "%s, DH ciphers won't be available.\n",
3029 err && *err ? *err : "");
3030#endif
3031 ret |= ERR_WARN;
3032 goto end;
3033 }
William Lallemandfa892222019-07-23 16:06:08 +02003034
3035 if (ssl_dh_ptr_index >= 0) {
3036 /* store a pointer to the DH params to avoid complaining about
3037 ssl-default-dh-param not being set for this SSL_CTX */
3038 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3039 }
3040 }
3041 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003042 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3043 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3044 err && *err ? *err : "", path);
3045#if defined(SSL_CTX_set_dh_auto)
3046 SSL_CTX_set_dh_auto(ctx, 1);
3047 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3048 err && *err ? *err : "");
3049#else
3050 memprintf(err, "%s, DH ciphers won't be available.\n",
3051 err && *err ? *err : "");
3052#endif
3053 ret |= ERR_WARN;
3054 goto end;
3055 }
William Lallemandfa892222019-07-23 16:06:08 +02003056 }
3057 else {
3058 /* Clear openssl global errors stack */
3059 ERR_clear_error();
3060
Willy Tarreau6d27a922020-11-05 19:38:05 +01003061 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003062 /* we are limited to DH parameter of 1024 bits anyway */
3063 if (local_dh_1024 == NULL)
3064 local_dh_1024 = ssl_get_dh_1024();
3065
Emeric Brun7a883362019-10-17 13:27:40 +02003066 if (local_dh_1024 == NULL) {
3067 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3068 err && *err ? *err : "", path);
3069 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003070 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003071 }
William Lallemandfa892222019-07-23 16:06:08 +02003072
Emeric Bruna9363eb2019-10-17 14:53:03 +02003073 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3074 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3075 err && *err ? *err : "", path);
3076#if defined(SSL_CTX_set_dh_auto)
3077 SSL_CTX_set_dh_auto(ctx, 1);
3078 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3079 err && *err ? *err : "");
3080#else
3081 memprintf(err, "%s, DH ciphers won't be available.\n",
3082 err && *err ? *err : "");
3083#endif
3084 ret |= ERR_WARN;
3085 goto end;
3086 }
William Lallemandfa892222019-07-23 16:06:08 +02003087 }
3088 else {
3089 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3090 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003091 }
3092
William Lallemandf9568fc2019-10-16 18:27:58 +02003093end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003094 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003095 return ret;
3096}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003097#endif
William Lallemandfa892222019-07-23 16:06:08 +02003098
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003099
3100/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003101 * Returns a bitfield containing the flags:
3102 * ERR_FATAL in any fatal error case
3103 * ERR_ALERT if the reason of the error is available in err
3104 * ERR_WARN if a warning is available into err
3105 * The value 0 means there is no error nor warning and
3106 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003107 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003108static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3109 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003110{
Emeric Bruna96b5822019-10-17 13:25:14 +02003111 int errcode = 0;
3112
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003113 if (find_chain == NULL) {
3114 errcode |= ERR_FATAL;
3115 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003116 }
3117
3118 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3119 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3120 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003121 errcode |= ERR_ALERT | ERR_FATAL;
3122 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003123 }
3124
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003125 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003126 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003127 } else {
3128 /* Find Certificate Chain in global */
3129 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003130 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003131 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003132 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003133 }
William Lallemand85888572020-02-27 14:48:35 +01003134
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003135 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003136 /* always put a null chain stack in the SSL_CTX so it does not
3137 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003138 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003139 }
3140
William Lallemandf187ce62020-06-02 18:27:20 +02003141 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003142#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003143 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003144 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3145 err && *err ? *err : "", path);
3146 errcode |= ERR_ALERT | ERR_FATAL;
3147 goto end;
3148 }
William Lallemandf187ce62020-06-02 18:27:20 +02003149#else
3150 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003151 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003152 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003153 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003154 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003155 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003156 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3157 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003158 X509_free(ca);
3159 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003160 errcode |= ERR_ALERT | ERR_FATAL;
3161 goto end;
3162 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003163 }
William Lallemandf187ce62020-06-02 18:27:20 +02003164#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003165
William Lallemand9a1d8392020-08-10 17:28:23 +02003166#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003167 /* remove the Root CA from the SSL_CTX if the option is activated */
3168 if (global_ssl.skip_self_issued_ca) {
3169 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3170 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3171 err && *err ? *err : "", path);
3172 errcode |= ERR_ALERT | ERR_FATAL;
3173 goto end;
3174 }
3175 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003176#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003177
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003178end:
3179 return errcode;
3180}
3181
3182
3183/* Loads the info in ckch into ctx
3184 * Returns a bitfield containing the flags:
3185 * ERR_FATAL in any fatal error case
3186 * ERR_ALERT if the reason of the error is available in err
3187 * ERR_WARN if a warning is available into err
3188 * The value 0 means there is no error nor warning and
3189 * the operation succeed.
3190 */
3191static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3192{
3193 int errcode = 0;
3194 STACK_OF(X509) *find_chain = NULL;
3195
3196 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3197 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3198 err && *err ? *err : "", path);
3199 errcode |= ERR_ALERT | ERR_FATAL;
3200 return errcode;
3201 }
3202
3203 /* Load certificate chain */
3204 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3205 if (errcode & ERR_CODE)
3206 goto end;
3207
William Lallemandfa892222019-07-23 16:06:08 +02003208#ifndef OPENSSL_NO_DH
3209 /* store a NULL pointer to indicate we have not yet loaded
3210 a custom DH param file */
3211 if (ssl_dh_ptr_index >= 0) {
3212 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3213 }
3214
Emeric Brun7a883362019-10-17 13:27:40 +02003215 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3216 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003217 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3218 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003219 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003220 }
3221#endif
3222
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003223#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003224 if (sctl_ex_index >= 0 && ckch->sctl) {
3225 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3226 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003227 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003228 errcode |= ERR_ALERT | ERR_FATAL;
3229 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003230 }
3231 }
3232#endif
3233
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003234#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003235 /* Load OCSP Info into context */
3236 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003237 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003238 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",
3239 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003240 errcode |= ERR_ALERT | ERR_FATAL;
3241 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003242 }
3243 }
William Lallemand246c0242019-10-11 08:59:13 +02003244#endif
3245
Emeric Bruna96b5822019-10-17 13:25:14 +02003246 end:
3247 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003248}
3249
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003250
3251/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3252 * Returns a bitfield containing the flags:
3253 * ERR_FATAL in any fatal error case
3254 * ERR_ALERT if the reason of the error is available in err
3255 * ERR_WARN if a warning is available into err
3256 * The value 0 means there is no error nor warning and
3257 * the operation succeed.
3258 */
3259static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3260 SSL_CTX *ctx, char **err)
3261{
3262 int errcode = 0;
3263 STACK_OF(X509) *find_chain = NULL;
3264
3265 /* Load the private key */
3266 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3267 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3268 err && *err ? *err : "", path);
3269 errcode |= ERR_ALERT | ERR_FATAL;
3270 }
3271
3272 /* Load certificate chain */
3273 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3274 if (errcode & ERR_CODE)
3275 goto end;
3276
3277 if (SSL_CTX_check_private_key(ctx) <= 0) {
3278 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3279 err && *err ? *err : "", path);
3280 errcode |= ERR_ALERT | ERR_FATAL;
3281 }
3282
3283end:
3284 return errcode;
3285}
3286
3287
William Lallemand614ca0d2019-10-07 13:52:11 +02003288/*
3289 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003290 *
3291 * Returns a bitfield containing the flags:
3292 * ERR_FATAL in any fatal error case
3293 * ERR_ALERT if the reason of the error is available in err
3294 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003295 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003296int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003297 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003298{
William Lallemandc9402072019-05-15 15:33:54 +02003299 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003300 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003301 int order = 0;
3302 X509_NAME *xname;
3303 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003304 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003305 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003306#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3307 STACK_OF(GENERAL_NAME) *names;
3308#endif
William Lallemand36b84632019-07-18 19:28:17 +02003309 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003310 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003311 int errcode = 0;
3312
3313 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003314
William Lallemande3af8fb2019-10-08 11:36:53 +02003315 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003316 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003317
William Lallemande3af8fb2019-10-08 11:36:53 +02003318 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003319
William Lallemandc9402072019-05-15 15:33:54 +02003320 ctx = SSL_CTX_new(SSLv23_server_method());
3321 if (!ctx) {
3322 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3323 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003324 errcode |= ERR_ALERT | ERR_FATAL;
3325 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003326 }
3327
Emeric Bruna96b5822019-10-17 13:25:14 +02003328 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3329 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003330 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003331
3332 ckch_inst = ckch_inst_new();
3333 if (!ckch_inst) {
3334 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3335 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003336 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003337 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003338 }
3339
William Lallemand36b84632019-07-18 19:28:17 +02003340 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003341 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003342 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003343 switch(EVP_PKEY_base_id(pkey)) {
3344 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003345 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003346 break;
3347 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003348 kinfo.sig = TLSEXT_signature_ecdsa;
3349 break;
3350 case EVP_PKEY_DSA:
3351 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003352 break;
3353 }
3354 EVP_PKEY_free(pkey);
3355 }
3356
Emeric Brun50bcecc2013-04-22 13:05:23 +02003357 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003358 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003359 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 +02003360 if (order < 0) {
3361 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003362 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003363 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003364 }
3365 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003366 }
3367 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003368#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003369 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003370 if (names) {
3371 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3372 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3373 if (name->type == GEN_DNS) {
3374 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003375 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003376 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003377 if (order < 0) {
3378 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003379 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003380 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003381 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003382 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003383 }
3384 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003385 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003386 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003387#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003388 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003389 i = -1;
3390 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3391 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003392 ASN1_STRING *value;
3393
3394 value = X509_NAME_ENTRY_get_data(entry);
3395 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003396 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003397 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003398 if (order < 0) {
3399 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003400 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003401 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003402 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003403 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003404 }
3405 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003406 /* we must not free the SSL_CTX anymore below, since it's already in
3407 * the tree, so it will be discovered and cleaned in time.
3408 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003409
Emeric Brunfc0421f2012-09-07 17:30:07 +02003410#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003411 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003412 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3413 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003414 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003415 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003416 }
3417#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003418 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003419 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003420 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003421 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003422 SSL_CTX_up_ref(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003423 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003424
Remi Tricot-Le Breton8218aed2021-03-17 14:56:54 +01003425 /* Always keep a reference to the newly constructed SSL_CTX in the
3426 * instance. This way if the instance has no SNIs, the SSL_CTX will
3427 * still be linked. */
3428 SSL_CTX_up_ref(ctx);
3429 ckch_inst->ctx = ctx;
3430
William Lallemand9117de92019-10-04 00:29:42 +02003431 /* everything succeed, the ckch instance can be used */
3432 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003433 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003434 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003435
William Lallemand02e19a52020-04-08 16:11:26 +02003436 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3437
Emeric Brun054563d2019-10-17 13:16:58 +02003438 *ckchi = ckch_inst;
3439 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003440
3441error:
3442 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003443 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003444 if (ckch_inst->is_default)
3445 SSL_CTX_free(ctx);
3446
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003447 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003448 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003449 }
William Lallemandd9199372019-10-04 15:37:05 +02003450 SSL_CTX_free(ctx);
3451
Emeric Brun054563d2019-10-17 13:16:58 +02003452 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003453}
3454
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003455
3456/*
3457 * This function allocate a ckch_inst that will be used on the backend side
3458 * (server line)
3459 *
3460 * Returns a bitfield containing the flags:
3461 * ERR_FATAL in any fatal error case
3462 * ERR_ALERT if the reason of the error is available in err
3463 * ERR_WARN if a warning is available into err
3464 */
3465int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003466 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003467{
3468 SSL_CTX *ctx;
3469 struct cert_key_and_chain *ckch;
3470 struct ckch_inst *ckch_inst = NULL;
3471 int errcode = 0;
3472
3473 *ckchi = NULL;
3474
3475 if (!ckchs || !ckchs->ckch)
3476 return ERR_FATAL;
3477
3478 ckch = ckchs->ckch;
3479
3480 ctx = SSL_CTX_new(SSLv23_client_method());
3481 if (!ctx) {
3482 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3483 err && *err ? *err : "", path);
3484 errcode |= ERR_ALERT | ERR_FATAL;
3485 goto error;
3486 }
3487
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003488 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3489 if (errcode & ERR_CODE)
3490 goto error;
3491
3492 ckch_inst = ckch_inst_new();
3493 if (!ckch_inst) {
3494 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3495 err && *err ? *err : "", path);
3496 errcode |= ERR_ALERT | ERR_FATAL;
3497 goto error;
3498 }
3499
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003500 /* everything succeed, the ckch instance can be used */
3501 ckch_inst->bind_conf = NULL;
3502 ckch_inst->ssl_conf = NULL;
3503 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003504 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003505 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003506
3507 *ckchi = ckch_inst;
3508 return errcode;
3509
3510error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003511 SSL_CTX_free(ctx);
3512
3513 return errcode;
3514}
3515
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003516/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003517static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3518 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003519 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003520{
Emeric Brun054563d2019-10-17 13:16:58 +02003521 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003522
3523 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003524 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 +02003525
Emeric Brun054563d2019-10-17 13:16:58 +02003526 if (errcode & ERR_CODE)
3527 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003528
William Lallemand24bde432020-03-09 16:48:43 +01003529 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003530
3531 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003532 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003533 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003534}
3535
William Lallemanddb26e2b2021-01-26 12:01:46 +01003536/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3537 * fill the SSL_CTX of the server.
3538 *
3539 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003540static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003541 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003542{
3543 int errcode = 0;
3544
3545 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003546 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003547
3548 if (errcode & ERR_CODE)
3549 return errcode;
3550
William Lallemanddb26e2b2021-01-26 12:01:46 +01003551 (*ckch_inst)->server = server;
3552 /* Keep the reference to the SSL_CTX in the server. */
3553 SSL_CTX_up_ref((*ckch_inst)->ctx);
3554 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003555 /* succeed, add the instance to the ckch_store's list of instance */
Willy Tarreau2b718102021-04-21 07:32:39 +02003556 LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003557 return errcode;
3558}
3559
William Lallemand6be66ec2020-03-06 22:26:32 +01003560
William Lallemand4c68bba2020-03-30 18:45:10 +02003561
3562
3563/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3564 * done once. Zero is returned if the operation fails. No error is returned
3565 * if the random is said as not implemented, because we expect that openssl
3566 * will use another method once needed.
3567 */
3568static int ssl_initialize_random()
3569{
3570 unsigned char random;
3571 static int random_initialized = 0;
3572
3573 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3574 random_initialized = 1;
3575
3576 return random_initialized;
3577}
3578
William Lallemand2954c472020-03-06 21:54:13 +01003579/* Load a crt-list file, this is done in 2 parts:
3580 * - store the content of the file in a crtlist structure with crtlist_entry structures
3581 * - generate the instances by iterating on entries in the crtlist struct
3582 *
3583 * Nothing is locked there, this function is used in the configuration parser.
3584 *
3585 * Returns a set of ERR_* flags possibly with an error in <err>.
3586 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003587int 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 +01003588{
3589 struct crtlist *crtlist = NULL;
3590 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003591 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003592 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003593 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003594 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003595
William Lallemand79d31ec2020-03-25 15:10:49 +01003596 bind_conf_node = malloc(sizeof(*bind_conf_node));
3597 if (!bind_conf_node) {
3598 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3599 cfgerr |= ERR_FATAL | ERR_ALERT;
3600 goto error;
3601 }
3602 bind_conf_node->next = NULL;
3603 bind_conf_node->bind_conf = bind_conf;
3604
William Lallemand41ca9302020-04-08 13:15:18 +02003605 /* strip trailing slashes, including first one */
3606 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3607 *end = 0;
3608
William Lallemand2954c472020-03-06 21:54:13 +01003609 /* look for an existing crtlist or create one */
3610 eb = ebst_lookup(&crtlists_tree, file);
3611 if (eb) {
3612 crtlist = ebmb_entry(eb, struct crtlist, node);
3613 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003614 /* load a crt-list OR a directory */
3615 if (dir)
3616 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3617 else
3618 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3619
William Lallemand2954c472020-03-06 21:54:13 +01003620 if (!(cfgerr & ERR_CODE))
3621 ebst_insert(&crtlists_tree, &crtlist->node);
3622 }
3623
3624 if (cfgerr & ERR_CODE) {
3625 cfgerr |= ERR_FATAL | ERR_ALERT;
3626 goto error;
3627 }
3628
3629 /* generates ckch instance from the crtlist_entry */
3630 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3631 struct ckch_store *store;
3632 struct ckch_inst *ckch_inst = NULL;
3633
3634 store = entry->node.key;
3635 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3636 if (cfgerr & ERR_CODE) {
3637 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3638 goto error;
3639 }
Willy Tarreau2b718102021-04-21 07:32:39 +02003640 LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003641 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003642 }
William Lallemand2954c472020-03-06 21:54:13 +01003643
William Lallemand79d31ec2020-03-25 15:10:49 +01003644 /* add the bind_conf to the list */
3645 bind_conf_node->next = crtlist->bind_conf;
3646 crtlist->bind_conf = bind_conf_node;
3647
William Lallemand2954c472020-03-06 21:54:13 +01003648 return cfgerr;
3649error:
3650 {
William Lallemand49398312020-03-30 17:01:33 +02003651 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003652 struct ckch_inst *inst, *s_inst;
3653
William Lallemand49398312020-03-30 17:01:33 +02003654 lastentry = entry; /* which entry we tried to generate last */
3655 if (lastentry) {
3656 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3657 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3658 break;
3659
3660 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003661
William Lallemand49398312020-03-30 17:01:33 +02003662 /* this was not generated for this bind_conf, skip */
3663 if (inst->bind_conf != bind_conf)
3664 continue;
3665
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003666 /* free the sni_ctx and instance */
3667 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003668 }
William Lallemand2954c472020-03-06 21:54:13 +01003669 }
William Lallemand2954c472020-03-06 21:54:13 +01003670 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003671 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003672 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003673 return cfgerr;
3674}
3675
William Lallemand06b22a82020-03-16 14:45:55 +01003676/* Returns a set of ERR_* flags possibly with an error in <err>. */
3677int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3678{
3679 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003680 int cfgerr = 0;
3681 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003682 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003683 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003684
3685 if ((ckchs = ckchs_lookup(path))) {
3686 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003687 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3688 found++;
3689 } else if (stat(path, &buf) == 0) {
3690 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003691 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003692 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003693 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003694 cfgerr |= ERR_ALERT | ERR_FATAL;
3695 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003696 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003697 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003698 }
3699 } else {
3700 /* stat failed, could be a bundle */
3701 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003702 char fp[MAXPATHLEN+1] = {0};
3703 int n = 0;
3704
3705 /* Load all possible certs and keys in separate ckch_store */
3706 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3707 struct stat buf;
3708 int ret;
3709
3710 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3711 if (ret > sizeof(fp))
3712 continue;
3713
3714 if ((ckchs = ckchs_lookup(fp))) {
3715 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003716 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003717 } else {
3718 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003719 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003720 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003721 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003722 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003723 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3724 }
3725 }
3726 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003727#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3728 if (found) {
3729 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3730 err && *err ? *err : "", path);
3731 cfgerr |= ERR_ALERT | ERR_FATAL;
3732 }
3733#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003734 }
3735 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003736 if (!found) {
3737 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3738 err && *err ? *err : "", path, strerror(errno));
3739 cfgerr |= ERR_ALERT | ERR_FATAL;
3740 }
William Lallemand06b22a82020-03-16 14:45:55 +01003741
3742 return cfgerr;
3743}
3744
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003745
3746/* Create a full ssl context and ckch instance that will be used for a specific
3747 * backend server (server configuration line).
3748 * Returns a set of ERR_* flags possibly with an error in <err>.
3749 */
3750int ssl_sock_load_srv_cert(char *path, struct server *server, char **err)
3751{
3752 struct stat buf;
3753 int cfgerr = 0;
3754 struct ckch_store *ckchs;
3755 int found = 0; /* did we found a file to load ? */
3756
3757 if ((ckchs = ckchs_lookup(path))) {
3758 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003759 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003760 found++;
3761 } else if (stat(path, &buf) == 0) {
3762 /* We do not manage directories on backend side. */
3763 if (S_ISDIR(buf.st_mode) == 0) {
3764 ++found;
3765 ckchs = ckchs_load_cert_file(path, err);
3766 if (!ckchs)
3767 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003768 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003769 }
3770 }
3771 if (!found) {
3772 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3773 err && *err ? *err : "", path, strerror(errno));
3774 cfgerr |= ERR_ALERT | ERR_FATAL;
3775 }
3776
3777 return cfgerr;
3778}
3779
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003780/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003781static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003782ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003783{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003784 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003785 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003786 SSL_OP_ALL | /* all known workarounds for bugs */
3787 SSL_OP_NO_SSLv2 |
3788 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003789 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003790 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003791 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003792 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003793 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003794 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003795 SSL_MODE_ENABLE_PARTIAL_WRITE |
3796 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003797 SSL_MODE_RELEASE_BUFFERS |
3798 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003799 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003800 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003801 int flags = MC_SSL_O_ALL;
3802 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003803 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003804
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003805 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003806 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003807
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003808 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003809 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3810 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3811 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003812 else
3813 flags = conf_ssl_methods->flags;
3814
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003815 min = conf_ssl_methods->min;
3816 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003817
3818 /* default minimum is TLSV12, */
3819 if (!min) {
3820 if (!max || (max >= default_min_ver)) {
3821 min = default_min_ver;
3822 } else {
3823 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). "
3824 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3825 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3826 min = max;
3827 }
3828 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003829 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003830 if (min)
3831 flags |= (methodVersions[min].flag - 1);
3832 if (max)
3833 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003834 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003835 min = max = CONF_TLSV_NONE;
3836 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003837 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003838 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003839 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003840 if (min) {
3841 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003842 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3843 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3844 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3845 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003846 hole = 0;
3847 }
3848 max = i;
3849 }
3850 else {
3851 min = max = i;
3852 }
3853 }
3854 else {
3855 if (min)
3856 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003857 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003858 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003859 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3860 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003861 cfgerr += 1;
3862 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003863 /* save real min/max in bind_conf */
3864 conf_ssl_methods->min = min;
3865 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003866
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003867#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003868 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003869 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003870 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003871 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003872 else
William Lallemandd0712f32020-06-11 17:34:00 +02003873 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
3874 /* clear every version flags in case SSL_CTX_new()
3875 * returns an SSL_CTX with disabled versions */
3876 SSL_CTX_clear_options(ctx, methodVersions[i].option);
3877
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003878 if (flags & methodVersions[i].flag)
3879 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02003880
3881 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003882#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003883 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003884 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3885 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003886#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003887
3888 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3889 options |= SSL_OP_NO_TICKET;
3890 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3891 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003892
3893#ifdef SSL_OP_NO_RENEGOTIATION
3894 options |= SSL_OP_NO_RENEGOTIATION;
3895#endif
3896
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003897 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003898
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05003899#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003900 if (global_ssl.async)
3901 mode |= SSL_MODE_ASYNC;
3902#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003903 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003904 if (global_ssl.life_time)
3905 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003906
3907#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3908#ifdef OPENSSL_IS_BORINGSSL
3909 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3910 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05003911#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01003912 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003913 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003914 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3915 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003916#else
3917 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003918#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003919 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003920#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003921 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003922}
3923
William Lallemand4f45bb92017-10-30 20:08:51 +01003924
3925static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3926{
3927 if (first == block) {
3928 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3929 if (first->len > 0)
3930 sh_ssl_sess_tree_delete(sh_ssl_sess);
3931 }
3932}
3933
3934/* return first block from sh_ssl_sess */
3935static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3936{
3937 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3938
3939}
3940
3941/* store a session into the cache
3942 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3943 * data: asn1 encoded session
3944 * data_len: asn1 encoded session length
3945 * Returns 1 id session was stored (else 0)
3946 */
3947static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3948{
3949 struct shared_block *first;
3950 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3951
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003952 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003953 if (!first) {
3954 /* Could not retrieve enough free blocks to store that session */
3955 return 0;
3956 }
3957
3958 /* STORE the key in the first elem */
3959 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3960 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3961 first->len = sizeof(struct sh_ssl_sess_hdr);
3962
3963 /* it returns the already existing node
3964 or current node if none, never returns null */
3965 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
3966 if (oldsh_ssl_sess != sh_ssl_sess) {
3967 /* NOTE: Row couldn't be in use because we lock read & write function */
3968 /* release the reserved row */
3969 shctx_row_dec_hot(ssl_shctx, first);
3970 /* replace the previous session already in the tree */
3971 sh_ssl_sess = oldsh_ssl_sess;
3972 /* ignore the previous session data, only use the header */
3973 first = sh_ssl_sess_first_block(sh_ssl_sess);
3974 shctx_row_inc_hot(ssl_shctx, first);
3975 first->len = sizeof(struct sh_ssl_sess_hdr);
3976 }
3977
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003978 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01003979 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003980 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01003981 }
3982
3983 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003984
3985 return 1;
3986}
William Lallemanded0b5ad2017-10-30 19:36:36 +01003987
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003988/* SSL callback used when a new session is created while connecting to a server */
3989static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
3990{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02003991 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003992 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003993
Willy Tarreau07d94e42018-09-20 10:57:52 +02003994 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003995
William Lallemand3ce6eed2021-02-08 10:43:44 +01003996 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
3997 * one cache per thread, it only prevents to flush it from the CLI in
3998 * another thread */
3999
Olivier Houcharde6060c52017-11-16 17:42:52 +01004000 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4001 int len;
4002 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004003
Olivier Houcharde6060c52017-11-16 17:42:52 +01004004 len = i2d_SSL_SESSION(sess, NULL);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004005 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004006 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4007 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4008 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01004009 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4010 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004011 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4012 }
4013 if (s->ssl_ctx.reused_sess[tid].ptr) {
4014 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4015 &ptr);
4016 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004017 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004018 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004019 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004020 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004021 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004022 }
4023
4024 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004025}
4026
Olivier Houcharde6060c52017-11-16 17:42:52 +01004027
William Lallemanded0b5ad2017-10-30 19:36:36 +01004028/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004029int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004030{
4031 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4032 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4033 unsigned char *p;
4034 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004035 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004036 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004037
4038 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004039 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004040 * note: SSL_SESSION_set1_id is using
4041 * a memcpy so we need to use a different pointer
4042 * than sid_data or sid_ctx_data to avoid valgrind
4043 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004044 */
4045
4046 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004047
4048 /* copy value in an other buffer */
4049 memcpy(encid, sid_data, sid_length);
4050
4051 /* pad with 0 */
4052 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4053 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4054
4055 /* force length to zero to avoid ASN1 encoding */
4056 SSL_SESSION_set1_id(sess, encid, 0);
4057
4058 /* force length to zero to avoid ASN1 encoding */
4059 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004060
4061 /* check if buffer is large enough for the ASN1 encoded session */
4062 data_len = i2d_SSL_SESSION(sess, NULL);
4063 if (data_len > SHSESS_MAX_DATA_LEN)
4064 goto err;
4065
4066 p = encsess;
4067
4068 /* process ASN1 session encoding before the lock */
4069 i2d_SSL_SESSION(sess, &p);
4070
William Lallemanded0b5ad2017-10-30 19:36:36 +01004071
William Lallemanda3c77cf2017-10-30 23:44:40 +01004072 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004073 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004074 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004075 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004076err:
4077 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004078 SSL_SESSION_set1_id(sess, encid, sid_length);
4079 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004080
4081 return 0; /* do not increment session reference count */
4082}
4083
4084/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004085SSL_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 +01004086{
William Lallemand4f45bb92017-10-30 20:08:51 +01004087 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004088 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4089 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004090 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004091 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004092
4093 global.shctx_lookups++;
4094
4095 /* allow the session to be freed automatically by openssl */
4096 *do_copy = 0;
4097
4098 /* tree key is zeros padded sessionid */
4099 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4100 memcpy(tmpkey, key, key_len);
4101 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4102 key = tmpkey;
4103 }
4104
4105 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004106 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004107
4108 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004109 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4110 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004111 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004112 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004113 global.shctx_misses++;
4114 return NULL;
4115 }
4116
William Lallemand4f45bb92017-10-30 20:08:51 +01004117 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4118 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004119
William Lallemand4f45bb92017-10-30 20:08:51 +01004120 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 +01004121
William Lallemanda3c77cf2017-10-30 23:44:40 +01004122 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004123
4124 /* decode ASN1 session */
4125 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004126 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004127 /* Reset session id and session id contenxt */
4128 if (sess) {
4129 SSL_SESSION_set1_id(sess, key, key_len);
4130 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4131 }
4132
4133 return sess;
4134}
4135
William Lallemand4f45bb92017-10-30 20:08:51 +01004136
William Lallemanded0b5ad2017-10-30 19:36:36 +01004137/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004138void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004139{
William Lallemand4f45bb92017-10-30 20:08:51 +01004140 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004141 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4142 unsigned int sid_length;
4143 const unsigned char *sid_data;
4144 (void)ctx;
4145
4146 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4147 /* tree key is zeros padded sessionid */
4148 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4149 memcpy(tmpkey, sid_data, sid_length);
4150 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4151 sid_data = tmpkey;
4152 }
4153
William Lallemanda3c77cf2017-10-30 23:44:40 +01004154 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004155
4156 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004157 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4158 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004159 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004160 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004161 }
4162
4163 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004164 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004165}
4166
4167/* Set session cache mode to server and disable openssl internal cache.
4168 * Set shared cache callbacks on an ssl context.
4169 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004170void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004171{
4172 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4173
4174 if (!ssl_shctx) {
4175 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4176 return;
4177 }
4178
4179 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4180 SSL_SESS_CACHE_NO_INTERNAL |
4181 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4182
4183 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004184 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4185 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4186 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004187}
William Lallemand7d42ef52020-07-06 11:41:30 +02004188
4189/*
4190 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4191 *
4192 * The format is:
4193 * * <Label> <space> <ClientRandom> <space> <Secret>
4194 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4195 */
4196
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05004197#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004198void SSL_CTX_keylog(const SSL *ssl, const char *line)
4199{
4200 struct ssl_keylog *keylog;
4201 char *lastarg = NULL;
4202 char *dst = NULL;
4203
4204 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4205 if (!keylog)
4206 return;
4207
4208 lastarg = strrchr(line, ' ');
4209 if (lastarg == NULL || ++lastarg == NULL)
4210 return;
4211
4212 dst = pool_alloc(pool_head_ssl_keylog_str);
4213 if (!dst)
4214 return;
4215
4216 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4217 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4218
4219 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4220 if (keylog->client_random)
4221 goto error;
4222 keylog->client_random = dst;
4223
4224 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4225 if (keylog->client_early_traffic_secret)
4226 goto error;
4227 keylog->client_early_traffic_secret = dst;
4228
4229 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4230 if(keylog->client_handshake_traffic_secret)
4231 goto error;
4232 keylog->client_handshake_traffic_secret = dst;
4233
4234 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4235 if (keylog->server_handshake_traffic_secret)
4236 goto error;
4237 keylog->server_handshake_traffic_secret = dst;
4238
4239 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4240 if (keylog->client_traffic_secret_0)
4241 goto error;
4242 keylog->client_traffic_secret_0 = dst;
4243
4244 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4245 if (keylog->server_traffic_secret_0)
4246 goto error;
4247 keylog->server_traffic_secret_0 = dst;
4248
4249 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4250 if (keylog->early_exporter_secret)
4251 goto error;
4252 keylog->early_exporter_secret = dst;
4253
4254 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4255 if (keylog->exporter_secret)
4256 goto error;
4257 keylog->exporter_secret = dst;
4258 } else {
4259 goto error;
4260 }
4261
4262 return;
4263
4264error:
4265 pool_free(pool_head_ssl_keylog_str, dst);
4266
4267 return;
4268}
4269#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004270
William Lallemand8b453912019-11-21 15:48:10 +01004271/*
4272 * This function applies the SSL configuration on a SSL_CTX
4273 * It returns an error code and fills the <err> buffer
4274 */
4275int 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 +01004276{
4277 struct proxy *curproxy = bind_conf->frontend;
4278 int cfgerr = 0;
4279 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004280 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004281 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004282#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004283 const char *conf_ciphersuites;
4284#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004285 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004286
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004287 if (ssl_conf) {
4288 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4289 int i, min, max;
4290 int flags = MC_SSL_O_ALL;
4291
4292 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004293 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4294 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004295 if (min)
4296 flags |= (methodVersions[min].flag - 1);
4297 if (max)
4298 flags |= ~((methodVersions[max].flag << 1) - 1);
4299 min = max = CONF_TLSV_NONE;
4300 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4301 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4302 if (min)
4303 max = i;
4304 else
4305 min = max = i;
4306 }
4307 /* save real min/max */
4308 conf_ssl_methods->min = min;
4309 conf_ssl_methods->max = max;
4310 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004311 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4312 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004313 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004314 }
4315 }
4316
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004317 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004318 case SSL_SOCK_VERIFY_NONE:
4319 verify = SSL_VERIFY_NONE;
4320 break;
4321 case SSL_SOCK_VERIFY_OPTIONAL:
4322 verify = SSL_VERIFY_PEER;
4323 break;
4324 case SSL_SOCK_VERIFY_REQUIRED:
4325 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4326 break;
4327 }
4328 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4329 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004330 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 +01004331 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 +01004332 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 +01004333 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004334 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004335 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004336 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004337 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004338 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004339 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004340 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4341 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4342 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4343 cfgerr |= ERR_ALERT | ERR_FATAL;
4344 }
4345 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004346 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004347 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 +02004348 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004349 }
Emeric Brun850efd52014-01-29 12:24:34 +01004350 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004351 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4352 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004353 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004354 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004355#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004356 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004357 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4358
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004359 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004360 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4361 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004362 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004363 }
Emeric Brun561e5742012-10-02 15:20:55 +02004364 else {
4365 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4366 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004367 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004368#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004369 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004370 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004371#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004372 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004373 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004374 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4375 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004376 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004377 }
4378 }
4379#endif
4380
William Lallemand4f45bb92017-10-30 20:08:51 +01004381 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004382 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4383 if (conf_ciphers &&
4384 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004385 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4386 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004387 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004388 }
4389
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004390#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004391 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4392 if (conf_ciphersuites &&
4393 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004394 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4395 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004396 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004397 }
4398#endif
4399
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004400#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004401 /* If tune.ssl.default-dh-param has not been set,
4402 neither has ssl-default-dh-file and no static DH
4403 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004404 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004405 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004406 (ssl_dh_ptr_index == -1 ||
4407 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004408 /* default to dh-param 2048 */
4409 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004410 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004411
Willy Tarreauef934602016-12-22 23:12:01 +01004412 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004413 if (local_dh_1024 == NULL) {
4414 local_dh_1024 = ssl_get_dh_1024();
4415 }
Willy Tarreauef934602016-12-22 23:12:01 +01004416 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004417 if (local_dh_2048 == NULL) {
4418 local_dh_2048 = ssl_get_dh_2048();
4419 }
Willy Tarreauef934602016-12-22 23:12:01 +01004420 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004421 if (local_dh_4096 == NULL) {
4422 local_dh_4096 = ssl_get_dh_4096();
4423 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004424 }
4425 }
4426 }
4427#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004428
Emeric Brunfc0421f2012-09-07 17:30:07 +02004429 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004430#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004431 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004432#endif
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05004433#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004434 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4435#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004436
Bernard Spil13c53f82018-02-15 13:34:58 +01004437#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004438 ssl_conf_cur = NULL;
4439 if (ssl_conf && ssl_conf->npn_str)
4440 ssl_conf_cur = ssl_conf;
4441 else if (bind_conf->ssl_conf.npn_str)
4442 ssl_conf_cur = &bind_conf->ssl_conf;
4443 if (ssl_conf_cur)
4444 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004445#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004446#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004447 ssl_conf_cur = NULL;
4448 if (ssl_conf && ssl_conf->alpn_str)
4449 ssl_conf_cur = ssl_conf;
4450 else if (bind_conf->ssl_conf.alpn_str)
4451 ssl_conf_cur = &bind_conf->ssl_conf;
4452 if (ssl_conf_cur)
4453 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004454#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004455#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004456 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4457 if (conf_curves) {
4458 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004459 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4460 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004461 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004462 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004463 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004464 }
4465#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004466#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004467 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004468 int i;
4469 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004470#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004471 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004472 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4473 NULL);
4474
4475 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004476 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004477 return cfgerr;
4478 }
4479#else
4480 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4481 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4482 ECDHE_DEFAULT_CURVE);
4483#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004484
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004485 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004486 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004487 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4488 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004489 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004490 }
4491 else {
4492 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4493 EC_KEY_free(ecdh);
4494 }
4495 }
4496#endif
4497
Emeric Brunfc0421f2012-09-07 17:30:07 +02004498 return cfgerr;
4499}
4500
Evan Broderbe554312013-06-27 00:05:25 -07004501static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4502{
4503 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4504 size_t prefixlen, suffixlen;
4505
4506 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004507 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004508 return 1;
4509
Evan Broderbe554312013-06-27 00:05:25 -07004510 /* The rest of this logic is based on RFC 6125, section 6.4.3
4511 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4512
Emeric Bruna848dae2013-10-08 11:27:28 +02004513 pattern_wildcard = NULL;
4514 pattern_left_label_end = pattern;
4515 while (*pattern_left_label_end != '.') {
4516 switch (*pattern_left_label_end) {
4517 case 0:
4518 /* End of label not found */
4519 return 0;
4520 case '*':
4521 /* If there is more than one wildcards */
4522 if (pattern_wildcard)
4523 return 0;
4524 pattern_wildcard = pattern_left_label_end;
4525 break;
4526 }
4527 pattern_left_label_end++;
4528 }
4529
4530 /* If it's not trivial and there is no wildcard, it can't
4531 * match */
4532 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004533 return 0;
4534
4535 /* Make sure all labels match except the leftmost */
4536 hostname_left_label_end = strchr(hostname, '.');
4537 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004538 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004539 return 0;
4540
4541 /* Make sure the leftmost label of the hostname is long enough
4542 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004543 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004544 return 0;
4545
4546 /* Finally compare the string on either side of the
4547 * wildcard */
4548 prefixlen = pattern_wildcard - pattern;
4549 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004550 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4551 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004552 return 0;
4553
4554 return 1;
4555}
4556
4557static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4558{
4559 SSL *ssl;
4560 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004561 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004562 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004563 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004564
4565 int depth;
4566 X509 *cert;
4567 STACK_OF(GENERAL_NAME) *alt_names;
4568 int i;
4569 X509_NAME *cert_subject;
4570 char *str;
4571
4572 if (ok == 0)
4573 return ok;
4574
4575 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004576 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004577 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004578
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004579 /* We're checking if the provided hostnames match the desired one. The
4580 * desired hostname comes from the SNI we presented if any, or if not
4581 * provided then it may have been explicitly stated using a "verifyhost"
4582 * directive. If neither is set, we don't care about the name so the
4583 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004584 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004585 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004586 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004587 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004588 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004589 if (!servername)
4590 return ok;
4591 }
Evan Broderbe554312013-06-27 00:05:25 -07004592
4593 /* We only need to verify the CN on the actual server cert,
4594 * not the indirect CAs */
4595 depth = X509_STORE_CTX_get_error_depth(ctx);
4596 if (depth != 0)
4597 return ok;
4598
4599 /* At this point, the cert is *not* OK unless we can find a
4600 * hostname match */
4601 ok = 0;
4602
4603 cert = X509_STORE_CTX_get_current_cert(ctx);
4604 /* It seems like this might happen if verify peer isn't set */
4605 if (!cert)
4606 return ok;
4607
4608 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4609 if (alt_names) {
4610 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4611 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4612 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004613#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004614 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4615#else
Evan Broderbe554312013-06-27 00:05:25 -07004616 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004617#endif
Evan Broderbe554312013-06-27 00:05:25 -07004618 ok = ssl_sock_srv_hostcheck(str, servername);
4619 OPENSSL_free(str);
4620 }
4621 }
4622 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004623 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004624 }
4625
4626 cert_subject = X509_get_subject_name(cert);
4627 i = -1;
4628 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4629 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004630 ASN1_STRING *value;
4631 value = X509_NAME_ENTRY_get_data(entry);
4632 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004633 ok = ssl_sock_srv_hostcheck(str, servername);
4634 OPENSSL_free(str);
4635 }
4636 }
4637
Willy Tarreau71d058c2017-07-26 20:09:56 +02004638 /* report the mismatch and indicate if SNI was used or not */
4639 if (!ok && !conn->err_code)
4640 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004641 return ok;
4642}
4643
Emeric Brun94324a42012-10-11 14:00:19 +02004644/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004645int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004646{
Willy Tarreau03209342016-12-22 17:08:28 +01004647 struct proxy *curproxy = srv->proxy;
Emeric Brun94324a42012-10-11 14:00:19 +02004648 int cfgerr = 0;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004649 SSL_CTX *ctx = srv->ssl_ctx.ctx;
Emeric Brun94324a42012-10-11 14:00:19 +02004650
Thierry Fournier383085f2013-01-24 14:15:43 +01004651 /* Make sure openssl opens /dev/urandom before the chroot */
4652 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004653 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004654 cfgerr++;
4655 }
4656
Willy Tarreaufce03112015-01-15 21:32:40 +01004657 /* Automatic memory computations need to know we use SSL there */
4658 global.ssl_used_backend = 1;
4659
4660 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004661 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004662 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004663 ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n",
4664 curproxy->id, srv->id,
4665 srv->conf.file, srv->conf.line);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004666 cfgerr++;
4667 return cfgerr;
4668 }
4669 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004670 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004671 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004672
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004673 /* The context will be uninitialized if there wasn't any "cert" option
4674 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004675 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004676 ctx = SSL_CTX_new(SSLv23_client_method());
4677 if (!ctx) {
4678 ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n",
4679 proxy_type_str(curproxy), curproxy->id,
4680 srv->id);
4681 cfgerr++;
4682 return cfgerr;
4683 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004684
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004685 srv->ssl_ctx.ctx = ctx;
4686 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004687
4688 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, srv->ssl_ctx.ctx);
4689
4690 return cfgerr;
4691}
4692
4693
4694/* Initialize an SSL context that will be used on the backend side.
4695 * Returns an error count.
4696 */
4697int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
4698{
4699 struct proxy *curproxy = srv->proxy;
4700 int cfgerr = 0;
4701 long options =
4702 SSL_OP_ALL | /* all known workarounds for bugs */
4703 SSL_OP_NO_SSLv2 |
4704 SSL_OP_NO_COMPRESSION;
4705 long mode =
4706 SSL_MODE_ENABLE_PARTIAL_WRITE |
4707 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4708 SSL_MODE_RELEASE_BUFFERS |
4709 SSL_MODE_SMALL_BUFFERS;
4710 int verify = SSL_VERIFY_NONE;
4711 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4712 int i, min, max, hole;
4713 int flags = MC_SSL_O_ALL;
4714
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004715 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004716 ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. "
4717 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4718 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004719 else
4720 flags = conf_ssl_methods->flags;
4721
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004722 /* Real min and max should be determinate with configuration and openssl's capabilities */
4723 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004724 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004725 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004726 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004727
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004728 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004729 min = max = CONF_TLSV_NONE;
4730 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004731 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004732 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004733 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004734 if (min) {
4735 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004736 ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. "
4737 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4738 proxy_type_str(curproxy), curproxy->id, srv->id,
4739 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004740 hole = 0;
4741 }
4742 max = i;
4743 }
4744 else {
4745 min = max = i;
4746 }
4747 }
4748 else {
4749 if (min)
4750 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004751 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004752 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004753 ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
4754 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004755 cfgerr += 1;
4756 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004757
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004758#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004759 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004760 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004761 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004762 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004763 else
4764 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4765 if (flags & methodVersions[i].flag)
4766 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004767#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004768 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004769 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4770 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004771#endif
4772
4773 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4774 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004775 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004776
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004777#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004778 if (global_ssl.async)
4779 mode |= SSL_MODE_ASYNC;
4780#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004781 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004782
Emeric Brun850efd52014-01-29 12:24:34 +01004783 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4784 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004785 switch (srv->ssl_ctx.verify) {
4786 case SSL_SOCK_VERIFY_NONE:
4787 verify = SSL_VERIFY_NONE;
4788 break;
4789 case SSL_SOCK_VERIFY_REQUIRED:
4790 verify = SSL_VERIFY_PEER;
4791 break;
4792 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004793 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004794 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004795 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004796 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004797 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004798 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004799 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to set CA file '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004800 curproxy->id, srv->id,
4801 srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004802 cfgerr++;
4803 }
4804 }
Emeric Brun850efd52014-01-29 12:24:34 +01004805 else {
4806 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004807 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",
4808 curproxy->id, srv->id,
4809 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004810 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01004811 ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n",
4812 curproxy->id, srv->id,
4813 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004814 cfgerr++;
4815 }
Emeric Brunef42d922012-10-11 16:11:36 +02004816#ifdef X509_V_FLAG_CRL_CHECK
4817 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004818 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02004819
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004820 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004821 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n",
4822 curproxy->id, srv->id,
4823 srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004824 cfgerr++;
4825 }
4826 else {
4827 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4828 }
4829 }
4830#endif
4831 }
4832
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004833 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
4834 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004835 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004836 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004837 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n",
4838 curproxy->id, srv->id,
4839 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004840 cfgerr++;
4841 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004842
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004843#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004844 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004845 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004846 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n",
4847 curproxy->id, srv->id,
4848 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites);
4849 cfgerr++;
4850 }
4851#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004852#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4853 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004854 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01004855#endif
4856#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4857 if (srv->ssl_ctx.alpn_str)
4858 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4859#endif
4860
Emeric Brun94324a42012-10-11 14:00:19 +02004861
4862 return cfgerr;
4863}
4864
Frédéric Lécailleec216522020-11-23 14:33:30 +01004865/*
4866 * Create an initial CTX used to start the SSL connections.
4867 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
4868 * Returns 0 if succeeded, or something >0 if not.
4869 */
4870#ifdef USE_QUIC
4871static int ssl_initial_ctx(struct bind_conf *bind_conf)
4872{
4873 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
4874 return ssl_quic_initial_ctx(bind_conf);
4875 else
4876 return ssl_sock_initial_ctx(bind_conf);
4877}
4878#else
4879static int ssl_initial_ctx(struct bind_conf *bind_conf)
4880{
4881 return ssl_sock_initial_ctx(bind_conf);
4882}
4883#endif
4884
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004885/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004886 * be NULL, in which case nothing is done. Returns the number of errors
4887 * encountered.
4888 */
Willy Tarreau03209342016-12-22 17:08:28 +01004889int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004890{
4891 struct ebmb_node *node;
4892 struct sni_ctx *sni;
4893 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01004894 int errcode = 0;
4895 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004896
Willy Tarreaufce03112015-01-15 21:32:40 +01004897 /* Automatic memory computations need to know we use SSL there */
4898 global.ssl_used_frontend = 1;
4899
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004900 /* Make sure openssl opens /dev/urandom before the chroot */
4901 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004902 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004903 err++;
4904 }
4905 /* Create initial_ctx used to start the ssl connection before do switchctx */
4906 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01004907 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004908 /* It should not be necessary to call this function, but it's
4909 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01004910 to initial_ctx in ssl_initial_ctx. */
William Lallemand8b453912019-11-21 15:48:10 +01004911 errcode |= ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx, &errmsg);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004912 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004913 if (bind_conf->default_ctx)
William Lallemand8b453912019-11-21 15:48:10 +01004914 errcode |= ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, &errmsg);
Emeric Brun0bed9942014-10-30 19:25:24 +01004915
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004916 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004917 while (node) {
4918 sni = ebmb_entry(node, struct sni_ctx, name);
Emeric Brun0bed9942014-10-30 19:25:24 +01004919 if (!sni->order && sni->ctx != bind_conf->default_ctx)
4920 /* only initialize the CTX on its first occurrence and
4921 if it is not the default_ctx */
William Lallemand8b453912019-11-21 15:48:10 +01004922 errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004923 node = ebmb_next(node);
4924 }
4925
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004926 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004927 while (node) {
4928 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01004929 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004930 /* only initialize the CTX on its first occurrence and
4931 if it is not the default_ctx */
William Lallemand8b453912019-11-21 15:48:10 +01004932 errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg);
4933 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004934 node = ebmb_next(node);
4935 }
William Lallemand8b453912019-11-21 15:48:10 +01004936
4937 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004938 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004939 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004940 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004941 err++;
4942 }
4943
4944 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004945 return err;
4946}
4947
Willy Tarreau55d37912016-12-21 23:38:39 +01004948/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4949 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4950 * alerts are directly emitted since the rest of the stack does it below.
4951 */
4952int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4953{
4954 struct proxy *px = bind_conf->frontend;
4955 int alloc_ctx;
4956 int err;
4957
4958 if (!bind_conf->is_ssl) {
4959 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004960 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4961 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004962 }
4963 return 0;
4964 }
4965 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004966 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004967 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4968 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004969 }
4970 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004971 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4972 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004973 return -1;
4974 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004975 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004976 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004977 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004978 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004979 sizeof(*sh_ssl_sess_tree),
4980 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004981 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004982 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4983 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");
4984 else
4985 ha_alert("Unable to allocate SSL session cache.\n");
4986 return -1;
4987 }
4988 /* free block callback */
4989 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4990 /* init the root tree within the extra space */
4991 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4992 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004993 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004994 err = 0;
4995 /* initialize all certificate contexts */
4996 err += ssl_sock_prepare_all_ctx(bind_conf);
4997
4998 /* initialize CA variables if the certificates generation is enabled */
4999 err += ssl_sock_load_ca(bind_conf);
5000
5001 return -err;
5002}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005003
5004/* release ssl context allocated for servers. */
5005void ssl_sock_free_srv_ctx(struct server *srv)
5006{
Olivier Houchardc7566002018-11-20 23:33:50 +01005007#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
5008 if (srv->ssl_ctx.alpn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005009 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005010#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005011#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01005012 if (srv->ssl_ctx.npn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005013 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005014#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005015 if (srv->ssl_ctx.reused_sess) {
5016 int i;
5017
5018 for (i = 0; i < global.nbthread; i++)
Willy Tarreaue709e822021-02-26 21:06:32 +01005019 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
5020 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005021 }
5022
Willy Tarreaue709e822021-02-26 21:06:32 +01005023 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005024 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005025 srv->ssl_ctx.ctx = NULL;
5026 }
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005027}
5028
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005029/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005030 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5031 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005032void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005033{
5034 struct ebmb_node *node, *back;
5035 struct sni_ctx *sni;
5036
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005037 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005038 while (node) {
5039 sni = ebmb_entry(node, struct sni_ctx, name);
5040 back = ebmb_next(node);
5041 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005042 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005043 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005044 free(sni);
5045 node = back;
5046 }
5047
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005048 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005049 while (node) {
5050 sni = ebmb_entry(node, struct sni_ctx, name);
5051 back = ebmb_next(node);
5052 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005053 SSL_CTX_free(sni->ctx);
Willy Tarreau2b718102021-04-21 07:32:39 +02005054 LIST_DELETE(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005055 free(sni);
5056 node = back;
5057 }
William Lallemandb2408692020-06-24 09:54:29 +02005058
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005059 SSL_CTX_free(bind_conf->initial_ctx);
5060 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005061 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005062 bind_conf->default_ctx = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005063 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005064}
William Lallemandb2408692020-06-24 09:54:29 +02005065
5066
5067void ssl_sock_deinit()
5068{
5069 crtlist_deinit(); /* must be free'd before the ckchs */
5070 ckch_deinit();
5071}
5072REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005073
Willy Tarreau795cdab2016-12-22 17:30:54 +01005074/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5075void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5076{
5077 ssl_sock_free_ca(bind_conf);
5078 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005079 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005080 free(bind_conf->ca_sign_file);
5081 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005082 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005083 free(bind_conf->keys_ref->filename);
5084 free(bind_conf->keys_ref->tlskeys);
Willy Tarreau2b718102021-04-21 07:32:39 +02005085 LIST_DELETE(&bind_conf->keys_ref->list);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005086 free(bind_conf->keys_ref);
5087 }
5088 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005089 bind_conf->ca_sign_pass = NULL;
5090 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005091}
5092
Christopher Faulet31af49d2015-06-09 17:29:50 +02005093/* Load CA cert file and private key used to generate certificates */
5094int
Willy Tarreau03209342016-12-22 17:08:28 +01005095ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005096{
Willy Tarreau03209342016-12-22 17:08:28 +01005097 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005098 struct cert_key_and_chain *ckch = NULL;
5099 int ret = 0;
5100 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005101
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005102 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005103 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005104
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005105#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005106 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005107 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005108 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005109 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005110 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005111#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005112
Christopher Faulet31af49d2015-06-09 17:29:50 +02005113 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005114 ha_alert("Proxy '%s': cannot enable certificate generation, "
5115 "no CA certificate File configured at [%s:%d].\n",
5116 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005117 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005118 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005119
Shimi Gersner5846c492020-08-23 13:58:12 +03005120 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005121 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005122 if (!ckch) {
5123 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5124 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5125 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005126 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005127
5128 /* Try to parse file */
5129 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5130 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5131 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005132 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005133 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005134 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005135
5136 /* Fail if missing cert or pkey */
5137 if ((!ckch->cert) || (!ckch->key)) {
5138 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5139 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5140 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005141 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005142
Shimi Gersner5846c492020-08-23 13:58:12 +03005143 /* Final assignment to bind */
5144 bind_conf->ca_sign_ckch = ckch;
5145 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005146
Shimi Gersner5846c492020-08-23 13:58:12 +03005147 failed:
5148 if (ckch) {
5149 ssl_sock_free_cert_key_and_chain_contents(ckch);
5150 free(ckch);
5151 }
5152
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005153 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005154 ret++;
5155 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005156}
5157
5158/* Release CA cert and private key used to generate certificated */
5159void
5160ssl_sock_free_ca(struct bind_conf *bind_conf)
5161{
Shimi Gersner5846c492020-08-23 13:58:12 +03005162 if (bind_conf->ca_sign_ckch) {
5163 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005164 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005165 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005166}
5167
Emeric Brun46591952012-05-18 15:47:34 +02005168/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005169 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5170 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5171 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5172 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005173 * This is the responsibility of the caller to check the validity of all the pointers passed
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005174 * as parameters to this function.
5175 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5176 * CO_ER_SSL_NO_MEM.
5177 */
5178int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5179 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5180{
5181 int retry = 1;
5182
5183 retry:
5184 /* Alloc a new SSL session. */
5185 *ssl = SSL_new(ssl_ctx);
5186 if (!*ssl) {
5187 if (!retry--)
5188 goto err;
5189
5190 pool_gc(NULL);
5191 goto retry;
5192 }
5193
5194 *bio = BIO_new(bio_meth);
5195 if (!*bio) {
5196 SSL_free(*ssl);
5197 *ssl = NULL;
5198 if (!retry--)
5199 goto err;
5200
5201 pool_gc(NULL);
5202 goto retry;
5203 }
5204
5205 BIO_set_data(*bio, ctx);
5206 SSL_set_bio(*ssl, *bio, *bio);
5207
5208 /* set connection pointer. */
5209 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5210 SSL_free(*ssl);
5211 *ssl = NULL;
5212 if (!retry--)
5213 goto err;
5214
5215 pool_gc(NULL);
5216 goto retry;
5217 }
5218
5219 return 0;
5220
5221 err:
5222 conn->err_code = CO_ER_SSL_NO_MEM;
5223 return -1;
5224}
5225
Olivier Houchardbc5ce922021-03-05 23:47:00 +01005226/* This function is called when all the XPRT have been initialized. We can
5227 * now attempt to start the SSL handshake.
5228 */
5229static int ssl_sock_start(struct connection *conn, void *xprt_ctx)
5230{
5231 struct ssl_sock_ctx *ctx = xprt_ctx;
5232
5233 if (ctx->xprt->start) {
5234 int ret;
5235
5236 ret = ctx->xprt->start(conn, ctx->xprt_ctx);
5237 if (ret < 0)
5238 return ret;
5239 }
5240 tasklet_wakeup(ctx->wait_event.tasklet);
5241
5242 return 0;
5243}
5244
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005245/*
Emeric Brun46591952012-05-18 15:47:34 +02005246 * This function is called if SSL * context is not yet allocated. The function
5247 * is designed to be called before any other data-layer operation and sets the
5248 * handshake flag on the connection. It is safe to call it multiple times.
5249 * It returns 0 on success and -1 in error case.
5250 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005251static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005252{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005253 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005254 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005255 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005256 return 0;
5257
Olivier Houchard66ab4982019-02-26 18:37:15 +01005258 ctx = pool_alloc(ssl_sock_ctx_pool);
5259 if (!ctx) {
5260 conn->err_code = CO_ER_SSL_NO_MEM;
5261 return -1;
5262 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005263 ctx->wait_event.tasklet = tasklet_new();
5264 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005265 conn->err_code = CO_ER_SSL_NO_MEM;
5266 pool_free(ssl_sock_ctx_pool, ctx);
5267 return -1;
5268 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005269 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5270 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005271 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005272 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005273 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005274 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005275 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005276 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005277 ctx->xprt_st = 0;
5278 ctx->xprt_ctx = NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005279
5280 /* Only work with sockets for now, this should be adapted when we'll
5281 * add QUIC support.
5282 */
5283 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005284 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005285 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5286 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005287 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005288
Willy Tarreau20879a02012-12-03 16:32:10 +01005289 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5290 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005291 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005292 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005293
Emeric Brun46591952012-05-18 15:47:34 +02005294 /* If it is in client mode initiate SSL session
5295 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005296 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005297 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5298 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005299 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005300
Olivier Houchard66ab4982019-02-26 18:37:15 +01005301 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005302 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005303 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5304 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5305 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 +01005306 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005307 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005308 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005309 } else if (sess) {
5310 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005311 }
5312 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005313 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005314
Emeric Brun46591952012-05-18 15:47:34 +02005315 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005316 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005317
Willy Tarreau4781b152021-04-06 13:53:36 +02005318 _HA_ATOMIC_INC(&sslconns);
5319 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005320 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005321 return 0;
5322 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005323 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005324 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005325
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005326 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5327 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005328 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005329
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005330#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005331 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005332 b_alloc(&ctx->early_buf);
5333 SSL_set_max_early_data(ctx->ssl,
5334 /* Only allow early data if we managed to allocate
5335 * a buffer.
5336 */
5337 (!b_is_null(&ctx->early_buf)) ?
5338 global.tune.bufsize - global.tune.maxrewrite : 0);
5339 }
5340#endif
5341
Olivier Houchard66ab4982019-02-26 18:37:15 +01005342 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005343
Emeric Brun46591952012-05-18 15:47:34 +02005344 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005345 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005346#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005347 if (bc->ssl_conf.early_data)
5348 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005349#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005350
Willy Tarreau4781b152021-04-06 13:53:36 +02005351 _HA_ATOMIC_INC(&sslconns);
5352 _HA_ATOMIC_INC(&totalsslconns);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005353 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005354 return 0;
5355 }
5356 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005357 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005358err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005359 if (ctx && ctx->wait_event.tasklet)
5360 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005361 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005362 return -1;
5363}
5364
5365
5366/* This is the callback which is used when an SSL handshake is pending. It
5367 * updates the FD status if it wants some polling before being called again.
5368 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5369 * otherwise it returns non-zero and removes itself from the connection's
5370 * flags (the bit is provided in <flag> by the caller).
5371 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005372static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005373{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005374 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005375 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005376 struct ssl_counters *counters = NULL;
5377 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005378 struct listener *li;
5379 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005380 socklen_t lskerr;
5381 int skerr;
5382
Emeric Brun46591952012-05-18 15:47:34 +02005383
Willy Tarreau3c728722014-01-23 13:50:42 +01005384 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005385 return 0;
5386
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005387 /* get counters */
5388 switch (obj_type(conn->target)) {
5389 case OBJ_TYPE_LISTENER:
5390 li = objt_listener(conn->target);
5391 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5392 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5393 &ssl_stats_module);
5394 break;
5395
5396 case OBJ_TYPE_SERVER:
5397 srv = objt_server(conn->target);
5398 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5399 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5400 &ssl_stats_module);
5401 break;
5402
5403 default:
5404 break;
5405 }
5406
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005407 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005408 goto out_error;
5409
Willy Tarreau06300382021-02-02 15:42:25 +01005410 /* don't start calculating a handshake on a dead connection */
5411 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5412 goto out_error;
5413
5414 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5415 * status from the lower layers, so let's check the FD directly. Ideally
5416 * the xprt layers should provide some status indicating their knowledge
5417 * of shutdowns or error.
5418 */
5419 skerr = 0;
5420 lskerr = sizeof(skerr);
5421 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5422 skerr != 0)
5423 goto out_error;
5424
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005425#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005426 /*
5427 * Check if we have early data. If we do, we have to read them
5428 * before SSL_do_handshake() is called, And there's no way to
5429 * detect early data, except to try to read them
5430 */
5431 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005432 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005433
Olivier Houchard54907bb2019-12-19 15:02:39 +01005434 while (1) {
5435 ret = SSL_read_early_data(ctx->ssl,
5436 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5437 &read_data);
5438 if (ret == SSL_READ_EARLY_DATA_ERROR)
5439 goto check_error;
5440 if (read_data > 0) {
5441 conn->flags |= CO_FL_EARLY_DATA;
5442 b_add(&ctx->early_buf, read_data);
5443 }
5444 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5445 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5446 if (!b_data(&ctx->early_buf))
5447 b_free(&ctx->early_buf);
5448 break;
5449 }
5450 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005451 }
5452#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005453 /* If we use SSL_do_handshake to process a reneg initiated by
5454 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5455 * Usually SSL_write and SSL_read are used and process implicitly
5456 * the reneg handshake.
5457 * Here we use SSL_peek as a workaround for reneg.
5458 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005459 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005460 char c;
5461
Olivier Houchard66ab4982019-02-26 18:37:15 +01005462 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005463 if (ret <= 0) {
5464 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005465 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005466
Emeric Brun674b7432012-11-08 19:21:55 +01005467 if (ret == SSL_ERROR_WANT_WRITE) {
5468 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005469 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005470 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005471 return 0;
5472 }
5473 else if (ret == SSL_ERROR_WANT_READ) {
5474 /* handshake may have been completed but we have
5475 * no more data to read.
5476 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005477 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005478 ret = 1;
5479 goto reneg_ok;
5480 }
5481 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005482 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005483 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005484 return 0;
5485 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005486#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005487 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005488 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005489 return 0;
5490 }
5491#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005492 else if (ret == SSL_ERROR_SYSCALL) {
5493 /* if errno is null, then connection was successfully established */
5494 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5495 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005496 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005497#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5498 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005499 conn->err_code = CO_ER_SSL_HANDSHAKE;
5500#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005501 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005502#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005503 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005504 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005505 empty_handshake = state == TLS_ST_BEFORE;
5506#else
Lukas Tribus49799162019-07-08 14:29:15 +02005507 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5508 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005509#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005510 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005511 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005512 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005513 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5514 else
5515 conn->err_code = CO_ER_SSL_EMPTY;
5516 }
5517 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005518 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005519 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5520 else
5521 conn->err_code = CO_ER_SSL_ABORT;
5522 }
5523 }
5524 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005525 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005526 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005527 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005528 conn->err_code = CO_ER_SSL_HANDSHAKE;
5529 }
Lukas Tribus49799162019-07-08 14:29:15 +02005530#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005531 }
Emeric Brun674b7432012-11-08 19:21:55 +01005532 goto out_error;
5533 }
5534 else {
5535 /* Fail on all other handshake errors */
5536 /* Note: OpenSSL may leave unread bytes in the socket's
5537 * buffer, causing an RST to be emitted upon close() on
5538 * TCP sockets. We first try to drain possibly pending
5539 * data to avoid this as much as possible.
5540 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005541 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005542 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005543 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005544 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005545 goto out_error;
5546 }
5547 }
5548 /* read some data: consider handshake completed */
5549 goto reneg_ok;
5550 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005551 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005552check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005553 if (ret != 1) {
5554 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005555 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005556
5557 if (ret == SSL_ERROR_WANT_WRITE) {
5558 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005559 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005560 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005561 return 0;
5562 }
5563 else if (ret == SSL_ERROR_WANT_READ) {
5564 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005565 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005566 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5567 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005568 return 0;
5569 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005570#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005571 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005572 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005573 return 0;
5574 }
5575#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005576 else if (ret == SSL_ERROR_SYSCALL) {
5577 /* if errno is null, then connection was successfully established */
5578 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5579 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005580 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005581#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5582 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005583 conn->err_code = CO_ER_SSL_HANDSHAKE;
5584#else
5585 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005586#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005587 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005588 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005589 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005590#else
Lukas Tribus49799162019-07-08 14:29:15 +02005591 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5592 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005593#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005594 if (empty_handshake) {
5595 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005596 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005597 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5598 else
5599 conn->err_code = CO_ER_SSL_EMPTY;
5600 }
5601 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005602 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005603 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5604 else
5605 conn->err_code = CO_ER_SSL_ABORT;
5606 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005607 }
5608 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005609 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005610 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5611 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005612 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005613 }
Lukas Tribus49799162019-07-08 14:29:15 +02005614#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005615 }
Willy Tarreau89230192012-09-28 20:22:13 +02005616 goto out_error;
5617 }
Emeric Brun46591952012-05-18 15:47:34 +02005618 else {
5619 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005620 /* Note: OpenSSL may leave unread bytes in the socket's
5621 * buffer, causing an RST to be emitted upon close() on
5622 * TCP sockets. We first try to drain possibly pending
5623 * data to avoid this as much as possible.
5624 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005625 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005626 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005627 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005628 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005629 goto out_error;
5630 }
5631 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005632#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005633 else {
5634 /*
5635 * If the server refused the early data, we have to send a
5636 * 425 to the client, as we no longer have the data to sent
5637 * them again.
5638 */
5639 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005640 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005641 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5642 goto out_error;
5643 }
5644 }
5645 }
5646#endif
5647
Emeric Brun46591952012-05-18 15:47:34 +02005648
Emeric Brun674b7432012-11-08 19:21:55 +01005649reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005650
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005651#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005652 /* ASYNC engine API doesn't support moving read/write
5653 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005654 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005655 */
5656 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005657 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005658#endif
Emeric Brun46591952012-05-18 15:47:34 +02005659 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005660 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005661 if (objt_server(conn->target)) {
5662 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5663 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5664 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005665 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005666 else {
5667 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5668 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5669 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5670 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005671
Willy Tarreau42995282020-11-06 13:19:18 +01005672 if (counters) {
5673 ++counters->sess;
5674 ++counters_px->sess;
5675 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005676 }
Willy Tarreau42995282020-11-06 13:19:18 +01005677 else if (counters) {
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005678 ++counters->reused_sess;
5679 ++counters_px->reused_sess;
Emeric Brun46591952012-05-18 15:47:34 +02005680 }
5681
5682 /* The connection is now established at both layers, it's time to leave */
5683 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5684 return 1;
5685
5686 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005687 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005688 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005689 ERR_clear_error();
5690
Emeric Brun9fa89732012-10-04 17:09:56 +02005691 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005692 if (objt_server(conn->target)) {
5693 struct server *s = __objt_server(conn->target);
5694 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5695 * one cache per thread, it only prevents to flush it from the CLI in
5696 * another thread */
5697
5698 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005699 if (s->ssl_ctx.reused_sess[tid].ptr)
5700 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005701 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005702 }
5703
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005704 if (counters) {
5705 ++counters->failed_handshake;
5706 ++counters_px->failed_handshake;
5707 }
5708
Emeric Brun46591952012-05-18 15:47:34 +02005709 /* Fail on all other handshake errors */
5710 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005711 if (!conn->err_code)
5712 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005713 return 0;
5714}
5715
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005716/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5717 * event subscriber <es> is not allowed to change from a previous call as long
5718 * as at least one event is still subscribed. The <event_type> must only be a
5719 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5720 * unless the transport layer was already released.
5721 */
5722static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005723{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005724 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005725
Olivier Houchard0ff28652019-06-24 18:57:39 +02005726 if (!ctx)
5727 return -1;
5728
Willy Tarreau113d52b2020-01-10 09:20:26 +01005729 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005730 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005731
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005732 ctx->subs = es;
5733 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005734
5735 /* we may have to subscribe to lower layers for new events */
5736 event_type &= ~ctx->wait_event.events;
5737 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5738 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005739 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005740}
5741
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005742/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5743 * The <es> pointer is not allowed to differ from the one passed to the
5744 * subscribe() call. It always returns zero.
5745 */
5746static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005747{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005748 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005749
Willy Tarreau113d52b2020-01-10 09:20:26 +01005750 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005751 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005752
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005753 es->events &= ~event_type;
5754 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005755 ctx->subs = NULL;
5756
5757 /* If we subscribed, and we're not doing the handshake,
5758 * then we subscribed because the upper layer asked for it,
5759 * as the upper layer is no longer interested, we can
5760 * unsubscribe too.
5761 */
5762 event_type &= ctx->wait_event.events;
5763 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5764 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005765
5766 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005767}
5768
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005769/* The connection has been taken over, so destroy the old tasklet and create
5770 * a new one. The original thread ID must be passed into orig_tid
5771 * It should be called with the takeover lock for the old thread held.
5772 * Returns 0 on success, and -1 on failure
5773 */
5774static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
5775{
5776 struct ssl_sock_ctx *ctx = xprt_ctx;
5777 struct tasklet *tl = tasklet_new();
5778
5779 if (!tl)
5780 return -1;
5781
5782 ctx->wait_event.tasklet->context = NULL;
5783 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
5784 ctx->wait_event.tasklet = tl;
5785 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5786 ctx->wait_event.tasklet->context = ctx;
5787 return 0;
5788}
5789
Willy Tarreau41491682021-03-02 17:29:56 +01005790/* notify the next xprt that the connection is about to become idle and that it
5791 * may be stolen at any time after the function returns and that any tasklet in
5792 * the chain must be careful before dereferencing its context.
5793 */
5794static void ssl_set_idle(struct connection *conn, void *xprt_ctx)
5795{
5796 struct ssl_sock_ctx *ctx = xprt_ctx;
5797
5798 if (!ctx || !ctx->wait_event.tasklet)
5799 return;
5800
5801 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5802 if (ctx->xprt)
5803 xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx);
5804}
5805
5806/* notify the next xprt that the connection is not idle anymore and that it may
5807 * not be stolen before the next xprt_set_idle().
5808 */
5809static void ssl_set_used(struct connection *conn, void *xprt_ctx)
5810{
5811 struct ssl_sock_ctx *ctx = xprt_ctx;
5812
5813 if (!ctx || !ctx->wait_event.tasklet)
5814 return;
5815
5816 HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1);
5817 if (ctx->xprt)
5818 xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx);
5819}
5820
Olivier Houchard2e055482019-05-27 19:50:12 +02005821/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5822 * Returns 0 on success, and non-zero on failure.
5823 */
5824static 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)
5825{
5826 struct ssl_sock_ctx *ctx = xprt_ctx;
5827
5828 if (oldxprt_ops != NULL)
5829 *oldxprt_ops = ctx->xprt;
5830 if (oldxprt_ctx != NULL)
5831 *oldxprt_ctx = ctx->xprt_ctx;
5832 ctx->xprt = toadd_ops;
5833 ctx->xprt_ctx = toadd_ctx;
5834 return 0;
5835}
5836
Olivier Houchard5149b592019-05-23 17:47:36 +02005837/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5838 * return 0, otherwise just call the remove_xprt method from the underlying
5839 * XPRT.
5840 */
5841static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5842{
5843 struct ssl_sock_ctx *ctx = xprt_ctx;
5844
5845 if (ctx->xprt_ctx == toremove_ctx) {
5846 ctx->xprt_ctx = newctx;
5847 ctx->xprt = newops;
5848 return 0;
5849 }
5850 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
5851}
5852
Willy Tarreau144f84a2021-03-02 16:09:26 +01005853struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02005854{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005855 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005856 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005857 struct connection *conn;
5858 int conn_in_list;
5859 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005860
Willy Tarreau41491682021-03-02 17:29:56 +01005861 if (state & TASK_F_USR1) {
5862 /* the tasklet was idling on an idle connection, it might have
5863 * been stolen, let's be careful!
5864 */
5865 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5866 if (tl->context == NULL) {
5867 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
5868 tasklet_free(tl);
5869 return NULL;
5870 }
5871 conn = ctx->conn;
5872 conn_in_list = conn->flags & CO_FL_LIST_MASK;
5873 if (conn_in_list)
5874 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005875 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Willy Tarreau41491682021-03-02 17:29:56 +01005876 } else {
5877 conn = ctx->conn;
5878 conn_in_list = 0;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005879 }
Willy Tarreau41491682021-03-02 17:29:56 +01005880
Olivier Houchardea8dd942019-05-20 14:02:16 +02005881 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01005882 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005883 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005884 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
5885 /* handshake completed, leave the bulk queue */
Willy Tarreau4c48edb2021-03-09 17:58:02 +01005886 _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005887 }
5888 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005889 /* If we had an error, or the handshake is done and I/O is available,
5890 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01005891 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02005892 * we can't be sure conn_fd_handler() will be called again.
5893 */
5894 if ((ctx->conn->flags & CO_FL_ERROR) ||
5895 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005896 int woke = 0;
5897
5898 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005899 if (ctx->subs) {
5900 tasklet_wakeup(ctx->subs->tasklet);
5901 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005902 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005903 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005904 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005905
Olivier Houchardea8dd942019-05-20 14:02:16 +02005906 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01005907 * upper layers know. If we have no mux, create it,
5908 * and once we have a mux, call its wake method if we didn't
5909 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02005910 */
5911 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01005912 if (!ctx->conn->mux)
5913 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005914 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005915 ret = ctx->conn->mux->wake(ctx->conn);
5916 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005917 }
5918 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005919#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005920 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005921 else if (b_data(&ctx->early_buf) && ctx->subs &&
5922 ctx->subs->events & SUB_RETRY_RECV) {
5923 tasklet_wakeup(ctx->subs->tasklet);
5924 ctx->subs->events &= ~SUB_RETRY_RECV;
5925 if (!ctx->subs->events)
5926 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005927 }
5928#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005929leave:
5930 if (!ret && conn_in_list) {
5931 struct server *srv = objt_server(conn->target);
5932
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005933 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005934 if (conn_in_list == CO_FL_SAFE_LIST)
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005935 ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005936 else
Willy Tarreau430bf4a2021-03-04 09:45:32 +01005937 ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005938 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005939 }
Willy Tarreau74163142021-03-13 11:30:19 +01005940 return t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005941}
5942
Emeric Brun46591952012-05-18 15:47:34 +02005943/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005944 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005945 * buffer wraps, in which case a second call may be performed. The connection's
5946 * flags are updated with whatever special event is detected (error, read0,
5947 * empty). The caller is responsible for taking care of those events and
5948 * avoiding the call if inappropriate. The function does not call the
5949 * connection's polling update function, so the caller is responsible for this.
5950 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005951static 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 +02005952{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005953 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005954 ssize_t ret;
5955 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005956
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005957 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005958 goto out_error;
5959
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005960#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005961 if (b_data(&ctx->early_buf)) {
5962 try = b_contig_space(buf);
5963 if (try > b_data(&ctx->early_buf))
5964 try = b_data(&ctx->early_buf);
5965 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
5966 b_add(buf, try);
5967 b_del(&ctx->early_buf, try);
5968 if (b_data(&ctx->early_buf) == 0)
5969 b_free(&ctx->early_buf);
5970 return try;
5971 }
5972#endif
5973
Willy Tarreau911db9b2020-01-23 16:27:54 +01005974 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005975 /* a handshake was requested */
5976 return 0;
5977
Emeric Brun46591952012-05-18 15:47:34 +02005978 /* read the largest possible block. For this, we perform only one call
5979 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5980 * in which case we accept to do it once again. A new attempt is made on
5981 * EINTR too.
5982 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005983 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005984
Willy Tarreau591d4452018-06-15 17:21:00 +02005985 try = b_contig_space(buf);
5986 if (!try)
5987 break;
5988
Willy Tarreauabf08d92014-01-14 11:31:27 +01005989 if (try > count)
5990 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005991
Olivier Houchard66ab4982019-02-26 18:37:15 +01005992 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005993
Emeric Brune1f38db2012-09-03 20:36:47 +02005994 if (conn->flags & CO_FL_ERROR) {
5995 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005996 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005997 }
Emeric Brun46591952012-05-18 15:47:34 +02005998 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02005999 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006000 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006001 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006002 }
Emeric Brun46591952012-05-18 15:47:34 +02006003 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006004 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02006005 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006006 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02006007 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006008 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006009#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006010 /* Async mode can be re-enabled, because we're leaving data state.*/
6011 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006012 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006013#endif
Emeric Brun46591952012-05-18 15:47:34 +02006014 break;
6015 }
6016 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006017 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006018 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6019 SUB_RETRY_RECV,
6020 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01006021 /* handshake is running, and it may need to re-enable read */
6022 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006023#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006024 /* Async mode can be re-enabled, because we're leaving data state.*/
6025 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006026 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006027#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006028 break;
6029 }
Emeric Brun46591952012-05-18 15:47:34 +02006030 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02006031 } else if (ret == SSL_ERROR_ZERO_RETURN)
6032 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006033 /* For SSL_ERROR_SYSCALL, make sure to clear the error
6034 * stack before shutting down the connection for
6035 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006036 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
6037 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02006038 /* otherwise it's a real error */
6039 goto out_error;
6040 }
6041 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006042 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006043 return done;
6044
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006045 clear_ssl_error:
6046 /* Clear openssl global errors stack */
6047 ssl_sock_dump_errors(conn);
6048 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02006049 read0:
6050 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006051 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01006052
Emeric Brun46591952012-05-18 15:47:34 +02006053 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01006054 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01006055 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006056 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006057 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006058 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006059}
6060
6061
Willy Tarreau787db9a2018-06-14 18:31:46 +02006062/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6063 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6064 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006065 * Only one call to send() is performed, unless the buffer wraps, in which case
6066 * a second call may be performed. The connection's flags are updated with
6067 * whatever special event is detected (error, empty). The caller is responsible
6068 * for taking care of those events and avoiding the call if inappropriate. The
6069 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006070 * is responsible for this. The buffer's output is not adjusted, it's up to the
6071 * caller to take care of this. It's up to the caller to update the buffer's
6072 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006073 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006074static 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 +02006075{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006076 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006077 ssize_t ret;
6078 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006079
6080 done = 0;
6081
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006082 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006083 goto out_error;
6084
Willy Tarreau911db9b2020-01-23 16:27:54 +01006085 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006086 /* a handshake was requested */
6087 return 0;
6088
6089 /* send the largest possible block. For this we perform only one call
6090 * to send() unless the buffer wraps and we exactly fill the first hunk,
6091 * in which case we accept to do it once again.
6092 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006093 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006094#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006095 size_t written_data;
6096#endif
6097
Willy Tarreau787db9a2018-06-14 18:31:46 +02006098 try = b_contig_data(buf, done);
6099 if (try > count)
6100 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006101
Willy Tarreau7bed9452014-02-02 02:00:24 +01006102 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006103 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006104 global_ssl.max_record && try > global_ssl.max_record) {
6105 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006106 }
6107 else {
6108 /* we need to keep the information about the fact that
6109 * we're not limiting the upcoming send(), because if it
6110 * fails, we'll have to retry with at least as many data.
6111 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006112 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006113 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006114
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006115#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006116 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006117 unsigned int max_early;
6118
Olivier Houchard522eea72017-11-03 16:27:47 +01006119 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006120 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006121 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006122 if (SSL_get0_session(ctx->ssl))
6123 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006124 else
6125 max_early = 0;
6126 }
6127
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006128 if (try + ctx->sent_early_data > max_early) {
6129 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006130 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006131 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006132 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006133 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006134 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006135 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006136 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006137 if (ret == 1) {
6138 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006139 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006140 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006141 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006142 /* Initiate the handshake, now */
6143 tasklet_wakeup(ctx->wait_event.tasklet);
6144 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006145
Olivier Houchardc2aae742017-09-22 18:26:28 +02006146 }
6147
6148 } else
6149#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006150 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006151
Emeric Brune1f38db2012-09-03 20:36:47 +02006152 if (conn->flags & CO_FL_ERROR) {
6153 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006154 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006155 }
Emeric Brun46591952012-05-18 15:47:34 +02006156 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006157 /* A send succeeded, so we can consider ourself connected */
6158 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006159 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006160 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006161 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006162 }
6163 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006164 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006165
Emeric Brun46591952012-05-18 15:47:34 +02006166 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006167 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006168 /* handshake is running, and it may need to re-enable write */
6169 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006170 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006171#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006172 /* Async mode can be re-enabled, because we're leaving data state.*/
6173 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006174 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006175#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006176 break;
6177 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006178
Emeric Brun46591952012-05-18 15:47:34 +02006179 break;
6180 }
6181 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006182 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006183 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006184 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6185 SUB_RETRY_RECV,
6186 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006187#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006188 /* Async mode can be re-enabled, because we're leaving data state.*/
6189 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006190 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006191#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006192 break;
6193 }
Emeric Brun46591952012-05-18 15:47:34 +02006194 goto out_error;
6195 }
6196 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006197 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006198 return done;
6199
6200 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006201 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006202 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006203 ERR_clear_error();
6204
Emeric Brun46591952012-05-18 15:47:34 +02006205 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006206 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006207}
6208
Willy Tarreau832e2422021-05-13 10:11:03 +02006209void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006210
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006211 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006212
Olivier Houchardea8dd942019-05-20 14:02:16 +02006213
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006214 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006215 if (ctx->wait_event.events != 0)
6216 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6217 ctx->wait_event.events,
6218 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006219 if (ctx->subs) {
6220 ctx->subs->events = 0;
6221 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006222 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006223
Olivier Houchard692c1d02019-05-23 18:41:47 +02006224 if (ctx->xprt->close)
6225 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006226#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006227 if (global_ssl.async) {
6228 OSSL_ASYNC_FD all_fd[32], afd;
6229 size_t num_all_fds = 0;
6230 int i;
6231
Olivier Houchard66ab4982019-02-26 18:37:15 +01006232 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006233 if (num_all_fds > 32) {
6234 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6235 return;
6236 }
6237
Olivier Houchard66ab4982019-02-26 18:37:15 +01006238 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006239
6240 /* If an async job is pending, we must try to
6241 to catch the end using polling before calling
6242 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006243 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006244 for (i=0 ; i < num_all_fds ; i++) {
6245 /* switch on an handler designed to
6246 * handle the SSL_free
6247 */
6248 afd = all_fd[i];
6249 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006250 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006251 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006252 /* To ensure that the fd cache won't be used
6253 * and we'll catch a real RD event.
6254 */
6255 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006256 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006257 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006258 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006259 _HA_ATOMIC_INC(&jobs);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006260 return;
6261 }
Emeric Brun3854e012017-05-17 20:42:48 +02006262 /* Else we can remove the fds from the fdtab
6263 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006264 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006265 * because the fd is owned by the engine.
6266 * the engine is responsible to close
6267 */
6268 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006269 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006270 }
6271#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006272 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006273 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006274 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006275 pool_free(ssl_sock_ctx_pool, ctx);
Willy Tarreau4781b152021-04-06 13:53:36 +02006276 _HA_ATOMIC_DEC(&sslconns);
Emeric Brun46591952012-05-18 15:47:34 +02006277 }
Emeric Brun46591952012-05-18 15:47:34 +02006278}
6279
6280/* This function tries to perform a clean shutdown on an SSL connection, and in
6281 * any case, flags the connection as reusable if no handshake was in progress.
6282 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006283static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006284{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006285 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006286
Willy Tarreau911db9b2020-01-23 16:27:54 +01006287 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006288 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006289 if (!clean)
6290 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006291 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006292 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006293 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006294 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006295 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006296 ERR_clear_error();
6297 }
Emeric Brun46591952012-05-18 15:47:34 +02006298}
6299
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006300
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006301/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006302int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6303{
6304 struct ssl_sock_ctx *ctx;
6305 X509 *crt;
6306
6307 if (!ssl_sock_is_ssl(conn))
6308 return 0;
6309
6310 ctx = conn->xprt_ctx;
6311
6312 crt = SSL_get_certificate(ctx->ssl);
6313 if (!crt)
6314 return 0;
6315
6316 return cert_get_pkey_algo(crt, out);
6317}
6318
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006319/* used for ppv2 cert signature (can be used for logging) */
6320const char *ssl_sock_get_cert_sig(struct connection *conn)
6321{
Christopher Faulet82004142019-09-10 10:12:03 +02006322 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006323
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006324 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6325 X509 *crt;
6326
6327 if (!ssl_sock_is_ssl(conn))
6328 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006329 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006330 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006331 if (!crt)
6332 return NULL;
6333 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6334 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6335}
6336
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006337/* used for ppv2 authority */
6338const char *ssl_sock_get_sni(struct connection *conn)
6339{
6340#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006341 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006342
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006343 if (!ssl_sock_is_ssl(conn))
6344 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006345 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006346 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006347#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006348 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006349#endif
6350}
6351
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006352/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006353const char *ssl_sock_get_cipher_name(struct connection *conn)
6354{
Christopher Faulet82004142019-09-10 10:12:03 +02006355 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006356
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006357 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006358 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006359 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006360 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006361}
6362
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006363/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006364const char *ssl_sock_get_proto_version(struct connection *conn)
6365{
Christopher Faulet82004142019-09-10 10:12:03 +02006366 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006367
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006368 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006369 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006370 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006371 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006372}
6373
Olivier Houchardab28a322018-12-21 19:45:40 +01006374void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6375{
6376#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006377 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006378
Olivier Houcharde488ea82019-06-28 14:10:33 +02006379 if (!ssl_sock_is_ssl(conn))
6380 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006381 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006382 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006383#endif
6384}
6385
Willy Tarreau119a4082016-12-22 21:58:38 +01006386/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6387 * to disable SNI.
6388 */
Willy Tarreau63076412015-07-10 11:33:32 +02006389void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6390{
6391#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006392 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006393
Willy Tarreau119a4082016-12-22 21:58:38 +01006394 char *prev_name;
6395
Willy Tarreau63076412015-07-10 11:33:32 +02006396 if (!ssl_sock_is_ssl(conn))
6397 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006398 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02006399
Willy Tarreau119a4082016-12-22 21:58:38 +01006400 /* if the SNI changes, we must destroy the reusable context so that a
6401 * new connection will present a new SNI. As an optimization we could
6402 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6403 * server.
6404 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006405 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006406 if ((!prev_name && hostname) ||
6407 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006408 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006409
Olivier Houchard66ab4982019-02-26 18:37:15 +01006410 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006411#endif
6412}
6413
Emeric Brun0abf8362014-06-24 18:26:41 +02006414/* Extract peer certificate's common name into the chunk dest
6415 * Returns
6416 * the len of the extracted common name
6417 * or 0 if no CN found in DN
6418 * or -1 on error case (i.e. no peer certificate)
6419 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006420int ssl_sock_get_remote_common_name(struct connection *conn,
6421 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006422{
Christopher Faulet82004142019-09-10 10:12:03 +02006423 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006424 X509 *crt = NULL;
6425 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006426 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006427 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006428 .area = (char *)&find_cn,
6429 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006430 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006431 int result = -1;
David Safb76832014-05-08 23:42:08 -04006432
6433 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006434 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006435 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006436
6437 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006438 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006439 if (!crt)
6440 goto out;
6441
6442 name = X509_get_subject_name(crt);
6443 if (!name)
6444 goto out;
David Safb76832014-05-08 23:42:08 -04006445
Emeric Brun0abf8362014-06-24 18:26:41 +02006446 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6447out:
David Safb76832014-05-08 23:42:08 -04006448 if (crt)
6449 X509_free(crt);
6450
6451 return result;
6452}
6453
Dave McCowan328fb582014-07-30 10:39:13 -04006454/* returns 1 if client passed a certificate for this session, 0 if not */
6455int ssl_sock_get_cert_used_sess(struct connection *conn)
6456{
Christopher Faulet82004142019-09-10 10:12:03 +02006457 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006458 X509 *crt = NULL;
6459
6460 if (!ssl_sock_is_ssl(conn))
6461 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006462 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006463
6464 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006465 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006466 if (!crt)
6467 return 0;
6468
6469 X509_free(crt);
6470 return 1;
6471}
6472
6473/* returns 1 if client passed a certificate for this connection, 0 if not */
6474int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006475{
Christopher Faulet82004142019-09-10 10:12:03 +02006476 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006477
David Safb76832014-05-08 23:42:08 -04006478 if (!ssl_sock_is_ssl(conn))
6479 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006480 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006481 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006482}
6483
6484/* returns result from SSL verify */
6485unsigned int ssl_sock_get_verify_result(struct connection *conn)
6486{
Christopher Faulet82004142019-09-10 10:12:03 +02006487 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006488
David Safb76832014-05-08 23:42:08 -04006489 if (!ssl_sock_is_ssl(conn))
6490 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006491 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006492 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006493}
6494
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006495/* Returns the application layer protocol name in <str> and <len> when known.
6496 * Zero is returned if the protocol name was not found, otherwise non-zero is
6497 * returned. The string is allocated in the SSL context and doesn't have to be
6498 * freed by the caller. NPN is also checked if available since older versions
6499 * of openssl (1.0.1) which are more common in field only support this one.
6500 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006501static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006502{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006503#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6504 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006505 struct ssl_sock_ctx *ctx = xprt_ctx;
6506 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006507 return 0;
6508
6509 *str = NULL;
6510
6511#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006512 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006513 if (*str)
6514 return 1;
6515#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006516#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006517 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006518 if (*str)
6519 return 1;
6520#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006521#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006522 return 0;
6523}
6524
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006525/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006526int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006527{
6528 X509 *ca;
6529 X509_NAME *name = NULL;
6530 ASN1_OCTET_STRING *skid = NULL;
6531 STACK_OF(X509) *chain = NULL;
6532 struct issuer_chain *issuer;
6533 struct eb64_node *node;
6534 char *path;
6535 u64 key;
6536 int ret = 0;
6537
6538 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6539 if (chain == NULL) {
6540 chain = sk_X509_new_null();
6541 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6542 name = X509_get_subject_name(ca);
6543 }
6544 if (!sk_X509_push(chain, ca)) {
6545 X509_free(ca);
6546 goto end;
6547 }
6548 }
6549 if (!chain) {
6550 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6551 goto end;
6552 }
6553 if (!skid) {
6554 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6555 goto end;
6556 }
6557 if (!name) {
6558 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6559 goto end;
6560 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006561 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006562 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006563 issuer = container_of(node, typeof(*issuer), node);
6564 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6565 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6566 goto end;
6567 }
6568 }
6569 issuer = calloc(1, sizeof *issuer);
6570 path = strdup(fp);
6571 if (!issuer || !path) {
6572 free(issuer);
6573 free(path);
6574 goto end;
6575 }
6576 issuer->node.key = key;
6577 issuer->path = path;
6578 issuer->chain = chain;
6579 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006580 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006581 ret = 1;
6582 end:
6583 if (skid)
6584 ASN1_OCTET_STRING_free(skid);
6585 if (chain)
6586 sk_X509_pop_free(chain, X509_free);
6587 return ret;
6588}
6589
William Lallemandda8584c2020-05-14 10:14:37 +02006590 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006591{
6592 AUTHORITY_KEYID *akid;
6593 struct issuer_chain *issuer = NULL;
6594
6595 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006596 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006597 struct eb64_node *node;
6598 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006599 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006600 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6601 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6602 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6603 issuer = ti;
6604 break;
6605 }
6606 }
6607 AUTHORITY_KEYID_free(akid);
6608 }
6609 return issuer;
6610}
6611
William Lallemanddad31052020-05-14 17:47:32 +02006612void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006613{
6614 struct eb64_node *node, *back;
6615 struct issuer_chain *issuer;
6616
William Lallemande0f3fd52020-02-25 14:53:06 +01006617 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006618 while (node) {
6619 issuer = container_of(node, typeof(*issuer), node);
6620 back = eb64_next(node);
6621 eb64_delete(node);
6622 free(issuer->path);
6623 sk_X509_pop_free(issuer->chain, X509_free);
6624 free(issuer);
6625 node = back;
6626 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006627}
6628
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006629#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006630static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006631 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006632
Emeric Brun3854e012017-05-17 20:42:48 +02006633 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006634 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006635 err_code = ERR_ABORT;
6636 }
6637 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006638}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006639#endif
6640
Willy Tarreaude5675a2021-01-20 14:41:29 +01006641/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006642 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006643 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006644static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006645{
6646 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006647 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006648
6649 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006650 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006651
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006652 if (sctx->conn != conn) {
6653 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6654 ret = 1;
6655 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006656 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6657
6658 if (sctx->xprt) {
6659 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6660 if (sctx->xprt_ctx)
6661 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6662 }
6663
6664 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006665
6666 /* as soon as a shutdown is reported the lower layer unregisters its
6667 * subscriber, so the situations below are transient and rare enough to
6668 * be reported as suspicious. In any case they shouldn't last.
6669 */
6670 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6671 ret = 1;
6672 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6673 ret = 1;
6674
Willy Tarreaude5675a2021-01-20 14:41:29 +01006675 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6676 if (sctx->subs) {
6677 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006678 if (sctx->subs->tasklet->calls >= 1000000)
6679 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006680 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6681 sctx->subs->tasklet->calls,
6682 sctx->subs->tasklet->context);
6683 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6684 chunk_appendf(&trash, ")");
6685 }
6686 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6687 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006688 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006689}
6690
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006691#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02006692/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006693 * each reference. The variable <ref> must point to the current node's list
6694 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02006695 */
William Lallemand32af2032016-10-29 18:09:35 +02006696static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006697struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02006698{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006699 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006700 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02006701
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006702 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006703 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006704 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02006705
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006706 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02006707}
6708
6709static inline
6710struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6711{
6712 int id;
6713 char *error;
6714
6715 /* If the reference starts by a '#', this is numeric id. */
6716 if (reference[0] == '#') {
6717 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6718 id = strtol(reference + 1, &error, 10);
6719 if (*error != '\0')
6720 return NULL;
6721
6722 /* Perform the unique id lookup. */
6723 return tlskeys_ref_lookupid(id);
6724 }
6725
6726 /* Perform the string lookup. */
6727 return tlskeys_ref_lookup(reference);
6728}
6729#endif
6730
6731
6732#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6733
6734static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6735
6736static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6737 return cli_io_handler_tlskeys_files(appctx);
6738}
6739
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006740/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6741 * (next index to be dumped), and cli.p0 (next key reference).
6742 */
William Lallemand32af2032016-10-29 18:09:35 +02006743static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6744
6745 struct stream_interface *si = appctx->owner;
6746
6747 switch (appctx->st2) {
6748 case STAT_ST_INIT:
6749 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006750 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006751 * later and restart at the state "STAT_ST_INIT".
6752 */
6753 chunk_reset(&trash);
6754
6755 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6756 chunk_appendf(&trash, "# id secret\n");
6757 else
6758 chunk_appendf(&trash, "# id (file)\n");
6759
Willy Tarreau06d80a92017-10-19 14:32:15 +02006760 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006761 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006762 return 0;
6763 }
6764
William Lallemand32af2032016-10-29 18:09:35 +02006765 /* Now, we start the browsing of the references lists.
6766 * Note that the following call to LIST_ELEM return bad pointer. The only
6767 * available field of this pointer is <list>. It is used with the function
6768 * tlskeys_list_get_next() for retruning the first available entry
6769 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006770 if (appctx->ctx.cli.p0 == NULL)
6771 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006772
6773 appctx->st2 = STAT_ST_LIST;
6774 /* fall through */
6775
6776 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006777 while (appctx->ctx.cli.p0) {
6778 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006779
6780 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006781 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006782 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006783
6784 if (appctx->ctx.cli.i1 == 0)
6785 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6786
William Lallemand32af2032016-10-29 18:09:35 +02006787 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006788 int head;
6789
6790 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6791 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006792 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006793 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006794
6795 chunk_reset(t2);
6796 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006797 if (ref->key_size_bits == 128) {
6798 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6799 sizeof(struct tls_sess_key_128),
6800 t2->area, t2->size);
6801 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6802 t2->area);
6803 }
6804 else if (ref->key_size_bits == 256) {
6805 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6806 sizeof(struct tls_sess_key_256),
6807 t2->area, t2->size);
6808 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6809 t2->area);
6810 }
6811 else {
6812 /* This case should never happen */
6813 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6814 }
William Lallemand32af2032016-10-29 18:09:35 +02006815
Willy Tarreau06d80a92017-10-19 14:32:15 +02006816 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006817 /* let's try again later from this stream. We add ourselves into
6818 * this stream's users so that it can remove us upon termination.
6819 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006820 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006821 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006822 return 0;
6823 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006824 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006825 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006826 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006827 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006828 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006829 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006830 /* let's try again later from this stream. We add ourselves into
6831 * this stream's users so that it can remove us upon termination.
6832 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006833 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006834 return 0;
6835 }
6836
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006837 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006838 break;
6839
6840 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006841 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006842 }
6843
6844 appctx->st2 = STAT_ST_FIN;
6845 /* fall through */
6846
6847 default:
6848 appctx->st2 = STAT_ST_FIN;
6849 return 1;
6850 }
6851 return 0;
6852}
6853
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006854/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006855static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006856{
William Lallemand32af2032016-10-29 18:09:35 +02006857 /* no parameter, shows only file list */
6858 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006859 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006860 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006861 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006862 }
6863
6864 if (args[2][0] == '*') {
6865 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006866 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006867 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006868 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006869 if (!appctx->ctx.cli.p0)
6870 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006871 }
William Lallemand32af2032016-10-29 18:09:35 +02006872 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006873 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006874}
6875
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006876static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006877{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006878 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006879 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006880
William Lallemand32af2032016-10-29 18:09:35 +02006881 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006882 if (!*args[3] || !*args[4])
6883 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 +02006884
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006885 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006886 if (!ref)
6887 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006888
Willy Tarreau1c913e42018-08-22 05:26:57 +02006889 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006890 if (ret < 0)
6891 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01006892
Willy Tarreau1c913e42018-08-22 05:26:57 +02006893 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02006894 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
6895 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006896
Willy Tarreau9d008692019-08-09 11:21:01 +02006897 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006898}
William Lallemandd4f946c2019-12-05 10:26:40 +01006899#endif
William Lallemand419e6342020-04-08 12:05:39 +02006900
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006901static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006902{
6903#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
6904 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006905 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006906
6907 if (!payload)
6908 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02006909
6910 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006911 if (!*payload)
6912 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006913
6914 /* remove \r and \n from the payload */
6915 for (i = 0, j = 0; payload[i]; i++) {
6916 if (payload[i] == '\r' || payload[i] == '\n')
6917 continue;
6918 payload[j++] = payload[i];
6919 }
6920 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006921
Willy Tarreau1c913e42018-08-22 05:26:57 +02006922 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006923 if (ret < 0)
6924 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006925
Willy Tarreau1c913e42018-08-22 05:26:57 +02006926 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02006927 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02006928 if (err)
6929 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
6930 else
6931 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006932 }
Willy Tarreau9d008692019-08-09 11:21:01 +02006933
6934 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006935#else
Willy Tarreau9d008692019-08-09 11:21:01 +02006936 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 +02006937#endif
6938
Elliot Otchet71f82972020-01-15 08:12:14 -05006939}
6940
William Lallemand32af2032016-10-29 18:09:35 +02006941/* register cli keywords */
6942static struct cli_kw_list cli_kws = {{ },{
6943#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Willy Tarreaub205bfd2021-05-07 11:38:37 +02006944 { { "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 },
6945 { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|file] <key> : set the next TLS key for the <id> or <file> listener to <key>", cli_parse_set_tlskeys, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02006946#endif
Willy Tarreaub205bfd2021-05-07 11:38:37 +02006947 { { "set", "ssl", "ocsp-response", NULL }, "set ssl ocsp-response <resp|payload> : update a certificate's OCSP Response from a base64-encode DER", cli_parse_set_ocspresponse, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02006948 { { NULL }, NULL, NULL, NULL }
6949}};
6950
Willy Tarreau0108d902018-11-25 19:14:37 +01006951INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02006952
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02006953/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02006954struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02006955 .snd_buf = ssl_sock_from_buf,
6956 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01006957 .subscribe = ssl_subscribe,
6958 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02006959 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02006960 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02006961 .rcv_pipe = NULL,
6962 .snd_pipe = NULL,
6963 .shutr = NULL,
6964 .shutw = ssl_sock_shutw,
6965 .close = ssl_sock_close,
6966 .init = ssl_sock_init,
Olivier Houchardbc5ce922021-03-05 23:47:00 +01006967 .start = ssl_sock_start,
Willy Tarreau55d37912016-12-21 23:38:39 +01006968 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01006969 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01006970 .prepare_srv = ssl_sock_prepare_srv_ctx,
6971 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006972 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006973 .takeover = ssl_takeover,
Willy Tarreau41491682021-03-02 17:29:56 +01006974 .set_idle = ssl_set_idle,
6975 .set_used = ssl_set_used,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01006976 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01006977 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02006978};
6979
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006980enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
6981 struct session *sess, struct stream *s, int flags)
6982{
6983 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006984 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006985
6986 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006987 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006988
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006989 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006990 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006991 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006992 s->req.flags |= CF_READ_NULL;
6993 return ACT_RET_YIELD;
6994 }
6995 }
6996 return (ACT_RET_CONT);
6997}
6998
6999static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
7000{
7001 rule->action_ptr = ssl_action_wait_for_hs;
7002
7003 return ACT_RET_PRS_OK;
7004}
7005
7006static struct action_kw_list http_req_actions = {ILH, {
7007 { "wait-for-handshake", ssl_parse_wait_for_hs },
7008 { /* END */ }
7009}};
7010
Willy Tarreau0108d902018-11-25 19:14:37 +01007011INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
7012
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007013#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007014
7015static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7016{
7017 if (ptr) {
7018 chunk_destroy(ptr);
7019 free(ptr);
7020 }
7021}
7022
7023#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007024
7025#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7026static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7027{
7028 struct ocsp_cbk_arg *ocsp_arg;
7029
7030 if (ptr) {
7031 ocsp_arg = ptr;
7032
7033 if (ocsp_arg->is_single) {
7034 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
7035 ocsp_arg->s_ocsp = NULL;
7036 } else {
7037 int i;
7038
7039 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
7040 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
7041 ocsp_arg->m_ocsp[i] = NULL;
7042 }
7043 }
7044 free(ocsp_arg);
7045 }
7046}
7047#endif
7048
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007049static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7050{
Willy Tarreaubafbe012017-11-24 17:34:44 +01007051 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01007052}
William Lallemand7d42ef52020-07-06 11:41:30 +02007053
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05007054#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007055static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
7056{
7057 struct ssl_keylog *keylog;
7058
7059 if (!ptr)
7060 return;
7061
7062 keylog = ptr;
7063
7064 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7065 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7066 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7067 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7068 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7069 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7070 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7071 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7072
7073 pool_free(pool_head_ssl_keylog, ptr);
7074}
7075#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007076
Emeric Brun46591952012-05-18 15:47:34 +02007077__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007078static void __ssl_sock_init(void)
7079{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007080#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007081 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007082 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007083#endif
Emeric Brun46591952012-05-18 15:47:34 +02007084
Willy Tarreauef934602016-12-22 23:12:01 +01007085 if (global_ssl.listen_default_ciphers)
7086 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7087 if (global_ssl.connect_default_ciphers)
7088 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007089#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007090 if (global_ssl.listen_default_ciphersuites)
7091 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7092 if (global_ssl.connect_default_ciphersuites)
7093 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7094#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007095
Willy Tarreau13e14102016-12-22 20:25:26 +01007096 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007097#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007098 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007099#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007100#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007101 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007102 n = sk_SSL_COMP_num(cm);
7103 while (n--) {
7104 (void) sk_SSL_COMP_pop(cm);
7105 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007106#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007107
Willy Tarreau5db847a2019-05-09 14:13:35 +02007108#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007109 ssl_locking_init();
7110#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007111#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007112 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7113#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007114
7115#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7116 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7117#endif
7118
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007119 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007120 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05007121#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007122 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7123#endif
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007124#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007125 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007126 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007127#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007128#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7129 hap_register_post_check(tlskeys_finalize_config);
7130#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007131
7132 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7133 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7134
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007135 hap_register_post_deinit(ssl_free_global_issuers);
7136
Willy Tarreau80713382018-11-26 10:19:54 +01007137#ifndef OPENSSL_NO_DH
7138 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7139 hap_register_post_deinit(ssl_free_dh);
7140#endif
7141#ifndef OPENSSL_NO_ENGINE
7142 hap_register_post_deinit(ssl_free_engines);
7143#endif
7144 /* Load SSL string for the verbose & debug mode. */
7145 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007146 ha_meth = BIO_meth_new(0x666, "ha methods");
7147 BIO_meth_set_write(ha_meth, ha_ssl_write);
7148 BIO_meth_set_read(ha_meth, ha_ssl_read);
7149 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7150 BIO_meth_set_create(ha_meth, ha_ssl_new);
7151 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7152 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7153 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007154
7155 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007156
Dragan Dosen9ac98092020-05-11 15:51:45 +02007157 /* Try to register dedicated SSL/TLS protocol message callbacks for
7158 * heartbleed attack (CVE-2014-0160) and clienthello.
7159 */
7160 hap_register_post_check(ssl_sock_register_msg_callbacks);
7161
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007162 /* Try to free all callbacks that were registered by using
7163 * ssl_sock_register_msg_callback().
7164 */
7165 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007166}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007167
Willy Tarreau80713382018-11-26 10:19:54 +01007168/* Compute and register the version string */
7169static void ssl_register_build_options()
7170{
7171 char *ptr = NULL;
7172 int i;
7173
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007174 memprintf(&ptr, "Built with OpenSSL version : "
7175#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007176 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007177#else /* OPENSSL_IS_BORINGSSL */
7178 OPENSSL_VERSION_TEXT
7179 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007180 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007181 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007182#endif
7183 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007184#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007185 "no (library version too old)"
7186#elif defined(OPENSSL_NO_TLSEXT)
7187 "no (disabled via OPENSSL_NO_TLSEXT)"
7188#else
7189 "yes"
7190#endif
7191 "", ptr);
7192
7193 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7194#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7195 "yes"
7196#else
7197#ifdef OPENSSL_NO_TLSEXT
7198 "no (because of OPENSSL_NO_TLSEXT)"
7199#else
7200 "no (version might be too old, 0.9.8f min needed)"
7201#endif
7202#endif
7203 "", ptr);
7204
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007205 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7206 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7207 if (methodVersions[i].option)
7208 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007209
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007210 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007211}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007212
Willy Tarreau80713382018-11-26 10:19:54 +01007213INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007214
Emeric Brun46591952012-05-18 15:47:34 +02007215
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007216#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007217void ssl_free_engines(void) {
7218 struct ssl_engine_list *wl, *wlb;
7219 /* free up engine list */
7220 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7221 ENGINE_finish(wl->e);
7222 ENGINE_free(wl->e);
Willy Tarreau2b718102021-04-21 07:32:39 +02007223 LIST_DELETE(&wl->list);
Grant Zhang872f9c22017-01-21 01:10:18 +00007224 free(wl);
7225 }
7226}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007227#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007228
Remi Gacogned3a23c32015-05-28 16:39:47 +02007229#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007230void ssl_free_dh(void) {
7231 if (local_dh_1024) {
7232 DH_free(local_dh_1024);
7233 local_dh_1024 = NULL;
7234 }
7235 if (local_dh_2048) {
7236 DH_free(local_dh_2048);
7237 local_dh_2048 = NULL;
7238 }
7239 if (local_dh_4096) {
7240 DH_free(local_dh_4096);
7241 local_dh_4096 = NULL;
7242 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007243 if (global_dh) {
7244 DH_free(global_dh);
7245 global_dh = NULL;
7246 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007247}
7248#endif
7249
7250__attribute__((destructor))
7251static void __ssl_sock_deinit(void)
7252{
7253#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007254 if (ssl_ctx_lru_tree) {
7255 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007256 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007257 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007258#endif
7259
Willy Tarreau5db847a2019-05-09 14:13:35 +02007260#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007261 ERR_remove_state(0);
7262 ERR_free_strings();
7263
7264 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007265#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007266
Willy Tarreau5db847a2019-05-09 14:13:35 +02007267#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007268 CRYPTO_cleanup_all_ex_data();
7269#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007270 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007271}
7272
William Dauchyf6370442020-11-14 19:25:33 +01007273/* Activate ssl on server <s>.
7274 * do nothing if there is no change to apply
7275 *
7276 * Must be called with the server lock held.
7277 */
7278void ssl_sock_set_srv(struct server *s, signed char use_ssl)
7279{
7280 if (s->use_ssl == use_ssl)
7281 return;
7282
7283 s->use_ssl = use_ssl;
7284 if (s->use_ssl == 1)
7285 s->xprt = &ssl_sock;
7286 else
7287 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
7288}
7289
Emeric Brun46591952012-05-18 15:47:34 +02007290/*
7291 * Local variables:
7292 * c-indent-level: 8
7293 * c-basic-offset: 8
7294 * End:
7295 */