blob: d3a3a03dc394cc110cfe671cdc0f9140b2975b54 [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" */
186struct task *ssl_sock_io_cb(struct task *, void *, unsigned short);
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
William Lallemanddad31052020-05-14 17:47:32 +0200343int ssl_store_load_locations_file(char *path)
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200344{
345 if (ssl_store_get0_locations_file(path) == NULL) {
346 struct cafile_entry *ca_e;
347 X509_STORE *store = X509_STORE_new();
348 if (X509_STORE_load_locations(store, path, NULL)) {
349 int pathlen;
350 pathlen = strlen(path);
351 ca_e = calloc(1, sizeof(*ca_e) + pathlen + 1);
352 if (ca_e) {
353 memcpy(ca_e->path, path, pathlen + 1);
354 ca_e->ca_store = store;
355 ebst_insert(&cafile_tree, &ca_e->node);
356 return 1;
357 }
358 }
359 X509_STORE_free(store);
360 return 0;
361 }
362 return 1;
363}
364
365/* mimic what X509_STORE_load_locations do with store_ctx */
366static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path)
367{
368 X509_STORE *store;
369 store = ssl_store_get0_locations_file(path);
370 if (store_ctx && store) {
371 int i;
372 X509_OBJECT *obj;
373 STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store);
374 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
375 obj = sk_X509_OBJECT_value(objs, i);
376 switch (X509_OBJECT_get_type(obj)) {
377 case X509_LU_X509:
378 X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj));
379 break;
380 case X509_LU_CRL:
381 X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj));
382 break;
383 default:
384 break;
385 }
386 }
387 return 1;
388 }
389 return 0;
390}
391
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +0500392/* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +0200393static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path)
394{
395 X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx);
396 return ssl_set_cert_crl_file(store_ctx, path);
397}
398
Emmanuel Hocdet129d3282019-10-24 18:08:51 +0200399/*
400 Extract CA_list from CA_file already in tree.
401 Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility.
402 Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX.
403*/
404static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path)
405{
406 struct ebmb_node *eb;
407 struct cafile_entry *ca_e;
408
409 eb = ebst_lookup(&cafile_tree, path);
410 if (!eb)
411 return NULL;
412 ca_e = ebmb_entry(eb, struct cafile_entry, node);
413
414 if (ca_e->ca_list == NULL) {
415 int i;
416 unsigned long key;
417 struct eb_root ca_name_tree = EB_ROOT;
418 struct eb64_node *node, *back;
419 struct {
420 struct eb64_node node;
421 X509_NAME *xname;
422 } *ca_name;
423 STACK_OF(X509_OBJECT) *objs;
424 STACK_OF(X509_NAME) *skn;
425 X509 *x;
426 X509_NAME *xn;
427
428 skn = sk_X509_NAME_new_null();
429 /* take x509 from cafile_tree */
430 objs = X509_STORE_get0_objects(ca_e->ca_store);
431 for (i = 0; i < sk_X509_OBJECT_num(objs); i++) {
432 x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i));
433 if (!x)
434 continue;
435 xn = X509_get_subject_name(x);
436 if (!xn)
437 continue;
438 /* Check for duplicates. */
439 key = X509_NAME_hash(xn);
440 for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL;
441 node && ca_name == NULL;
442 node = eb64_next(node)) {
443 ca_name = container_of(node, typeof(*ca_name), node);
444 if (X509_NAME_cmp(xn, ca_name->xname) != 0)
445 ca_name = NULL;
446 }
447 /* find a duplicate */
448 if (ca_name)
449 continue;
450 ca_name = calloc(1, sizeof *ca_name);
451 xn = X509_NAME_dup(xn);
452 if (!ca_name ||
453 !xn ||
454 !sk_X509_NAME_push(skn, xn)) {
455 free(ca_name);
456 X509_NAME_free(xn);
457 sk_X509_NAME_pop_free(skn, X509_NAME_free);
458 sk_X509_NAME_free(skn);
459 skn = NULL;
460 break;
461 }
462 ca_name->node.key = key;
463 ca_name->xname = xn;
464 eb64_insert(&ca_name_tree, &ca_name->node);
465 }
466 ca_e->ca_list = skn;
467 /* remove temporary ca_name tree */
468 node = eb64_first(&ca_name_tree);
469 while (node) {
470 ca_name = container_of(node, typeof(*ca_name), node);
471 back = eb64_next(node);
472 eb64_delete(node);
473 free(ca_name);
474 node = back;
475 }
476 }
477 return ca_e->ca_list;
478}
479
Willy Tarreaubafbe012017-11-24 17:34:44 +0100480struct pool_head *pool_head_ssl_capture = NULL;
William Lallemand15e16942020-05-15 00:25:08 +0200481int ssl_capture_ptr_index = -1;
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +0100482int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100483
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500484#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200485int ssl_keylog_index = -1;
486struct pool_head *pool_head_ssl_keylog = NULL;
487struct pool_head *pool_head_ssl_keylog_str = NULL;
488#endif
489
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200490#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
491struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
492#endif
493
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200494#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200495unsigned int openssl_engines_initialized;
Grant Zhang872f9c22017-01-21 01:10:18 +0000496struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
497struct ssl_engine_list {
498 struct list list;
499 ENGINE *e;
500};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200501#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000502
Remi Gacogne8de54152014-07-15 11:36:40 +0200503#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200504static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200505static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200506static DH *local_dh_1024 = NULL;
507static DH *local_dh_2048 = NULL;
508static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100509static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200510#endif /* OPENSSL_NO_DH */
511
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100512#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200513/* X509V3 Extensions that will be added on generated certificates */
514#define X509V3_EXT_SIZE 5
515static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
516 "basicConstraints",
517 "nsComment",
518 "subjectKeyIdentifier",
519 "authorityKeyIdentifier",
520 "keyUsage",
521};
522static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
523 "CA:FALSE",
524 "\"OpenSSL Generated Certificate\"",
525 "hash",
526 "keyid,issuer:always",
527 "nonRepudiation,digitalSignature,keyEncipherment"
528};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200529/* LRU cache to store generated certificate */
530static struct lru64_head *ssl_ctx_lru_tree = NULL;
531static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200532static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100533__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200534
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200535#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
536
yanbzhube2774d2015-12-10 15:07:30 -0500537/* The order here matters for picking a default context,
538 * keep the most common keytype at the bottom of the list
539 */
540const char *SSL_SOCK_KEYTYPE_NAMES[] = {
541 "dsa",
542 "ecdsa",
543 "rsa"
544};
yanbzhube2774d2015-12-10 15:07:30 -0500545
William Lallemandc3cd35f2017-11-28 11:04:43 +0100546static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100547static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
548
Dragan Dosen9ac98092020-05-11 15:51:45 +0200549/* Dedicated callback functions for heartbeat and clienthello.
550 */
551#ifdef TLS1_RT_HEARTBEAT
552static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
553 int content_type, const void *buf, size_t len,
554 SSL *ssl);
555#endif
556static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
557 int content_type, const void *buf, size_t len,
558 SSL *ssl);
559
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500560#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200561static void ssl_init_keylog(struct connection *conn, int write_p, int version,
562 int content_type, const void *buf, size_t len,
563 SSL *ssl);
564#endif
565
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200566/* List head of all registered SSL/TLS protocol message callbacks. */
567struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks);
568
569/* Registers the function <func> in order to be called on SSL/TLS protocol
570 * message processing. It will return 0 if the function <func> is not set
571 * or if it fails to allocate memory.
572 */
573int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func)
574{
575 struct ssl_sock_msg_callback *cbk;
576
577 if (!func)
578 return 0;
579
580 cbk = calloc(1, sizeof(*cbk));
581 if (!cbk) {
582 ha_alert("out of memory in ssl_sock_register_msg_callback().\n");
583 return 0;
584 }
585
586 cbk->func = func;
587
588 LIST_ADDQ(&ssl_sock_msg_callbacks, &cbk->list);
589
590 return 1;
591}
592
Dragan Dosen9ac98092020-05-11 15:51:45 +0200593/* Used to register dedicated SSL/TLS protocol message callbacks.
594 */
595static int ssl_sock_register_msg_callbacks(void)
596{
597#ifdef TLS1_RT_HEARTBEAT
598 if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat))
599 return ERR_ABORT;
600#endif
601 if (global_ssl.capture_cipherlist > 0) {
602 if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello))
603 return ERR_ABORT;
604 }
Ilya Shipitsin04a5a442020-11-03 14:15:38 +0500605#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +0200606 if (global_ssl.keylog > 0) {
607 if (!ssl_sock_register_msg_callback(ssl_init_keylog))
608 return ERR_ABORT;
609 }
610#endif
611
Christopher Fauletfc633b62020-11-06 15:24:23 +0100612 return ERR_NONE;
Dragan Dosen9ac98092020-05-11 15:51:45 +0200613}
614
Dragan Dosen1e7ed042020-05-08 18:30:00 +0200615/* Used to free all SSL/TLS protocol message callbacks that were
616 * registered by using ssl_sock_register_msg_callback().
617 */
618static void ssl_sock_unregister_msg_callbacks(void)
619{
620 struct ssl_sock_msg_callback *cbk, *cbkback;
621
622 list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) {
623 LIST_DEL(&cbk->list);
624 free(cbk);
625 }
626}
627
Dragan Doseneb607fe2020-05-11 17:17:06 +0200628SSL *ssl_sock_get_ssl_object(struct connection *conn)
629{
630 if (!ssl_sock_is_ssl(conn))
631 return NULL;
632
633 return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl;
634}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100635/*
636 * This function gives the detail of the SSL error. It is used only
637 * if the debug mode and the verbose mode are activated. It dump all
638 * the SSL error until the stack was empty.
639 */
640static forceinline void ssl_sock_dump_errors(struct connection *conn)
641{
642 unsigned long ret;
643
644 if (unlikely(global.mode & MODE_DEBUG)) {
645 while(1) {
646 ret = ERR_get_error();
647 if (ret == 0)
648 return;
Willy Tarreau566cebc2021-03-02 19:32:39 +0100649 fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n",
650 conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100651 ERR_func_error_string(ret), ERR_reason_error_string(ret));
652 }
653 }
654}
655
yanbzhube2774d2015-12-10 15:07:30 -0500656
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200657#ifndef OPENSSL_NO_ENGINE
William Lallemanddad31052020-05-14 17:47:32 +0200658int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
Grant Zhang872f9c22017-01-21 01:10:18 +0000659{
660 int err_code = ERR_ABORT;
661 ENGINE *engine;
662 struct ssl_engine_list *el;
663
664 /* grab the structural reference to the engine */
665 engine = ENGINE_by_id(engine_id);
666 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100667 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000668 goto fail_get;
669 }
670
671 if (!ENGINE_init(engine)) {
672 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100673 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000674 goto fail_init;
675 }
676
677 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100678 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000679 goto fail_set_method;
680 }
681
682 el = calloc(1, sizeof(*el));
683 el->e = engine;
684 LIST_ADD(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100685 nb_engines++;
686 if (global_ssl.async)
687 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000688 return 0;
689
690fail_set_method:
691 /* release the functional reference from ENGINE_init() */
692 ENGINE_finish(engine);
693
694fail_init:
695 /* release the structural reference from ENGINE_by_id() */
696 ENGINE_free(engine);
697
698fail_get:
699 return err_code;
700}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200701#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000702
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +0500703#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +0200704/*
705 * openssl async fd handler
706 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200707void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000708{
Olivier Houchardea8dd942019-05-20 14:02:16 +0200709 struct ssl_sock_ctx *ctx = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000710
Emeric Brun3854e012017-05-17 20:42:48 +0200711 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000712 * to poll this fd until it is requested
713 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000714 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000715 fd_cant_recv(fd);
716
717 /* crypto engine is available, let's notify the associated
718 * connection that it can pursue its processing.
719 */
Olivier Houcharda4598262020-09-15 22:16:02 +0200720 tasklet_wakeup(ctx->wait_event.tasklet);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000721}
722
Emeric Brun3854e012017-05-17 20:42:48 +0200723/*
724 * openssl async delayed SSL_free handler
725 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200726void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000727{
728 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200729 OSSL_ASYNC_FD all_fd[32];
730 size_t num_all_fds = 0;
731 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000732
Emeric Brun3854e012017-05-17 20:42:48 +0200733 /* We suppose that the async job for a same SSL *
734 * are serialized. So if we are awake it is
735 * because the running job has just finished
736 * and we can remove all async fds safely
737 */
738 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
739 if (num_all_fds > 32) {
740 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
741 return;
742 }
743
744 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
745 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200746 fd_stop_both(all_fd[i]);
Emeric Brun3854e012017-05-17 20:42:48 +0200747
748 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000749 SSL_free(ssl);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +0100750 _HA_ATOMIC_SUB(&sslconns, 1);
751 _HA_ATOMIC_SUB(&jobs, 1);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000752}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000753/*
Emeric Brun3854e012017-05-17 20:42:48 +0200754 * function used to manage a returned SSL_ERROR_WANT_ASYNC
755 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000756 */
Olivier Houchardea8dd942019-05-20 14:02:16 +0200757static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000758{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100759 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200760 OSSL_ASYNC_FD del_fd[32];
Olivier Houchardea8dd942019-05-20 14:02:16 +0200761 SSL *ssl = ctx->ssl;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000762 size_t num_add_fds = 0;
763 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200764 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000765
766 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
767 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200768 if (num_add_fds > 32 || num_del_fds > 32) {
769 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 +0000770 return;
771 }
772
Emeric Brun3854e012017-05-17 20:42:48 +0200773 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000774
Emeric Brun3854e012017-05-17 20:42:48 +0200775 /* We remove unused fds from the fdtab */
776 for (i=0 ; i < num_del_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +0200777 fd_stop_both(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000778
Emeric Brun3854e012017-05-17 20:42:48 +0200779 /* We add new fds to the fdtab */
780 for (i=0 ; i < num_add_fds ; i++) {
Olivier Houchardea8dd942019-05-20 14:02:16 +0200781 fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000782 }
783
Emeric Brun3854e012017-05-17 20:42:48 +0200784 num_add_fds = 0;
785 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
786 if (num_add_fds > 32) {
787 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
788 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000789 }
Emeric Brun3854e012017-05-17 20:42:48 +0200790
791 /* We activate the polling for all known async fds */
792 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000793 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200794 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000795 /* To ensure that the fd cache won't be used
796 * We'll prefer to catch a real RD event
797 * because handling an EAGAIN on this fd will
798 * result in a context switch and also
799 * some engines uses a fd in blocking mode.
800 */
801 fd_cant_recv(add_fd[i]);
802 }
Emeric Brun3854e012017-05-17 20:42:48 +0200803
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000804}
805#endif
806
William Lallemand104a7a62019-10-14 14:14:59 +0200807#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200808/*
809 * This function returns the number of seconds elapsed
810 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
811 * date presented un ASN1_GENERALIZEDTIME.
812 *
813 * In parsing error case, it returns -1.
814 */
815static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
816{
817 long epoch;
818 char *p, *end;
819 const unsigned short month_offset[12] = {
820 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
821 };
822 int year, month;
823
824 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
825
826 p = (char *)d->data;
827 end = p + d->length;
828
829 if (end - p < 4) return -1;
830 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
831 p += 4;
832 if (end - p < 2) return -1;
833 month = 10 * (p[0] - '0') + p[1] - '0';
834 if (month < 1 || month > 12) return -1;
835 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
836 We consider leap years and the current month (<marsh or not) */
837 epoch = ( ((year - 1970) * 365)
838 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
839 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
840 + month_offset[month-1]
841 ) * 24 * 60 * 60;
842 p += 2;
843 if (end - p < 2) return -1;
844 /* Add the number of seconds of completed days of current month */
845 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
846 p += 2;
847 if (end - p < 2) return -1;
848 /* Add the completed hours of the current day */
849 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
850 p += 2;
851 if (end - p < 2) return -1;
852 /* Add the completed minutes of the current hour */
853 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
854 p += 2;
855 if (p == end) return -1;
856 /* Test if there is available seconds */
857 if (p[0] < '0' || p[0] > '9')
858 goto nosec;
859 if (end - p < 2) return -1;
860 /* Add the seconds of the current minute */
861 epoch += 10 * (p[0] - '0') + p[1] - '0';
862 p += 2;
863 if (p == end) return -1;
864 /* Ignore seconds float part if present */
865 if (p[0] == '.') {
866 do {
867 if (++p == end) return -1;
868 } while (p[0] >= '0' && p[0] <= '9');
869 }
870
871nosec:
872 if (p[0] == 'Z') {
873 if (end - p != 1) return -1;
874 return epoch;
875 }
876 else if (p[0] == '+') {
877 if (end - p != 5) return -1;
878 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700879 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 +0200880 }
881 else if (p[0] == '-') {
882 if (end - p != 5) return -1;
883 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700884 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 +0200885 }
886
887 return -1;
888}
889
William Lallemand104a7a62019-10-14 14:14:59 +0200890/*
891 * struct alignment works here such that the key.key is the same as key_data
892 * Do not change the placement of key_data
893 */
894struct certificate_ocsp {
895 struct ebmb_node key;
896 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
897 struct buffer response;
William Lallemand76b4a122020-08-04 17:41:39 +0200898 int refcount;
William Lallemand104a7a62019-10-14 14:14:59 +0200899 long expire;
900};
901
902struct ocsp_cbk_arg {
903 int is_single;
904 int single_kt;
905 union {
906 struct certificate_ocsp *s_ocsp;
907 /*
908 * m_ocsp will have multiple entries dependent on key type
909 * Entry 0 - DSA
910 * Entry 1 - ECDSA
911 * Entry 2 - RSA
912 */
913 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
914 };
915};
916
Emeric Brun1d3865b2014-06-20 15:37:32 +0200917static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200918
919/* This function starts to check if the OCSP response (in DER format) contained
920 * in chunk 'ocsp_response' is valid (else exits on error).
921 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
922 * contained in the OCSP Response and exits on error if no match.
923 * If it's a valid OCSP Response:
924 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
925 * pointed by 'ocsp'.
926 * If 'ocsp' is NULL, the function looks up into the OCSP response's
927 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
928 * from the response) and exits on error if not found. Finally, If an OCSP response is
929 * already present in the container, it will be overwritten.
930 *
931 * Note: OCSP response containing more than one OCSP Single response is not
932 * considered valid.
933 *
934 * Returns 0 on success, 1 in error case.
935 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200936static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
937 struct certificate_ocsp *ocsp,
938 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200939{
940 OCSP_RESPONSE *resp;
941 OCSP_BASICRESP *bs = NULL;
942 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200943 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200944 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200945 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200946 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200947 int reason;
948 int ret = 1;
949
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200950 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
951 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200952 if (!resp) {
953 memprintf(err, "Unable to parse OCSP response");
954 goto out;
955 }
956
957 rc = OCSP_response_status(resp);
958 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
959 memprintf(err, "OCSP response status not successful");
960 goto out;
961 }
962
963 bs = OCSP_response_get1_basic(resp);
964 if (!bs) {
965 memprintf(err, "Failed to get basic response from OCSP Response");
966 goto out;
967 }
968
969 count_sr = OCSP_resp_count(bs);
970 if (count_sr > 1) {
971 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
972 goto out;
973 }
974
975 sr = OCSP_resp_get0(bs, 0);
976 if (!sr) {
977 memprintf(err, "Failed to get OCSP single response");
978 goto out;
979 }
980
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200981 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
982
Emeric Brun4147b2e2014-06-16 18:36:30 +0200983 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200984 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200985 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200986 goto out;
987 }
988
Emeric Brun13a6b482014-06-20 15:44:34 +0200989 if (!nextupd) {
990 memprintf(err, "OCSP single response: missing nextupdate");
991 goto out;
992 }
993
Emeric Brunc8b27b62014-06-19 14:16:17 +0200994 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200995 if (!rc) {
996 memprintf(err, "OCSP single response: no longer valid.");
997 goto out;
998 }
999
1000 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001001 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +02001002 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
1003 goto out;
1004 }
1005 }
1006
1007 if (!ocsp) {
1008 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
1009 unsigned char *p;
1010
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001011 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001012 if (!rc) {
1013 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
1014 goto out;
1015 }
1016
1017 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
1018 memprintf(err, "OCSP single response: Certificate ID too long");
1019 goto out;
1020 }
1021
1022 p = key;
1023 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001024 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001025 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
1026 if (!ocsp) {
1027 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
1028 goto out;
1029 }
1030 }
1031
1032 /* According to comments on "chunk_dup", the
1033 previous chunk buffer will be freed */
1034 if (!chunk_dup(&ocsp->response, ocsp_response)) {
1035 memprintf(err, "OCSP response: Memory allocation error");
1036 goto out;
1037 }
1038
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001039 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
1040
Emeric Brun4147b2e2014-06-16 18:36:30 +02001041 ret = 0;
1042out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +01001043 ERR_clear_error();
1044
Emeric Brun4147b2e2014-06-16 18:36:30 +02001045 if (bs)
1046 OCSP_BASICRESP_free(bs);
1047
1048 if (resp)
1049 OCSP_RESPONSE_free(resp);
1050
1051 return ret;
1052}
1053/*
1054 * External function use to update the OCSP response in the OCSP response's
1055 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
1056 * to update in DER format.
1057 *
1058 * Returns 0 on success, 1 in error case.
1059 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001060int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +02001061{
1062 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
1063}
1064
William Lallemand4a660132019-10-14 14:51:41 +02001065#endif
1066
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001067#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
1068static 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)
1069{
Christopher Faulet16f45c82018-02-16 11:23:49 +01001070 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +01001071 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001072 struct connection *conn;
1073 int head;
1074 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001075 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001076
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001077 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +02001078 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001079 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1080
1081 keys = ref->tlskeys;
1082 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001083
1084 if (enc) {
1085 memcpy(key_name, keys[head].name, 16);
1086
1087 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +01001088 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001089
Emeric Brun9e754772019-01-10 17:51:55 +01001090 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001091
Emeric Brun9e754772019-01-10 17:51:55 +01001092 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
1093 goto end;
1094
Willy Tarreau9356dac2019-05-10 09:22:53 +02001095 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001096 ret = 1;
1097 }
1098 else if (ref->key_size_bits == 256 ) {
1099
1100 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
1101 goto end;
1102
Willy Tarreau9356dac2019-05-10 09:22:53 +02001103 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +01001104 ret = 1;
1105 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001106 } else {
1107 for (i = 0; i < TLS_TICKETS_NO; i++) {
1108 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
1109 goto found;
1110 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01001111 ret = 0;
1112 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001113
Christopher Faulet16f45c82018-02-16 11:23:49 +01001114 found:
Emeric Brun9e754772019-01-10 17:51:55 +01001115 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001116 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 +01001117 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
1118 goto end;
1119 /* 2 for key renewal, 1 if current key is still valid */
1120 ret = i ? 2 : 1;
1121 }
1122 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +02001123 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 +01001124 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
1125 goto end;
1126 /* 2 for key renewal, 1 if current key is still valid */
1127 ret = i ? 2 : 1;
1128 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001129 }
Emeric Brun9e754772019-01-10 17:51:55 +01001130
Christopher Faulet16f45c82018-02-16 11:23:49 +01001131 end:
1132 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
1133 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001134}
1135
1136struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
1137{
1138 struct tls_keys_ref *ref;
1139
1140 list_for_each_entry(ref, &tlskeys_reference, list)
1141 if (ref->filename && strcmp(filename, ref->filename) == 0)
1142 return ref;
1143 return NULL;
1144}
1145
1146struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
1147{
1148 struct tls_keys_ref *ref;
1149
1150 list_for_each_entry(ref, &tlskeys_reference, list)
1151 if (ref->unique_id == unique_id)
1152 return ref;
1153 return NULL;
1154}
1155
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001156/* Update the key into ref: if keysize doesn't
Emeric Brun9e754772019-01-10 17:51:55 +01001157 * match existing ones, this function returns -1
1158 * else it returns 0 on success.
1159 */
1160int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001161 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001162{
Emeric Brun9e754772019-01-10 17:51:55 +01001163 if (ref->key_size_bits == 128) {
1164 if (tlskey->data != sizeof(struct tls_sess_key_128))
1165 return -1;
1166 }
1167 else if (ref->key_size_bits == 256) {
1168 if (tlskey->data != sizeof(struct tls_sess_key_256))
1169 return -1;
1170 }
1171 else
1172 return -1;
1173
Christopher Faulet16f45c82018-02-16 11:23:49 +01001174 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001175 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1176 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001177 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1178 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001179
1180 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001181}
1182
Willy Tarreau83061a82018-07-13 11:56:34 +02001183int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001184{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001185 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1186
1187 if(!ref) {
1188 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1189 return 1;
1190 }
Emeric Brun9e754772019-01-10 17:51:55 +01001191 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1192 memprintf(err, "Invalid key size");
1193 return 1;
1194 }
1195
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001196 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001197}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001198
1199/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001200 * automatic ids. It's called just after the basic checks. It returns
1201 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001202 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001203static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001204{
1205 int i = 0;
1206 struct tls_keys_ref *ref, *ref2, *ref3;
1207 struct list tkr = LIST_HEAD_INIT(tkr);
1208
1209 list_for_each_entry(ref, &tlskeys_reference, list) {
1210 if (ref->unique_id == -1) {
1211 /* Look for the first free id. */
1212 while (1) {
1213 list_for_each_entry(ref2, &tlskeys_reference, list) {
1214 if (ref2->unique_id == i) {
1215 i++;
1216 break;
1217 }
1218 }
1219 if (&ref2->list == &tlskeys_reference)
1220 break;
1221 }
1222
1223 /* Uses the unique id and increment it for the next entry. */
1224 ref->unique_id = i;
1225 i++;
1226 }
1227 }
1228
1229 /* This sort the reference list by id. */
1230 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
1231 LIST_DEL(&ref->list);
1232 list_for_each_entry(ref3, &tkr, list) {
1233 if (ref->unique_id < ref3->unique_id) {
1234 LIST_ADDQ(&ref3->list, &ref->list);
1235 break;
1236 }
1237 }
1238 if (&ref3->list == &tkr)
1239 LIST_ADDQ(&tkr, &ref->list);
1240 }
1241
1242 /* swap root */
1243 LIST_ADD(&tkr, &tlskeys_reference);
1244 LIST_DEL(&tkr);
Christopher Fauletfc633b62020-11-06 15:24:23 +01001245 return ERR_NONE;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001246}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001247#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1248
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001249#ifndef OPENSSL_NO_OCSP
William Lallemand76b4a122020-08-04 17:41:39 +02001250int ocsp_ex_index = -1;
1251
yanbzhube2774d2015-12-10 15:07:30 -05001252int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1253{
1254 switch (evp_keytype) {
1255 case EVP_PKEY_RSA:
1256 return 2;
1257 case EVP_PKEY_DSA:
1258 return 0;
1259 case EVP_PKEY_EC:
1260 return 1;
1261 }
1262
1263 return -1;
1264}
1265
Emeric Brun4147b2e2014-06-16 18:36:30 +02001266/*
1267 * Callback used to set OCSP status extension content in server hello.
1268 */
1269int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1270{
yanbzhube2774d2015-12-10 15:07:30 -05001271 struct certificate_ocsp *ocsp;
1272 struct ocsp_cbk_arg *ocsp_arg;
1273 char *ssl_buf;
William Lallemand76b4a122020-08-04 17:41:39 +02001274 SSL_CTX *ctx;
yanbzhube2774d2015-12-10 15:07:30 -05001275 EVP_PKEY *ssl_pkey;
1276 int key_type;
1277 int index;
1278
William Lallemand76b4a122020-08-04 17:41:39 +02001279 ctx = SSL_get_SSL_CTX(ssl);
1280 if (!ctx)
1281 return SSL_TLSEXT_ERR_NOACK;
1282
1283 ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
1284 if (!ocsp_arg)
1285 return SSL_TLSEXT_ERR_NOACK;
yanbzhube2774d2015-12-10 15:07:30 -05001286
1287 ssl_pkey = SSL_get_privatekey(ssl);
1288 if (!ssl_pkey)
1289 return SSL_TLSEXT_ERR_NOACK;
1290
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001291 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001292
1293 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1294 ocsp = ocsp_arg->s_ocsp;
1295 else {
1296 /* For multiple certs per context, we have to find the correct OCSP response based on
1297 * the certificate type
1298 */
1299 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1300
1301 if (index < 0)
1302 return SSL_TLSEXT_ERR_NOACK;
1303
1304 ocsp = ocsp_arg->m_ocsp[index];
1305
1306 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001307
1308 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001309 !ocsp->response.area ||
1310 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001311 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001312 return SSL_TLSEXT_ERR_NOACK;
1313
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001314 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001315 if (!ssl_buf)
1316 return SSL_TLSEXT_ERR_NOACK;
1317
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001318 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1319 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001320
1321 return SSL_TLSEXT_ERR_OK;
1322}
1323
William Lallemand4a660132019-10-14 14:51:41 +02001324#endif
1325
Ilya Shipitsinb3201a32020-10-18 09:11:50 +05001326#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
William Lallemand76b4a122020-08-04 17:41:39 +02001327
1328
1329/*
1330 * Decrease the refcount of the struct ocsp_response and frees it if it's not
1331 * used anymore. Also removes it from the tree if free'd.
1332 */
1333static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp)
1334{
1335 if (!ocsp)
1336 return;
1337
1338 ocsp->refcount--;
1339 if (ocsp->refcount <= 0) {
1340 ebmb_delete(&ocsp->key);
1341 chunk_destroy(&ocsp->response);
1342 free(ocsp);
1343 }
1344}
1345
1346
Emeric Brun4147b2e2014-06-16 18:36:30 +02001347/*
1348 * This function enables the handling of OCSP status extension on 'ctx' if a
William Lallemand246c0242019-10-11 08:59:13 +02001349 * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP
1350 * status extension, the issuer's certificate is mandatory. It should be
1351 * present in ckch->ocsp_issuer.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001352 *
William Lallemand246c0242019-10-11 08:59:13 +02001353 * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an
1354 * OCSP response. If file is empty or content is not a valid OCSP response,
1355 * OCSP status extension is enabled but OCSP response is ignored (a warning is
1356 * displayed).
Emeric Brun4147b2e2014-06-16 18:36:30 +02001357 *
1358 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001359 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001360 */
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001361static 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 +02001362{
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001363 X509 *x, *issuer;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001364 OCSP_CERTID *cid = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001365 int i, ret = -1;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001366 struct certificate_ocsp *ocsp = NULL, *iocsp;
1367 char *warn = NULL;
1368 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001369 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001370
Emeric Brun4147b2e2014-06-16 18:36:30 +02001371
William Lallemand246c0242019-10-11 08:59:13 +02001372 x = ckch->cert;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001373 if (!x)
1374 goto out;
1375
William Lallemand246c0242019-10-11 08:59:13 +02001376 issuer = ckch->ocsp_issuer;
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001377 /* take issuer from chain over ocsp_issuer, is what is done historicaly */
1378 if (chain) {
1379 /* check if one of the certificate of the chain is the issuer */
1380 for (i = 0; i < sk_X509_num(chain); i++) {
1381 X509 *ti = sk_X509_value(chain, i);
1382 if (X509_check_issued(ti, x) == X509_V_OK) {
1383 issuer = ti;
1384 break;
1385 }
1386 }
1387 }
William Lallemand246c0242019-10-11 08:59:13 +02001388 if (!issuer)
1389 goto out;
Emeric Brun4147b2e2014-06-16 18:36:30 +02001390
1391 cid = OCSP_cert_to_id(0, x, issuer);
1392 if (!cid)
1393 goto out;
1394
1395 i = i2d_OCSP_CERTID(cid, NULL);
1396 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1397 goto out;
1398
Vincent Bernat02779b62016-04-03 13:48:43 +02001399 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001400 if (!ocsp)
1401 goto out;
1402
1403 p = ocsp->key_data;
1404 i2d_OCSP_CERTID(cid, &p);
1405
1406 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1407 if (iocsp == ocsp)
1408 ocsp = NULL;
1409
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001410#ifndef SSL_CTX_get_tlsext_status_cb
1411# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1412 *cb = (void (*) (void))ctx->tlsext_status_cb;
1413#endif
1414 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1415
1416 if (!callback) {
William Lallemanda560c062020-07-31 11:43:20 +02001417 struct ocsp_cbk_arg *cb_arg;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001418 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001419
William Lallemanda560c062020-07-31 11:43:20 +02001420 cb_arg = calloc(1, sizeof(*cb_arg));
1421 if (!cb_arg)
1422 goto out;
1423
yanbzhube2774d2015-12-10 15:07:30 -05001424 cb_arg->is_single = 1;
1425 cb_arg->s_ocsp = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001426 iocsp->refcount++;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001427
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001428 pkey = X509_get_pubkey(x);
1429 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1430 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001431
1432 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
William Lallemand76b4a122020-08-04 17:41:39 +02001433 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 */
1434
yanbzhube2774d2015-12-10 15:07:30 -05001435 } else {
1436 /*
1437 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1438 * Update that cb_arg with the new cert's staple
1439 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001440 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001441 struct certificate_ocsp *tmp_ocsp;
1442 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001443 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001444 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001445
William Lallemand76b4a122020-08-04 17:41:39 +02001446 cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index);
yanbzhube2774d2015-12-10 15:07:30 -05001447
1448 /*
1449 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1450 * the order of operations below matter, take care when changing it
1451 */
1452 tmp_ocsp = cb_arg->s_ocsp;
1453 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1454 cb_arg->s_ocsp = NULL;
1455 cb_arg->m_ocsp[index] = tmp_ocsp;
1456 cb_arg->is_single = 0;
1457 cb_arg->single_kt = 0;
1458
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001459 pkey = X509_get_pubkey(x);
1460 key_type = EVP_PKEY_base_id(pkey);
1461 EVP_PKEY_free(pkey);
1462
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001463 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
William Lallemand76b4a122020-08-04 17:41:39 +02001464 if (index >= 0 && !cb_arg->m_ocsp[index]) {
yanbzhube2774d2015-12-10 15:07:30 -05001465 cb_arg->m_ocsp[index] = iocsp;
William Lallemand76b4a122020-08-04 17:41:39 +02001466 iocsp->refcount++;
1467 }
yanbzhube2774d2015-12-10 15:07:30 -05001468 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001469
1470 ret = 0;
1471
1472 warn = NULL;
William Lallemand86e4d632020-08-07 00:44:32 +02001473 if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) {
William Lallemand3b5f3602019-10-16 18:05:05 +02001474 memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001475 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001476 }
1477
1478out:
Emeric Brun4147b2e2014-06-16 18:36:30 +02001479 if (cid)
1480 OCSP_CERTID_free(cid);
1481
1482 if (ocsp)
1483 free(ocsp);
1484
1485 if (warn)
1486 free(warn);
1487
Emeric Brun4147b2e2014-06-16 18:36:30 +02001488 return ret;
1489}
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01001490#endif
1491
1492#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01001493static 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 +02001494{
William Lallemand4a660132019-10-14 14:51:41 +02001495 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 +02001496}
1497#endif
1498
William Lallemand4a660132019-10-14 14:51:41 +02001499
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05001500#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001501
1502#define CT_EXTENSION_TYPE 18
1503
William Lallemand03c331c2020-05-13 10:10:01 +02001504int sctl_ex_index = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001505
1506int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1507{
Willy Tarreau83061a82018-07-13 11:56:34 +02001508 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001509
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001510 *out = (unsigned char *) sctl->area;
1511 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001512
1513 return 1;
1514}
1515
1516int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1517{
1518 return 1;
1519}
1520
William Lallemanda17f4112019-10-10 15:16:44 +02001521static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001522{
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001523 int ret = -1;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001524
William Lallemanda17f4112019-10-10 15:16:44 +02001525 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 +01001526 goto out;
1527
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001528 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1529
1530 ret = 0;
1531
1532out:
1533 return ret;
1534}
1535
1536#endif
1537
Emeric Brune1f38db2012-09-03 20:36:47 +02001538void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1539{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001540 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001541 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001542 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001543 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001544
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001545#ifndef SSL_OP_NO_RENEGOTIATION
1546 /* Please note that BoringSSL defines this macro to zero so don't
1547 * change this to #if and do not assign a default value to this macro!
1548 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001549 if (where & SSL_CB_HANDSHAKE_START) {
1550 /* Disable renegotiation (CVE-2009-3555) */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01001551 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 +02001552 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001553 conn->err_code = CO_ER_SSL_RENEG;
1554 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001555 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001556#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001557
1558 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001559 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001560 /* Long certificate chains optimz
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001561 If write and read bios are different, we
Emeric Brund8b2bb52014-01-28 15:43:53 +01001562 consider that the buffering was activated,
1563 so we rise the output buffer size from 4k
1564 to 16k */
1565 write_bio = SSL_get_wbio(ssl);
1566 if (write_bio != SSL_get_rbio(ssl)) {
1567 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001568 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001569 }
1570 }
1571 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001572}
1573
Emeric Brune64aef12012-09-21 13:15:06 +02001574/* Callback is called for each certificate of the chain during a verify
1575 ok is set to 1 if preverify detect no error on current certificate.
1576 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001577int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001578{
1579 SSL *ssl;
1580 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001581 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001582 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001583
1584 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001585 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001586
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001587 ctx = conn->xprt_ctx;
1588
1589 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001590
Emeric Brun81c00f02012-09-21 14:31:21 +02001591 if (ok) /* no errors */
1592 return ok;
1593
1594 depth = X509_STORE_CTX_get_error_depth(x_store);
1595 err = X509_STORE_CTX_get_error(x_store);
1596
1597 /* check if CA error needs to be ignored */
1598 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001599 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1600 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1601 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001602 }
1603
Willy Tarreau731248f2020-02-04 14:02:02 +01001604 if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001605 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001606 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001607 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001608 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001609
Willy Tarreau20879a02012-12-03 16:32:10 +01001610 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001611 return 0;
1612 }
1613
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001614 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1615 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001616
Emeric Brun81c00f02012-09-21 14:31:21 +02001617 /* check if certificate error needs to be ignored */
Willy Tarreau731248f2020-02-04 14:02:02 +01001618 if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001619 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001620 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001621 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001622 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001623
Willy Tarreau20879a02012-12-03 16:32:10 +01001624 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001625 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001626}
1627
Dragan Dosen9ac98092020-05-11 15:51:45 +02001628#ifdef TLS1_RT_HEARTBEAT
1629static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version,
1630 int content_type, const void *buf, size_t len,
1631 SSL *ssl)
1632{
1633 /* test heartbeat received (write_p is set to 0
1634 for a received record) */
1635 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
1636 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
1637 const unsigned char *p = buf;
1638 unsigned int payload;
1639
1640 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
1641
1642 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1643 if (*p != TLS1_HB_REQUEST)
1644 return;
1645
1646 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
1647 goto kill_it;
1648
1649 payload = (p[1] * 256) + p[2];
1650 if (3 + payload + 16 <= len)
1651 return; /* OK no problem */
1652 kill_it:
1653 /* We have a clear heartbleed attack (CVE-2014-0160), the
1654 * advertised payload is larger than the advertised packet
1655 * length, so we have garbage in the buffer between the
1656 * payload and the end of the buffer (p+len). We can't know
1657 * if the SSL stack is patched, and we don't know if we can
1658 * safely wipe out the area between p+3+len and payload.
1659 * So instead, we prevent the response from being sent by
1660 * setting the max_send_fragment to 0 and we report an SSL
1661 * error, which will kill this connection. It will be reported
1662 * above as SSL_ERROR_SSL while an other handshake failure with
1663 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1664 */
1665 ssl->max_send_fragment = 0;
1666 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1667 }
1668}
1669#endif
1670
1671static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version,
1672 int content_type, const void *buf, size_t len,
1673 SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001674{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001675 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001676 unsigned char *msg;
1677 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001678 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001679
1680 /* This function is called for "from client" and "to server"
1681 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001682 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001683 */
1684
1685 /* "write_p" is set to 0 is the bytes are received messages,
1686 * otherwise it is set to 1.
1687 */
1688 if (write_p != 0)
1689 return;
1690
1691 /* content_type contains the type of message received or sent
1692 * according with the SSL/TLS protocol spec. This message is
1693 * encoded with one byte. The value 256 (two bytes) is used
1694 * for designing the SSL/TLS record layer. According with the
1695 * rfc6101, the expected message (other than 256) are:
1696 * - change_cipher_spec(20)
1697 * - alert(21)
1698 * - handshake(22)
1699 * - application_data(23)
1700 * - (255)
1701 * We are interessed by the handshake and specially the client
1702 * hello.
1703 */
1704 if (content_type != 22)
1705 return;
1706
1707 /* The message length is at least 4 bytes, containing the
1708 * message type and the message length.
1709 */
1710 if (len < 4)
1711 return;
1712
1713 /* First byte of the handshake message id the type of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001714 * message. The known types are:
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001715 * - hello_request(0)
1716 * - client_hello(1)
1717 * - server_hello(2)
1718 * - certificate(11)
1719 * - server_key_exchange (12)
1720 * - certificate_request(13)
1721 * - server_hello_done(14)
1722 * We are interested by the client hello.
1723 */
1724 msg = (unsigned char *)buf;
1725 if (msg[0] != 1)
1726 return;
1727
1728 /* Next three bytes are the length of the message. The total length
1729 * must be this decoded length + 4. If the length given as argument
1730 * is not the same, we abort the protocol dissector.
1731 */
1732 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1733 if (len < rec_len + 4)
1734 return;
1735 msg += 4;
1736 end = msg + rec_len;
1737 if (end < msg)
1738 return;
1739
1740 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1741 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001742 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1743 */
1744 msg += 1 + 1 + 4 + 28;
1745 if (msg > end)
1746 return;
1747
1748 /* Next, is session id:
1749 * if present, we have to jump by length + 1 for the size information
1750 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001751 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001752 if (msg[0] > 0)
1753 msg += msg[0];
1754 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001755 if (msg > end)
1756 return;
1757
1758 /* Next two bytes are the ciphersuite length. */
1759 if (msg + 2 > end)
1760 return;
1761 rec_len = (msg[0] << 8) + msg[1];
1762 msg += 2;
1763 if (msg + rec_len > end || msg + rec_len < msg)
1764 return;
1765
Willy Tarreaubafbe012017-11-24 17:34:44 +01001766 capture = pool_alloc_dirty(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001767 if (!capture)
1768 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001769 /* Compute the xxh64 of the ciphersuite. */
1770 capture->xxh64 = XXH64(msg, rec_len, 0);
1771
1772 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001773 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1774 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001775 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001776
1777 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001778}
William Lallemand7d42ef52020-07-06 11:41:30 +02001779
1780
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05001781#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02001782static void ssl_init_keylog(struct connection *conn, int write_p, int version,
1783 int content_type, const void *buf, size_t len,
1784 SSL *ssl)
1785{
1786 struct ssl_keylog *keylog;
1787
1788 if (SSL_get_ex_data(ssl, ssl_keylog_index))
1789 return;
1790
1791 keylog = pool_alloc(pool_head_ssl_keylog);
1792 if (!keylog)
1793 return;
1794
1795 memset(keylog, 0, sizeof(*keylog));
1796
1797 if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) {
1798 pool_free(pool_head_ssl_keylog, keylog);
1799 return;
1800 }
1801}
1802#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001803
Emeric Brun29f037d2014-04-25 19:05:36 +02001804/* Callback is called for ssl protocol analyse */
1805void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1806{
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001807 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
1808 struct ssl_sock_msg_callback *cbk;
1809
Dragan Dosen1e7ed042020-05-08 18:30:00 +02001810 /* Try to call all callback functions that were registered by using
1811 * ssl_sock_register_msg_callback().
1812 */
1813 list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) {
1814 cbk->func(conn, write_p, version, content_type, buf, len, ssl);
1815 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001816}
1817
Bernard Spil13c53f82018-02-15 13:34:58 +01001818#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001819static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1820 const unsigned char *in, unsigned int inlen,
1821 void *arg)
1822{
1823 struct server *srv = arg;
1824
1825 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1826 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1827 return SSL_TLSEXT_ERR_OK;
1828 return SSL_TLSEXT_ERR_NOACK;
1829}
1830#endif
1831
1832#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001833/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001834 * negotiable protocols for NPN.
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001835 */
1836static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1837 unsigned int *len, void *arg)
1838{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001839 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001840
1841 *data = (const unsigned char *)conf->npn_str;
1842 *len = conf->npn_len;
1843 return SSL_TLSEXT_ERR_OK;
1844}
1845#endif
1846
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001847#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001848/* This callback is used so that the server advertises the list of
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05001849 * negotiable protocols for ALPN.
Willy Tarreauab861d32013-04-02 02:30:41 +02001850 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001851static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1852 unsigned char *outlen,
1853 const unsigned char *server,
1854 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001855{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001856 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001857
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001858 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1859 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1860 return SSL_TLSEXT_ERR_NOACK;
1861 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001862 return SSL_TLSEXT_ERR_OK;
1863}
1864#endif
1865
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001866#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001867#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001868
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001869/* Configure a DNS SAN extenion on a certificate. */
1870int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) {
1871 int failure = 0;
1872 X509_EXTENSION *san_ext = NULL;
1873 CONF *conf = NULL;
1874 struct buffer *san_name = get_trash_chunk();
1875
1876 conf = NCONF_new(NULL);
1877 if (!conf) {
1878 failure = 1;
1879 goto cleanup;
1880 }
1881
1882 /* Build an extension based on the DNS entry above */
1883 chunk_appendf(san_name, "DNS:%s", servername);
1884 san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area);
1885 if (!san_ext) {
1886 failure = 1;
1887 goto cleanup;
1888 }
1889
1890 /* Add the extension */
1891 if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) {
1892 failure = 1;
1893 goto cleanup;
1894 }
1895
1896 /* Success */
1897 failure = 0;
1898
1899cleanup:
1900 if (NULL != san_ext) X509_EXTENSION_free(san_ext);
1901 if (NULL != conf) NCONF_free(conf);
1902
1903 return failure;
1904}
1905
Christopher Faulet30548802015-06-11 13:39:32 +02001906/* Create a X509 certificate with the specified servername and serial. This
1907 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001908static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001909ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001910{
Shimi Gersner5846c492020-08-23 13:58:12 +03001911 X509 *cacert = bind_conf->ca_sign_ckch->cert;
1912 EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001913 SSL_CTX *ssl_ctx = NULL;
1914 X509 *newcrt = NULL;
1915 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001916 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001917 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001918 X509_NAME *name;
1919 const EVP_MD *digest;
1920 X509V3_CTX ctx;
1921 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001922 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001923
Christopher Faulet48a83322017-07-28 16:56:09 +02001924 /* Get the private key of the default certificate and use it */
Ilya Shipitsinaf204882020-12-19 03:12:12 +05001925#ifdef HAVE_SSL_CTX_get0_privatekey
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001926 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1927#else
1928 tmp_ssl = SSL_new(bind_conf->default_ctx);
1929 if (tmp_ssl)
1930 pkey = SSL_get_privatekey(tmp_ssl);
1931#endif
1932 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001933 goto mkcert_error;
1934
1935 /* Create the certificate */
1936 if (!(newcrt = X509_new()))
1937 goto mkcert_error;
1938
1939 /* Set version number for the certificate (X509v3) and the serial
1940 * number */
1941 if (X509_set_version(newcrt, 2L) != 1)
1942 goto mkcert_error;
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01001943 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001944
1945 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001946 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1947 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001948 goto mkcert_error;
1949
1950 /* set public key in the certificate */
1951 if (X509_set_pubkey(newcrt, pkey) != 1)
1952 goto mkcert_error;
1953
1954 /* Set issuer name from the CA */
1955 if (!(name = X509_get_subject_name(cacert)))
1956 goto mkcert_error;
1957 if (X509_set_issuer_name(newcrt, name) != 1)
1958 goto mkcert_error;
1959
1960 /* Set the subject name using the same, but the CN */
1961 name = X509_NAME_dup(name);
1962 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1963 (const unsigned char *)servername,
1964 -1, -1, 0) != 1) {
1965 X509_NAME_free(name);
1966 goto mkcert_error;
1967 }
1968 if (X509_set_subject_name(newcrt, name) != 1) {
1969 X509_NAME_free(name);
1970 goto mkcert_error;
1971 }
1972 X509_NAME_free(name);
1973
1974 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001975 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001976 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1977 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1978 X509_EXTENSION *ext;
1979
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001980 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001981 goto mkcert_error;
1982 if (!X509_add_ext(newcrt, ext, -1)) {
1983 X509_EXTENSION_free(ext);
1984 goto mkcert_error;
1985 }
1986 X509_EXTENSION_free(ext);
1987 }
1988
Shimi Gersneradabbfe2020-08-23 13:58:13 +03001989 /* Add SAN extension */
1990 if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) {
1991 goto mkcert_error;
1992 }
1993
Christopher Faulet31af49d2015-06-09 17:29:50 +02001994 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001995
1996 key_type = EVP_PKEY_base_id(capkey);
1997
1998 if (key_type == EVP_PKEY_DSA)
1999 digest = EVP_sha1();
2000 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002001 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002002 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02002003 digest = EVP_sha256();
2004 else {
Ilya Shipitsinec36c912021-01-07 11:57:42 +05002005#ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID
Christopher Faulet7969a332015-10-09 11:15:03 +02002006 int nid;
2007
2008 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
2009 goto mkcert_error;
2010 if (!(digest = EVP_get_digestbynid(nid)))
2011 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02002012#else
2013 goto mkcert_error;
2014#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02002015 }
2016
Christopher Faulet31af49d2015-06-09 17:29:50 +02002017 if (!(X509_sign(newcrt, capkey, digest)))
2018 goto mkcert_error;
2019
2020 /* Create and set the new SSL_CTX */
2021 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
2022 goto mkcert_error;
2023 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
2024 goto mkcert_error;
2025 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
2026 goto mkcert_error;
2027 if (!SSL_CTX_check_private_key(ssl_ctx))
2028 goto mkcert_error;
2029
Shimi Gersner5846c492020-08-23 13:58:12 +03002030 /* Build chaining the CA cert and the rest of the chain, keep these order */
2031#if defined(SSL_CTX_add1_chain_cert)
2032 if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) {
2033 goto mkcert_error;
2034 }
2035
2036 if (bind_conf->ca_sign_ckch->chain) {
2037 for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) {
2038 X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i);
2039 if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) {
2040 goto mkcert_error;
2041 }
2042 }
2043 }
2044#endif
2045
Christopher Faulet31af49d2015-06-09 17:29:50 +02002046 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02002047
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002048#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002049 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01002050#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002051#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
2052 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002053 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02002054 EC_KEY *ecc;
2055 int nid;
2056
2057 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
2058 goto end;
2059 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
2060 goto end;
2061 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
2062 EC_KEY_free(ecc);
2063 }
2064#endif
2065 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02002066 return ssl_ctx;
2067
2068 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02002069 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02002070 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002071 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
2072 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002073 return NULL;
2074}
2075
Christopher Faulet7969a332015-10-09 11:15:03 +02002076SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002077ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02002078{
Willy Tarreau07d94e42018-09-20 10:57:52 +02002079 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01002080 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002081
Olivier Houchard66ab4982019-02-26 18:37:15 +01002082 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02002083}
2084
Christopher Faulet30548802015-06-11 13:39:32 +02002085/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02002086 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02002087SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02002088ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02002089{
2090 struct lru64 *lru = NULL;
2091
2092 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002093 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002094 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002095 if (lru && lru->domain) {
2096 if (ssl)
2097 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002098 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002099 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002100 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002101 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002102 }
2103 return NULL;
2104}
2105
Emeric Brun821bb9b2017-06-15 16:37:39 +02002106/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2107 * function is not thread-safe, it should only be used to check if a certificate
2108 * exists in the lru cache (with no warranty it will not be removed by another
2109 * thread). It is kept for backward compatibility. */
2110SSL_CTX *
2111ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2112{
2113 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2114}
2115
Christopher Fauletd2cab922015-07-28 16:03:47 +02002116/* Set a certificate int the LRU cache used to store generated
2117 * certificate. Return 0 on success, otherwise -1 */
2118int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002119ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002120{
2121 struct lru64 *lru = NULL;
2122
2123 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002124 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Shimi Gersner5846c492020-08-23 13:58:12 +03002125 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002126 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002127 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002128 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002129 }
Christopher Faulet30548802015-06-11 13:39:32 +02002130 if (lru->domain && lru->data)
2131 lru->free((SSL_CTX *)lru->data);
Shimi Gersner5846c492020-08-23 13:58:12 +03002132 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free);
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 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002135 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002136 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002137}
2138
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002139/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002140unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002141ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002142{
2143 return XXH32(data, len, ssl_ctx_lru_seed);
2144}
2145
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002146/* Generate a cert and immediately assign it to the SSL session so that the cert's
2147 * refcount is maintained regardless of the cert's presence in the LRU cache.
2148 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002149static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002150ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002151{
Shimi Gersner5846c492020-08-23 13:58:12 +03002152 X509 *cacert = bind_conf->ca_sign_ckch->cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002153 SSL_CTX *ssl_ctx = NULL;
2154 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002155 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002156
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002157 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002158 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002159 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002160 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002161 if (lru && lru->domain)
2162 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002163 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002164 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002165 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002166 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002167 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002168 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002169 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002170 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002171 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002172 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002173 SSL_set_SSL_CTX(ssl, ssl_ctx);
2174 /* No LRU cache, this CTX will be released as soon as the session dies */
2175 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002176 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002177 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002178 return 0;
2179}
2180static int
2181ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2182{
2183 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002184 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002185
Willy Tarreauf5bdb642019-07-17 11:29:32 +02002186 if (conn_get_dst(conn)) {
Willy Tarreau085a1512019-07-17 14:47:35 +02002187 key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002188 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002189 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002190 }
2191 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002192}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002193#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002194
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002195#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002196
2197static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002198{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002199#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002200 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002201 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2202#endif
2203}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002204static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2205 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002206 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2207}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002208static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002209#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002210 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002211 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2212#endif
2213}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002214static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002215#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002216 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002217 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2218#endif
2219}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002220/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002221static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2222/* Unusable in this context. */
2223static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2224static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2225static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2226static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2227static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002228#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002229
2230static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2231 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002232 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2233}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002234static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2235 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2236 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2237}
2238static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2239 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002240 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2241}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002242static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2243 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2244 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2245}
2246static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2247 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002248 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2249}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002250static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2251 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2252 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2253}
2254static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2255 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002256 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2257}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002258static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2259 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2260 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2261}
2262static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002263#if SSL_OP_NO_TLSv1_3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002264 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002265 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2266#endif
2267}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002268static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
2269#if SSL_OP_NO_TLSv1_3
2270 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2271 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002272#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002273}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002274#endif
2275static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2276static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002277
William Lallemand7fd8b452020-05-07 15:20:43 +02002278struct methodVersions methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002279 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2280 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2281 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2282 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2283 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2284 {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 +02002285};
2286
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002287static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2288{
2289 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2290 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2291 SSL_set_SSL_CTX(ssl, ctx);
2292}
2293
Ilya Shipitsin1fc44d42021-01-23 00:09:14 +05002294#ifdef HAVE_SSL_CLIENT_HELLO_CB
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002295
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002296int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002297{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002298 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002299 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002300
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002301 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2302 return SSL_TLSEXT_ERR_OK;
2303 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002304}
2305
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002306#ifdef OPENSSL_IS_BORINGSSL
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002307int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002308{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002309 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002310#else
Frédéric Lécaille901ee2f2020-11-23 11:19:04 +01002311int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002312{
2313#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002314 struct connection *conn;
2315 struct bind_conf *s;
2316 const uint8_t *extension_data;
2317 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002318 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002319
2320 char *wildp = NULL;
2321 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002322 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002323 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002324 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002325 int i;
2326
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002327 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002328 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002329
Frédéric Lécaillee9473c72020-11-23 15:37:11 +01002330#ifdef USE_QUIC
2331 if (conn->qc) {
2332 /* Look for the QUIC transport parameters. */
2333#ifdef OPENSSL_IS_BORINGSSL
2334 if (!SSL_early_callback_ctx_extension_get(ctx, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2335 &extension_data, &extension_len))
2336#else
2337 if (!SSL_client_hello_get0_ext(ssl, TLS_EXTENSION_QUIC_TRANSPORT_PARAMETERS,
2338 &extension_data, &extension_len))
2339#endif
2340 goto abort;
2341
2342 if (!quic_transport_params_store(conn->qc, 0, extension_data,
2343 extension_data + extension_len))
2344 goto abort;
2345 }
2346#endif
2347
Olivier Houchard9679ac92017-10-27 14:58:08 +02002348 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002349 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002350#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002351 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2352 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002353#else
2354 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2355#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002356 /*
2357 * The server_name extension was given too much extensibility when it
2358 * was written, so parsing the normal case is a bit complex.
2359 */
2360 size_t len;
2361 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002362 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002363 /* Extract the length of the supplied list of names. */
2364 len = (*extension_data++) << 8;
2365 len |= *extension_data++;
2366 if (len + 2 != extension_len)
2367 goto abort;
2368 /*
2369 * The list in practice only has a single element, so we only consider
2370 * the first one.
2371 */
2372 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2373 goto abort;
2374 extension_len = len - 1;
2375 /* Now we can finally pull out the byte array with the actual hostname. */
2376 if (extension_len <= 2)
2377 goto abort;
2378 len = (*extension_data++) << 8;
2379 len |= *extension_data++;
2380 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2381 || memchr(extension_data, 0, len) != NULL)
2382 goto abort;
2383 servername = extension_data;
2384 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002385 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002386#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2387 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002388 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002389 }
2390#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002391 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002392 if (!s->strict_sni) {
William Lallemand21724f02019-11-04 17:56:13 +01002393 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002394 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002395 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002396 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002397 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002398 goto abort;
2399 }
2400
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002401 /* extract/check clientHello information */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002402#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002403 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002404#else
2405 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2406#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002407 uint8_t sign;
2408 size_t len;
2409 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002410 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002411 len = (*extension_data++) << 8;
2412 len |= *extension_data++;
2413 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002414 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002415 if (len % 2 != 0)
2416 goto abort;
2417 for (; len > 0; len -= 2) {
2418 extension_data++; /* hash */
2419 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002420 switch (sign) {
2421 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002422 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002423 break;
2424 case TLSEXT_signature_ecdsa:
2425 has_ecdsa_sig = 1;
2426 break;
2427 default:
2428 continue;
2429 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002430 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002431 break;
2432 }
2433 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002434 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002435 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002436 }
2437 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002438 const SSL_CIPHER *cipher;
2439 size_t len;
2440 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002441 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002442#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002443 len = ctx->cipher_suites_len;
2444 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002445#else
2446 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2447#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002448 if (len % 2 != 0)
2449 goto abort;
2450 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002451#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002452 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002453 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002454#else
2455 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2456#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002457 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002458 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002459 break;
2460 }
2461 }
2462 }
2463
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002464 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002465 trash.area[i] = tolower(servername[i]);
2466 if (!wildp && (trash.area[i] == '.'))
2467 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002468 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002469 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002470
William Lallemand150bfa82019-09-19 17:12:49 +02002471 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002472
William Lallemand94bd3192020-08-14 14:43:35 +02002473 /* Look for an ECDSA, RSA and DSA certificate, first in the single
2474 * name and if not found in the wildcard */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002475 for (i = 0; i < 2; i++) {
2476 if (i == 0) /* lookup in full qualified names */
2477 node = ebst_lookup(&s->sni_ctx, trash.area);
William Lallemand30f9e092020-08-17 14:31:19 +02002478 else if (i == 1 && wildp) /* lookup in wildcards names */
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002479 node = ebst_lookup(&s->sni_w_ctx, wildp);
2480 else
2481 break;
William Lallemand30f9e092020-08-17 14:31:19 +02002482
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002483 for (n = node; n; n = ebmb_next_dup(n)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002484
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002485 /* lookup a not neg filter */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002486 if (!container_of(n, struct sni_ctx, name)->neg) {
William Lallemand30f9e092020-08-17 14:31:19 +02002487 struct sni_ctx *sni, *sni_tmp;
2488 int skip = 0;
2489
2490 if (i == 1 && wildp) { /* wildcard */
2491 /* If this is a wildcard, look for an exclusion on the same crt-list line */
2492 sni = container_of(n, struct sni_ctx, name);
2493 list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002494 if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) {
William Lallemand30f9e092020-08-17 14:31:19 +02002495 skip = 1;
2496 break;
2497 }
2498 }
2499 if (skip)
2500 continue;
2501 }
2502
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002503 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002504 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002505 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002506 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002507 break;
2508 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002509 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002510 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002511 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002512 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002513 if (!node_anonymous)
2514 node_anonymous = n;
2515 break;
2516 }
2517 }
2518 }
William Lallemand94bd3192020-08-14 14:43:35 +02002519 }
2520 /* Once the certificates are found, select them depending on what is
2521 * supported in the client and by key_signature priority order: EDSA >
2522 * RSA > DSA */
William Lallemand5b1d1f62020-08-14 15:30:13 +02002523 if (has_ecdsa_sig && node_ecdsa)
2524 node = node_ecdsa;
2525 else if (has_rsa_sig && node_rsa)
2526 node = node_rsa;
2527 else if (node_anonymous)
2528 node = node_anonymous;
2529 else if (node_ecdsa)
2530 node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */
2531 else
2532 node = node_rsa; /* no rsa signature case (far far away) */
2533
William Lallemand94bd3192020-08-14 14:43:35 +02002534 if (node) {
2535 /* switch ctx */
2536 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
2537 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
2538 if (conf) {
2539 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2540 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2541 if (conf->early_data)
2542 allow_early = 1;
Emmanuel Hocdet3777e3a2019-11-06 16:05:34 +01002543 }
William Lallemand94bd3192020-08-14 14:43:35 +02002544 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
2545 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002546 }
William Lallemand150bfa82019-09-19 17:12:49 +02002547
William Lallemand02010472019-10-18 11:02:19 +02002548 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002549#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002550 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002551 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002552 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002553 }
2554#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002555 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002556 /* no certificate match, is the default_ctx */
William Lallemand21724f02019-11-04 17:56:13 +01002557 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002558 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002559 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002560 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002561allow_early:
2562#ifdef OPENSSL_IS_BORINGSSL
2563 if (allow_early)
2564 SSL_set_early_data_enabled(ssl, 1);
2565#else
2566 if (!allow_early)
2567 SSL_set_max_early_data(ssl, 0);
2568#endif
2569 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002570 abort:
2571 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2572 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002573#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002574 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002575#else
2576 *al = SSL_AD_UNRECOGNIZED_NAME;
2577 return 0;
2578#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002579}
2580
2581#else /* OPENSSL_IS_BORINGSSL */
2582
Emeric Brunfc0421f2012-09-07 17:30:07 +02002583/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2584 * warning when no match is found, which implies the default (first) cert
2585 * will keep being used.
2586 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002587static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002588{
2589 const char *servername;
2590 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002591 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002592 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002593 int i;
2594 (void)al; /* shut gcc stupid warning */
2595
2596 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002597 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002598#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002599 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2600 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002601#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002602 if (s->strict_sni)
2603 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002604 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002605 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002606 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002607 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002608 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002609
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002610 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002611 if (!servername[i])
2612 break;
Willy Tarreauf278eec2020-07-05 21:46:32 +02002613 trash.area[i] = tolower((unsigned char)servername[i]);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002614 if (!wildp && (trash.area[i] == '.'))
2615 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002616 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002617 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002618
William Lallemand150bfa82019-09-19 17:12:49 +02002619 HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002620 node = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002621 /* lookup in full qualified names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002622 for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) {
2623 /* lookup a not neg filter */
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002624 if (!container_of(n, struct sni_ctx, name)->neg) {
2625 node = n;
2626 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002627 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002628 }
2629 if (!node && wildp) {
2630 /* lookup in wildcards names */
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002631 for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) {
2632 /* lookup a not neg filter */
2633 if (!container_of(n, struct sni_ctx, name)->neg) {
2634 node = n;
2635 break;
2636 }
2637 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002638 }
Emmanuel Hocdetc5fdf0f2019-11-04 15:49:46 +01002639 if (!node) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002640#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002641 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2642 /* switch ctx done in ssl_sock_generate_certificate */
William Lallemand150bfa82019-09-19 17:12:49 +02002643 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002644 return SSL_TLSEXT_ERR_OK;
2645 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002646#endif
William Lallemand21724f02019-11-04 17:56:13 +01002647 if (s->strict_sni) {
2648 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002649 return SSL_TLSEXT_ERR_ALERT_FATAL;
William Lallemand21724f02019-11-04 17:56:13 +01002650 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002651 ssl_sock_switchctx_set(ssl, s->default_ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002652 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002653 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002654 }
2655
2656 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002657 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
William Lallemand150bfa82019-09-19 17:12:49 +02002658 HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002659 return SSL_TLSEXT_ERR_OK;
2660}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002661#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002662#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2663
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002664#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002665
2666static DH * ssl_get_dh_1024(void)
2667{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002668 static unsigned char dh1024_p[]={
2669 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2670 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2671 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2672 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2673 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2674 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2675 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2676 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2677 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2678 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2679 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2680 };
2681 static unsigned char dh1024_g[]={
2682 0x02,
2683 };
2684
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002685 BIGNUM *p;
2686 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002687 DH *dh = DH_new();
2688 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002689 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2690 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002691
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002692 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002693 DH_free(dh);
2694 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002695 } else {
2696 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002697 }
2698 }
2699 return dh;
2700}
2701
2702static DH *ssl_get_dh_2048(void)
2703{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002704 static unsigned char dh2048_p[]={
2705 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2706 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2707 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2708 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2709 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2710 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2711 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2712 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2713 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2714 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2715 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2716 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2717 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2718 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2719 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2720 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2721 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2722 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2723 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2724 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2725 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2726 0xB7,0x1F,0x77,0xF3,
2727 };
2728 static unsigned char dh2048_g[]={
2729 0x02,
2730 };
2731
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002732 BIGNUM *p;
2733 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002734 DH *dh = DH_new();
2735 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002736 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2737 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002738
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002739 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002740 DH_free(dh);
2741 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002742 } else {
2743 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002744 }
2745 }
2746 return dh;
2747}
2748
2749static DH *ssl_get_dh_4096(void)
2750{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002751 static unsigned char dh4096_p[]={
2752 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2753 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2754 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2755 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2756 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2757 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2758 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2759 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2760 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2761 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2762 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2763 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2764 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2765 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2766 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2767 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2768 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2769 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2770 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2771 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2772 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2773 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2774 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2775 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2776 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2777 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2778 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2779 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2780 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2781 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2782 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2783 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2784 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2785 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2786 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2787 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2788 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2789 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2790 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2791 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2792 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2793 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2794 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002795 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002796 static unsigned char dh4096_g[]={
2797 0x02,
2798 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002799
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002800 BIGNUM *p;
2801 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002802 DH *dh = DH_new();
2803 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002804 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2805 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002806
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002807 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002808 DH_free(dh);
2809 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002810 } else {
2811 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002812 }
2813 }
2814 return dh;
2815}
2816
2817/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002818 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002819static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2820{
2821 DH *dh = NULL;
2822 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002823 int type;
2824
2825 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002826
2827 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2828 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2829 */
2830 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2831 keylen = EVP_PKEY_bits(pkey);
2832 }
2833
Willy Tarreauef934602016-12-22 23:12:01 +01002834 if (keylen > global_ssl.default_dh_param) {
2835 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002836 }
2837
Remi Gacogned3a341a2015-05-29 16:26:17 +02002838 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002839 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002840 }
2841 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002842 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002843 }
2844 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002845 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002846 }
2847
2848 return dh;
2849}
2850
Remi Gacogne47783ef2015-05-29 15:53:22 +02002851static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002852{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002853 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002854 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002855
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002856 if (in == NULL)
2857 goto end;
2858
Remi Gacogne47783ef2015-05-29 15:53:22 +02002859 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002860 goto end;
2861
Remi Gacogne47783ef2015-05-29 15:53:22 +02002862 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2863
2864end:
2865 if (in)
2866 BIO_free(in);
2867
Emeric Brune1b4ed42018-08-16 15:14:12 +02002868 ERR_clear_error();
2869
Remi Gacogne47783ef2015-05-29 15:53:22 +02002870 return dh;
2871}
2872
2873int ssl_sock_load_global_dh_param_from_file(const char *filename)
2874{
2875 global_dh = ssl_sock_get_dh_from_file(filename);
2876
2877 if (global_dh) {
2878 return 0;
2879 }
2880
2881 return -1;
2882}
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002883#endif
2884
William Lallemand9117de92019-10-04 00:29:42 +02002885/* This function allocates a sni_ctx and adds it to the ckch_inst */
William Lallemand1d29c742019-10-04 00:53:29 +02002886static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst,
William Lallemand9117de92019-10-04 00:29:42 +02002887 struct bind_conf *s, struct ssl_bind_conf *conf,
2888 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002889{
2890 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002891 int wild = 0, neg = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002892
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002893 if (*name == '!') {
2894 neg = 1;
2895 name++;
2896 }
2897 if (*name == '*') {
2898 wild = 1;
2899 name++;
2900 }
2901 /* !* filter is a nop */
2902 if (neg && wild)
2903 return order;
2904 if (*name) {
2905 int j, len;
2906 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002907 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreauf278eec2020-07-05 21:46:32 +02002908 trash.area[j] = tolower((unsigned char)name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002909 if (j >= trash.size)
William Lallemandfe49bb32019-10-03 23:46:33 +02002910 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002911 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002912
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002913 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002914 if (!sc)
William Lallemandfe49bb32019-10-03 23:46:33 +02002915 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002916 memcpy(sc->name.key, trash.area, len + 1);
William Lallemand02e19a52020-04-08 16:11:26 +02002917 SSL_CTX_up_ref(ctx);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002918 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002919 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002920 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002921 sc->order = order++;
2922 sc->neg = neg;
William Lallemand1d29c742019-10-04 00:53:29 +02002923 sc->wild = wild;
2924 sc->name.node.leaf_p = NULL;
William Lallemandcfca1422020-03-05 10:17:47 +01002925 sc->ckch_inst = ckch_inst;
William Lallemand1d29c742019-10-04 00:53:29 +02002926 LIST_ADDQ(&ckch_inst->sni_ctx, &sc->by_ckch_inst);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002927 }
2928 return order;
2929}
2930
William Lallemand6af03992019-07-23 15:00:54 +02002931/*
William Lallemand1d29c742019-10-04 00:53:29 +02002932 * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree
2933 * This function can't return an error.
2934 *
2935 * *CAUTION*: The caller must lock the sni tree if called in multithreading mode
2936 */
William Lallemandc756bbd2020-05-13 17:23:59 +02002937void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf)
William Lallemand1d29c742019-10-04 00:53:29 +02002938{
2939
2940 struct sni_ctx *sc0, *sc0b, *sc1;
2941 struct ebmb_node *node;
William Lallemand21724f02019-11-04 17:56:13 +01002942 int def = 0;
William Lallemand1d29c742019-10-04 00:53:29 +02002943
2944 list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) {
2945
2946 /* ignore if sc0 was already inserted in a tree */
2947 if (sc0->name.node.leaf_p)
2948 continue;
2949
2950 /* Check for duplicates. */
2951 if (sc0->wild)
2952 node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key);
2953 else
2954 node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key);
2955
2956 for (; node; node = ebmb_next_dup(node)) {
2957 sc1 = ebmb_entry(node, struct sni_ctx, name);
2958 if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf
2959 && sc1->neg == sc0->neg && sc1->wild == sc0->wild) {
2960 /* it's a duplicate, we should remove and free it */
2961 LIST_DEL(&sc0->by_ckch_inst);
William Lallemand02e19a52020-04-08 16:11:26 +02002962 SSL_CTX_free(sc0->ctx);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002963 ha_free(&sc0);
William Lallemande15029b2019-10-14 10:46:58 +02002964 break;
William Lallemand1d29c742019-10-04 00:53:29 +02002965 }
2966 }
2967
2968 /* if duplicate, ignore the insertion */
2969 if (!sc0)
2970 continue;
2971
2972 if (sc0->wild)
2973 ebst_insert(&bind_conf->sni_w_ctx, &sc0->name);
2974 else
2975 ebst_insert(&bind_conf->sni_ctx, &sc0->name);
William Lallemand21724f02019-11-04 17:56:13 +01002976
2977 /* replace the default_ctx if required with the first ctx */
2978 if (ckch_inst->is_default && !def) {
William Lallemand02e19a52020-04-08 16:11:26 +02002979 SSL_CTX_free(bind_conf->default_ctx);
2980 SSL_CTX_up_ref(sc0->ctx);
William Lallemand21724f02019-11-04 17:56:13 +01002981 bind_conf->default_ctx = sc0->ctx;
2982 def = 1;
2983 }
William Lallemand1d29c742019-10-04 00:53:29 +02002984 }
2985}
2986
2987/*
William Lallemande3af8fb2019-10-08 11:36:53 +02002988 * tree used to store the ckchs ordered by filename/bundle name
William Lallemand6af03992019-07-23 15:00:54 +02002989 */
William Lallemande3af8fb2019-10-08 11:36:53 +02002990struct eb_root ckchs_tree = EB_ROOT_UNIQUE;
William Lallemand6af03992019-07-23 15:00:54 +02002991
William Lallemand2954c472020-03-06 21:54:13 +01002992/* tree of crtlist (crt-list/directory) */
William Lallemandc756bbd2020-05-13 17:23:59 +02002993struct eb_root crtlists_tree = EB_ROOT_UNIQUE;
William Lallemandfa892222019-07-23 16:06:08 +02002994
Emeric Brun7a883362019-10-17 13:27:40 +02002995/* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX.
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05002996 * If there is no DH parameter available in the ckchs, the global
Emeric Brun7a883362019-10-17 13:27:40 +02002997 * DH parameter is loaded into the SSL_CTX and if there is no
2998 * DH parameter available in ckchs nor in global, the default
2999 * DH parameters are applied on the SSL_CTX.
3000 * Returns a bitfield containing the flags:
3001 * ERR_FATAL in any fatal error case
3002 * ERR_ALERT if a reason of the error is availabine in err
3003 * ERR_WARN if a warning is available into err
3004 * The value 0 means there is no error nor warning and
3005 * the operation succeed.
3006 */
William Lallemandfa892222019-07-23 16:06:08 +02003007#ifndef OPENSSL_NO_DH
Emeric Brun7a883362019-10-17 13:27:40 +02003008static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch,
3009 const char *path, char **err)
William Lallemandfa892222019-07-23 16:06:08 +02003010{
Emeric Brun7a883362019-10-17 13:27:40 +02003011 int ret = 0;
William Lallemandfa892222019-07-23 16:06:08 +02003012 DH *dh = NULL;
3013
William Lallemanda8c73742019-07-31 18:31:34 +02003014 if (ckch && ckch->dh) {
William Lallemandfa892222019-07-23 16:06:08 +02003015 dh = ckch->dh;
Emeric Bruna9363eb2019-10-17 14:53:03 +02003016 if (!SSL_CTX_set_tmp_dh(ctx, dh)) {
3017 memprintf(err, "%sunable to load the DH parameter specified in '%s'",
3018 err && *err ? *err : "", path);
3019#if defined(SSL_CTX_set_dh_auto)
3020 SSL_CTX_set_dh_auto(ctx, 1);
3021 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3022 err && *err ? *err : "");
3023#else
3024 memprintf(err, "%s, DH ciphers won't be available.\n",
3025 err && *err ? *err : "");
3026#endif
3027 ret |= ERR_WARN;
3028 goto end;
3029 }
William Lallemandfa892222019-07-23 16:06:08 +02003030
3031 if (ssl_dh_ptr_index >= 0) {
3032 /* store a pointer to the DH params to avoid complaining about
3033 ssl-default-dh-param not being set for this SSL_CTX */
3034 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
3035 }
3036 }
3037 else if (global_dh) {
Emeric Bruna9363eb2019-10-17 14:53:03 +02003038 if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) {
3039 memprintf(err, "%sunable to use the global DH parameter for certificate '%s'",
3040 err && *err ? *err : "", path);
3041#if defined(SSL_CTX_set_dh_auto)
3042 SSL_CTX_set_dh_auto(ctx, 1);
3043 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3044 err && *err ? *err : "");
3045#else
3046 memprintf(err, "%s, DH ciphers won't be available.\n",
3047 err && *err ? *err : "");
3048#endif
3049 ret |= ERR_WARN;
3050 goto end;
3051 }
William Lallemandfa892222019-07-23 16:06:08 +02003052 }
3053 else {
3054 /* Clear openssl global errors stack */
3055 ERR_clear_error();
3056
Willy Tarreau6d27a922020-11-05 19:38:05 +01003057 if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) {
William Lallemandfa892222019-07-23 16:06:08 +02003058 /* we are limited to DH parameter of 1024 bits anyway */
3059 if (local_dh_1024 == NULL)
3060 local_dh_1024 = ssl_get_dh_1024();
3061
Emeric Brun7a883362019-10-17 13:27:40 +02003062 if (local_dh_1024 == NULL) {
3063 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3064 err && *err ? *err : "", path);
3065 ret |= ERR_ALERT | ERR_FATAL;
William Lallemandfa892222019-07-23 16:06:08 +02003066 goto end;
Emeric Brun7a883362019-10-17 13:27:40 +02003067 }
William Lallemandfa892222019-07-23 16:06:08 +02003068
Emeric Bruna9363eb2019-10-17 14:53:03 +02003069 if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) {
3070 memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n",
3071 err && *err ? *err : "", path);
3072#if defined(SSL_CTX_set_dh_auto)
3073 SSL_CTX_set_dh_auto(ctx, 1);
3074 memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n",
3075 err && *err ? *err : "");
3076#else
3077 memprintf(err, "%s, DH ciphers won't be available.\n",
3078 err && *err ? *err : "");
3079#endif
3080 ret |= ERR_WARN;
3081 goto end;
3082 }
William Lallemandfa892222019-07-23 16:06:08 +02003083 }
3084 else {
3085 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
3086 }
William Lallemand8d0f8932019-10-17 18:03:58 +02003087 }
3088
William Lallemandf9568fc2019-10-16 18:27:58 +02003089end:
William Lallemandf9568fc2019-10-16 18:27:58 +02003090 ERR_clear_error();
William Lallemandf9568fc2019-10-16 18:27:58 +02003091 return ret;
3092}
Emmanuel Hocdet54227d82019-07-30 17:04:01 +02003093#endif
William Lallemandfa892222019-07-23 16:06:08 +02003094
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003095
3096/* Load a certificate chain into an SSL context.
Emeric Bruna96b5822019-10-17 13:25:14 +02003097 * Returns a bitfield containing the flags:
3098 * ERR_FATAL in any fatal error case
3099 * ERR_ALERT if the reason of the error is available in err
3100 * ERR_WARN if a warning is available into err
3101 * The value 0 means there is no error nor warning and
3102 * the operation succeed.
yanbzhu488a4d22015-12-01 15:16:07 -05003103 */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003104static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch,
3105 SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err)
yanbzhu488a4d22015-12-01 15:16:07 -05003106{
Emeric Bruna96b5822019-10-17 13:25:14 +02003107 int errcode = 0;
3108
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003109 if (find_chain == NULL) {
3110 errcode |= ERR_FATAL;
3111 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003112 }
3113
3114 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3115 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3116 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003117 errcode |= ERR_ALERT | ERR_FATAL;
3118 goto end;
yanbzhu488a4d22015-12-01 15:16:07 -05003119 }
3120
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003121 if (ckch->chain) {
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003122 *find_chain = ckch->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003123 } else {
3124 /* Find Certificate Chain in global */
3125 struct issuer_chain *issuer;
Emmanuel Hocdetef87e0a2020-03-23 11:29:11 +01003126 issuer = ssl_get0_issuer_chain(ckch->cert);
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003127 if (issuer)
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003128 *find_chain = issuer->chain;
Emmanuel Hocdetb90d2cb2020-02-18 15:27:32 +01003129 }
William Lallemand85888572020-02-27 14:48:35 +01003130
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003131 if (!*find_chain) {
William Lallemand935d8292020-08-12 20:02:10 +02003132 /* always put a null chain stack in the SSL_CTX so it does not
3133 * try to build the chain from the verify store */
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003134 *find_chain = sk_X509_new_null();
William Lallemand935d8292020-08-12 20:02:10 +02003135 }
3136
William Lallemandf187ce62020-06-02 18:27:20 +02003137 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
William Lallemandf187ce62020-06-02 18:27:20 +02003138#ifdef SSL_CTX_set1_chain
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003139 if (!SSL_CTX_set1_chain(ctx, *find_chain)) {
William Lallemand935d8292020-08-12 20:02:10 +02003140 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3141 err && *err ? *err : "", path);
3142 errcode |= ERR_ALERT | ERR_FATAL;
3143 goto end;
3144 }
William Lallemandf187ce62020-06-02 18:27:20 +02003145#else
3146 { /* legacy compat (< openssl 1.0.2) */
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003147 X509 *ca;
William Lallemandf187ce62020-06-02 18:27:20 +02003148 STACK_OF(X509) *chain;
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003149 chain = X509_chain_up_ref(*find_chain);
William Lallemandf187ce62020-06-02 18:27:20 +02003150 while ((ca = sk_X509_shift(chain)))
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003151 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003152 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3153 err && *err ? *err : "", path);
William Lallemandf187ce62020-06-02 18:27:20 +02003154 X509_free(ca);
3155 sk_X509_pop_free(chain, X509_free);
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003156 errcode |= ERR_ALERT | ERR_FATAL;
3157 goto end;
3158 }
Emmanuel Hocdet4fed93e2020-02-28 16:00:34 +01003159 }
William Lallemandf187ce62020-06-02 18:27:20 +02003160#endif
yanbzhu488a4d22015-12-01 15:16:07 -05003161
William Lallemand9a1d8392020-08-10 17:28:23 +02003162#ifdef SSL_CTX_build_cert_chain
William Lallemandbf298af2020-08-10 16:18:45 +02003163 /* remove the Root CA from the SSL_CTX if the option is activated */
3164 if (global_ssl.skip_self_issued_ca) {
3165 if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) {
3166 memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n",
3167 err && *err ? *err : "", path);
3168 errcode |= ERR_ALERT | ERR_FATAL;
3169 goto end;
3170 }
3171 }
William Lallemand9a1d8392020-08-10 17:28:23 +02003172#endif
William Lallemandbf298af2020-08-10 16:18:45 +02003173
Remi Tricot-Le Bretonec805a32021-01-25 17:19:42 +01003174end:
3175 return errcode;
3176}
3177
3178
3179/* Loads the info in ckch into ctx
3180 * Returns a bitfield containing the flags:
3181 * ERR_FATAL in any fatal error case
3182 * ERR_ALERT if the reason of the error is available in err
3183 * ERR_WARN if a warning is available into err
3184 * The value 0 means there is no error nor warning and
3185 * the operation succeed.
3186 */
3187static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3188{
3189 int errcode = 0;
3190 STACK_OF(X509) *find_chain = NULL;
3191
3192 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3193 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3194 err && *err ? *err : "", path);
3195 errcode |= ERR_ALERT | ERR_FATAL;
3196 return errcode;
3197 }
3198
3199 /* Load certificate chain */
3200 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3201 if (errcode & ERR_CODE)
3202 goto end;
3203
William Lallemandfa892222019-07-23 16:06:08 +02003204#ifndef OPENSSL_NO_DH
3205 /* store a NULL pointer to indicate we have not yet loaded
3206 a custom DH param file */
3207 if (ssl_dh_ptr_index >= 0) {
3208 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3209 }
3210
Emeric Brun7a883362019-10-17 13:27:40 +02003211 errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err);
3212 if (errcode & ERR_CODE) {
William Lallemandfa892222019-07-23 16:06:08 +02003213 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3214 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003215 goto end;
William Lallemandfa892222019-07-23 16:06:08 +02003216 }
3217#endif
3218
Ilya Shipitsin7bbf5862021-02-06 18:55:27 +05003219#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
William Lallemanda17f4112019-10-10 15:16:44 +02003220 if (sctl_ex_index >= 0 && ckch->sctl) {
3221 if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) {
3222 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01003223 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003224 errcode |= ERR_ALERT | ERR_FATAL;
3225 goto end;
William Lallemanda17f4112019-10-10 15:16:44 +02003226 }
3227 }
3228#endif
3229
Emmanuel Hocdeta73a2222020-10-26 13:55:30 +01003230#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL)
William Lallemand246c0242019-10-11 08:59:13 +02003231 /* Load OCSP Info into context */
3232 if (ckch->ocsp_response) {
Emmanuel Hocdet6f507c72020-02-18 15:56:39 +01003233 if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) {
Tim Duesterhus93128532019-11-23 23:45:10 +01003234 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",
3235 err && *err ? *err : "", path);
Emeric Bruna96b5822019-10-17 13:25:14 +02003236 errcode |= ERR_ALERT | ERR_FATAL;
3237 goto end;
William Lallemand246c0242019-10-11 08:59:13 +02003238 }
3239 }
William Lallemand246c0242019-10-11 08:59:13 +02003240#endif
3241
Emeric Bruna96b5822019-10-17 13:25:14 +02003242 end:
3243 return errcode;
yanbzhu488a4d22015-12-01 15:16:07 -05003244}
3245
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003246
3247/* Loads the info of a ckch built out of a backend certificate into an SSL ctx
3248 * Returns a bitfield containing the flags:
3249 * ERR_FATAL in any fatal error case
3250 * ERR_ALERT if the reason of the error is available in err
3251 * ERR_WARN if a warning is available into err
3252 * The value 0 means there is no error nor warning and
3253 * the operation succeed.
3254 */
3255static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch,
3256 SSL_CTX *ctx, char **err)
3257{
3258 int errcode = 0;
3259 STACK_OF(X509) *find_chain = NULL;
3260
3261 /* Load the private key */
3262 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3263 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3264 err && *err ? *err : "", path);
3265 errcode |= ERR_ALERT | ERR_FATAL;
3266 }
3267
3268 /* Load certificate chain */
3269 errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err);
3270 if (errcode & ERR_CODE)
3271 goto end;
3272
3273 if (SSL_CTX_check_private_key(ctx) <= 0) {
3274 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3275 err && *err ? *err : "", path);
3276 errcode |= ERR_ALERT | ERR_FATAL;
3277 }
3278
3279end:
3280 return errcode;
3281}
3282
3283
William Lallemand614ca0d2019-10-07 13:52:11 +02003284/*
3285 * This function allocate a ckch_inst and create its snis
Emeric Brun054563d2019-10-17 13:16:58 +02003286 *
3287 * Returns a bitfield containing the flags:
3288 * ERR_FATAL in any fatal error case
3289 * ERR_ALERT if the reason of the error is available in err
3290 * ERR_WARN if a warning is available into err
William Lallemand614ca0d2019-10-07 13:52:11 +02003291 */
William Lallemandc756bbd2020-05-13 17:23:59 +02003292int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf,
Emeric Brun054563d2019-10-17 13:16:58 +02003293 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003294{
William Lallemandc9402072019-05-15 15:33:54 +02003295 SSL_CTX *ctx;
William Lallemandc9402072019-05-15 15:33:54 +02003296 int i;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003297 int order = 0;
3298 X509_NAME *xname;
3299 char *str;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003300 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003301 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Emeric Brunfc0421f2012-09-07 17:30:07 +02003302#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3303 STACK_OF(GENERAL_NAME) *names;
3304#endif
William Lallemand36b84632019-07-18 19:28:17 +02003305 struct cert_key_and_chain *ckch;
William Lallemand614ca0d2019-10-07 13:52:11 +02003306 struct ckch_inst *ckch_inst = NULL;
Emeric Brun054563d2019-10-17 13:16:58 +02003307 int errcode = 0;
3308
3309 *ckchi = NULL;
William Lallemanda59191b2019-05-15 16:08:56 +02003310
William Lallemande3af8fb2019-10-08 11:36:53 +02003311 if (!ckchs || !ckchs->ckch)
Emeric Brun054563d2019-10-17 13:16:58 +02003312 return ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003313
William Lallemande3af8fb2019-10-08 11:36:53 +02003314 ckch = ckchs->ckch;
William Lallemand36b84632019-07-18 19:28:17 +02003315
William Lallemandc9402072019-05-15 15:33:54 +02003316 ctx = SSL_CTX_new(SSLv23_server_method());
3317 if (!ctx) {
3318 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3319 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003320 errcode |= ERR_ALERT | ERR_FATAL;
3321 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003322 }
3323
Emeric Bruna96b5822019-10-17 13:25:14 +02003324 errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err);
3325 if (errcode & ERR_CODE)
William Lallemand614ca0d2019-10-07 13:52:11 +02003326 goto error;
William Lallemand614ca0d2019-10-07 13:52:11 +02003327
3328 ckch_inst = ckch_inst_new();
3329 if (!ckch_inst) {
3330 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3331 err && *err ? *err : "", path);
Emeric Brun054563d2019-10-17 13:16:58 +02003332 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003333 goto error;
William Lallemandc9402072019-05-15 15:33:54 +02003334 }
3335
William Lallemand36b84632019-07-18 19:28:17 +02003336 pkey = X509_get_pubkey(ckch->cert);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003337 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003338 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003339 switch(EVP_PKEY_base_id(pkey)) {
3340 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003341 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003342 break;
3343 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003344 kinfo.sig = TLSEXT_signature_ecdsa;
3345 break;
3346 case EVP_PKEY_DSA:
3347 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003348 break;
3349 }
3350 EVP_PKEY_free(pkey);
3351 }
3352
Emeric Brun50bcecc2013-04-22 13:05:23 +02003353 if (fcount) {
William Lallemandfe49bb32019-10-03 23:46:33 +02003354 while (fcount--) {
William Lallemand1d29c742019-10-04 00:53:29 +02003355 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 +02003356 if (order < 0) {
3357 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003358 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003359 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003360 }
3361 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003362 }
3363 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003364#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
William Lallemand36b84632019-07-18 19:28:17 +02003365 names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003366 if (names) {
3367 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3368 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3369 if (name->type == GEN_DNS) {
3370 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003371 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003372 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003373 if (order < 0) {
3374 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003375 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003376 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003377 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003378 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003379 }
3380 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003381 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003382 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003383#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
William Lallemand36b84632019-07-18 19:28:17 +02003384 xname = X509_get_subject_name(ckch->cert);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003385 i = -1;
3386 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3387 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003388 ASN1_STRING *value;
3389
3390 value = X509_NAME_ENTRY_get_data(entry);
3391 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
William Lallemand1d29c742019-10-04 00:53:29 +02003392 order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003393 OPENSSL_free(str);
William Lallemandfe49bb32019-10-03 23:46:33 +02003394 if (order < 0) {
3395 memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003396 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003397 goto error;
William Lallemandfe49bb32019-10-03 23:46:33 +02003398 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003399 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003400 }
3401 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003402 /* we must not free the SSL_CTX anymore below, since it's already in
3403 * the tree, so it will be discovered and cleaned in time.
3404 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003405
Emeric Brunfc0421f2012-09-07 17:30:07 +02003406#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003407 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003408 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3409 err && *err ? *err : "");
Emeric Brun054563d2019-10-17 13:16:58 +02003410 errcode |= ERR_ALERT | ERR_FATAL;
William Lallemandd9199372019-10-04 15:37:05 +02003411 goto error;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003412 }
3413#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003414 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003415 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003416 bind_conf->default_ssl_conf = ssl_conf;
William Lallemand21724f02019-11-04 17:56:13 +01003417 ckch_inst->is_default = 1;
William Lallemand02e19a52020-04-08 16:11:26 +02003418 SSL_CTX_up_ref(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003419 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003420
William Lallemand9117de92019-10-04 00:29:42 +02003421 /* everything succeed, the ckch instance can be used */
3422 ckch_inst->bind_conf = bind_conf;
William Lallemand150bfa82019-09-19 17:12:49 +02003423 ckch_inst->ssl_conf = ssl_conf;
William Lallemandcfca1422020-03-05 10:17:47 +01003424 ckch_inst->ckch_store = ckchs;
William Lallemand9117de92019-10-04 00:29:42 +02003425
William Lallemand02e19a52020-04-08 16:11:26 +02003426 SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */
3427
Emeric Brun054563d2019-10-17 13:16:58 +02003428 *ckchi = ckch_inst;
3429 return errcode;
William Lallemandd9199372019-10-04 15:37:05 +02003430
3431error:
3432 /* free the allocated sni_ctxs */
William Lallemand614ca0d2019-10-07 13:52:11 +02003433 if (ckch_inst) {
William Lallemand02e19a52020-04-08 16:11:26 +02003434 if (ckch_inst->is_default)
3435 SSL_CTX_free(ctx);
3436
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003437 ckch_inst_free(ckch_inst);
William Lallemand614ca0d2019-10-07 13:52:11 +02003438 ckch_inst = NULL;
William Lallemandd9199372019-10-04 15:37:05 +02003439 }
William Lallemandd9199372019-10-04 15:37:05 +02003440 SSL_CTX_free(ctx);
3441
Emeric Brun054563d2019-10-17 13:16:58 +02003442 return errcode;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003443}
3444
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003445
3446/*
3447 * This function allocate a ckch_inst that will be used on the backend side
3448 * (server line)
3449 *
3450 * Returns a bitfield containing the flags:
3451 * ERR_FATAL in any fatal error case
3452 * ERR_ALERT if the reason of the error is available in err
3453 * ERR_WARN if a warning is available into err
3454 */
3455int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs,
William Lallemand795bd9b2021-01-26 11:27:42 +01003456 struct ckch_inst **ckchi, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003457{
3458 SSL_CTX *ctx;
3459 struct cert_key_and_chain *ckch;
3460 struct ckch_inst *ckch_inst = NULL;
3461 int errcode = 0;
3462
3463 *ckchi = NULL;
3464
3465 if (!ckchs || !ckchs->ckch)
3466 return ERR_FATAL;
3467
3468 ckch = ckchs->ckch;
3469
3470 ctx = SSL_CTX_new(SSLv23_client_method());
3471 if (!ctx) {
3472 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3473 err && *err ? *err : "", path);
3474 errcode |= ERR_ALERT | ERR_FATAL;
3475 goto error;
3476 }
3477
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003478 errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err);
3479 if (errcode & ERR_CODE)
3480 goto error;
3481
3482 ckch_inst = ckch_inst_new();
3483 if (!ckch_inst) {
3484 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3485 err && *err ? *err : "", path);
3486 errcode |= ERR_ALERT | ERR_FATAL;
3487 goto error;
3488 }
3489
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003490 /* everything succeed, the ckch instance can be used */
3491 ckch_inst->bind_conf = NULL;
3492 ckch_inst->ssl_conf = NULL;
3493 ckch_inst->ckch_store = ckchs;
William Lallemand795bd9b2021-01-26 11:27:42 +01003494 ckch_inst->ctx = ctx;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003495 ckch_inst->is_server_instance = 1;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003496
3497 *ckchi = ckch_inst;
3498 return errcode;
3499
3500error:
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003501 SSL_CTX_free(ctx);
3502
3503 return errcode;
3504}
3505
Willy Tarreau8c5414a2019-10-16 17:06:25 +02003506/* Returns a set of ERR_* flags possibly with an error in <err>. */
William Lallemand614ca0d2019-10-07 13:52:11 +02003507static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs,
3508 struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
William Lallemand24bde432020-03-09 16:48:43 +01003509 char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err)
William Lallemand614ca0d2019-10-07 13:52:11 +02003510{
Emeric Brun054563d2019-10-17 13:16:58 +02003511 int errcode = 0;
William Lallemand614ca0d2019-10-07 13:52:11 +02003512
3513 /* we found the ckchs in the tree, we can use it directly */
William Lallemande7eb1fe2020-09-16 16:17:51 +02003514 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 +02003515
Emeric Brun054563d2019-10-17 13:16:58 +02003516 if (errcode & ERR_CODE)
3517 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003518
William Lallemand24bde432020-03-09 16:48:43 +01003519 ssl_sock_load_cert_sni(*ckch_inst, bind_conf);
William Lallemand614ca0d2019-10-07 13:52:11 +02003520
3521 /* succeed, add the instance to the ckch_store's list of instance */
William Lallemand24bde432020-03-09 16:48:43 +01003522 LIST_ADDQ(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
Emeric Brun054563d2019-10-17 13:16:58 +02003523 return errcode;
William Lallemand614ca0d2019-10-07 13:52:11 +02003524}
3525
William Lallemanddb26e2b2021-01-26 12:01:46 +01003526/* This function generates a <struct ckch_inst *> for a <struct server *>, and
3527 * fill the SSL_CTX of the server.
3528 *
3529 * Returns a set of ERR_* flags possibly with an error in <err>. */
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003530static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs,
William Lallemanddb26e2b2021-01-26 12:01:46 +01003531 struct server *server, struct ckch_inst **ckch_inst, char **err)
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003532{
3533 int errcode = 0;
3534
3535 /* we found the ckchs in the tree, we can use it directly */
William Lallemand795bd9b2021-01-26 11:27:42 +01003536 errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003537
3538 if (errcode & ERR_CODE)
3539 return errcode;
3540
William Lallemanddb26e2b2021-01-26 12:01:46 +01003541 (*ckch_inst)->server = server;
3542 /* Keep the reference to the SSL_CTX in the server. */
3543 SSL_CTX_up_ref((*ckch_inst)->ctx);
3544 server->ssl_ctx.ctx = (*ckch_inst)->ctx;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003545 /* succeed, add the instance to the ckch_store's list of instance */
3546 LIST_ADDQ(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs));
3547 return errcode;
3548}
3549
William Lallemand6be66ec2020-03-06 22:26:32 +01003550
William Lallemand4c68bba2020-03-30 18:45:10 +02003551
3552
3553/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3554 * done once. Zero is returned if the operation fails. No error is returned
3555 * if the random is said as not implemented, because we expect that openssl
3556 * will use another method once needed.
3557 */
3558static int ssl_initialize_random()
3559{
3560 unsigned char random;
3561 static int random_initialized = 0;
3562
3563 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3564 random_initialized = 1;
3565
3566 return random_initialized;
3567}
3568
William Lallemand2954c472020-03-06 21:54:13 +01003569/* Load a crt-list file, this is done in 2 parts:
3570 * - store the content of the file in a crtlist structure with crtlist_entry structures
3571 * - generate the instances by iterating on entries in the crtlist struct
3572 *
3573 * Nothing is locked there, this function is used in the configuration parser.
3574 *
3575 * Returns a set of ERR_* flags possibly with an error in <err>.
3576 */
William Lallemand6be66ec2020-03-06 22:26:32 +01003577int 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 +01003578{
3579 struct crtlist *crtlist = NULL;
3580 struct ebmb_node *eb;
William Lallemand49398312020-03-30 17:01:33 +02003581 struct crtlist_entry *entry = NULL;
William Lallemand79d31ec2020-03-25 15:10:49 +01003582 struct bind_conf_list *bind_conf_node = NULL;
William Lallemand2954c472020-03-06 21:54:13 +01003583 int cfgerr = 0;
William Lallemand41ca9302020-04-08 13:15:18 +02003584 char *end;
William Lallemand2954c472020-03-06 21:54:13 +01003585
William Lallemand79d31ec2020-03-25 15:10:49 +01003586 bind_conf_node = malloc(sizeof(*bind_conf_node));
3587 if (!bind_conf_node) {
3588 memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : "");
3589 cfgerr |= ERR_FATAL | ERR_ALERT;
3590 goto error;
3591 }
3592 bind_conf_node->next = NULL;
3593 bind_conf_node->bind_conf = bind_conf;
3594
William Lallemand41ca9302020-04-08 13:15:18 +02003595 /* strip trailing slashes, including first one */
3596 for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--)
3597 *end = 0;
3598
William Lallemand2954c472020-03-06 21:54:13 +01003599 /* look for an existing crtlist or create one */
3600 eb = ebst_lookup(&crtlists_tree, file);
3601 if (eb) {
3602 crtlist = ebmb_entry(eb, struct crtlist, node);
3603 } else {
William Lallemand6be66ec2020-03-06 22:26:32 +01003604 /* load a crt-list OR a directory */
3605 if (dir)
3606 cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err);
3607 else
3608 cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err);
3609
William Lallemand2954c472020-03-06 21:54:13 +01003610 if (!(cfgerr & ERR_CODE))
3611 ebst_insert(&crtlists_tree, &crtlist->node);
3612 }
3613
3614 if (cfgerr & ERR_CODE) {
3615 cfgerr |= ERR_FATAL | ERR_ALERT;
3616 goto error;
3617 }
3618
3619 /* generates ckch instance from the crtlist_entry */
3620 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3621 struct ckch_store *store;
3622 struct ckch_inst *ckch_inst = NULL;
3623
3624 store = entry->node.key;
3625 cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err);
3626 if (cfgerr & ERR_CODE) {
3627 memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err);
3628 goto error;
3629 }
William Lallemand49398312020-03-30 17:01:33 +02003630 LIST_ADDQ(&entry->ckch_inst, &ckch_inst->by_crtlist_entry);
William Lallemandcaa16192020-04-08 16:29:15 +02003631 ckch_inst->crtlist_entry = entry;
William Lallemand2954c472020-03-06 21:54:13 +01003632 }
William Lallemand2954c472020-03-06 21:54:13 +01003633
William Lallemand79d31ec2020-03-25 15:10:49 +01003634 /* add the bind_conf to the list */
3635 bind_conf_node->next = crtlist->bind_conf;
3636 crtlist->bind_conf = bind_conf_node;
3637
William Lallemand2954c472020-03-06 21:54:13 +01003638 return cfgerr;
3639error:
3640 {
William Lallemand49398312020-03-30 17:01:33 +02003641 struct crtlist_entry *lastentry;
William Lallemand2954c472020-03-06 21:54:13 +01003642 struct ckch_inst *inst, *s_inst;
3643
William Lallemand49398312020-03-30 17:01:33 +02003644 lastentry = entry; /* which entry we tried to generate last */
3645 if (lastentry) {
3646 list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) {
3647 if (entry == lastentry) /* last entry we tried to generate, no need to go further */
3648 break;
3649
3650 list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) {
William Lallemand2954c472020-03-06 21:54:13 +01003651
William Lallemand49398312020-03-30 17:01:33 +02003652 /* this was not generated for this bind_conf, skip */
3653 if (inst->bind_conf != bind_conf)
3654 continue;
3655
William Lallemandd9d5d1b2020-04-09 16:31:05 +02003656 /* free the sni_ctx and instance */
3657 ckch_inst_free(inst);
William Lallemand49398312020-03-30 17:01:33 +02003658 }
William Lallemand2954c472020-03-06 21:54:13 +01003659 }
William Lallemand2954c472020-03-06 21:54:13 +01003660 }
William Lallemand79d31ec2020-03-25 15:10:49 +01003661 free(bind_conf_node);
William Lallemand2954c472020-03-06 21:54:13 +01003662 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003663 return cfgerr;
3664}
3665
William Lallemand06b22a82020-03-16 14:45:55 +01003666/* Returns a set of ERR_* flags possibly with an error in <err>. */
3667int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
3668{
3669 struct stat buf;
William Lallemand06b22a82020-03-16 14:45:55 +01003670 int cfgerr = 0;
3671 struct ckch_store *ckchs;
William Lallemand24bde432020-03-09 16:48:43 +01003672 struct ckch_inst *ckch_inst = NULL;
William Lallemand06ce84a2020-11-20 15:36:13 +01003673 int found = 0; /* did we found a file to load ? */
William Lallemand06b22a82020-03-16 14:45:55 +01003674
3675 if ((ckchs = ckchs_lookup(path))) {
3676 /* we found the ckchs in the tree, we can use it directly */
William Lallemand06ce84a2020-11-20 15:36:13 +01003677 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3678 found++;
3679 } else if (stat(path, &buf) == 0) {
3680 found++;
William Lallemand06b22a82020-03-16 14:45:55 +01003681 if (S_ISDIR(buf.st_mode) == 0) {
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003682 ckchs = ckchs_load_cert_file(path, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003683 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003684 cfgerr |= ERR_ALERT | ERR_FATAL;
3685 cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003686 } else {
William Lallemand06ce84a2020-11-20 15:36:13 +01003687 cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err);
William Lallemand06b22a82020-03-16 14:45:55 +01003688 }
3689 } else {
3690 /* stat failed, could be a bundle */
3691 if (global_ssl.extra_files & SSL_GF_BUNDLE) {
William Lallemanddfa93be2020-09-16 14:48:52 +02003692 char fp[MAXPATHLEN+1] = {0};
3693 int n = 0;
3694
3695 /* Load all possible certs and keys in separate ckch_store */
3696 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3697 struct stat buf;
3698 int ret;
3699
3700 ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3701 if (ret > sizeof(fp))
3702 continue;
3703
3704 if ((ckchs = ckchs_lookup(fp))) {
3705 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
William Lallemand06ce84a2020-11-20 15:36:13 +01003706 found++;
William Lallemanddfa93be2020-09-16 14:48:52 +02003707 } else {
3708 if (stat(fp, &buf) == 0) {
William Lallemand06ce84a2020-11-20 15:36:13 +01003709 found++;
William Lallemandbd8e6ed2020-09-16 16:08:08 +02003710 ckchs = ckchs_load_cert_file(fp, err);
William Lallemanddfa93be2020-09-16 14:48:52 +02003711 if (!ckchs)
William Lallemand06ce84a2020-11-20 15:36:13 +01003712 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddfa93be2020-09-16 14:48:52 +02003713 cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err);
3714 }
3715 }
3716 }
William Lallemandb7fdfdf2020-12-04 15:45:02 +01003717#if HA_OPENSSL_VERSION_NUMBER < 0x10101000L
3718 if (found) {
3719 memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n",
3720 err && *err ? *err : "", path);
3721 cfgerr |= ERR_ALERT | ERR_FATAL;
3722 }
3723#endif
William Lallemand06b22a82020-03-16 14:45:55 +01003724 }
3725 }
William Lallemand06ce84a2020-11-20 15:36:13 +01003726 if (!found) {
3727 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3728 err && *err ? *err : "", path, strerror(errno));
3729 cfgerr |= ERR_ALERT | ERR_FATAL;
3730 }
William Lallemand06b22a82020-03-16 14:45:55 +01003731
3732 return cfgerr;
3733}
3734
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003735
3736/* Create a full ssl context and ckch instance that will be used for a specific
3737 * backend server (server configuration line).
3738 * Returns a set of ERR_* flags possibly with an error in <err>.
3739 */
3740int ssl_sock_load_srv_cert(char *path, struct server *server, char **err)
3741{
3742 struct stat buf;
3743 int cfgerr = 0;
3744 struct ckch_store *ckchs;
3745 int found = 0; /* did we found a file to load ? */
3746
3747 if ((ckchs = ckchs_lookup(path))) {
3748 /* we found the ckchs in the tree, we can use it directly */
William Lallemanddb26e2b2021-01-26 12:01:46 +01003749 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003750 found++;
3751 } else if (stat(path, &buf) == 0) {
3752 /* We do not manage directories on backend side. */
3753 if (S_ISDIR(buf.st_mode) == 0) {
3754 ++found;
3755 ckchs = ckchs_load_cert_file(path, err);
3756 if (!ckchs)
3757 cfgerr |= ERR_ALERT | ERR_FATAL;
William Lallemanddb26e2b2021-01-26 12:01:46 +01003758 cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err);
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01003759 }
3760 }
3761 if (!found) {
3762 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3763 err && *err ? *err : "", path, strerror(errno));
3764 cfgerr |= ERR_ALERT | ERR_FATAL;
3765 }
3766
3767 return cfgerr;
3768}
3769
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003770/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003771static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003772ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003773{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003774 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003775 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003776 SSL_OP_ALL | /* all known workarounds for bugs */
3777 SSL_OP_NO_SSLv2 |
3778 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003779 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003780 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003781 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003782 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003783 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003784 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003785 SSL_MODE_ENABLE_PARTIAL_WRITE |
3786 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003787 SSL_MODE_RELEASE_BUFFERS |
3788 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003789 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003790 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003791 int flags = MC_SSL_O_ALL;
3792 int cfgerr = 0;
William Lallemand50df1cb2020-06-02 10:52:24 +02003793 const int default_min_ver = CONF_TLSV12;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003794
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003795 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003796 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003797
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003798 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003799 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3800 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3801 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003802 else
3803 flags = conf_ssl_methods->flags;
3804
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003805 min = conf_ssl_methods->min;
3806 max = conf_ssl_methods->max;
William Lallemand50df1cb2020-06-02 10:52:24 +02003807
3808 /* default minimum is TLSV12, */
3809 if (!min) {
3810 if (!max || (max >= default_min_ver)) {
3811 min = default_min_ver;
3812 } else {
3813 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). "
3814 "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n",
3815 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name);
3816 min = max;
3817 }
3818 }
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003819 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003820 if (min)
3821 flags |= (methodVersions[min].flag - 1);
3822 if (max)
3823 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003824 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003825 min = max = CONF_TLSV_NONE;
3826 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003827 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003828 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003829 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003830 if (min) {
3831 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003832 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3833 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3834 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3835 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003836 hole = 0;
3837 }
3838 max = i;
3839 }
3840 else {
3841 min = max = i;
3842 }
3843 }
3844 else {
3845 if (min)
3846 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003847 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003848 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003849 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3850 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003851 cfgerr += 1;
3852 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003853 /* save real min/max in bind_conf */
3854 conf_ssl_methods->min = min;
3855 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003856
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003857#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003858 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003859 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003860 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003861 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003862 else
William Lallemandd0712f32020-06-11 17:34:00 +02003863 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) {
3864 /* clear every version flags in case SSL_CTX_new()
3865 * returns an SSL_CTX with disabled versions */
3866 SSL_CTX_clear_options(ctx, methodVersions[i].option);
3867
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003868 if (flags & methodVersions[i].flag)
3869 options |= methodVersions[i].option;
William Lallemandd0712f32020-06-11 17:34:00 +02003870
3871 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003872#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003873 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003874 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3875 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003876#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003877
3878 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3879 options |= SSL_OP_NO_TICKET;
3880 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3881 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003882
3883#ifdef SSL_OP_NO_RENEGOTIATION
3884 options |= SSL_OP_NO_RENEGOTIATION;
3885#endif
3886
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003887 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003888
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05003889#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003890 if (global_ssl.async)
3891 mode |= SSL_MODE_ASYNC;
3892#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003893 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003894 if (global_ssl.life_time)
3895 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003896
3897#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3898#ifdef OPENSSL_IS_BORINGSSL
3899 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3900 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Ilya Shipitsine9ff8992020-01-19 12:20:14 +05003901#elif defined(SSL_OP_NO_ANTI_REPLAY)
Olivier Houchard545989f2019-12-17 15:39:54 +01003902 if (bind_conf->ssl_conf.early_data)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003903 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003904 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3905 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003906#else
3907 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003908#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003909 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003910#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003911 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003912}
3913
William Lallemand4f45bb92017-10-30 20:08:51 +01003914
3915static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3916{
3917 if (first == block) {
3918 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3919 if (first->len > 0)
3920 sh_ssl_sess_tree_delete(sh_ssl_sess);
3921 }
3922}
3923
3924/* return first block from sh_ssl_sess */
3925static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3926{
3927 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3928
3929}
3930
3931/* store a session into the cache
3932 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3933 * data: asn1 encoded session
3934 * data_len: asn1 encoded session length
3935 * Returns 1 id session was stored (else 0)
3936 */
3937static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3938{
3939 struct shared_block *first;
3940 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3941
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003942 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003943 if (!first) {
3944 /* Could not retrieve enough free blocks to store that session */
3945 return 0;
3946 }
3947
3948 /* STORE the key in the first elem */
3949 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3950 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3951 first->len = sizeof(struct sh_ssl_sess_hdr);
3952
3953 /* it returns the already existing node
3954 or current node if none, never returns null */
3955 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
3956 if (oldsh_ssl_sess != sh_ssl_sess) {
3957 /* NOTE: Row couldn't be in use because we lock read & write function */
3958 /* release the reserved row */
3959 shctx_row_dec_hot(ssl_shctx, first);
3960 /* replace the previous session already in the tree */
3961 sh_ssl_sess = oldsh_ssl_sess;
3962 /* ignore the previous session data, only use the header */
3963 first = sh_ssl_sess_first_block(sh_ssl_sess);
3964 shctx_row_inc_hot(ssl_shctx, first);
3965 first->len = sizeof(struct sh_ssl_sess_hdr);
3966 }
3967
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003968 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01003969 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003970 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01003971 }
3972
3973 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01003974
3975 return 1;
3976}
William Lallemanded0b5ad2017-10-30 19:36:36 +01003977
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003978/* SSL callback used when a new session is created while connecting to a server */
3979static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
3980{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02003981 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003982 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003983
Willy Tarreau07d94e42018-09-20 10:57:52 +02003984 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003985
William Lallemand3ce6eed2021-02-08 10:43:44 +01003986 /* RWLOCK: only read lock the SSL cache even when writing in it because there is
3987 * one cache per thread, it only prevents to flush it from the CLI in
3988 * another thread */
3989
Olivier Houcharde6060c52017-11-16 17:42:52 +01003990 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
3991 int len;
3992 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01003993
Olivier Houcharde6060c52017-11-16 17:42:52 +01003994 len = i2d_SSL_SESSION(sess, NULL);
William Lallemand3ce6eed2021-02-08 10:43:44 +01003995 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01003996 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
3997 ptr = s->ssl_ctx.reused_sess[tid].ptr;
3998 } else {
Willy Tarreau3bda3f42021-02-26 21:05:08 +01003999 ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len);
4000 s->ssl_ctx.reused_sess[tid].ptr = ptr;
Olivier Houcharde6060c52017-11-16 17:42:52 +01004001 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4002 }
4003 if (s->ssl_ctx.reused_sess[tid].ptr) {
4004 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4005 &ptr);
4006 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01004007 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004008 } else {
William Lallemand3ce6eed2021-02-08 10:43:44 +01004009 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01004010 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01004011 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004012 }
4013
4014 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004015}
4016
Olivier Houcharde6060c52017-11-16 17:42:52 +01004017
William Lallemanded0b5ad2017-10-30 19:36:36 +01004018/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004019int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004020{
4021 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4022 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4023 unsigned char *p;
4024 int data_len;
Emeric Bruneb469652019-10-08 18:27:37 +02004025 unsigned int sid_length;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004026 const unsigned char *sid_data;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004027
4028 /* Session id is already stored in to key and session id is known
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05004029 * so we don't store it to keep size.
Emeric Bruneb469652019-10-08 18:27:37 +02004030 * note: SSL_SESSION_set1_id is using
4031 * a memcpy so we need to use a different pointer
4032 * than sid_data or sid_ctx_data to avoid valgrind
4033 * complaining.
William Lallemanded0b5ad2017-10-30 19:36:36 +01004034 */
4035
4036 sid_data = SSL_SESSION_get_id(sess, &sid_length);
Emeric Bruneb469652019-10-08 18:27:37 +02004037
4038 /* copy value in an other buffer */
4039 memcpy(encid, sid_data, sid_length);
4040
4041 /* pad with 0 */
4042 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4043 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4044
4045 /* force length to zero to avoid ASN1 encoding */
4046 SSL_SESSION_set1_id(sess, encid, 0);
4047
4048 /* force length to zero to avoid ASN1 encoding */
4049 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004050
4051 /* check if buffer is large enough for the ASN1 encoded session */
4052 data_len = i2d_SSL_SESSION(sess, NULL);
4053 if (data_len > SHSESS_MAX_DATA_LEN)
4054 goto err;
4055
4056 p = encsess;
4057
4058 /* process ASN1 session encoding before the lock */
4059 i2d_SSL_SESSION(sess, &p);
4060
William Lallemanded0b5ad2017-10-30 19:36:36 +01004061
William Lallemanda3c77cf2017-10-30 23:44:40 +01004062 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004063 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004064 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004065 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004066err:
4067 /* reset original length values */
Emeric Bruneb469652019-10-08 18:27:37 +02004068 SSL_SESSION_set1_id(sess, encid, sid_length);
4069 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004070
4071 return 0; /* do not increment session reference count */
4072}
4073
4074/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004075SSL_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 +01004076{
William Lallemand4f45bb92017-10-30 20:08:51 +01004077 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004078 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4079 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004080 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004081 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004082
4083 global.shctx_lookups++;
4084
4085 /* allow the session to be freed automatically by openssl */
4086 *do_copy = 0;
4087
4088 /* tree key is zeros padded sessionid */
4089 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4090 memcpy(tmpkey, key, key_len);
4091 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4092 key = tmpkey;
4093 }
4094
4095 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004096 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004097
4098 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004099 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4100 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004101 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004102 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004103 global.shctx_misses++;
4104 return NULL;
4105 }
4106
William Lallemand4f45bb92017-10-30 20:08:51 +01004107 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4108 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004109
William Lallemand4f45bb92017-10-30 20:08:51 +01004110 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 +01004111
William Lallemanda3c77cf2017-10-30 23:44:40 +01004112 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004113
4114 /* decode ASN1 session */
4115 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004116 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004117 /* Reset session id and session id contenxt */
4118 if (sess) {
4119 SSL_SESSION_set1_id(sess, key, key_len);
4120 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4121 }
4122
4123 return sess;
4124}
4125
William Lallemand4f45bb92017-10-30 20:08:51 +01004126
William Lallemanded0b5ad2017-10-30 19:36:36 +01004127/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004128void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004129{
William Lallemand4f45bb92017-10-30 20:08:51 +01004130 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004131 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4132 unsigned int sid_length;
4133 const unsigned char *sid_data;
4134 (void)ctx;
4135
4136 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4137 /* tree key is zeros padded sessionid */
4138 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4139 memcpy(tmpkey, sid_data, sid_length);
4140 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4141 sid_data = tmpkey;
4142 }
4143
William Lallemanda3c77cf2017-10-30 23:44:40 +01004144 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004145
4146 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004147 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4148 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004149 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004150 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004151 }
4152
4153 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004154 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004155}
4156
4157/* Set session cache mode to server and disable openssl internal cache.
4158 * Set shared cache callbacks on an ssl context.
4159 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004160void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004161{
4162 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4163
4164 if (!ssl_shctx) {
4165 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4166 return;
4167 }
4168
4169 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4170 SSL_SESS_CACHE_NO_INTERNAL |
4171 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4172
4173 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004174 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4175 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4176 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004177}
William Lallemand7d42ef52020-07-06 11:41:30 +02004178
4179/*
4180 * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
4181 *
4182 * The format is:
4183 * * <Label> <space> <ClientRandom> <space> <Secret>
4184 * We only need to copy the secret as there is a sample fetch for the ClientRandom
4185 */
4186
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05004187#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004188void SSL_CTX_keylog(const SSL *ssl, const char *line)
4189{
4190 struct ssl_keylog *keylog;
4191 char *lastarg = NULL;
4192 char *dst = NULL;
4193
4194 keylog = SSL_get_ex_data(ssl, ssl_keylog_index);
4195 if (!keylog)
4196 return;
4197
4198 lastarg = strrchr(line, ' ');
4199 if (lastarg == NULL || ++lastarg == NULL)
4200 return;
4201
4202 dst = pool_alloc(pool_head_ssl_keylog_str);
4203 if (!dst)
4204 return;
4205
4206 strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1);
4207 dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0';
4208
4209 if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) {
4210 if (keylog->client_random)
4211 goto error;
4212 keylog->client_random = dst;
4213
4214 } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) {
4215 if (keylog->client_early_traffic_secret)
4216 goto error;
4217 keylog->client_early_traffic_secret = dst;
4218
4219 } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4220 if(keylog->client_handshake_traffic_secret)
4221 goto error;
4222 keylog->client_handshake_traffic_secret = dst;
4223
4224 } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) {
4225 if (keylog->server_handshake_traffic_secret)
4226 goto error;
4227 keylog->server_handshake_traffic_secret = dst;
4228
4229 } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) {
4230 if (keylog->client_traffic_secret_0)
4231 goto error;
4232 keylog->client_traffic_secret_0 = dst;
4233
4234 } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) {
4235 if (keylog->server_traffic_secret_0)
4236 goto error;
4237 keylog->server_traffic_secret_0 = dst;
4238
4239 } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) {
4240 if (keylog->early_exporter_secret)
4241 goto error;
4242 keylog->early_exporter_secret = dst;
4243
4244 } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) {
4245 if (keylog->exporter_secret)
4246 goto error;
4247 keylog->exporter_secret = dst;
4248 } else {
4249 goto error;
4250 }
4251
4252 return;
4253
4254error:
4255 pool_free(pool_head_ssl_keylog_str, dst);
4256
4257 return;
4258}
4259#endif
William Lallemanded0b5ad2017-10-30 19:36:36 +01004260
William Lallemand8b453912019-11-21 15:48:10 +01004261/*
4262 * This function applies the SSL configuration on a SSL_CTX
4263 * It returns an error code and fills the <err> buffer
4264 */
4265int 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 +01004266{
4267 struct proxy *curproxy = bind_conf->frontend;
4268 int cfgerr = 0;
4269 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004270 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004271 const char *conf_ciphers;
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004272#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004273 const char *conf_ciphersuites;
4274#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004275 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004276
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004277 if (ssl_conf) {
4278 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4279 int i, min, max;
4280 int flags = MC_SSL_O_ALL;
4281
4282 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004283 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4284 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004285 if (min)
4286 flags |= (methodVersions[min].flag - 1);
4287 if (max)
4288 flags |= ~((methodVersions[max].flag << 1) - 1);
4289 min = max = CONF_TLSV_NONE;
4290 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4291 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4292 if (min)
4293 max = i;
4294 else
4295 min = max = i;
4296 }
4297 /* save real min/max */
4298 conf_ssl_methods->min = min;
4299 conf_ssl_methods->max = max;
4300 if (!min) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004301 memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4302 err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004303 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004304 }
4305 }
4306
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004307 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004308 case SSL_SOCK_VERIFY_NONE:
4309 verify = SSL_VERIFY_NONE;
4310 break;
4311 case SSL_SOCK_VERIFY_OPTIONAL:
4312 verify = SSL_VERIFY_PEER;
4313 break;
4314 case SSL_SOCK_VERIFY_REQUIRED:
4315 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4316 break;
4317 }
4318 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4319 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004320 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 +01004321 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 +01004322 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 +01004323 if (ca_file || ca_verify_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004324 /* set CAfile to verify */
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004325 if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004326 memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n",
Tim Duesterhus93128532019-11-23 23:45:10 +01004327 err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004328 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004329 }
Emmanuel Hocdet842e94e2019-12-16 16:39:17 +01004330 if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) {
4331 memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n",
4332 err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line);
4333 cfgerr |= ERR_ALERT | ERR_FATAL;
4334 }
4335 if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004336 /* set CA names for client cert request, function returns void */
Emmanuel Hocdet129d3282019-10-24 18:08:51 +02004337 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 +02004338 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004339 }
Emeric Brun850efd52014-01-29 12:24:34 +01004340 else {
Tim Duesterhus93128532019-11-23 23:45:10 +01004341 memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4342 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004343 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun850efd52014-01-29 12:24:34 +01004344 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004345#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004346 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004347 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4348
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004349 if (!ssl_set_cert_crl_file(store, crl_file)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004350 memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4351 err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004352 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02004353 }
Emeric Brun561e5742012-10-02 15:20:55 +02004354 else {
4355 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4356 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004357 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004358#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004359 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004360 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004361#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004362 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004363 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004364 memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4365 err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004366 cfgerr |= ERR_ALERT | ERR_FATAL;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004367 }
4368 }
4369#endif
4370
William Lallemand4f45bb92017-10-30 20:08:51 +01004371 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004372 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4373 if (conf_ciphers &&
4374 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004375 memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4376 err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004377 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004378 }
4379
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004380#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004381 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4382 if (conf_ciphersuites &&
4383 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004384 memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4385 err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004386 cfgerr |= ERR_ALERT | ERR_FATAL;
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004387 }
4388#endif
4389
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004390#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004391 /* If tune.ssl.default-dh-param has not been set,
4392 neither has ssl-default-dh-file and no static DH
4393 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004394 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004395 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004396 (ssl_dh_ptr_index == -1 ||
4397 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Willy Tarreau3ba77d22020-05-08 09:31:18 +02004398 /* default to dh-param 2048 */
4399 global_ssl.default_dh_param = 2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004400 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004401
Willy Tarreauef934602016-12-22 23:12:01 +01004402 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004403 if (local_dh_1024 == NULL) {
4404 local_dh_1024 = ssl_get_dh_1024();
4405 }
Willy Tarreauef934602016-12-22 23:12:01 +01004406 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004407 if (local_dh_2048 == NULL) {
4408 local_dh_2048 = ssl_get_dh_2048();
4409 }
Willy Tarreauef934602016-12-22 23:12:01 +01004410 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004411 if (local_dh_4096 == NULL) {
4412 local_dh_4096 = ssl_get_dh_4096();
4413 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004414 }
4415 }
4416 }
4417#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004418
Emeric Brunfc0421f2012-09-07 17:30:07 +02004419 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Ilya Shipitsin7ff77472021-02-08 16:55:06 +05004420#ifdef SSL_CTRL_SET_MSG_CALLBACK
Emeric Brun29f037d2014-04-25 19:05:36 +02004421 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004422#endif
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05004423#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02004424 SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog);
4425#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004426
Bernard Spil13c53f82018-02-15 13:34:58 +01004427#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004428 ssl_conf_cur = NULL;
4429 if (ssl_conf && ssl_conf->npn_str)
4430 ssl_conf_cur = ssl_conf;
4431 else if (bind_conf->ssl_conf.npn_str)
4432 ssl_conf_cur = &bind_conf->ssl_conf;
4433 if (ssl_conf_cur)
4434 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004435#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004436#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004437 ssl_conf_cur = NULL;
4438 if (ssl_conf && ssl_conf->alpn_str)
4439 ssl_conf_cur = ssl_conf;
4440 else if (bind_conf->ssl_conf.alpn_str)
4441 ssl_conf_cur = &bind_conf->ssl_conf;
4442 if (ssl_conf_cur)
4443 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004444#endif
Ilya Shipitsin0aa8c292020-11-04 00:39:07 +05004445#if defined(SSL_CTX_set1_curves_list)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004446 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4447 if (conf_curves) {
4448 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004449 memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4450 err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004451 cfgerr |= ERR_ALERT | ERR_FATAL;
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004452 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004453 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004454 }
4455#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004456#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004457 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004458 int i;
4459 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004460#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004461 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004462 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4463 NULL);
4464
4465 if (ecdhe == NULL) {
Eric Salama3c8bde82019-11-20 11:33:40 +01004466 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
Olivier Houchardc2aae742017-09-22 18:26:28 +02004467 return cfgerr;
4468 }
4469#else
4470 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4471 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4472 ECDHE_DEFAULT_CURVE);
4473#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004474
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004475 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004476 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Tim Duesterhus93128532019-11-23 23:45:10 +01004477 memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4478 err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
William Lallemand8b453912019-11-21 15:48:10 +01004479 cfgerr |= ERR_ALERT | ERR_FATAL;
Emeric Brun2b58d042012-09-20 17:10:03 +02004480 }
4481 else {
4482 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4483 EC_KEY_free(ecdh);
4484 }
4485 }
4486#endif
4487
Emeric Brunfc0421f2012-09-07 17:30:07 +02004488 return cfgerr;
4489}
4490
Evan Broderbe554312013-06-27 00:05:25 -07004491static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4492{
4493 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4494 size_t prefixlen, suffixlen;
4495
4496 /* Trivial case */
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004497 if (strcasecmp(pattern, hostname) == 0)
Evan Broderbe554312013-06-27 00:05:25 -07004498 return 1;
4499
Evan Broderbe554312013-06-27 00:05:25 -07004500 /* The rest of this logic is based on RFC 6125, section 6.4.3
4501 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4502
Emeric Bruna848dae2013-10-08 11:27:28 +02004503 pattern_wildcard = NULL;
4504 pattern_left_label_end = pattern;
4505 while (*pattern_left_label_end != '.') {
4506 switch (*pattern_left_label_end) {
4507 case 0:
4508 /* End of label not found */
4509 return 0;
4510 case '*':
4511 /* If there is more than one wildcards */
4512 if (pattern_wildcard)
4513 return 0;
4514 pattern_wildcard = pattern_left_label_end;
4515 break;
4516 }
4517 pattern_left_label_end++;
4518 }
4519
4520 /* If it's not trivial and there is no wildcard, it can't
4521 * match */
4522 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004523 return 0;
4524
4525 /* Make sure all labels match except the leftmost */
4526 hostname_left_label_end = strchr(hostname, '.');
4527 if (!hostname_left_label_end
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004528 || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0)
Evan Broderbe554312013-06-27 00:05:25 -07004529 return 0;
4530
4531 /* Make sure the leftmost label of the hostname is long enough
4532 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004533 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004534 return 0;
4535
4536 /* Finally compare the string on either side of the
4537 * wildcard */
4538 prefixlen = pattern_wildcard - pattern;
4539 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
William Lallemand2d6fd0a2020-09-14 15:20:10 +02004540 if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0))
4541 || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004542 return 0;
4543
4544 return 1;
4545}
4546
4547static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4548{
4549 SSL *ssl;
4550 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004551 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004552 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004553 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004554
4555 int depth;
4556 X509 *cert;
4557 STACK_OF(GENERAL_NAME) *alt_names;
4558 int i;
4559 X509_NAME *cert_subject;
4560 char *str;
4561
4562 if (ok == 0)
4563 return ok;
4564
4565 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004566 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004567 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004568
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004569 /* We're checking if the provided hostnames match the desired one. The
4570 * desired hostname comes from the SNI we presented if any, or if not
4571 * provided then it may have been explicitly stated using a "verifyhost"
4572 * directive. If neither is set, we don't care about the name so the
4573 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004574 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004575 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004576 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004577 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004578 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004579 if (!servername)
4580 return ok;
4581 }
Evan Broderbe554312013-06-27 00:05:25 -07004582
4583 /* We only need to verify the CN on the actual server cert,
4584 * not the indirect CAs */
4585 depth = X509_STORE_CTX_get_error_depth(ctx);
4586 if (depth != 0)
4587 return ok;
4588
4589 /* At this point, the cert is *not* OK unless we can find a
4590 * hostname match */
4591 ok = 0;
4592
4593 cert = X509_STORE_CTX_get_current_cert(ctx);
4594 /* It seems like this might happen if verify peer isn't set */
4595 if (!cert)
4596 return ok;
4597
4598 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4599 if (alt_names) {
4600 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4601 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4602 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004603#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004604 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4605#else
Evan Broderbe554312013-06-27 00:05:25 -07004606 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004607#endif
Evan Broderbe554312013-06-27 00:05:25 -07004608 ok = ssl_sock_srv_hostcheck(str, servername);
4609 OPENSSL_free(str);
4610 }
4611 }
4612 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004613 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004614 }
4615
4616 cert_subject = X509_get_subject_name(cert);
4617 i = -1;
4618 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4619 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004620 ASN1_STRING *value;
4621 value = X509_NAME_ENTRY_get_data(entry);
4622 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004623 ok = ssl_sock_srv_hostcheck(str, servername);
4624 OPENSSL_free(str);
4625 }
4626 }
4627
Willy Tarreau71d058c2017-07-26 20:09:56 +02004628 /* report the mismatch and indicate if SNI was used or not */
4629 if (!ok && !conn->err_code)
4630 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004631 return ok;
4632}
4633
Emeric Brun94324a42012-10-11 14:00:19 +02004634/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004635int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004636{
Willy Tarreau03209342016-12-22 17:08:28 +01004637 struct proxy *curproxy = srv->proxy;
Emeric Brun94324a42012-10-11 14:00:19 +02004638 int cfgerr = 0;
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004639 SSL_CTX *ctx = srv->ssl_ctx.ctx;
Emeric Brun94324a42012-10-11 14:00:19 +02004640
Thierry Fournier383085f2013-01-24 14:15:43 +01004641 /* Make sure openssl opens /dev/urandom before the chroot */
4642 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004643 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004644 cfgerr++;
4645 }
4646
Willy Tarreaufce03112015-01-15 21:32:40 +01004647 /* Automatic memory computations need to know we use SSL there */
4648 global.ssl_used_backend = 1;
4649
4650 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004651 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004652 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004653 ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n",
4654 curproxy->id, srv->id,
4655 srv->conf.file, srv->conf.line);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004656 cfgerr++;
4657 return cfgerr;
4658 }
4659 }
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004660 if (srv->use_ssl == 1)
Emeric Brun94324a42012-10-11 14:00:19 +02004661 srv->xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004662
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004663 /* The context will be uninitialized if there wasn't any "cert" option
4664 * in the server line. */
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004665 if (!ctx) {
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004666 ctx = SSL_CTX_new(SSLv23_client_method());
4667 if (!ctx) {
4668 ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n",
4669 proxy_type_str(curproxy), curproxy->id,
4670 srv->id);
4671 cfgerr++;
4672 return cfgerr;
4673 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004674
Remi Tricot-Le Bretond817dc72021-01-25 17:19:43 +01004675 srv->ssl_ctx.ctx = ctx;
4676 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004677
4678 cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, srv->ssl_ctx.ctx);
4679
4680 return cfgerr;
4681}
4682
4683
4684/* Initialize an SSL context that will be used on the backend side.
4685 * Returns an error count.
4686 */
4687int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx)
4688{
4689 struct proxy *curproxy = srv->proxy;
4690 int cfgerr = 0;
4691 long options =
4692 SSL_OP_ALL | /* all known workarounds for bugs */
4693 SSL_OP_NO_SSLv2 |
4694 SSL_OP_NO_COMPRESSION;
4695 long mode =
4696 SSL_MODE_ENABLE_PARTIAL_WRITE |
4697 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
4698 SSL_MODE_RELEASE_BUFFERS |
4699 SSL_MODE_SMALL_BUFFERS;
4700 int verify = SSL_VERIFY_NONE;
4701 const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
4702 int i, min, max, hole;
4703 int flags = MC_SSL_O_ALL;
4704
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004705 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004706 ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. "
4707 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4708 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004709 else
4710 flags = conf_ssl_methods->flags;
4711
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004712 /* Real min and max should be determinate with configuration and openssl's capabilities */
4713 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004714 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004715 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004716 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004717
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004718 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004719 min = max = CONF_TLSV_NONE;
4720 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004721 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004722 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004723 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004724 if (min) {
4725 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004726 ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. "
4727 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4728 proxy_type_str(curproxy), curproxy->id, srv->id,
4729 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004730 hole = 0;
4731 }
4732 max = i;
4733 }
4734 else {
4735 min = max = i;
4736 }
4737 }
4738 else {
4739 if (min)
4740 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004741 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004742 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004743 ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
4744 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004745 cfgerr += 1;
4746 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004747
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004748#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004749 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004750 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004751 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004752 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004753 else
4754 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4755 if (flags & methodVersions[i].flag)
4756 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004757#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004758 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004759 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4760 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004761#endif
4762
4763 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4764 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004765 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004766
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05004767#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004768 if (global_ssl.async)
4769 mode |= SSL_MODE_ASYNC;
4770#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004771 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004772
Emeric Brun850efd52014-01-29 12:24:34 +01004773 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4774 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004775 switch (srv->ssl_ctx.verify) {
4776 case SSL_SOCK_VERIFY_NONE:
4777 verify = SSL_VERIFY_NONE;
4778 break;
4779 case SSL_SOCK_VERIFY_REQUIRED:
4780 verify = SSL_VERIFY_PEER;
4781 break;
4782 }
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004783 SSL_CTX_set_verify(ctx, verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004784 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004785 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004786 if (srv->ssl_ctx.ca_file) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004787 /* set CAfile to verify */
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004788 if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) {
Emmanuel Hocdetd4f9a602019-10-24 11:32:47 +02004789 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to set CA file '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004790 curproxy->id, srv->id,
4791 srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004792 cfgerr++;
4793 }
4794 }
Emeric Brun850efd52014-01-29 12:24:34 +01004795 else {
4796 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004797 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",
4798 curproxy->id, srv->id,
4799 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004800 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01004801 ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n",
4802 curproxy->id, srv->id,
4803 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004804 cfgerr++;
4805 }
Emeric Brunef42d922012-10-11 16:11:36 +02004806#ifdef X509_V_FLAG_CRL_CHECK
4807 if (srv->ssl_ctx.crl_file) {
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004808 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
Emeric Brunef42d922012-10-11 16:11:36 +02004809
Emmanuel Hocdetb270e812019-11-21 19:09:31 +01004810 if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004811 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n",
4812 curproxy->id, srv->id,
4813 srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004814 cfgerr++;
4815 }
4816 else {
4817 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4818 }
4819 }
4820#endif
4821 }
4822
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004823 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
4824 SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004825 if (srv->ssl_ctx.ciphers &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004826 !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004827 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n",
4828 curproxy->id, srv->id,
4829 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004830 cfgerr++;
4831 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004832
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05004833#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004834 if (srv->ssl_ctx.ciphersuites &&
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004835 !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) {
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004836 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n",
4837 curproxy->id, srv->id,
4838 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites);
4839 cfgerr++;
4840 }
4841#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004842#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4843 if (srv->ssl_ctx.npn_str)
Remi Tricot-Le Breton442b7f22021-01-25 17:19:41 +01004844 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv);
Olivier Houchardc7566002018-11-20 23:33:50 +01004845#endif
4846#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4847 if (srv->ssl_ctx.alpn_str)
4848 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4849#endif
4850
Emeric Brun94324a42012-10-11 14:00:19 +02004851
4852 return cfgerr;
4853}
4854
Frédéric Lécailleec216522020-11-23 14:33:30 +01004855/*
4856 * Create an initial CTX used to start the SSL connections.
4857 * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs.
4858 * Returns 0 if succeeded, or something >0 if not.
4859 */
4860#ifdef USE_QUIC
4861static int ssl_initial_ctx(struct bind_conf *bind_conf)
4862{
4863 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
4864 return ssl_quic_initial_ctx(bind_conf);
4865 else
4866 return ssl_sock_initial_ctx(bind_conf);
4867}
4868#else
4869static int ssl_initial_ctx(struct bind_conf *bind_conf)
4870{
4871 return ssl_sock_initial_ctx(bind_conf);
4872}
4873#endif
4874
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004875/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004876 * be NULL, in which case nothing is done. Returns the number of errors
4877 * encountered.
4878 */
Willy Tarreau03209342016-12-22 17:08:28 +01004879int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004880{
4881 struct ebmb_node *node;
4882 struct sni_ctx *sni;
4883 int err = 0;
William Lallemand8b453912019-11-21 15:48:10 +01004884 int errcode = 0;
4885 char *errmsg = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004886
Willy Tarreaufce03112015-01-15 21:32:40 +01004887 /* Automatic memory computations need to know we use SSL there */
4888 global.ssl_used_frontend = 1;
4889
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004890 /* Make sure openssl opens /dev/urandom before the chroot */
4891 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004892 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004893 err++;
4894 }
4895 /* Create initial_ctx used to start the ssl connection before do switchctx */
4896 if (!bind_conf->initial_ctx) {
Frédéric Lécailleec216522020-11-23 14:33:30 +01004897 err += ssl_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004898 /* It should not be necessary to call this function, but it's
4899 necessary first to check and move all initialisation related
Frédéric Lécailleec216522020-11-23 14:33:30 +01004900 to initial_ctx in ssl_initial_ctx. */
William Lallemand8b453912019-11-21 15:48:10 +01004901 errcode |= ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx, &errmsg);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004902 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004903 if (bind_conf->default_ctx)
William Lallemand8b453912019-11-21 15:48:10 +01004904 errcode |= ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, &errmsg);
Emeric Brun0bed9942014-10-30 19:25:24 +01004905
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004906 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004907 while (node) {
4908 sni = ebmb_entry(node, struct sni_ctx, name);
Emeric Brun0bed9942014-10-30 19:25:24 +01004909 if (!sni->order && sni->ctx != bind_conf->default_ctx)
4910 /* only initialize the CTX on its first occurrence and
4911 if it is not the default_ctx */
William Lallemand8b453912019-11-21 15:48:10 +01004912 errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004913 node = ebmb_next(node);
4914 }
4915
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004916 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004917 while (node) {
4918 sni = ebmb_entry(node, struct sni_ctx, name);
William Lallemand8b453912019-11-21 15:48:10 +01004919 if (!sni->order && sni->ctx != bind_conf->default_ctx) {
Emeric Brun0bed9942014-10-30 19:25:24 +01004920 /* only initialize the CTX on its first occurrence and
4921 if it is not the default_ctx */
William Lallemand8b453912019-11-21 15:48:10 +01004922 errcode |= ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx, &errmsg);
4923 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004924 node = ebmb_next(node);
4925 }
William Lallemand8b453912019-11-21 15:48:10 +01004926
4927 if (errcode & ERR_WARN) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004928 ha_warning("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004929 } else if (errcode & ERR_CODE) {
Tim Duesterhusc0e820c2019-11-23 23:52:30 +01004930 ha_alert("%s", errmsg);
William Lallemand8b453912019-11-21 15:48:10 +01004931 err++;
4932 }
4933
4934 free(errmsg);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004935 return err;
4936}
4937
Willy Tarreau55d37912016-12-21 23:38:39 +01004938/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4939 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4940 * alerts are directly emitted since the rest of the stack does it below.
4941 */
4942int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4943{
4944 struct proxy *px = bind_conf->frontend;
4945 int alloc_ctx;
4946 int err;
4947
4948 if (!bind_conf->is_ssl) {
4949 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004950 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4951 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004952 }
4953 return 0;
4954 }
4955 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004956 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004957 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4958 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004959 }
4960 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004961 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4962 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004963 return -1;
4964 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004965 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004966 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004967 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004968 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004969 sizeof(*sh_ssl_sess_tree),
4970 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004971 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004972 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4973 ha_alert("Unable to initialize the lock for the shared SSL session cache. You can retry using the global statement 'tune.ssl.force-private-cache' but it could increase CPU usage due to renegotiations if nbproc > 1.\n");
4974 else
4975 ha_alert("Unable to allocate SSL session cache.\n");
4976 return -1;
4977 }
4978 /* free block callback */
4979 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4980 /* init the root tree within the extra space */
4981 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4982 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004983 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004984 err = 0;
4985 /* initialize all certificate contexts */
4986 err += ssl_sock_prepare_all_ctx(bind_conf);
4987
4988 /* initialize CA variables if the certificates generation is enabled */
4989 err += ssl_sock_load_ca(bind_conf);
4990
4991 return -err;
4992}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004993
4994/* release ssl context allocated for servers. */
4995void ssl_sock_free_srv_ctx(struct server *srv)
4996{
Olivier Houchardc7566002018-11-20 23:33:50 +01004997#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4998 if (srv->ssl_ctx.alpn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01004999 ha_free(&srv->ssl_ctx.alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01005000#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01005001#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01005002 if (srv->ssl_ctx.npn_str)
Willy Tarreaue709e822021-02-26 21:06:32 +01005003 ha_free(&srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01005004#endif
Christopher Faulet58feb492020-10-07 13:20:23 +02005005 if (srv->ssl_ctx.reused_sess) {
5006 int i;
5007
5008 for (i = 0; i < global.nbthread; i++)
Willy Tarreaue709e822021-02-26 21:06:32 +01005009 ha_free(&srv->ssl_ctx.reused_sess[i].ptr);
5010 ha_free(&srv->ssl_ctx.reused_sess);
Christopher Faulet58feb492020-10-07 13:20:23 +02005011 }
5012
Willy Tarreaue709e822021-02-26 21:06:32 +01005013 if (srv->ssl_ctx.ctx) {
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005014 SSL_CTX_free(srv->ssl_ctx.ctx);
Willy Tarreaue709e822021-02-26 21:06:32 +01005015 srv->ssl_ctx.ctx = NULL;
5016 }
Christopher Faulet77fe80c2015-07-29 13:02:40 +02005017}
5018
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005019/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02005020 * be NULL, in which case nothing is done. The default_ctx is nullified too.
5021 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005022void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02005023{
5024 struct ebmb_node *node, *back;
5025 struct sni_ctx *sni;
5026
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005027 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005028 while (node) {
5029 sni = ebmb_entry(node, struct sni_ctx, name);
5030 back = ebmb_next(node);
5031 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005032 SSL_CTX_free(sni->ctx);
William Lallemandb2408692020-06-24 09:54:29 +02005033 LIST_DEL(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005034 free(sni);
5035 node = back;
5036 }
5037
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005038 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005039 while (node) {
5040 sni = ebmb_entry(node, struct sni_ctx, name);
5041 back = ebmb_next(node);
5042 ebmb_delete(node);
William Lallemand02e19a52020-04-08 16:11:26 +02005043 SSL_CTX_free(sni->ctx);
William Lallemandb2408692020-06-24 09:54:29 +02005044 LIST_DEL(&sni->by_ckch_inst);
Emeric Brunfc0421f2012-09-07 17:30:07 +02005045 free(sni);
5046 node = back;
5047 }
William Lallemandb2408692020-06-24 09:54:29 +02005048
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01005049 SSL_CTX_free(bind_conf->initial_ctx);
5050 bind_conf->initial_ctx = NULL;
William Lallemand02e19a52020-04-08 16:11:26 +02005051 SSL_CTX_free(bind_conf->default_ctx);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02005052 bind_conf->default_ctx = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005053 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02005054}
William Lallemandb2408692020-06-24 09:54:29 +02005055
5056
5057void ssl_sock_deinit()
5058{
5059 crtlist_deinit(); /* must be free'd before the ckchs */
5060 ckch_deinit();
5061}
5062REGISTER_POST_DEINIT(ssl_sock_deinit);
Emeric Brune1f38db2012-09-03 20:36:47 +02005063
Willy Tarreau795cdab2016-12-22 17:30:54 +01005064/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5065void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5066{
5067 ssl_sock_free_ca(bind_conf);
5068 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005069 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005070 free(bind_conf->ca_sign_file);
5071 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005072 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005073 free(bind_conf->keys_ref->filename);
5074 free(bind_conf->keys_ref->tlskeys);
5075 LIST_DEL(&bind_conf->keys_ref->list);
5076 free(bind_conf->keys_ref);
5077 }
5078 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005079 bind_conf->ca_sign_pass = NULL;
5080 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005081}
5082
Christopher Faulet31af49d2015-06-09 17:29:50 +02005083/* Load CA cert file and private key used to generate certificates */
5084int
Willy Tarreau03209342016-12-22 17:08:28 +01005085ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005086{
Willy Tarreau03209342016-12-22 17:08:28 +01005087 struct proxy *px = bind_conf->frontend;
Shimi Gersner5846c492020-08-23 13:58:12 +03005088 struct cert_key_and_chain *ckch = NULL;
5089 int ret = 0;
5090 char *err = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005091
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005092 if (!bind_conf->generate_certs)
Shimi Gersner5846c492020-08-23 13:58:12 +03005093 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005094
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005095#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005096 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005097 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005098 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005099 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005100 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005101#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005102
Christopher Faulet31af49d2015-06-09 17:29:50 +02005103 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005104 ha_alert("Proxy '%s': cannot enable certificate generation, "
5105 "no CA certificate File configured at [%s:%d].\n",
5106 px->id, bind_conf->file, bind_conf->line);
Shimi Gersner5846c492020-08-23 13:58:12 +03005107 goto failed;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005108 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005109
Shimi Gersner5846c492020-08-23 13:58:12 +03005110 /* Allocate cert structure */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +02005111 ckch = calloc(1, sizeof(*ckch));
Shimi Gersner5846c492020-08-23 13:58:12 +03005112 if (!ckch) {
5113 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n",
5114 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5115 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005116 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005117
5118 /* Try to parse file */
5119 if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) {
5120 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n",
5121 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err);
Willy Tarreau01acf562021-02-26 21:12:15 +01005122 free(err);
Shimi Gersner5846c492020-08-23 13:58:12 +03005123 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005124 }
Shimi Gersner5846c492020-08-23 13:58:12 +03005125
5126 /* Fail if missing cert or pkey */
5127 if ((!ckch->cert) || (!ckch->key)) {
5128 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n",
5129 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
5130 goto failed;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005131 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005132
Shimi Gersner5846c492020-08-23 13:58:12 +03005133 /* Final assignment to bind */
5134 bind_conf->ca_sign_ckch = ckch;
5135 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005136
Shimi Gersner5846c492020-08-23 13:58:12 +03005137 failed:
5138 if (ckch) {
5139 ssl_sock_free_cert_key_and_chain_contents(ckch);
5140 free(ckch);
5141 }
5142
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005143 bind_conf->generate_certs = 0;
Shimi Gersner5846c492020-08-23 13:58:12 +03005144 ret++;
5145 return ret;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005146}
5147
5148/* Release CA cert and private key used to generate certificated */
5149void
5150ssl_sock_free_ca(struct bind_conf *bind_conf)
5151{
Shimi Gersner5846c492020-08-23 13:58:12 +03005152 if (bind_conf->ca_sign_ckch) {
5153 ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005154 ha_free(&bind_conf->ca_sign_ckch);
Shimi Gersner5846c492020-08-23 13:58:12 +03005155 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005156}
5157
Emeric Brun46591952012-05-18 15:47:34 +02005158/*
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005159 * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and
5160 * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings.
5161 * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom
5162 * data for the BIO and store <conn> as user data of the SSL session object.
Ilya Shipitsin1e9a6662021-01-05 22:10:46 +05005163 * 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 +01005164 * as parameters to this function.
5165 * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to
5166 * CO_ER_SSL_NO_MEM.
5167 */
5168int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx,
5169 SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx)
5170{
5171 int retry = 1;
5172
5173 retry:
5174 /* Alloc a new SSL session. */
5175 *ssl = SSL_new(ssl_ctx);
5176 if (!*ssl) {
5177 if (!retry--)
5178 goto err;
5179
5180 pool_gc(NULL);
5181 goto retry;
5182 }
5183
5184 *bio = BIO_new(bio_meth);
5185 if (!*bio) {
5186 SSL_free(*ssl);
5187 *ssl = NULL;
5188 if (!retry--)
5189 goto err;
5190
5191 pool_gc(NULL);
5192 goto retry;
5193 }
5194
5195 BIO_set_data(*bio, ctx);
5196 SSL_set_bio(*ssl, *bio, *bio);
5197
5198 /* set connection pointer. */
5199 if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) {
5200 SSL_free(*ssl);
5201 *ssl = NULL;
5202 if (!retry--)
5203 goto err;
5204
5205 pool_gc(NULL);
5206 goto retry;
5207 }
5208
5209 return 0;
5210
5211 err:
5212 conn->err_code = CO_ER_SSL_NO_MEM;
5213 return -1;
5214}
5215
5216/*
Emeric Brun46591952012-05-18 15:47:34 +02005217 * This function is called if SSL * context is not yet allocated. The function
5218 * is designed to be called before any other data-layer operation and sets the
5219 * handshake flag on the connection. It is safe to call it multiple times.
5220 * It returns 0 on success and -1 in error case.
5221 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005222static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005223{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005224 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005225 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005226 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005227 return 0;
5228
Willy Tarreau3c728722014-01-23 13:50:42 +01005229 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005230 return 0;
5231
Olivier Houchard66ab4982019-02-26 18:37:15 +01005232 ctx = pool_alloc(ssl_sock_ctx_pool);
5233 if (!ctx) {
5234 conn->err_code = CO_ER_SSL_NO_MEM;
5235 return -1;
5236 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005237 ctx->wait_event.tasklet = tasklet_new();
5238 if (!ctx->wait_event.tasklet) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005239 conn->err_code = CO_ER_SSL_NO_MEM;
5240 pool_free(ssl_sock_ctx_pool, ctx);
5241 return -1;
5242 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005243 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5244 ctx->wait_event.tasklet->context = ctx;
Willy Tarreau9205ab32021-02-25 15:31:00 +01005245 ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake
Olivier Houchardea8dd942019-05-20 14:02:16 +02005246 ctx->wait_event.events = 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005247 ctx->sent_early_data = 0;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005248 ctx->early_buf = BUF_NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005249 ctx->conn = conn;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005250 ctx->subs = NULL;
Emeric Brun5762a0d2019-09-06 15:36:02 +02005251 ctx->xprt_st = 0;
5252 ctx->xprt_ctx = NULL;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005253
5254 /* Only work with sockets for now, this should be adapted when we'll
5255 * add QUIC support.
5256 */
5257 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005258 if (ctx->xprt->init) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005259 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0)
5260 goto err;
Olivier Houchard19afb272019-05-23 18:24:07 +02005261 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005262
Willy Tarreau20879a02012-12-03 16:32:10 +01005263 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5264 conn->err_code = CO_ER_SSL_TOO_MANY;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005265 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005266 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005267
Emeric Brun46591952012-05-18 15:47:34 +02005268 /* If it is in client mode initiate SSL session
5269 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005270 if (objt_server(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005271 if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx,
5272 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005273 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005274
Olivier Houchard66ab4982019-02-26 18:37:15 +01005275 SSL_set_connect_state(ctx->ssl);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005276 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Willy Tarreau07d94e42018-09-20 10:57:52 +02005277 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5278 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5279 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 +01005280 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005281 SSL_SESSION_free(sess);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005282 ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
Olivier Houcharde6060c52017-11-16 17:42:52 +01005283 } else if (sess) {
5284 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005285 }
5286 }
William Lallemand3ce6eed2021-02-08 10:43:44 +01005287 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock));
Evan Broderbe554312013-06-27 00:05:25 -07005288
Emeric Brun46591952012-05-18 15:47:34 +02005289 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005290 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005291
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005292 _HA_ATOMIC_ADD(&sslconns, 1);
5293 _HA_ATOMIC_ADD(&totalsslconns, 1);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005294 *xprt_ctx = ctx;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005295 /* Start the handshake */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005296 tasklet_wakeup(ctx->wait_event.tasklet);
Emeric Brun46591952012-05-18 15:47:34 +02005297 return 0;
5298 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005299 else if (objt_listener(conn->target)) {
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005300 struct bind_conf *bc = __objt_listener(conn->target)->bind_conf;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005301
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005302 if (ssl_bio_and_sess_init(conn, bc->initial_ctx,
5303 &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005304 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005305
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005306#ifdef SSL_READ_EARLY_DATA_SUCCESS
Frédéric Lécaille5aa92412020-11-09 15:59:23 +01005307 if (bc->ssl_conf.early_data) {
Frédéric Lécaille3139c1b2020-01-24 14:56:18 +01005308 b_alloc(&ctx->early_buf);
5309 SSL_set_max_early_data(ctx->ssl,
5310 /* Only allow early data if we managed to allocate
5311 * a buffer.
5312 */
5313 (!b_is_null(&ctx->early_buf)) ?
5314 global.tune.bufsize - global.tune.maxrewrite : 0);
5315 }
5316#endif
5317
Olivier Houchard66ab4982019-02-26 18:37:15 +01005318 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005319
Emeric Brun46591952012-05-18 15:47:34 +02005320 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005321 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005322#ifdef SSL_READ_EARLY_DATA_SUCCESS
Willy Tarreaua84986a2021-02-03 11:21:38 +01005323 if (bc->ssl_conf.early_data)
5324 conn->flags |= CO_FL_EARLY_SSL_HS;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005325#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005326
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005327 _HA_ATOMIC_ADD(&sslconns, 1);
5328 _HA_ATOMIC_ADD(&totalsslconns, 1);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005329 *xprt_ctx = ctx;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005330 /* Start the handshake */
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005331 tasklet_wakeup(ctx->wait_event.tasklet);
Emeric Brun46591952012-05-18 15:47:34 +02005332 return 0;
5333 }
5334 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005335 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005336err:
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02005337 if (ctx && ctx->wait_event.tasklet)
5338 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01005339 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005340 return -1;
5341}
5342
5343
5344/* This is the callback which is used when an SSL handshake is pending. It
5345 * updates the FD status if it wants some polling before being called again.
5346 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5347 * otherwise it returns non-zero and removes itself from the connection's
5348 * flags (the bit is provided in <flag> by the caller).
5349 */
Olivier Houchard000694c2019-05-23 14:45:12 +02005350static int ssl_sock_handshake(struct connection *conn, unsigned int flag)
Emeric Brun46591952012-05-18 15:47:34 +02005351{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005352 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005353 int ret;
Willy Tarreau42995282020-11-06 13:19:18 +01005354 struct ssl_counters *counters = NULL;
5355 struct ssl_counters *counters_px = NULL;
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005356 struct listener *li;
5357 struct server *srv;
Willy Tarreau06300382021-02-02 15:42:25 +01005358 socklen_t lskerr;
5359 int skerr;
5360
Emeric Brun46591952012-05-18 15:47:34 +02005361
Willy Tarreau3c728722014-01-23 13:50:42 +01005362 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005363 return 0;
5364
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005365 /* get counters */
5366 switch (obj_type(conn->target)) {
5367 case OBJ_TYPE_LISTENER:
5368 li = objt_listener(conn->target);
5369 counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module);
5370 counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe,
5371 &ssl_stats_module);
5372 break;
5373
5374 case OBJ_TYPE_SERVER:
5375 srv = objt_server(conn->target);
5376 counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module);
5377 counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be,
5378 &ssl_stats_module);
5379 break;
5380
5381 default:
5382 break;
5383 }
5384
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005385 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005386 goto out_error;
5387
Willy Tarreau06300382021-02-02 15:42:25 +01005388 /* don't start calculating a handshake on a dead connection */
5389 if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH))
5390 goto out_error;
5391
5392 /* FIXME/WT: for now we don't have a clear way to inspect the connection
5393 * status from the lower layers, so let's check the FD directly. Ideally
5394 * the xprt layers should provide some status indicating their knowledge
5395 * of shutdowns or error.
5396 */
5397 skerr = 0;
5398 lskerr = sizeof(skerr);
5399 if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) ||
5400 skerr != 0)
5401 goto out_error;
5402
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005403#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02005404 /*
5405 * Check if we have early data. If we do, we have to read them
5406 * before SSL_do_handshake() is called, And there's no way to
5407 * detect early data, except to try to read them
5408 */
5409 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard54907bb2019-12-19 15:02:39 +01005410 size_t read_data = 0;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005411
Olivier Houchard54907bb2019-12-19 15:02:39 +01005412 while (1) {
5413 ret = SSL_read_early_data(ctx->ssl,
5414 b_tail(&ctx->early_buf), b_room(&ctx->early_buf),
5415 &read_data);
5416 if (ret == SSL_READ_EARLY_DATA_ERROR)
5417 goto check_error;
5418 if (read_data > 0) {
5419 conn->flags |= CO_FL_EARLY_DATA;
5420 b_add(&ctx->early_buf, read_data);
5421 }
5422 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5423 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5424 if (!b_data(&ctx->early_buf))
5425 b_free(&ctx->early_buf);
5426 break;
5427 }
5428 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005429 }
5430#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005431 /* If we use SSL_do_handshake to process a reneg initiated by
5432 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5433 * Usually SSL_write and SSL_read are used and process implicitly
5434 * the reneg handshake.
5435 * Here we use SSL_peek as a workaround for reneg.
5436 */
Willy Tarreauc192b0a2020-01-23 09:11:58 +01005437 if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005438 char c;
5439
Olivier Houchard66ab4982019-02-26 18:37:15 +01005440 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005441 if (ret <= 0) {
5442 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005443 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005444
Emeric Brun674b7432012-11-08 19:21:55 +01005445 if (ret == SSL_ERROR_WANT_WRITE) {
5446 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005447 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005448 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005449 return 0;
5450 }
5451 else if (ret == SSL_ERROR_WANT_READ) {
5452 /* handshake may have been completed but we have
5453 * no more data to read.
5454 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005455 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005456 ret = 1;
5457 goto reneg_ok;
5458 }
5459 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005460 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005461 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun674b7432012-11-08 19:21:55 +01005462 return 0;
5463 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005464#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005465 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005466 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005467 return 0;
5468 }
5469#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005470 else if (ret == SSL_ERROR_SYSCALL) {
5471 /* if errno is null, then connection was successfully established */
5472 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5473 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005474 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005475#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5476 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005477 conn->err_code = CO_ER_SSL_HANDSHAKE;
5478#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005479 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005480#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005481 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005482 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005483 empty_handshake = state == TLS_ST_BEFORE;
5484#else
Lukas Tribus49799162019-07-08 14:29:15 +02005485 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5486 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005487#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005488 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005489 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005490 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005491 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5492 else
5493 conn->err_code = CO_ER_SSL_EMPTY;
5494 }
5495 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005496 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005497 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5498 else
5499 conn->err_code = CO_ER_SSL_ABORT;
5500 }
5501 }
5502 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005503 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005504 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005505 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005506 conn->err_code = CO_ER_SSL_HANDSHAKE;
5507 }
Lukas Tribus49799162019-07-08 14:29:15 +02005508#endif /* BoringSSL or LibreSSL */
Willy Tarreau20879a02012-12-03 16:32:10 +01005509 }
Emeric Brun674b7432012-11-08 19:21:55 +01005510 goto out_error;
5511 }
5512 else {
5513 /* Fail on all other handshake errors */
5514 /* Note: OpenSSL may leave unread bytes in the socket's
5515 * buffer, causing an RST to be emitted upon close() on
5516 * TCP sockets. We first try to drain possibly pending
5517 * data to avoid this as much as possible.
5518 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005519 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005520 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005521 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005522 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005523 goto out_error;
5524 }
5525 }
5526 /* read some data: consider handshake completed */
5527 goto reneg_ok;
5528 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005529 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005530check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005531 if (ret != 1) {
5532 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005533 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005534
5535 if (ret == SSL_ERROR_WANT_WRITE) {
5536 /* SSL handshake needs to write, L4 connection may not be ready */
Olivier Houchard03abf2d2019-05-28 10:12:02 +02005537 if (!(ctx->wait_event.events & SUB_RETRY_SEND))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005538 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005539 return 0;
5540 }
5541 else if (ret == SSL_ERROR_WANT_READ) {
5542 /* SSL handshake needs to read, L4 connection is ready */
Olivier Houchardea8dd942019-05-20 14:02:16 +02005543 if (!(ctx->wait_event.events & SUB_RETRY_RECV))
Olivier Houchardea8dd942019-05-20 14:02:16 +02005544 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5545 SUB_RETRY_RECV, &ctx->wait_event);
Emeric Brun46591952012-05-18 15:47:34 +02005546 return 0;
5547 }
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005548#ifdef SSL_MODE_ASYNC
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005549 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005550 ssl_async_process_fds(ctx);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005551 return 0;
5552 }
5553#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005554 else if (ret == SSL_ERROR_SYSCALL) {
5555 /* if errno is null, then connection was successfully established */
5556 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5557 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005558 if (!conn->err_code) {
Lukas Tribus49799162019-07-08 14:29:15 +02005559#if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER)
5560 /* do not handle empty handshakes in BoringSSL or LibreSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005561 conn->err_code = CO_ER_SSL_HANDSHAKE;
5562#else
5563 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005564#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Lukas Tribus49799162019-07-08 14:29:15 +02005565 /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005566 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005567 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005568#else
Lukas Tribus49799162019-07-08 14:29:15 +02005569 /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */
5570 empty_handshake = !ctx->ssl->packet_length;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005571#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005572 if (empty_handshake) {
5573 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005574 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005575 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5576 else
5577 conn->err_code = CO_ER_SSL_EMPTY;
5578 }
5579 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005580 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005581 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5582 else
5583 conn->err_code = CO_ER_SSL_ABORT;
5584 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005585 }
5586 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005587 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005588 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5589 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005590 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005591 }
Lukas Tribus49799162019-07-08 14:29:15 +02005592#endif /* BoringSSL or LibreSSL */
Emeric Brun29f037d2014-04-25 19:05:36 +02005593 }
Willy Tarreau89230192012-09-28 20:22:13 +02005594 goto out_error;
5595 }
Emeric Brun46591952012-05-18 15:47:34 +02005596 else {
5597 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005598 /* Note: OpenSSL may leave unread bytes in the socket's
5599 * buffer, causing an RST to be emitted upon close() on
5600 * TCP sockets. We first try to drain possibly pending
5601 * data to avoid this as much as possible.
5602 */
Willy Tarreau2ded48d2020-12-11 16:20:34 +01005603 conn_ctrl_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005604 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005605 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005606 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005607 goto out_error;
5608 }
5609 }
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05005610#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard522eea72017-11-03 16:27:47 +01005611 else {
5612 /*
5613 * If the server refused the early data, we have to send a
5614 * 425 to the client, as we no longer have the data to sent
5615 * them again.
5616 */
5617 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005618 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005619 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5620 goto out_error;
5621 }
5622 }
5623 }
5624#endif
5625
Emeric Brun46591952012-05-18 15:47:34 +02005626
Emeric Brun674b7432012-11-08 19:21:55 +01005627reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005628
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005629#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005630 /* ASYNC engine API doesn't support moving read/write
5631 * buffers. So we disable ASYNC mode right after
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05005632 * the handshake to avoid buffer overflow.
Emeric Brunb5e42a82017-06-06 12:35:14 +00005633 */
5634 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005635 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005636#endif
Emeric Brun46591952012-05-18 15:47:34 +02005637 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005638 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005639 if (objt_server(conn->target)) {
5640 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5641 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5642 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005643 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005644 else {
5645 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5646 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5647 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5648 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005649
Willy Tarreau42995282020-11-06 13:19:18 +01005650 if (counters) {
5651 ++counters->sess;
5652 ++counters_px->sess;
5653 }
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005654 }
Willy Tarreau42995282020-11-06 13:19:18 +01005655 else if (counters) {
Amaury Denoyelled0447a72020-11-03 17:10:02 +01005656 ++counters->reused_sess;
5657 ++counters_px->reused_sess;
Emeric Brun46591952012-05-18 15:47:34 +02005658 }
5659
5660 /* The connection is now established at both layers, it's time to leave */
5661 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5662 return 1;
5663
5664 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005665 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005666 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005667 ERR_clear_error();
5668
Emeric Brun9fa89732012-10-04 17:09:56 +02005669 /* free resumed session if exists */
William Lallemand3ce6eed2021-02-08 10:43:44 +01005670 if (objt_server(conn->target)) {
5671 struct server *s = __objt_server(conn->target);
5672 /* RWLOCK: only rdlock the SSL cache even when writing in it because there is
5673 * one cache per thread, it only prevents to flush it from the CLI in
5674 * another thread */
5675
5676 HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01005677 if (s->ssl_ctx.reused_sess[tid].ptr)
5678 ha_free(&s->ssl_ctx.reused_sess[tid].ptr);
William Lallemand3ce6eed2021-02-08 10:43:44 +01005679 HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock);
Emeric Brun9fa89732012-10-04 17:09:56 +02005680 }
5681
Amaury Denoyelle034c1622020-11-13 16:05:00 +01005682 if (counters) {
5683 ++counters->failed_handshake;
5684 ++counters_px->failed_handshake;
5685 }
5686
Emeric Brun46591952012-05-18 15:47:34 +02005687 /* Fail on all other handshake errors */
5688 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005689 if (!conn->err_code)
5690 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005691 return 0;
5692}
5693
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005694/* Called from the upper layer, to subscribe <es> to events <event_type>. The
5695 * event subscriber <es> is not allowed to change from a previous call as long
5696 * as at least one event is still subscribed. The <event_type> must only be a
5697 * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0,
5698 * unless the transport layer was already released.
5699 */
5700static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005701{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005702 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005703
Olivier Houchard0ff28652019-06-24 18:57:39 +02005704 if (!ctx)
5705 return -1;
5706
Willy Tarreau113d52b2020-01-10 09:20:26 +01005707 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005708 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005709
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005710 ctx->subs = es;
5711 es->events |= event_type;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005712
5713 /* we may have to subscribe to lower layers for new events */
5714 event_type &= ~ctx->wait_event.events;
5715 if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS))
5716 ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005717 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005718}
5719
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005720/* Called from the upper layer, to unsubscribe <es> from events <event_type>.
5721 * The <es> pointer is not allowed to differ from the one passed to the
5722 * subscribe() call. It always returns zero.
5723 */
5724static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es)
Olivier Houcharddf357842019-03-21 16:30:07 +01005725{
Olivier Houchardea8dd942019-05-20 14:02:16 +02005726 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005727
Willy Tarreau113d52b2020-01-10 09:20:26 +01005728 BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV));
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005729 BUG_ON(ctx->subs && ctx->subs != es);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005730
Willy Tarreauee1a6fc2020-01-17 07:52:13 +01005731 es->events &= ~event_type;
5732 if (!es->events)
Willy Tarreau113d52b2020-01-10 09:20:26 +01005733 ctx->subs = NULL;
5734
5735 /* If we subscribed, and we're not doing the handshake,
5736 * then we subscribed because the upper layer asked for it,
5737 * as the upper layer is no longer interested, we can
5738 * unsubscribe too.
5739 */
5740 event_type &= ctx->wait_event.events;
5741 if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS))
5742 conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005743
5744 return 0;
Olivier Houcharddf357842019-03-21 16:30:07 +01005745}
5746
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005747/* The connection has been taken over, so destroy the old tasklet and create
5748 * a new one. The original thread ID must be passed into orig_tid
5749 * It should be called with the takeover lock for the old thread held.
5750 * Returns 0 on success, and -1 on failure
5751 */
5752static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid)
5753{
5754 struct ssl_sock_ctx *ctx = xprt_ctx;
5755 struct tasklet *tl = tasklet_new();
5756
5757 if (!tl)
5758 return -1;
5759
5760 ctx->wait_event.tasklet->context = NULL;
5761 tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid);
5762 ctx->wait_event.tasklet = tl;
5763 ctx->wait_event.tasklet->process = ssl_sock_io_cb;
5764 ctx->wait_event.tasklet->context = ctx;
5765 return 0;
5766}
5767
Olivier Houchard2e055482019-05-27 19:50:12 +02005768/* Use the provided XPRT as an underlying XPRT, and provide the old one.
5769 * Returns 0 on success, and non-zero on failure.
5770 */
5771static 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)
5772{
5773 struct ssl_sock_ctx *ctx = xprt_ctx;
5774
5775 if (oldxprt_ops != NULL)
5776 *oldxprt_ops = ctx->xprt;
5777 if (oldxprt_ctx != NULL)
5778 *oldxprt_ctx = ctx->xprt_ctx;
5779 ctx->xprt = toadd_ops;
5780 ctx->xprt_ctx = toadd_ctx;
5781 return 0;
5782}
5783
Olivier Houchard5149b592019-05-23 17:47:36 +02005784/* Remove the specified xprt. If if it our underlying XPRT, remove it and
5785 * return 0, otherwise just call the remove_xprt method from the underlying
5786 * XPRT.
5787 */
5788static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx)
5789{
5790 struct ssl_sock_ctx *ctx = xprt_ctx;
5791
5792 if (ctx->xprt_ctx == toremove_ctx) {
5793 ctx->xprt_ctx = newctx;
5794 ctx->xprt = newops;
5795 return 0;
5796 }
5797 return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx));
5798}
5799
Willy Tarreau691d5032021-01-20 14:55:01 +01005800struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned short state)
Olivier Houchardea8dd942019-05-20 14:02:16 +02005801{
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005802 struct tasklet *tl = (struct tasklet *)t;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005803 struct ssl_sock_ctx *ctx = context;
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005804 struct connection *conn;
5805 int conn_in_list;
5806 int ret = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005807
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005808 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005809 if (tl->context == NULL) {
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005810 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005811 tasklet_free(tl);
5812 return NULL;
5813 }
5814 conn = ctx->conn;
5815 conn_in_list = conn->flags & CO_FL_LIST_MASK;
5816 if (conn_in_list)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005817 conn_delete_from_tree(&conn->hash_node->node);
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005818 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005819 /* First if we're doing an handshake, try that */
Willy Tarreau9205ab32021-02-25 15:31:00 +01005820 if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005821 ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS);
Willy Tarreau9205ab32021-02-25 15:31:00 +01005822 if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
5823 /* handshake completed, leave the bulk queue */
5824 _HA_ATOMIC_AND(&tl->state, ~TASK_SELF_WAKING);
5825 }
5826 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005827 /* If we had an error, or the handshake is done and I/O is available,
5828 * let the upper layer know.
Olivier Houchard477902b2020-01-22 18:08:48 +01005829 * If no mux was set up yet, then call conn_create_mux()
Olivier Houchardea8dd942019-05-20 14:02:16 +02005830 * we can't be sure conn_fd_handler() will be called again.
5831 */
5832 if ((ctx->conn->flags & CO_FL_ERROR) ||
5833 !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005834 int woke = 0;
5835
5836 /* On error, wake any waiter */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005837 if (ctx->subs) {
5838 tasklet_wakeup(ctx->subs->tasklet);
5839 ctx->subs->events = 0;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005840 woke = 1;
Willy Tarreau113d52b2020-01-10 09:20:26 +01005841 ctx->subs = NULL;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005842 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01005843
Olivier Houchardea8dd942019-05-20 14:02:16 +02005844 /* If we're the first xprt for the connection, let the
Olivier Houchard477902b2020-01-22 18:08:48 +01005845 * upper layers know. If we have no mux, create it,
5846 * and once we have a mux, call its wake method if we didn't
5847 * woke a tasklet already.
Olivier Houchardea8dd942019-05-20 14:02:16 +02005848 */
5849 if (ctx->conn->xprt_ctx == ctx) {
Olivier Houchard477902b2020-01-22 18:08:48 +01005850 if (!ctx->conn->mux)
5851 ret = conn_create_mux(ctx->conn);
Olivier Houchardea8dd942019-05-20 14:02:16 +02005852 if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake)
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005853 ret = ctx->conn->mux->wake(ctx->conn);
5854 goto leave;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005855 }
5856 }
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005857#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005858 /* If we have early data and somebody wants to receive, let them */
Willy Tarreau113d52b2020-01-10 09:20:26 +01005859 else if (b_data(&ctx->early_buf) && ctx->subs &&
5860 ctx->subs->events & SUB_RETRY_RECV) {
5861 tasklet_wakeup(ctx->subs->tasklet);
5862 ctx->subs->events &= ~SUB_RETRY_RECV;
5863 if (!ctx->subs->events)
5864 ctx->subs = NULL;
Olivier Houchard54907bb2019-12-19 15:02:39 +01005865 }
5866#endif
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005867leave:
5868 if (!ret && conn_in_list) {
5869 struct server *srv = objt_server(conn->target);
5870
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005871 HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005872 if (conn_in_list == CO_FL_SAFE_LIST)
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005873 ebmb_insert(&srv->safe_conns_tree[tid], &conn->hash_node->node, sizeof(conn->hash_node->hash));
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005874 else
Amaury Denoyelle8990b012021-02-19 15:29:16 +01005875 ebmb_insert(&srv->idle_conns_tree[tid], &conn->hash_node->node, sizeof(conn->hash_node->hash));
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01005876 HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock);
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02005877 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02005878 return NULL;
5879}
5880
Emeric Brun46591952012-05-18 15:47:34 +02005881/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005882 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005883 * buffer wraps, in which case a second call may be performed. The connection's
5884 * flags are updated with whatever special event is detected (error, read0,
5885 * empty). The caller is responsible for taking care of those events and
5886 * avoiding the call if inappropriate. The function does not call the
5887 * connection's polling update function, so the caller is responsible for this.
5888 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005889static 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 +02005890{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005891 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005892 ssize_t ret;
5893 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005894
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005895 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005896 goto out_error;
5897
Ilya Shipitsin761d64c2021-01-07 11:59:58 +05005898#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard54907bb2019-12-19 15:02:39 +01005899 if (b_data(&ctx->early_buf)) {
5900 try = b_contig_space(buf);
5901 if (try > b_data(&ctx->early_buf))
5902 try = b_data(&ctx->early_buf);
5903 memcpy(b_tail(buf), b_head(&ctx->early_buf), try);
5904 b_add(buf, try);
5905 b_del(&ctx->early_buf, try);
5906 if (b_data(&ctx->early_buf) == 0)
5907 b_free(&ctx->early_buf);
5908 return try;
5909 }
5910#endif
5911
Willy Tarreau911db9b2020-01-23 16:27:54 +01005912 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005913 /* a handshake was requested */
5914 return 0;
5915
Emeric Brun46591952012-05-18 15:47:34 +02005916 /* read the largest possible block. For this, we perform only one call
5917 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5918 * in which case we accept to do it once again. A new attempt is made on
5919 * EINTR too.
5920 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005921 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005922
Willy Tarreau591d4452018-06-15 17:21:00 +02005923 try = b_contig_space(buf);
5924 if (!try)
5925 break;
5926
Willy Tarreauabf08d92014-01-14 11:31:27 +01005927 if (try > count)
5928 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005929
Olivier Houchard66ab4982019-02-26 18:37:15 +01005930 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetf967c312019-08-05 18:04:16 +02005931
Emeric Brune1f38db2012-09-03 20:36:47 +02005932 if (conn->flags & CO_FL_ERROR) {
5933 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005934 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005935 }
Emeric Brun46591952012-05-18 15:47:34 +02005936 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02005937 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005938 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005939 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005940 }
Emeric Brun46591952012-05-18 15:47:34 +02005941 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005942 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005943 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01005944 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02005945 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02005946 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005947#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005948 /* Async mode can be re-enabled, because we're leaving data state.*/
5949 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005950 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005951#endif
Emeric Brun46591952012-05-18 15:47:34 +02005952 break;
5953 }
5954 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005955 if (SSL_renegotiate_pending(ctx->ssl)) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02005956 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
5957 SUB_RETRY_RECV,
5958 &ctx->wait_event);
Emeric Brun282a76a2012-11-08 18:02:56 +01005959 /* handshake is running, and it may need to re-enable read */
5960 conn->flags |= CO_FL_SSL_WAIT_HS;
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05005961#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00005962 /* Async mode can be re-enabled, because we're leaving data state.*/
5963 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005964 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005965#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01005966 break;
5967 }
Emeric Brun46591952012-05-18 15:47:34 +02005968 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005969 } else if (ret == SSL_ERROR_ZERO_RETURN)
5970 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005971 /* For SSL_ERROR_SYSCALL, make sure to clear the error
5972 * stack before shutting down the connection for
5973 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01005974 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
5975 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02005976 /* otherwise it's a real error */
5977 goto out_error;
5978 }
5979 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005980 leave:
Emeric Brun46591952012-05-18 15:47:34 +02005981 return done;
5982
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005983 clear_ssl_error:
5984 /* Clear openssl global errors stack */
5985 ssl_sock_dump_errors(conn);
5986 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02005987 read0:
5988 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005989 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005990
Emeric Brun46591952012-05-18 15:47:34 +02005991 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01005992 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01005993 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005994 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005995 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005996 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02005997}
5998
5999
Willy Tarreau787db9a2018-06-14 18:31:46 +02006000/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
6001 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
6002 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02006003 * Only one call to send() is performed, unless the buffer wraps, in which case
6004 * a second call may be performed. The connection's flags are updated with
6005 * whatever special event is detected (error, empty). The caller is responsible
6006 * for taking care of those events and avoiding the call if inappropriate. The
6007 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02006008 * is responsible for this. The buffer's output is not adjusted, it's up to the
6009 * caller to take care of this. It's up to the caller to update the buffer's
6010 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02006011 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006012static 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 +02006013{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006014 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006015 ssize_t ret;
6016 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02006017
6018 done = 0;
6019
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006020 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02006021 goto out_error;
6022
Willy Tarreau911db9b2020-01-23 16:27:54 +01006023 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006024 /* a handshake was requested */
6025 return 0;
6026
6027 /* send the largest possible block. For this we perform only one call
6028 * to send() unless the buffer wraps and we exactly fill the first hunk,
6029 * in which case we accept to do it once again.
6030 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02006031 while (count) {
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006032#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchardc2aae742017-09-22 18:26:28 +02006033 size_t written_data;
6034#endif
6035
Willy Tarreau787db9a2018-06-14 18:31:46 +02006036 try = b_contig_data(buf, done);
6037 if (try > count)
6038 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01006039
Willy Tarreau7bed9452014-02-02 02:00:24 +01006040 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006041 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01006042 global_ssl.max_record && try > global_ssl.max_record) {
6043 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006044 }
6045 else {
6046 /* we need to keep the information about the fact that
6047 * we're not limiting the upcoming send(), because if it
6048 * fails, we'll have to retry with at least as many data.
6049 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006050 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01006051 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01006052
Ilya Shipitsinb9b84a42020-10-24 23:42:30 +05006053#ifdef SSL_READ_EARLY_DATA_SUCCESS
Olivier Houchard010941f2019-05-03 20:56:19 +02006054 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02006055 unsigned int max_early;
6056
Olivier Houchard522eea72017-11-03 16:27:47 +01006057 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006058 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01006059 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006060 if (SSL_get0_session(ctx->ssl))
6061 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01006062 else
6063 max_early = 0;
6064 }
6065
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006066 if (try + ctx->sent_early_data > max_early) {
6067 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01006068 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02006069 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006070 tasklet_wakeup(ctx->wait_event.tasklet);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006071 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01006072 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02006073 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01006074 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02006075 if (ret == 1) {
6076 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006077 ctx->sent_early_data += ret;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006078 if (objt_server(conn->target)) {
Olivier Houchard522eea72017-11-03 16:27:47 +01006079 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard965e84e2019-06-15 20:59:30 +02006080 /* Initiate the handshake, now */
6081 tasklet_wakeup(ctx->wait_event.tasklet);
6082 }
Olivier Houchard522eea72017-11-03 16:27:47 +01006083
Olivier Houchardc2aae742017-09-22 18:26:28 +02006084 }
6085
6086 } else
6087#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006088 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01006089
Emeric Brune1f38db2012-09-03 20:36:47 +02006090 if (conn->flags & CO_FL_ERROR) {
6091 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01006092 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02006093 }
Emeric Brun46591952012-05-18 15:47:34 +02006094 if (ret > 0) {
Willy Tarreauc192b0a2020-01-23 09:11:58 +01006095 /* A send succeeded, so we can consider ourself connected */
6096 conn->flags &= ~CO_FL_WAIT_L4L6;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006097 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02006098 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02006099 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02006100 }
6101 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006102 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006103
Emeric Brun46591952012-05-18 15:47:34 +02006104 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01006105 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01006106 /* handshake is running, and it may need to re-enable write */
6107 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006108 ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006109#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006110 /* Async mode can be re-enabled, because we're leaving data state.*/
6111 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006112 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006113#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01006114 break;
6115 }
Olivier Houchardea8dd942019-05-20 14:02:16 +02006116
Emeric Brun46591952012-05-18 15:47:34 +02006117 break;
6118 }
6119 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01006120 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02006121 conn->flags |= CO_FL_SSL_WAIT_HS;
Olivier Houchardea8dd942019-05-20 14:02:16 +02006122 ctx->xprt->subscribe(conn, ctx->xprt_ctx,
6123 SUB_RETRY_RECV,
6124 &ctx->wait_event);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006125#ifdef SSL_MODE_ASYNC
Emeric Brunb5e42a82017-06-06 12:35:14 +00006126 /* Async mode can be re-enabled, because we're leaving data state.*/
6127 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006128 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00006129#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006130 break;
6131 }
Emeric Brun46591952012-05-18 15:47:34 +02006132 goto out_error;
6133 }
6134 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006135 leave:
Emeric Brun46591952012-05-18 15:47:34 +02006136 return done;
6137
6138 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01006139 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006140 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006141 ERR_clear_error();
6142
Emeric Brun46591952012-05-18 15:47:34 +02006143 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02006144 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02006145}
6146
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006147static void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02006148
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006149 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006150
Olivier Houchardea8dd942019-05-20 14:02:16 +02006151
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006152 if (ctx) {
Olivier Houchardea8dd942019-05-20 14:02:16 +02006153 if (ctx->wait_event.events != 0)
6154 ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx,
6155 ctx->wait_event.events,
6156 &ctx->wait_event);
Willy Tarreau113d52b2020-01-10 09:20:26 +01006157 if (ctx->subs) {
6158 ctx->subs->events = 0;
6159 tasklet_wakeup(ctx->subs->tasklet);
Olivier Houchardea8dd942019-05-20 14:02:16 +02006160 }
Willy Tarreau113d52b2020-01-10 09:20:26 +01006161
Olivier Houchard692c1d02019-05-23 18:41:47 +02006162 if (ctx->xprt->close)
6163 ctx->xprt->close(conn, ctx->xprt_ctx);
Ilya Shipitsinbdec3ba2020-11-14 01:56:34 +05006164#ifdef SSL_MODE_ASYNC
Emeric Brun3854e012017-05-17 20:42:48 +02006165 if (global_ssl.async) {
6166 OSSL_ASYNC_FD all_fd[32], afd;
6167 size_t num_all_fds = 0;
6168 int i;
6169
Olivier Houchard66ab4982019-02-26 18:37:15 +01006170 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006171 if (num_all_fds > 32) {
6172 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
6173 return;
6174 }
6175
Olivier Houchard66ab4982019-02-26 18:37:15 +01006176 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02006177
6178 /* If an async job is pending, we must try to
6179 to catch the end using polling before calling
6180 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006181 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02006182 for (i=0 ; i < num_all_fds ; i++) {
6183 /* switch on an handler designed to
6184 * handle the SSL_free
6185 */
6186 afd = all_fd[i];
6187 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006188 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02006189 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00006190 /* To ensure that the fd cache won't be used
6191 * and we'll catch a real RD event.
6192 */
6193 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02006194 }
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006195 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006196 pool_free(ssl_sock_ctx_pool, ctx);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01006197 _HA_ATOMIC_ADD(&jobs, 1);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006198 return;
6199 }
Emeric Brun3854e012017-05-17 20:42:48 +02006200 /* Else we can remove the fds from the fdtab
6201 * and call SSL_free.
Willy Tarreau67672452020-08-26 11:44:17 +02006202 * note: we do a fd_stop_both and not a delete
Emeric Brun3854e012017-05-17 20:42:48 +02006203 * because the fd is owned by the engine.
6204 * the engine is responsible to close
6205 */
6206 for (i=0 ; i < num_all_fds ; i++)
Willy Tarreau67672452020-08-26 11:44:17 +02006207 fd_stop_both(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006208 }
6209#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01006210 SSL_free(ctx->ssl);
Olivier Houchard54907bb2019-12-19 15:02:39 +01006211 b_free(&ctx->early_buf);
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02006212 tasklet_free(ctx->wait_event.tasklet);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006213 pool_free(ssl_sock_ctx_pool, ctx);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01006214 _HA_ATOMIC_SUB(&sslconns, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006215 }
Emeric Brun46591952012-05-18 15:47:34 +02006216}
6217
6218/* This function tries to perform a clean shutdown on an SSL connection, and in
6219 * any case, flags the connection as reusable if no handshake was in progress.
6220 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006221static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02006222{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006223 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006224
Willy Tarreau911db9b2020-01-23 16:27:54 +01006225 if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS))
Emeric Brun46591952012-05-18 15:47:34 +02006226 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01006227 if (!clean)
6228 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006229 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02006230 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006231 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01006232 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02006233 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01006234 ERR_clear_error();
6235 }
Emeric Brun46591952012-05-18 15:47:34 +02006236}
6237
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01006238
Ilya Shipitsin77e3b4a2020-03-10 12:06:11 +05006239/* used for ppv2 pkey algo (can be used for logging) */
William Lallemandd4f946c2019-12-05 10:26:40 +01006240int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
6241{
6242 struct ssl_sock_ctx *ctx;
6243 X509 *crt;
6244
6245 if (!ssl_sock_is_ssl(conn))
6246 return 0;
6247
6248 ctx = conn->xprt_ctx;
6249
6250 crt = SSL_get_certificate(ctx->ssl);
6251 if (!crt)
6252 return 0;
6253
6254 return cert_get_pkey_algo(crt, out);
6255}
6256
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006257/* used for ppv2 cert signature (can be used for logging) */
6258const char *ssl_sock_get_cert_sig(struct connection *conn)
6259{
Christopher Faulet82004142019-09-10 10:12:03 +02006260 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006261
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006262 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
6263 X509 *crt;
6264
6265 if (!ssl_sock_is_ssl(conn))
6266 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006267 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006268 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006269 if (!crt)
6270 return NULL;
6271 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6272 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6273}
6274
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006275/* used for ppv2 authority */
6276const char *ssl_sock_get_sni(struct connection *conn)
6277{
6278#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006279 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006280
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006281 if (!ssl_sock_is_ssl(conn))
6282 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006283 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006284 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006285#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006286 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006287#endif
6288}
6289
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006290/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006291const char *ssl_sock_get_cipher_name(struct connection *conn)
6292{
Christopher Faulet82004142019-09-10 10:12:03 +02006293 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006294
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006295 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006296 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006297 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006298 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006299}
6300
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006301/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006302const char *ssl_sock_get_proto_version(struct connection *conn)
6303{
Christopher Faulet82004142019-09-10 10:12:03 +02006304 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006305
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006306 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006307 return NULL;
Christopher Faulet82004142019-09-10 10:12:03 +02006308 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006309 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006310}
6311
Olivier Houchardab28a322018-12-21 19:45:40 +01006312void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6313{
6314#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Christopher Faulet82004142019-09-10 10:12:03 +02006315 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006316
Olivier Houcharde488ea82019-06-28 14:10:33 +02006317 if (!ssl_sock_is_ssl(conn))
6318 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006319 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006320 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006321#endif
6322}
6323
Willy Tarreau119a4082016-12-22 21:58:38 +01006324/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6325 * to disable SNI.
6326 */
Willy Tarreau63076412015-07-10 11:33:32 +02006327void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6328{
6329#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Christopher Faulet82004142019-09-10 10:12:03 +02006330 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006331
Willy Tarreau119a4082016-12-22 21:58:38 +01006332 char *prev_name;
6333
Willy Tarreau63076412015-07-10 11:33:32 +02006334 if (!ssl_sock_is_ssl(conn))
6335 return;
Christopher Faulet82004142019-09-10 10:12:03 +02006336 ctx = conn->xprt_ctx;
Willy Tarreau63076412015-07-10 11:33:32 +02006337
Willy Tarreau119a4082016-12-22 21:58:38 +01006338 /* if the SNI changes, we must destroy the reusable context so that a
6339 * new connection will present a new SNI. As an optimization we could
6340 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6341 * server.
6342 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006343 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006344 if ((!prev_name && hostname) ||
6345 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006346 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006347
Olivier Houchard66ab4982019-02-26 18:37:15 +01006348 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006349#endif
6350}
6351
Emeric Brun0abf8362014-06-24 18:26:41 +02006352/* Extract peer certificate's common name into the chunk dest
6353 * Returns
6354 * the len of the extracted common name
6355 * or 0 if no CN found in DN
6356 * or -1 on error case (i.e. no peer certificate)
6357 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006358int ssl_sock_get_remote_common_name(struct connection *conn,
6359 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006360{
Christopher Faulet82004142019-09-10 10:12:03 +02006361 struct ssl_sock_ctx *ctx;
David Safb76832014-05-08 23:42:08 -04006362 X509 *crt = NULL;
6363 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006364 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006365 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006366 .area = (char *)&find_cn,
6367 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006368 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006369 int result = -1;
David Safb76832014-05-08 23:42:08 -04006370
6371 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006372 goto out;
Christopher Faulet82004142019-09-10 10:12:03 +02006373 ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006374
6375 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006376 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006377 if (!crt)
6378 goto out;
6379
6380 name = X509_get_subject_name(crt);
6381 if (!name)
6382 goto out;
David Safb76832014-05-08 23:42:08 -04006383
Emeric Brun0abf8362014-06-24 18:26:41 +02006384 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6385out:
David Safb76832014-05-08 23:42:08 -04006386 if (crt)
6387 X509_free(crt);
6388
6389 return result;
6390}
6391
Dave McCowan328fb582014-07-30 10:39:13 -04006392/* returns 1 if client passed a certificate for this session, 0 if not */
6393int ssl_sock_get_cert_used_sess(struct connection *conn)
6394{
Christopher Faulet82004142019-09-10 10:12:03 +02006395 struct ssl_sock_ctx *ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006396 X509 *crt = NULL;
6397
6398 if (!ssl_sock_is_ssl(conn))
6399 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006400 ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006401
6402 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006403 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006404 if (!crt)
6405 return 0;
6406
6407 X509_free(crt);
6408 return 1;
6409}
6410
6411/* returns 1 if client passed a certificate for this connection, 0 if not */
6412int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006413{
Christopher Faulet82004142019-09-10 10:12:03 +02006414 struct ssl_sock_ctx *ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006415
David Safb76832014-05-08 23:42:08 -04006416 if (!ssl_sock_is_ssl(conn))
6417 return 0;
Christopher Faulet82004142019-09-10 10:12:03 +02006418 ctx = conn->xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006419 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006420}
6421
6422/* returns result from SSL verify */
6423unsigned int ssl_sock_get_verify_result(struct connection *conn)
6424{
Christopher Faulet82004142019-09-10 10:12:03 +02006425 struct ssl_sock_ctx *ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006426
David Safb76832014-05-08 23:42:08 -04006427 if (!ssl_sock_is_ssl(conn))
6428 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
Christopher Faulet82004142019-09-10 10:12:03 +02006429 ctx = conn->xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006430 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006431}
6432
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006433/* Returns the application layer protocol name in <str> and <len> when known.
6434 * Zero is returned if the protocol name was not found, otherwise non-zero is
6435 * returned. The string is allocated in the SSL context and doesn't have to be
6436 * freed by the caller. NPN is also checked if available since older versions
6437 * of openssl (1.0.1) which are more common in field only support this one.
6438 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006439static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006440{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006441#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6442 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006443 struct ssl_sock_ctx *ctx = xprt_ctx;
6444 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006445 return 0;
6446
6447 *str = NULL;
6448
6449#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006450 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006451 if (*str)
6452 return 1;
6453#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006454#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006455 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006456 if (*str)
6457 return 1;
6458#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006459#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006460 return 0;
6461}
6462
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006463/* "issuers-chain-path" load chain certificate in global */
William Lallemanddad31052020-05-14 17:47:32 +02006464int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006465{
6466 X509 *ca;
6467 X509_NAME *name = NULL;
6468 ASN1_OCTET_STRING *skid = NULL;
6469 STACK_OF(X509) *chain = NULL;
6470 struct issuer_chain *issuer;
6471 struct eb64_node *node;
6472 char *path;
6473 u64 key;
6474 int ret = 0;
6475
6476 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
6477 if (chain == NULL) {
6478 chain = sk_X509_new_null();
6479 skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL);
6480 name = X509_get_subject_name(ca);
6481 }
6482 if (!sk_X509_push(chain, ca)) {
6483 X509_free(ca);
6484 goto end;
6485 }
6486 }
6487 if (!chain) {
6488 memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp);
6489 goto end;
6490 }
6491 if (!skid) {
6492 memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp);
6493 goto end;
6494 }
6495 if (!name) {
6496 memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp);
6497 goto end;
6498 }
Dragan Dosen967e7e72020-12-22 13:22:34 +01006499 key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0);
William Lallemande0f3fd52020-02-25 14:53:06 +01006500 for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) {
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006501 issuer = container_of(node, typeof(*issuer), node);
6502 if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) {
6503 memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path);
6504 goto end;
6505 }
6506 }
6507 issuer = calloc(1, sizeof *issuer);
6508 path = strdup(fp);
6509 if (!issuer || !path) {
6510 free(issuer);
6511 free(path);
6512 goto end;
6513 }
6514 issuer->node.key = key;
6515 issuer->path = path;
6516 issuer->chain = chain;
6517 chain = NULL;
William Lallemande0f3fd52020-02-25 14:53:06 +01006518 eb64_insert(&cert_issuer_tree, &issuer->node);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006519 ret = 1;
6520 end:
6521 if (skid)
6522 ASN1_OCTET_STRING_free(skid);
6523 if (chain)
6524 sk_X509_pop_free(chain, X509_free);
6525 return ret;
6526}
6527
William Lallemandda8584c2020-05-14 10:14:37 +02006528 struct issuer_chain* ssl_get0_issuer_chain(X509 *cert)
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006529{
6530 AUTHORITY_KEYID *akid;
6531 struct issuer_chain *issuer = NULL;
6532
6533 akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL);
William Lallemandf69cd682020-11-19 16:24:13 +01006534 if (akid && akid->keyid) {
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006535 struct eb64_node *node;
6536 u64 hk;
Dragan Dosen967e7e72020-12-22 13:22:34 +01006537 hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0);
Emmanuel Hocdet75a7aa12020-02-18 15:19:24 +01006538 for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) {
6539 struct issuer_chain *ti = container_of(node, typeof(*issuer), node);
6540 if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) {
6541 issuer = ti;
6542 break;
6543 }
6544 }
6545 AUTHORITY_KEYID_free(akid);
6546 }
6547 return issuer;
6548}
6549
William Lallemanddad31052020-05-14 17:47:32 +02006550void ssl_free_global_issuers(void)
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006551{
6552 struct eb64_node *node, *back;
6553 struct issuer_chain *issuer;
6554
William Lallemande0f3fd52020-02-25 14:53:06 +01006555 node = eb64_first(&cert_issuer_tree);
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01006556 while (node) {
6557 issuer = container_of(node, typeof(*issuer), node);
6558 back = eb64_next(node);
6559 eb64_delete(node);
6560 free(issuer->path);
6561 sk_X509_pop_free(issuer->chain, X509_free);
6562 free(issuer);
6563 node = back;
6564 }
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006565}
6566
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02006567#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006568static int ssl_check_async_engine_count(void) {
Christopher Fauletfc633b62020-11-06 15:24:23 +01006569 int err_code = ERR_NONE;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006570
Emeric Brun3854e012017-05-17 20:42:48 +02006571 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01006572 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00006573 err_code = ERR_ABORT;
6574 }
6575 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01006576}
Willy Tarreau9ceda382016-12-21 23:13:03 +01006577#endif
6578
Willy Tarreaude5675a2021-01-20 14:41:29 +01006579/* "show fd" helper to dump ssl internals. Warning: the output buffer is often
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006580 * the common trash! It returns non-zero if the connection entry looks suspicious.
Willy Tarreaude5675a2021-01-20 14:41:29 +01006581 */
Willy Tarreau8050efe2021-01-21 08:26:06 +01006582static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx)
Willy Tarreaude5675a2021-01-20 14:41:29 +01006583{
6584 const struct ssl_sock_ctx *sctx = ctx;
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006585 int ret = 0;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006586
6587 if (!sctx)
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006588 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006589
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006590 if (sctx->conn != conn) {
6591 chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn);
6592 ret = 1;
6593 }
Willy Tarreaude5675a2021-01-20 14:41:29 +01006594 chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st);
6595
6596 if (sctx->xprt) {
6597 chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name);
6598 if (sctx->xprt_ctx)
6599 chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx);
6600 }
6601
6602 chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006603
6604 /* as soon as a shutdown is reported the lower layer unregisters its
6605 * subscriber, so the situations below are transient and rare enough to
6606 * be reported as suspicious. In any case they shouldn't last.
6607 */
6608 if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR)))
6609 ret = 1;
6610 if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR)))
6611 ret = 1;
6612
Willy Tarreaude5675a2021-01-20 14:41:29 +01006613 chunk_appendf(&trash, " .subs=%p", sctx->subs);
6614 if (sctx->subs) {
6615 chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006616 if (sctx->subs->tasklet->calls >= 1000000)
6617 ret = 1;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006618 chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=",
6619 sctx->subs->tasklet->calls,
6620 sctx->subs->tasklet->context);
6621 resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process);
6622 chunk_appendf(&trash, ")");
6623 }
6624 chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data);
6625 chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data);
Willy Tarreau4bd5d632021-01-21 08:53:50 +01006626 return ret;
Willy Tarreaude5675a2021-01-20 14:41:29 +01006627}
6628
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006629#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
William Lallemand32af2032016-10-29 18:09:35 +02006630/* This function is used with TLS ticket keys management. It permits to browse
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006631 * each reference. The variable <ref> must point to the current node's list
6632 * element (which starts by the root), and <end> must point to the root node.
William Lallemand32af2032016-10-29 18:09:35 +02006633 */
William Lallemand32af2032016-10-29 18:09:35 +02006634static inline
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006635struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end)
William Lallemand32af2032016-10-29 18:09:35 +02006636{
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006637 /* Get next list entry. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006638 ref = ref->n;
William Lallemand32af2032016-10-29 18:09:35 +02006639
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006640 /* If the entry is the last of the list, return NULL. */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006641 if (ref == end)
Tim Duesterhus2c7bb332021-01-03 01:29:55 +01006642 return NULL;
William Lallemand32af2032016-10-29 18:09:35 +02006643
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006644 return LIST_ELEM(ref, struct tls_keys_ref *, list);
William Lallemand32af2032016-10-29 18:09:35 +02006645}
6646
6647static inline
6648struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
6649{
6650 int id;
6651 char *error;
6652
6653 /* If the reference starts by a '#', this is numeric id. */
6654 if (reference[0] == '#') {
6655 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
6656 id = strtol(reference + 1, &error, 10);
6657 if (*error != '\0')
6658 return NULL;
6659
6660 /* Perform the unique id lookup. */
6661 return tlskeys_ref_lookupid(id);
6662 }
6663
6664 /* Perform the string lookup. */
6665 return tlskeys_ref_lookup(reference);
6666}
6667#endif
6668
6669
6670#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6671
6672static int cli_io_handler_tlskeys_files(struct appctx *appctx);
6673
6674static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
6675 return cli_io_handler_tlskeys_files(appctx);
6676}
6677
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006678/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
6679 * (next index to be dumped), and cli.p0 (next key reference).
6680 */
William Lallemand32af2032016-10-29 18:09:35 +02006681static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
6682
6683 struct stream_interface *si = appctx->owner;
6684
6685 switch (appctx->st2) {
6686 case STAT_ST_INIT:
6687 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08006688 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02006689 * later and restart at the state "STAT_ST_INIT".
6690 */
6691 chunk_reset(&trash);
6692
6693 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
6694 chunk_appendf(&trash, "# id secret\n");
6695 else
6696 chunk_appendf(&trash, "# id (file)\n");
6697
Willy Tarreau06d80a92017-10-19 14:32:15 +02006698 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01006699 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006700 return 0;
6701 }
6702
William Lallemand32af2032016-10-29 18:09:35 +02006703 /* Now, we start the browsing of the references lists.
6704 * Note that the following call to LIST_ELEM return bad pointer. The only
6705 * available field of this pointer is <list>. It is used with the function
6706 * tlskeys_list_get_next() for retruning the first available entry
6707 */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006708 if (appctx->ctx.cli.p0 == NULL)
6709 appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006710
6711 appctx->st2 = STAT_ST_LIST;
6712 /* fall through */
6713
6714 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006715 while (appctx->ctx.cli.p0) {
6716 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02006717
6718 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006719 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02006720 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006721
6722 if (appctx->ctx.cli.i1 == 0)
6723 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
6724
William Lallemand32af2032016-10-29 18:09:35 +02006725 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01006726 int head;
6727
6728 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
6729 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006730 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02006731 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02006732
6733 chunk_reset(t2);
6734 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01006735 if (ref->key_size_bits == 128) {
6736 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6737 sizeof(struct tls_sess_key_128),
6738 t2->area, t2->size);
6739 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6740 t2->area);
6741 }
6742 else if (ref->key_size_bits == 256) {
6743 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
6744 sizeof(struct tls_sess_key_256),
6745 t2->area, t2->size);
6746 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
6747 t2->area);
6748 }
6749 else {
6750 /* This case should never happen */
6751 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
6752 }
William Lallemand32af2032016-10-29 18:09:35 +02006753
Willy Tarreau06d80a92017-10-19 14:32:15 +02006754 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006755 /* let's try again later from this stream. We add ourselves into
6756 * this stream's users so that it can remove us upon termination.
6757 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01006758 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01006759 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006760 return 0;
6761 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006762 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02006763 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01006764 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006765 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006766 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02006767 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02006768 /* let's try again later from this stream. We add ourselves into
6769 * this stream's users so that it can remove us upon termination.
6770 */
Willy Tarreaudb398432018-11-15 11:08:52 +01006771 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02006772 return 0;
6773 }
6774
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006775 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02006776 break;
6777
6778 /* get next list entry and check the end of the list */
Willy Tarreaub6fc5242021-01-05 10:44:30 +01006779 appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02006780 }
6781
6782 appctx->st2 = STAT_ST_FIN;
6783 /* fall through */
6784
6785 default:
6786 appctx->st2 = STAT_ST_FIN;
6787 return 1;
6788 }
6789 return 0;
6790}
6791
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006792/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006793static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006794{
William Lallemand32af2032016-10-29 18:09:35 +02006795 /* no parameter, shows only file list */
6796 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006797 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006798 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006799 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006800 }
6801
6802 if (args[2][0] == '*') {
6803 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006804 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02006805 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006806 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006807 if (!appctx->ctx.cli.p0)
6808 return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006809 }
William Lallemand32af2032016-10-29 18:09:35 +02006810 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01006811 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02006812}
6813
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006814static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006815{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006816 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006817 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006818
William Lallemand32af2032016-10-29 18:09:35 +02006819 /* Expect two parameters: the filename and the new new TLS key in encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006820 if (!*args[3] || !*args[4])
6821 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 +02006822
Willy Tarreauf5f26e82016-12-16 18:47:27 +01006823 ref = tlskeys_ref_lookup_ref(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02006824 if (!ref)
6825 return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n");
William Lallemand32af2032016-10-29 18:09:35 +02006826
Willy Tarreau1c913e42018-08-22 05:26:57 +02006827 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006828 if (ret < 0)
6829 return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n");
Emeric Brun9e754772019-01-10 17:51:55 +01006830
Willy Tarreau1c913e42018-08-22 05:26:57 +02006831 trash.data = ret;
Willy Tarreau9d008692019-08-09 11:21:01 +02006832 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0)
6833 return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006834
Willy Tarreau9d008692019-08-09 11:21:01 +02006835 return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006836}
William Lallemandd4f946c2019-12-05 10:26:40 +01006837#endif
William Lallemand419e6342020-04-08 12:05:39 +02006838
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02006839static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02006840{
6841#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
6842 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02006843 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006844
6845 if (!payload)
6846 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02006847
6848 /* Expect one parameter: the new response in base64 encoding */
Willy Tarreau9d008692019-08-09 11:21:01 +02006849 if (!*payload)
6850 return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n");
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02006851
6852 /* remove \r and \n from the payload */
6853 for (i = 0, j = 0; payload[i]; i++) {
6854 if (payload[i] == '\r' || payload[i] == '\n')
6855 continue;
6856 payload[j++] = payload[i];
6857 }
6858 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02006859
Willy Tarreau1c913e42018-08-22 05:26:57 +02006860 ret = base64dec(payload, j, trash.area, trash.size);
Willy Tarreau9d008692019-08-09 11:21:01 +02006861 if (ret < 0)
6862 return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006863
Willy Tarreau1c913e42018-08-22 05:26:57 +02006864 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02006865 if (ssl_sock_update_ocsp_response(&trash, &err)) {
Willy Tarreau9d008692019-08-09 11:21:01 +02006866 if (err)
6867 return cli_dynerr(appctx, memprintf(&err, "%s.\n", err));
6868 else
6869 return cli_err(appctx, "Failed to update OCSP response.\n");
William Lallemand32af2032016-10-29 18:09:35 +02006870 }
Willy Tarreau9d008692019-08-09 11:21:01 +02006871
6872 return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n");
William Lallemand32af2032016-10-29 18:09:35 +02006873#else
Willy Tarreau9d008692019-08-09 11:21:01 +02006874 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 +02006875#endif
6876
Elliot Otchet71f82972020-01-15 08:12:14 -05006877}
6878
William Lallemand32af2032016-10-29 18:09:35 +02006879/* register cli keywords */
6880static struct cli_kw_list cli_kws = {{ },{
6881#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
6882 { { "show", "tls-keys", NULL }, "show tls-keys [id|*]: show tls keys references or dump tls ticket keys when id specified", cli_parse_show_tlskeys, NULL },
Lukas Tribusf4bbc432017-10-24 12:26:31 +02006883 { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|keyfile] <tlskey>: set the next TLS key for the <id> or <keyfile> listener to <tlskey>", cli_parse_set_tlskeys, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02006884#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01006885 { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02006886 { { NULL }, NULL, NULL, NULL }
6887}};
6888
Willy Tarreau0108d902018-11-25 19:14:37 +01006889INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02006890
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02006891/* transport-layer operations for SSL sockets */
William Lallemanddad31052020-05-14 17:47:32 +02006892struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02006893 .snd_buf = ssl_sock_from_buf,
6894 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01006895 .subscribe = ssl_subscribe,
6896 .unsubscribe = ssl_unsubscribe,
Olivier Houchard5149b592019-05-23 17:47:36 +02006897 .remove_xprt = ssl_remove_xprt,
Olivier Houchard2e055482019-05-27 19:50:12 +02006898 .add_xprt = ssl_add_xprt,
Emeric Brun46591952012-05-18 15:47:34 +02006899 .rcv_pipe = NULL,
6900 .snd_pipe = NULL,
6901 .shutr = NULL,
6902 .shutw = ssl_sock_shutw,
6903 .close = ssl_sock_close,
6904 .init = ssl_sock_init,
Willy Tarreau55d37912016-12-21 23:38:39 +01006905 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01006906 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01006907 .prepare_srv = ssl_sock_prepare_srv_ctx,
6908 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006909 .get_alpn = ssl_sock_get_alpn,
Olivier Houcharda74bb7e2020-07-03 14:01:21 +02006910 .takeover = ssl_takeover,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01006911 .name = "SSL",
Willy Tarreaude5675a2021-01-20 14:41:29 +01006912 .show_fd = ssl_sock_show_fd,
Emeric Brun46591952012-05-18 15:47:34 +02006913};
6914
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006915enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
6916 struct session *sess, struct stream *s, int flags)
6917{
6918 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006919 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006920
6921 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006922 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006923
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006924 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006925 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01006926 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006927 s->req.flags |= CF_READ_NULL;
6928 return ACT_RET_YIELD;
6929 }
6930 }
6931 return (ACT_RET_CONT);
6932}
6933
6934static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
6935{
6936 rule->action_ptr = ssl_action_wait_for_hs;
6937
6938 return ACT_RET_PRS_OK;
6939}
6940
6941static struct action_kw_list http_req_actions = {ILH, {
6942 { "wait-for-handshake", ssl_parse_wait_for_hs },
6943 { /* END */ }
6944}};
6945
Willy Tarreau0108d902018-11-25 19:14:37 +01006946INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
6947
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05006948#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01006949
6950static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
6951{
6952 if (ptr) {
6953 chunk_destroy(ptr);
6954 free(ptr);
6955 }
6956}
6957
6958#endif
William Lallemand76b4a122020-08-04 17:41:39 +02006959
6960#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
6961static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
6962{
6963 struct ocsp_cbk_arg *ocsp_arg;
6964
6965 if (ptr) {
6966 ocsp_arg = ptr;
6967
6968 if (ocsp_arg->is_single) {
6969 ssl_sock_free_ocsp(ocsp_arg->s_ocsp);
6970 ocsp_arg->s_ocsp = NULL;
6971 } else {
6972 int i;
6973
6974 for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) {
6975 ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]);
6976 ocsp_arg->m_ocsp[i] = NULL;
6977 }
6978 }
6979 free(ocsp_arg);
6980 }
6981}
6982#endif
6983
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01006984static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
6985{
Willy Tarreaubafbe012017-11-24 17:34:44 +01006986 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01006987}
William Lallemand7d42ef52020-07-06 11:41:30 +02006988
Ilya Shipitsin04a5a442020-11-03 14:15:38 +05006989#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02006990static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
6991{
6992 struct ssl_keylog *keylog;
6993
6994 if (!ptr)
6995 return;
6996
6997 keylog = ptr;
6998
6999 pool_free(pool_head_ssl_keylog_str, keylog->client_random);
7000 pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret);
7001 pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret);
7002 pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret);
7003 pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0);
7004 pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0);
7005 pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret);
7006 pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret);
7007
7008 pool_free(pool_head_ssl_keylog, ptr);
7009}
7010#endif
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007011
Emeric Brun46591952012-05-18 15:47:34 +02007012__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02007013static void __ssl_sock_init(void)
7014{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007015#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007016 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007017 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007018#endif
Emeric Brun46591952012-05-18 15:47:34 +02007019
Willy Tarreauef934602016-12-22 23:12:01 +01007020 if (global_ssl.listen_default_ciphers)
7021 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
7022 if (global_ssl.connect_default_ciphers)
7023 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Ilya Shipitsinf34ed0b2020-11-21 14:37:34 +05007024#ifdef HAVE_SSL_CTX_SET_CIPHERSUITES
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007025 if (global_ssl.listen_default_ciphersuites)
7026 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7027 if (global_ssl.connect_default_ciphersuites)
7028 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
7029#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01007030
Willy Tarreau13e14102016-12-22 20:25:26 +01007031 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007032#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02007033 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08007034#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007035#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02007036 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007037 n = sk_SSL_COMP_num(cm);
7038 while (n--) {
7039 (void) sk_SSL_COMP_pop(cm);
7040 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05007041#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05007042
Willy Tarreau5db847a2019-05-09 14:13:35 +02007043#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007044 ssl_locking_init();
7045#endif
Ilya Shipitsinf00cdb12021-02-06 18:59:22 +05007046#ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01007047 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
7048#endif
William Lallemand76b4a122020-08-04 17:41:39 +02007049
7050#if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL)
7051 ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func);
7052#endif
7053
Thierry FOURNIER28962c92018-06-17 21:37:05 +02007054 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02007055 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 +05007056#ifdef HAVE_OPENSSL_KEYLOG
William Lallemand7d42ef52020-07-06 11:41:30 +02007057 ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func);
7058#endif
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007059#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007060 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00007061 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007062#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01007063#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
7064 hap_register_post_check(tlskeys_finalize_config);
7065#endif
Willy Tarreau80713382018-11-26 10:19:54 +01007066
7067 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
7068 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
7069
Emmanuel Hocdet70df7bf2019-01-04 11:08:20 +01007070 hap_register_post_deinit(ssl_free_global_issuers);
7071
Willy Tarreau80713382018-11-26 10:19:54 +01007072#ifndef OPENSSL_NO_DH
7073 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
7074 hap_register_post_deinit(ssl_free_dh);
7075#endif
7076#ifndef OPENSSL_NO_ENGINE
7077 hap_register_post_deinit(ssl_free_engines);
7078#endif
7079 /* Load SSL string for the verbose & debug mode. */
7080 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02007081 ha_meth = BIO_meth_new(0x666, "ha methods");
7082 BIO_meth_set_write(ha_meth, ha_ssl_write);
7083 BIO_meth_set_read(ha_meth, ha_ssl_read);
7084 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
7085 BIO_meth_set_create(ha_meth, ha_ssl_new);
7086 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
7087 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
7088 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
William Lallemand150bfa82019-09-19 17:12:49 +02007089
7090 HA_SPIN_INIT(&ckch_lock);
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007091
Dragan Dosen9ac98092020-05-11 15:51:45 +02007092 /* Try to register dedicated SSL/TLS protocol message callbacks for
7093 * heartbleed attack (CVE-2014-0160) and clienthello.
7094 */
7095 hap_register_post_check(ssl_sock_register_msg_callbacks);
7096
Dragan Dosen1e7ed042020-05-08 18:30:00 +02007097 /* Try to free all callbacks that were registered by using
7098 * ssl_sock_register_msg_callback().
7099 */
7100 hap_register_post_deinit(ssl_sock_unregister_msg_callbacks);
Willy Tarreau80713382018-11-26 10:19:54 +01007101}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01007102
Willy Tarreau80713382018-11-26 10:19:54 +01007103/* Compute and register the version string */
7104static void ssl_register_build_options()
7105{
7106 char *ptr = NULL;
7107 int i;
7108
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007109 memprintf(&ptr, "Built with OpenSSL version : "
7110#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007111 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007112#else /* OPENSSL_IS_BORINGSSL */
7113 OPENSSL_VERSION_TEXT
7114 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08007115 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02007116 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007117#endif
7118 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007119#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007120 "no (library version too old)"
7121#elif defined(OPENSSL_NO_TLSEXT)
7122 "no (disabled via OPENSSL_NO_TLSEXT)"
7123#else
7124 "yes"
7125#endif
7126 "", ptr);
7127
7128 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
7129#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
7130 "yes"
7131#else
7132#ifdef OPENSSL_NO_TLSEXT
7133 "no (because of OPENSSL_NO_TLSEXT)"
7134#else
7135 "no (version might be too old, 0.9.8f min needed)"
7136#endif
7137#endif
7138 "", ptr);
7139
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02007140 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
7141 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7142 if (methodVersions[i].option)
7143 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01007144
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007145 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01007146}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01007147
Willy Tarreau80713382018-11-26 10:19:54 +01007148INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02007149
Emeric Brun46591952012-05-18 15:47:34 +02007150
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007151#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00007152void ssl_free_engines(void) {
7153 struct ssl_engine_list *wl, *wlb;
7154 /* free up engine list */
7155 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
7156 ENGINE_finish(wl->e);
7157 ENGINE_free(wl->e);
7158 LIST_DEL(&wl->list);
7159 free(wl);
7160 }
7161}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02007162#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02007163
Remi Gacogned3a23c32015-05-28 16:39:47 +02007164#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00007165void ssl_free_dh(void) {
7166 if (local_dh_1024) {
7167 DH_free(local_dh_1024);
7168 local_dh_1024 = NULL;
7169 }
7170 if (local_dh_2048) {
7171 DH_free(local_dh_2048);
7172 local_dh_2048 = NULL;
7173 }
7174 if (local_dh_4096) {
7175 DH_free(local_dh_4096);
7176 local_dh_4096 = NULL;
7177 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02007178 if (global_dh) {
7179 DH_free(global_dh);
7180 global_dh = NULL;
7181 }
Grant Zhang872f9c22017-01-21 01:10:18 +00007182}
7183#endif
7184
7185__attribute__((destructor))
7186static void __ssl_sock_deinit(void)
7187{
7188#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02007189 if (ssl_ctx_lru_tree) {
7190 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01007191 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02007192 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02007193#endif
7194
Willy Tarreau5db847a2019-05-09 14:13:35 +02007195#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007196 ERR_remove_state(0);
7197 ERR_free_strings();
7198
7199 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08007200#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02007201
Willy Tarreau5db847a2019-05-09 14:13:35 +02007202#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02007203 CRYPTO_cleanup_all_ex_data();
7204#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02007205 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02007206}
7207
William Dauchyf6370442020-11-14 19:25:33 +01007208/* Activate ssl on server <s>.
7209 * do nothing if there is no change to apply
7210 *
7211 * Must be called with the server lock held.
7212 */
7213void ssl_sock_set_srv(struct server *s, signed char use_ssl)
7214{
7215 if (s->use_ssl == use_ssl)
7216 return;
7217
7218 s->use_ssl = use_ssl;
7219 if (s->use_ssl == 1)
7220 s->xprt = &ssl_sock;
7221 else
7222 s->xprt = s->check.xprt = s->agent.xprt = xprt_get(XPRT_RAW);
7223}
7224
Emeric Brun46591952012-05-18 15:47:34 +02007225/*
7226 * Local variables:
7227 * c-indent-level: 8
7228 * c-basic-offset: 8
7229 * End:
7230 */