blob: 2eb344dfaa42524e661b1925d853bad0167f12af [file] [log] [blame]
yanbzhu08ce6ab2015-12-02 13:01:29 -05001
Emeric Brun46591952012-05-18 15:47:34 +02002/*
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02003 * SSL/TLS transport layer over SOCK_STREAM sockets
Emeric Brun46591952012-05-18 15:47:34 +02004 *
5 * Copyright (C) 2012 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
Willy Tarreau69845df2012-09-10 09:43:09 +020012 * Acknowledgement:
13 * We'd like to specially thank the Stud project authors for a very clean
14 * and well documented code which helped us understand how the OpenSSL API
15 * ought to be used in non-blocking mode. This is one difficult part which
16 * is not easy to get from the OpenSSL doc, and reading the Stud code made
17 * it much more obvious than the examples in the OpenSSL package. Keep up
18 * the good works, guys !
19 *
20 * Stud is an extremely efficient and scalable SSL/TLS proxy which combines
21 * particularly well with haproxy. For more info about this project, visit :
22 * https://github.com/bumptech/stud
23 *
Emeric Brun46591952012-05-18 15:47:34 +020024 */
25
Willy Tarreau8d164dc2019-05-10 09:35:00 +020026/* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */
Emeric Brun46591952012-05-18 15:47:34 +020027#define _GNU_SOURCE
Emeric Brunfc0421f2012-09-07 17:30:07 +020028#include <ctype.h>
29#include <dirent.h>
Emeric Brun46591952012-05-18 15:47:34 +020030#include <errno.h>
31#include <fcntl.h>
32#include <stdio.h>
33#include <stdlib.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020034#include <string.h>
35#include <unistd.h>
Emeric Brun46591952012-05-18 15:47:34 +020036
37#include <sys/socket.h>
38#include <sys/stat.h>
39#include <sys/types.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020040#include <netdb.h>
Emeric Brun46591952012-05-18 15:47:34 +020041#include <netinet/tcp.h>
42
Christopher Faulet31af49d2015-06-09 17:29:50 +020043#include <import/lru.h>
44#include <import/xxhash.h>
45
Emeric Brun46591952012-05-18 15:47:34 +020046#include <common/buffer.h>
Willy Tarreau843b7cb2018-07-13 10:54:26 +020047#include <common/chunk.h>
Emeric Brun46591952012-05-18 15:47:34 +020048#include <common/compat.h>
49#include <common/config.h>
50#include <common/debug.h>
Willy Tarreau79eeafa2012-09-14 07:53:05 +020051#include <common/errors.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010052#include <common/initcall.h>
Willy Tarreau55994562019-05-09 14:52:44 +020053#include <common/openssl-compat.h>
Emeric Brun46591952012-05-18 15:47:34 +020054#include <common/standard.h>
55#include <common/ticks.h>
56#include <common/time.h>
Emeric Brun2c86cbf2014-10-30 15:56:50 +010057#include <common/cfgparse.h>
Nenad Merdanovic05552d42015-02-27 19:56:49 +010058#include <common/base64.h>
Emeric Brun46591952012-05-18 15:47:34 +020059
Emeric Brunfc0421f2012-09-07 17:30:07 +020060#include <ebsttree.h>
61
William Lallemand32af2032016-10-29 18:09:35 +020062#include <types/applet.h>
63#include <types/cli.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020064#include <types/global.h>
65#include <types/ssl_sock.h>
William Lallemand32af2032016-10-29 18:09:35 +020066#include <types/stats.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020067
Willy Tarreau7875d092012-09-10 08:20:03 +020068#include <proto/acl.h>
69#include <proto/arg.h>
William Lallemand32af2032016-10-29 18:09:35 +020070#include <proto/channel.h>
Emeric Brun46591952012-05-18 15:47:34 +020071#include <proto/connection.h>
William Lallemand32af2032016-10-29 18:09:35 +020072#include <proto/cli.h>
Emeric Brun46591952012-05-18 15:47:34 +020073#include <proto/fd.h>
74#include <proto/freq_ctr.h>
75#include <proto/frontend.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020076#include <proto/http_rules.h>
Willy Tarreau79eeafa2012-09-14 07:53:05 +020077#include <proto/listener.h>
Thierry FOURNIERed66c292013-11-28 11:05:19 +010078#include <proto/pattern.h>
Christopher Faulet31af49d2015-06-09 17:29:50 +020079#include <proto/proto_tcp.h>
Olivier Houchardccaa7de2017-10-02 11:51:03 +020080#include <proto/proto_http.h>
Willy Tarreau92faadf2012-10-10 23:04:25 +020081#include <proto/server.h>
William Lallemand32af2032016-10-29 18:09:35 +020082#include <proto/stream_interface.h>
Emeric Brun46591952012-05-18 15:47:34 +020083#include <proto/log.h>
Emeric Brun94324a42012-10-11 14:00:19 +020084#include <proto/proxy.h>
Emeric Brunfc0421f2012-09-07 17:30:07 +020085#include <proto/shctx.h>
Emeric Brun46591952012-05-18 15:47:34 +020086#include <proto/ssl_sock.h>
Willy Tarreau9ad7bd42015-04-03 19:19:59 +020087#include <proto/stream.h>
Emeric Brun46591952012-05-18 15:47:34 +020088#include <proto/task.h>
Nenad Merdanovicc31499d2019-03-23 11:00:32 +010089#include <proto/vars.h>
Emeric Brun46591952012-05-18 15:47:34 +020090
Willy Tarreau9356dac2019-05-10 09:22:53 +020091/* ***** READ THIS before adding code here! *****
92 *
93 * Due to API incompatibilities between multiple OpenSSL versions and their
94 * derivatives, it's often tempting to add macros to (re-)define certain
95 * symbols. Please do not do this here, and do it in common/openssl-compat.h
96 * exclusively so that the whole code consistently uses the same macros.
97 *
98 * Whenever possible if a macro is missing in certain versions, it's better
99 * to conditionally define it in openssl-compat.h than using lots of ifdefs.
100 */
101
Willy Tarreau518cedd2014-02-17 15:43:01 +0100102/* Warning, these are bits, not integers! */
Emeric Brune64aef12012-09-21 13:15:06 +0200103#define SSL_SOCK_ST_FL_VERIFY_DONE 0x00000001
Emeric Brund8b2bb52014-01-28 15:43:53 +0100104#define SSL_SOCK_ST_FL_16K_WBFSIZE 0x00000002
Willy Tarreau518cedd2014-02-17 15:43:01 +0100105#define SSL_SOCK_SEND_UNLIMITED 0x00000004
Emeric Brun29f037d2014-04-25 19:05:36 +0200106#define SSL_SOCK_RECV_HEARTBEAT 0x00000008
107
Emeric Brunf282a812012-09-21 15:27:54 +0200108/* bits 0xFFFF0000 are reserved to store verify errors */
109
110/* Verify errors macros */
111#define SSL_SOCK_CA_ERROR_TO_ST(e) (((e > 63) ? 63 : e) << (16))
112#define SSL_SOCK_CAEDEPTH_TO_ST(d) (((d > 15) ? 15 : d) << (6+16))
113#define SSL_SOCK_CRTERROR_TO_ST(e) (((e > 63) ? 63 : e) << (4+6+16))
114
115#define SSL_SOCK_ST_TO_CA_ERROR(s) ((s >> (16)) & 63)
116#define SSL_SOCK_ST_TO_CAEDEPTH(s) ((s >> (6+16)) & 15)
117#define SSL_SOCK_ST_TO_CRTERROR(s) ((s >> (4+6+16)) & 63)
Emeric Brune64aef12012-09-21 13:15:06 +0200118
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200119/* ssl_methods flags for ssl options */
120#define MC_SSL_O_ALL 0x0000
121#define MC_SSL_O_NO_SSLV3 0x0001 /* disable SSLv3 */
122#define MC_SSL_O_NO_TLSV10 0x0002 /* disable TLSv10 */
123#define MC_SSL_O_NO_TLSV11 0x0004 /* disable TLSv11 */
124#define MC_SSL_O_NO_TLSV12 0x0008 /* disable TLSv12 */
Emmanuel Hocdet42fb9802017-03-30 19:29:39 +0200125#define MC_SSL_O_NO_TLSV13 0x0010 /* disable TLSv13 */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200126
127/* ssl_methods versions */
128enum {
129 CONF_TLSV_NONE = 0,
130 CONF_TLSV_MIN = 1,
131 CONF_SSLV3 = 1,
132 CONF_TLSV10 = 2,
133 CONF_TLSV11 = 3,
134 CONF_TLSV12 = 4,
Emmanuel Hocdet42fb9802017-03-30 19:29:39 +0200135 CONF_TLSV13 = 5,
136 CONF_TLSV_MAX = 5,
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200137};
138
Emeric Brun850efd52014-01-29 12:24:34 +0100139/* server and bind verify method, it uses a global value as default */
140enum {
141 SSL_SOCK_VERIFY_DEFAULT = 0,
142 SSL_SOCK_VERIFY_REQUIRED = 1,
143 SSL_SOCK_VERIFY_OPTIONAL = 2,
144 SSL_SOCK_VERIFY_NONE = 3,
145};
146
William Lallemand3f85c9a2017-10-09 16:30:50 +0200147
Willy Tarreau71b734c2014-01-28 15:19:44 +0100148int sslconns = 0;
149int totalsslconns = 0;
Willy Tarreaud9f5cca2016-12-22 21:08:52 +0100150static struct xprt_ops ssl_sock;
Emeric Brunece0c332017-12-06 13:51:49 +0100151int nb_engines = 0;
Emeric Brune1f38db2012-09-03 20:36:47 +0200152
Willy Tarreauef934602016-12-22 23:12:01 +0100153static struct {
154 char *crt_base; /* base directory path for certificates */
155 char *ca_base; /* base directory path for CAs and CRLs */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000156 int async; /* whether we use ssl async mode */
Willy Tarreauef934602016-12-22 23:12:01 +0100157
158 char *listen_default_ciphers;
159 char *connect_default_ciphers;
Willy Tarreau5db847a2019-05-09 14:13:35 +0200160#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200161 char *listen_default_ciphersuites;
162 char *connect_default_ciphersuites;
163#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100164 int listen_default_ssloptions;
165 int connect_default_ssloptions;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200166 struct tls_version_filter listen_default_sslmethods;
167 struct tls_version_filter connect_default_sslmethods;
Willy Tarreauef934602016-12-22 23:12:01 +0100168
169 int private_cache; /* Force to use a private session cache even if nbproc > 1 */
170 unsigned int life_time; /* SSL session lifetime in seconds */
171 unsigned int max_record; /* SSL max record size */
172 unsigned int default_dh_param; /* SSL maximum DH parameter size */
173 int ctx_cache; /* max number of entries in the ssl_ctx cache. */
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100174 int capture_cipherlist; /* Size of the cipherlist buffer. */
Willy Tarreauef934602016-12-22 23:12:01 +0100175} global_ssl = {
176#ifdef LISTEN_DEFAULT_CIPHERS
177 .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS,
178#endif
179#ifdef CONNECT_DEFAULT_CIPHERS
180 .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS,
181#endif
Willy Tarreau5db847a2019-05-09 14:13:35 +0200182#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +0200183#ifdef LISTEN_DEFAULT_CIPHERSUITES
184 .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES,
185#endif
186#ifdef CONNECT_DEFAULT_CIPHERSUITES
187 .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES,
188#endif
189#endif
Willy Tarreauef934602016-12-22 23:12:01 +0100190 .listen_default_ssloptions = BC_SSL_O_NONE,
191 .connect_default_ssloptions = SRV_SSL_O_NONE,
192
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +0200193 .listen_default_sslmethods.flags = MC_SSL_O_ALL,
194 .listen_default_sslmethods.min = CONF_TLSV_NONE,
195 .listen_default_sslmethods.max = CONF_TLSV_NONE,
196 .connect_default_sslmethods.flags = MC_SSL_O_ALL,
197 .connect_default_sslmethods.min = CONF_TLSV_NONE,
198 .connect_default_sslmethods.max = CONF_TLSV_NONE,
199
Willy Tarreauef934602016-12-22 23:12:01 +0100200#ifdef DEFAULT_SSL_MAX_RECORD
201 .max_record = DEFAULT_SSL_MAX_RECORD,
202#endif
203 .default_dh_param = SSL_DEFAULT_DH_PARAM,
204 .ctx_cache = DEFAULT_SSL_CTX_CACHE,
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100205 .capture_cipherlist = 0,
Willy Tarreauef934602016-12-22 23:12:01 +0100206};
207
Olivier Houcharda8955d52019-04-07 22:00:38 +0200208static BIO_METHOD *ha_meth;
209
Olivier Houchard66ab4982019-02-26 18:37:15 +0100210struct ssl_sock_ctx {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200211 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +0100212 SSL *ssl;
Olivier Houcharda8955d52019-04-07 22:00:38 +0200213 BIO *bio;
Olivier Houchard66ab4982019-02-26 18:37:15 +0100214 struct xprt_ops *xprt;
215 void *xprt_ctx;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +0100216 int xprt_st; /* transport layer state, initialized to zero */
217 int tmp_early_data; /* 1st byte of early data, if any */
218 int sent_early_data; /* Amount of early data we sent so far */
219
Olivier Houchard66ab4982019-02-26 18:37:15 +0100220};
221
222DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx));
223
Olivier Houcharda8955d52019-04-07 22:00:38 +0200224/* Methods to implement OpenSSL BIO */
225static int ha_ssl_write(BIO *h, const char *buf, int num)
226{
227 struct buffer tmpbuf;
228 struct ssl_sock_ctx *ctx;
229 int ret;
230
231 ctx = BIO_get_data(h);
232 tmpbuf.size = num;
233 tmpbuf.area = (void *)(uintptr_t)buf;
234 tmpbuf.data = num;
235 tmpbuf.head = 0;
236 ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200237 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200238 BIO_set_retry_write(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200239 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200240 } else if (ret == 0)
241 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200242 return ret;
243}
244
245static int ha_ssl_gets(BIO *h, char *buf, int size)
246{
247
248 return 0;
249}
250
251static int ha_ssl_puts(BIO *h, const char *str)
252{
253
254 return ha_ssl_write(h, str, strlen(str));
255}
256
257static int ha_ssl_read(BIO *h, char *buf, int size)
258{
259 struct buffer tmpbuf;
260 struct ssl_sock_ctx *ctx;
261 int ret;
262
263 ctx = BIO_get_data(h);
264 tmpbuf.size = size;
265 tmpbuf.area = buf;
266 tmpbuf.data = 0;
267 tmpbuf.head = 0;
268 ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0);
Olivier Houchardb51937e2019-05-01 17:24:36 +0200269 if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) {
Olivier Houcharda8955d52019-04-07 22:00:38 +0200270 BIO_set_retry_read(h);
Olivier Houcharda28454e2019-04-24 12:04:36 +0200271 ret = -1;
Olivier Houchardb51937e2019-05-01 17:24:36 +0200272 } else if (ret == 0)
273 BIO_clear_retry_flags(h);
Olivier Houcharda8955d52019-04-07 22:00:38 +0200274
275 return ret;
276}
277
278static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2)
279{
280 int ret = 0;
281 switch (cmd) {
282 case BIO_CTRL_DUP:
283 case BIO_CTRL_FLUSH:
284 ret = 1;
285 break;
286 }
287 return ret;
288}
289
290static int ha_ssl_new(BIO *h)
291{
292 BIO_set_init(h, 1);
293 BIO_set_data(h, NULL);
294 BIO_clear_flags(h, ~0);
295 return 1;
296}
297
298static int ha_ssl_free(BIO *data)
299{
300
301 return 1;
302}
303
304
Willy Tarreau5db847a2019-05-09 14:13:35 +0200305#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100306
Emeric Brun821bb9b2017-06-15 16:37:39 +0200307static HA_RWLOCK_T *ssl_rwlocks;
308
309
310unsigned long ssl_id_function(void)
311{
312 return (unsigned long)tid;
313}
314
315void ssl_locking_function(int mode, int n, const char * file, int line)
316{
317 if (mode & CRYPTO_LOCK) {
318 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100319 HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200320 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100321 HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200322 }
323 else {
324 if (mode & CRYPTO_READ)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100325 HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200326 else
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100327 HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200328 }
329}
330
331static int ssl_locking_init(void)
332{
333 int i;
334
335 ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks());
336 if (!ssl_rwlocks)
337 return -1;
338
339 for (i = 0 ; i < CRYPTO_num_locks() ; i++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100340 HA_RWLOCK_INIT(&ssl_rwlocks[i]);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200341
342 CRYPTO_set_id_callback(ssl_id_function);
343 CRYPTO_set_locking_callback(ssl_locking_function);
344
345 return 0;
346}
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100347
Emeric Brun821bb9b2017-06-15 16:37:39 +0200348#endif
349
350
351
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +0100352/* This memory pool is used for capturing clienthello parameters. */
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100353struct ssl_capture {
Thierry FOURNIER5bf77322017-02-25 12:45:22 +0100354 unsigned long long int xxh64;
355 unsigned char ciphersuite_len;
356 char ciphersuite[0];
357};
Willy Tarreaubafbe012017-11-24 17:34:44 +0100358struct pool_head *pool_head_ssl_capture = NULL;
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +0100359static int ssl_capture_ptr_index = -1;
Thierry FOURNIER28962c92018-06-17 21:37:05 +0200360static int ssl_app_data_index = -1;
Willy Tarreauef934602016-12-22 23:12:01 +0100361
Emmanuel Hocdet96b78342017-10-31 15:46:07 +0100362static int ssl_pkey_info_index = -1;
363
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200364#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
365struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference);
366#endif
367
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200368#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +0000369static unsigned int openssl_engines_initialized;
370struct list openssl_engines = LIST_HEAD_INIT(openssl_engines);
371struct ssl_engine_list {
372 struct list list;
373 ENGINE *e;
374};
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200375#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000376
Remi Gacogne8de54152014-07-15 11:36:40 +0200377#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +0200378static int ssl_dh_ptr_index = -1;
Remi Gacogne47783ef2015-05-29 15:53:22 +0200379static DH *global_dh = NULL;
Remi Gacogne8de54152014-07-15 11:36:40 +0200380static DH *local_dh_1024 = NULL;
381static DH *local_dh_2048 = NULL;
382static DH *local_dh_4096 = NULL;
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +0100383static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen);
Remi Gacogne8de54152014-07-15 11:36:40 +0200384#endif /* OPENSSL_NO_DH */
385
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100386#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +0200387/* X509V3 Extensions that will be added on generated certificates */
388#define X509V3_EXT_SIZE 5
389static char *x509v3_ext_names[X509V3_EXT_SIZE] = {
390 "basicConstraints",
391 "nsComment",
392 "subjectKeyIdentifier",
393 "authorityKeyIdentifier",
394 "keyUsage",
395};
396static char *x509v3_ext_values[X509V3_EXT_SIZE] = {
397 "CA:FALSE",
398 "\"OpenSSL Generated Certificate\"",
399 "hash",
400 "keyid,issuer:always",
401 "nonRepudiation,digitalSignature,keyEncipherment"
402};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200403/* LRU cache to store generated certificate */
404static struct lru64_head *ssl_ctx_lru_tree = NULL;
405static unsigned int ssl_ctx_lru_seed = 0;
Emeric Brun821bb9b2017-06-15 16:37:39 +0200406static unsigned int ssl_ctx_serial;
Willy Tarreau86abe442018-11-25 20:12:18 +0100407__decl_rwlock(ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +0200408
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200409#endif // SSL_CTRL_SET_TLSEXT_HOSTNAME
410
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100411static struct ssl_bind_kw ssl_bind_kws[];
412
Willy Tarreau9a1ab082019-05-09 13:26:41 +0200413#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
yanbzhube2774d2015-12-10 15:07:30 -0500414/* The order here matters for picking a default context,
415 * keep the most common keytype at the bottom of the list
416 */
417const char *SSL_SOCK_KEYTYPE_NAMES[] = {
418 "dsa",
419 "ecdsa",
420 "rsa"
421};
422#define SSL_SOCK_NUM_KEYTYPES 3
Willy Tarreau30da7ad2015-12-14 11:28:33 +0100423#else
424#define SSL_SOCK_NUM_KEYTYPES 1
yanbzhube2774d2015-12-10 15:07:30 -0500425#endif
426
William Lallemandc3cd35f2017-11-28 11:04:43 +0100427static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */
William Lallemand4f45bb92017-10-30 20:08:51 +0100428static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */
429
430#define sh_ssl_sess_tree_delete(s) ebmb_delete(&(s)->key);
431
432#define sh_ssl_sess_tree_insert(s) (struct sh_ssl_sess_hdr *)ebmb_insert(sh_ssl_sess_tree, \
433 &(s)->key, SSL_MAX_SSL_SESSION_ID_LENGTH);
434
435#define sh_ssl_sess_tree_lookup(k) (struct sh_ssl_sess_hdr *)ebmb_lookup(sh_ssl_sess_tree, \
436 (k), SSL_MAX_SSL_SESSION_ID_LENGTH);
William Lallemand3f85c9a2017-10-09 16:30:50 +0200437
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100438/*
439 * This function gives the detail of the SSL error. It is used only
440 * if the debug mode and the verbose mode are activated. It dump all
441 * the SSL error until the stack was empty.
442 */
443static forceinline void ssl_sock_dump_errors(struct connection *conn)
444{
445 unsigned long ret;
446
447 if (unlikely(global.mode & MODE_DEBUG)) {
448 while(1) {
449 ret = ERR_get_error();
450 if (ret == 0)
451 return;
452 fprintf(stderr, "fd[%04x] OpenSSL error[0x%lx] %s: %s\n",
Willy Tarreau585744b2017-08-24 14:31:19 +0200453 (unsigned short)conn->handle.fd, ret,
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100454 ERR_func_error_string(ret), ERR_reason_error_string(ret));
455 }
456 }
457}
458
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200459#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
yanbzhube2774d2015-12-10 15:07:30 -0500460/*
461 * struct alignment works here such that the key.key is the same as key_data
462 * Do not change the placement of key_data
463 */
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200464struct certificate_ocsp {
465 struct ebmb_node key;
466 unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH];
Willy Tarreau83061a82018-07-13 11:56:34 +0200467 struct buffer response;
Willy Tarreauc8ad3be2015-06-17 15:48:26 +0200468 long expire;
469};
Christopher Faulet31af49d2015-06-09 17:29:50 +0200470
yanbzhube2774d2015-12-10 15:07:30 -0500471struct ocsp_cbk_arg {
472 int is_single;
473 int single_kt;
474 union {
475 struct certificate_ocsp *s_ocsp;
476 /*
477 * m_ocsp will have multiple entries dependent on key type
478 * Entry 0 - DSA
479 * Entry 1 - ECDSA
480 * Entry 2 - RSA
481 */
482 struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES];
483 };
484};
485
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200486#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +0000487static int ssl_init_single_engine(const char *engine_id, const char *def_algorithms)
488{
489 int err_code = ERR_ABORT;
490 ENGINE *engine;
491 struct ssl_engine_list *el;
492
493 /* grab the structural reference to the engine */
494 engine = ENGINE_by_id(engine_id);
495 if (engine == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100496 ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000497 goto fail_get;
498 }
499
500 if (!ENGINE_init(engine)) {
501 /* the engine couldn't initialise, release it */
Christopher Faulet767a84b2017-11-24 16:50:31 +0100502 ha_alert("ssl-engine %s: failed to initialize\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000503 goto fail_init;
504 }
505
506 if (ENGINE_set_default_string(engine, def_algorithms) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100507 ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id);
Grant Zhang872f9c22017-01-21 01:10:18 +0000508 goto fail_set_method;
509 }
510
511 el = calloc(1, sizeof(*el));
512 el->e = engine;
513 LIST_ADD(&openssl_engines, &el->list);
Emeric Brunece0c332017-12-06 13:51:49 +0100514 nb_engines++;
515 if (global_ssl.async)
516 global.ssl_used_async_engines = nb_engines;
Grant Zhang872f9c22017-01-21 01:10:18 +0000517 return 0;
518
519fail_set_method:
520 /* release the functional reference from ENGINE_init() */
521 ENGINE_finish(engine);
522
523fail_init:
524 /* release the structural reference from ENGINE_by_id() */
525 ENGINE_free(engine);
526
527fail_get:
528 return err_code;
529}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +0200530#endif
Grant Zhang872f9c22017-01-21 01:10:18 +0000531
Willy Tarreau5db847a2019-05-09 14:13:35 +0200532#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brun3854e012017-05-17 20:42:48 +0200533/*
534 * openssl async fd handler
535 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200536void ssl_async_fd_handler(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000537{
538 struct connection *conn = fdtab[fd].owner;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000539
Emeric Brun3854e012017-05-17 20:42:48 +0200540 /* fd is an async enfine fd, we must stop
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000541 * to poll this fd until it is requested
542 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000543 fd_stop_recv(fd);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000544 fd_cant_recv(fd);
545
546 /* crypto engine is available, let's notify the associated
547 * connection that it can pursue its processing.
548 */
Emeric Brunbbc16542017-06-02 15:54:06 +0000549 __conn_sock_want_recv(conn);
550 __conn_sock_want_send(conn);
551 conn_update_sock_polling(conn);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000552}
553
Emeric Brun3854e012017-05-17 20:42:48 +0200554/*
555 * openssl async delayed SSL_free handler
556 */
Emeric Brund0e095c2019-04-19 17:15:28 +0200557void ssl_async_fd_free(int fd)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000558{
559 SSL *ssl = fdtab[fd].owner;
Emeric Brun3854e012017-05-17 20:42:48 +0200560 OSSL_ASYNC_FD all_fd[32];
561 size_t num_all_fds = 0;
562 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000563
Emeric Brun3854e012017-05-17 20:42:48 +0200564 /* We suppose that the async job for a same SSL *
565 * are serialized. So if we are awake it is
566 * because the running job has just finished
567 * and we can remove all async fds safely
568 */
569 SSL_get_all_async_fds(ssl, NULL, &num_all_fds);
570 if (num_all_fds > 32) {
571 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
572 return;
573 }
574
575 SSL_get_all_async_fds(ssl, all_fd, &num_all_fds);
576 for (i=0 ; i < num_all_fds ; i++)
577 fd_remove(all_fd[i]);
578
579 /* Now we can safely call SSL_free, no more pending job in engines */
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000580 SSL_free(ssl);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +0100581 _HA_ATOMIC_SUB(&sslconns, 1);
582 _HA_ATOMIC_SUB(&jobs, 1);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000583}
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000584/*
Emeric Brun3854e012017-05-17 20:42:48 +0200585 * function used to manage a returned SSL_ERROR_WANT_ASYNC
586 * and enable/disable polling for async fds
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000587 */
Willy Tarreau0e492e22019-04-15 21:25:03 +0200588static inline void ssl_async_process_fds(struct connection *conn, SSL *ssl)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000589{
Willy Tarreaua9786b62018-01-25 07:22:13 +0100590 OSSL_ASYNC_FD add_fd[32];
Emeric Brun3854e012017-05-17 20:42:48 +0200591 OSSL_ASYNC_FD del_fd[32];
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000592 size_t num_add_fds = 0;
593 size_t num_del_fds = 0;
Emeric Brun3854e012017-05-17 20:42:48 +0200594 int i;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000595
596 SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL,
597 &num_del_fds);
Emeric Brun3854e012017-05-17 20:42:48 +0200598 if (num_add_fds > 32 || num_del_fds > 32) {
599 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 +0000600 return;
601 }
602
Emeric Brun3854e012017-05-17 20:42:48 +0200603 SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000604
Emeric Brun3854e012017-05-17 20:42:48 +0200605 /* We remove unused fds from the fdtab */
606 for (i=0 ; i < num_del_fds ; i++)
607 fd_remove(del_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000608
Emeric Brun3854e012017-05-17 20:42:48 +0200609 /* We add new fds to the fdtab */
610 for (i=0 ; i < num_add_fds ; i++) {
Willy Tarreaua9786b62018-01-25 07:22:13 +0100611 fd_insert(add_fd[i], conn, ssl_async_fd_handler, tid_bit);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000612 }
613
Emeric Brun3854e012017-05-17 20:42:48 +0200614 num_add_fds = 0;
615 SSL_get_all_async_fds(ssl, NULL, &num_add_fds);
616 if (num_add_fds > 32) {
617 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
618 return;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000619 }
Emeric Brun3854e012017-05-17 20:42:48 +0200620
621 /* We activate the polling for all known async fds */
622 SSL_get_all_async_fds(ssl, add_fd, &num_add_fds);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000623 for (i=0 ; i < num_add_fds ; i++) {
Emeric Brun3854e012017-05-17 20:42:48 +0200624 fd_want_recv(add_fd[i]);
Emeric Brunce9e01c2017-05-31 10:02:53 +0000625 /* To ensure that the fd cache won't be used
626 * We'll prefer to catch a real RD event
627 * because handling an EAGAIN on this fd will
628 * result in a context switch and also
629 * some engines uses a fd in blocking mode.
630 */
631 fd_cant_recv(add_fd[i]);
632 }
Emeric Brun3854e012017-05-17 20:42:48 +0200633
634 /* We must also prevent the conn_handler
635 * to be called until a read event was
636 * polled on an async fd
637 */
638 __conn_sock_stop_both(conn);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +0000639}
640#endif
641
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200642/*
643 * This function returns the number of seconds elapsed
644 * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the
645 * date presented un ASN1_GENERALIZEDTIME.
646 *
647 * In parsing error case, it returns -1.
648 */
649static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d)
650{
651 long epoch;
652 char *p, *end;
653 const unsigned short month_offset[12] = {
654 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
655 };
656 int year, month;
657
658 if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1;
659
660 p = (char *)d->data;
661 end = p + d->length;
662
663 if (end - p < 4) return -1;
664 year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0';
665 p += 4;
666 if (end - p < 2) return -1;
667 month = 10 * (p[0] - '0') + p[1] - '0';
668 if (month < 1 || month > 12) return -1;
669 /* Compute the number of seconds since 1 jan 1970 and the beginning of current month
670 We consider leap years and the current month (<marsh or not) */
671 epoch = ( ((year - 1970) * 365)
672 + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400)
673 - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400)
674 + month_offset[month-1]
675 ) * 24 * 60 * 60;
676 p += 2;
677 if (end - p < 2) return -1;
678 /* Add the number of seconds of completed days of current month */
679 epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60;
680 p += 2;
681 if (end - p < 2) return -1;
682 /* Add the completed hours of the current day */
683 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60;
684 p += 2;
685 if (end - p < 2) return -1;
686 /* Add the completed minutes of the current hour */
687 epoch += (10 * (p[0] - '0') + p[1] - '0') * 60;
688 p += 2;
689 if (p == end) return -1;
690 /* Test if there is available seconds */
691 if (p[0] < '0' || p[0] > '9')
692 goto nosec;
693 if (end - p < 2) return -1;
694 /* Add the seconds of the current minute */
695 epoch += 10 * (p[0] - '0') + p[1] - '0';
696 p += 2;
697 if (p == end) return -1;
698 /* Ignore seconds float part if present */
699 if (p[0] == '.') {
700 do {
701 if (++p == end) return -1;
702 } while (p[0] >= '0' && p[0] <= '9');
703 }
704
705nosec:
706 if (p[0] == 'Z') {
707 if (end - p != 1) return -1;
708 return epoch;
709 }
710 else if (p[0] == '+') {
711 if (end - p != 5) return -1;
712 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700713 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 +0200714 }
715 else if (p[0] == '-') {
716 if (end - p != 5) return -1;
717 /* Apply timezone offset */
Frederik Deweerdt953917a2017-10-16 07:37:31 -0700718 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 +0200719 }
720
721 return -1;
722}
723
Emeric Brun1d3865b2014-06-20 15:37:32 +0200724static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200725
726/* This function starts to check if the OCSP response (in DER format) contained
727 * in chunk 'ocsp_response' is valid (else exits on error).
728 * If 'cid' is not NULL, it will be compared to the OCSP certificate ID
729 * contained in the OCSP Response and exits on error if no match.
730 * If it's a valid OCSP Response:
731 * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container
732 * pointed by 'ocsp'.
733 * If 'ocsp' is NULL, the function looks up into the OCSP response's
734 * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted
735 * from the response) and exits on error if not found. Finally, If an OCSP response is
736 * already present in the container, it will be overwritten.
737 *
738 * Note: OCSP response containing more than one OCSP Single response is not
739 * considered valid.
740 *
741 * Returns 0 on success, 1 in error case.
742 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200743static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response,
744 struct certificate_ocsp *ocsp,
745 OCSP_CERTID *cid, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200746{
747 OCSP_RESPONSE *resp;
748 OCSP_BASICRESP *bs = NULL;
749 OCSP_SINGLERESP *sr;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200750 OCSP_CERTID *id;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200751 unsigned char *p = (unsigned char *) ocsp_response->area;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200752 int rc , count_sr;
Emeric Brun13a6b482014-06-20 15:44:34 +0200753 ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200754 int reason;
755 int ret = 1;
756
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200757 resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p,
758 ocsp_response->data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200759 if (!resp) {
760 memprintf(err, "Unable to parse OCSP response");
761 goto out;
762 }
763
764 rc = OCSP_response_status(resp);
765 if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) {
766 memprintf(err, "OCSP response status not successful");
767 goto out;
768 }
769
770 bs = OCSP_response_get1_basic(resp);
771 if (!bs) {
772 memprintf(err, "Failed to get basic response from OCSP Response");
773 goto out;
774 }
775
776 count_sr = OCSP_resp_count(bs);
777 if (count_sr > 1) {
778 memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr);
779 goto out;
780 }
781
782 sr = OCSP_resp_get0(bs, 0);
783 if (!sr) {
784 memprintf(err, "Failed to get OCSP single response");
785 goto out;
786 }
787
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200788 id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr);
789
Emeric Brun4147b2e2014-06-16 18:36:30 +0200790 rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd);
Emmanuel Hocdetef607052017-10-24 14:57:16 +0200791 if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) {
Emmanuel Hocdet872085c2017-10-10 15:18:52 +0200792 memprintf(err, "OCSP single response: certificate status is unknown");
Emeric Brun4147b2e2014-06-16 18:36:30 +0200793 goto out;
794 }
795
Emeric Brun13a6b482014-06-20 15:44:34 +0200796 if (!nextupd) {
797 memprintf(err, "OCSP single response: missing nextupdate");
798 goto out;
799 }
800
Emeric Brunc8b27b62014-06-19 14:16:17 +0200801 rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200802 if (!rc) {
803 memprintf(err, "OCSP single response: no longer valid.");
804 goto out;
805 }
806
807 if (cid) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200808 if (OCSP_id_cmp(id, cid)) {
Emeric Brun4147b2e2014-06-16 18:36:30 +0200809 memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer");
810 goto out;
811 }
812 }
813
814 if (!ocsp) {
815 unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH];
816 unsigned char *p;
817
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200818 rc = i2d_OCSP_CERTID(id, NULL);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200819 if (!rc) {
820 memprintf(err, "OCSP single response: Unable to encode Certificate ID");
821 goto out;
822 }
823
824 if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) {
825 memprintf(err, "OCSP single response: Certificate ID too long");
826 goto out;
827 }
828
829 p = key;
830 memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +0200831 i2d_OCSP_CERTID(id, &p);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200832 ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH);
833 if (!ocsp) {
834 memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer");
835 goto out;
836 }
837 }
838
839 /* According to comments on "chunk_dup", the
840 previous chunk buffer will be freed */
841 if (!chunk_dup(&ocsp->response, ocsp_response)) {
842 memprintf(err, "OCSP response: Memory allocation error");
843 goto out;
844 }
845
Emeric Brun4f3c87a2014-06-20 15:46:13 +0200846 ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW;
847
Emeric Brun4147b2e2014-06-16 18:36:30 +0200848 ret = 0;
849out:
Janusz Dziemidowicz8d710492017-03-08 16:59:41 +0100850 ERR_clear_error();
851
Emeric Brun4147b2e2014-06-16 18:36:30 +0200852 if (bs)
853 OCSP_BASICRESP_free(bs);
854
855 if (resp)
856 OCSP_RESPONSE_free(resp);
857
858 return ret;
859}
860/*
861 * External function use to update the OCSP response in the OCSP response's
862 * containers tree. The chunk 'ocsp_response' must contain the OCSP response
863 * to update in DER format.
864 *
865 * Returns 0 on success, 1 in error case.
866 */
Willy Tarreau83061a82018-07-13 11:56:34 +0200867int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err)
Emeric Brun4147b2e2014-06-16 18:36:30 +0200868{
869 return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err);
870}
871
872/*
873 * This function load the OCSP Resonse in DER format contained in file at
874 * path 'ocsp_path' and call 'ssl_sock_load_ocsp_response'
875 *
876 * Returns 0 on success, 1 in error case.
877 */
878static int ssl_sock_load_ocsp_response_from_file(const char *ocsp_path, struct certificate_ocsp *ocsp, OCSP_CERTID *cid, char **err)
879{
880 int fd = -1;
881 int r = 0;
882 int ret = 1;
883
884 fd = open(ocsp_path, O_RDONLY);
885 if (fd == -1) {
886 memprintf(err, "Error opening OCSP response file");
887 goto end;
888 }
889
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200890 trash.data = 0;
891 while (trash.data < trash.size) {
892 r = read(fd, trash.area + trash.data, trash.size - trash.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +0200893 if (r < 0) {
894 if (errno == EINTR)
895 continue;
896
897 memprintf(err, "Error reading OCSP response from file");
898 goto end;
899 }
900 else if (r == 0) {
901 break;
902 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200903 trash.data += r;
Emeric Brun4147b2e2014-06-16 18:36:30 +0200904 }
905
906 close(fd);
907 fd = -1;
908
909 ret = ssl_sock_load_ocsp_response(&trash, ocsp, cid, err);
910end:
911 if (fd != -1)
912 close(fd);
913
914 return ret;
915}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +0100916#endif
Emeric Brun4147b2e2014-06-16 18:36:30 +0200917
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100918#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
919static 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)
920{
Christopher Faulet16f45c82018-02-16 11:23:49 +0100921 struct tls_keys_ref *ref;
Emeric Brun9e754772019-01-10 17:51:55 +0100922 union tls_sess_key *keys;
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100923 struct connection *conn;
924 int head;
925 int i;
Christopher Faulet16f45c82018-02-16 11:23:49 +0100926 int ret = -1; /* error by default */
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100927
Thierry FOURNIER28962c92018-06-17 21:37:05 +0200928 conn = SSL_get_ex_data(s, ssl_app_data_index);
Willy Tarreau07d94e42018-09-20 10:57:52 +0200929 ref = __objt_listener(conn->target)->bind_conf->keys_ref;
Christopher Faulet16f45c82018-02-16 11:23:49 +0100930 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
931
932 keys = ref->tlskeys;
933 head = ref->tls_ticket_enc_index;
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100934
935 if (enc) {
936 memcpy(key_name, keys[head].name, 16);
937
938 if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH))
Christopher Faulet16f45c82018-02-16 11:23:49 +0100939 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100940
Emeric Brun9e754772019-01-10 17:51:55 +0100941 if (ref->key_size_bits == 128) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100942
Emeric Brun9e754772019-01-10 17:51:55 +0100943 if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv))
944 goto end;
945
Willy Tarreau9356dac2019-05-10 09:22:53 +0200946 HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +0100947 ret = 1;
948 }
949 else if (ref->key_size_bits == 256 ) {
950
951 if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv))
952 goto end;
953
Willy Tarreau9356dac2019-05-10 09:22:53 +0200954 HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL);
Emeric Brun9e754772019-01-10 17:51:55 +0100955 ret = 1;
956 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100957 } else {
958 for (i = 0; i < TLS_TICKETS_NO; i++) {
959 if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16))
960 goto found;
961 }
Christopher Faulet16f45c82018-02-16 11:23:49 +0100962 ret = 0;
963 goto end;
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100964
Christopher Faulet16f45c82018-02-16 11:23:49 +0100965 found:
Emeric Brun9e754772019-01-10 17:51:55 +0100966 if (ref->key_size_bits == 128) {
Willy Tarreau9356dac2019-05-10 09:22:53 +0200967 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 +0100968 if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv))
969 goto end;
970 /* 2 for key renewal, 1 if current key is still valid */
971 ret = i ? 2 : 1;
972 }
973 else if (ref->key_size_bits == 256) {
Willy Tarreau9356dac2019-05-10 09:22:53 +0200974 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 +0100975 if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv))
976 goto end;
977 /* 2 for key renewal, 1 if current key is still valid */
978 ret = i ? 2 : 1;
979 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +0100980 }
Emeric Brun9e754772019-01-10 17:51:55 +0100981
Christopher Faulet16f45c82018-02-16 11:23:49 +0100982 end:
983 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
984 return ret;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +0200985}
986
987struct tls_keys_ref *tlskeys_ref_lookup(const char *filename)
988{
989 struct tls_keys_ref *ref;
990
991 list_for_each_entry(ref, &tlskeys_reference, list)
992 if (ref->filename && strcmp(filename, ref->filename) == 0)
993 return ref;
994 return NULL;
995}
996
997struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id)
998{
999 struct tls_keys_ref *ref;
1000
1001 list_for_each_entry(ref, &tlskeys_reference, list)
1002 if (ref->unique_id == unique_id)
1003 return ref;
1004 return NULL;
1005}
1006
Emeric Brun9e754772019-01-10 17:51:55 +01001007/* Update the key into ref: if keysize doesnt
1008 * match existing ones, this function returns -1
1009 * else it returns 0 on success.
1010 */
1011int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref,
Willy Tarreau83061a82018-07-13 11:56:34 +02001012 struct buffer *tlskey)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001013{
Emeric Brun9e754772019-01-10 17:51:55 +01001014 if (ref->key_size_bits == 128) {
1015 if (tlskey->data != sizeof(struct tls_sess_key_128))
1016 return -1;
1017 }
1018 else if (ref->key_size_bits == 256) {
1019 if (tlskey->data != sizeof(struct tls_sess_key_256))
1020 return -1;
1021 }
1022 else
1023 return -1;
1024
Christopher Faulet16f45c82018-02-16 11:23:49 +01001025 HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001026 memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)),
1027 tlskey->area, tlskey->data);
Christopher Faulet16f45c82018-02-16 11:23:49 +01001028 ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO;
1029 HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Emeric Brun9e754772019-01-10 17:51:55 +01001030
1031 return 0;
Christopher Faulet16f45c82018-02-16 11:23:49 +01001032}
1033
Willy Tarreau83061a82018-07-13 11:56:34 +02001034int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err)
Christopher Faulet16f45c82018-02-16 11:23:49 +01001035{
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001036 struct tls_keys_ref *ref = tlskeys_ref_lookup(filename);
1037
1038 if(!ref) {
1039 memprintf(err, "Unable to locate the referenced filename: %s", filename);
1040 return 1;
1041 }
Emeric Brun9e754772019-01-10 17:51:55 +01001042 if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) {
1043 memprintf(err, "Invalid key size");
1044 return 1;
1045 }
1046
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001047 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001048}
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001049
1050/* This function finalize the configuration parsing. Its set all the
Willy Tarreaud1c57502016-12-22 22:46:15 +01001051 * automatic ids. It's called just after the basic checks. It returns
1052 * 0 on success otherwise ERR_*.
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001053 */
Willy Tarreaud1c57502016-12-22 22:46:15 +01001054static int tlskeys_finalize_config(void)
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001055{
1056 int i = 0;
1057 struct tls_keys_ref *ref, *ref2, *ref3;
1058 struct list tkr = LIST_HEAD_INIT(tkr);
1059
1060 list_for_each_entry(ref, &tlskeys_reference, list) {
1061 if (ref->unique_id == -1) {
1062 /* Look for the first free id. */
1063 while (1) {
1064 list_for_each_entry(ref2, &tlskeys_reference, list) {
1065 if (ref2->unique_id == i) {
1066 i++;
1067 break;
1068 }
1069 }
1070 if (&ref2->list == &tlskeys_reference)
1071 break;
1072 }
1073
1074 /* Uses the unique id and increment it for the next entry. */
1075 ref->unique_id = i;
1076 i++;
1077 }
1078 }
1079
1080 /* This sort the reference list by id. */
1081 list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) {
1082 LIST_DEL(&ref->list);
1083 list_for_each_entry(ref3, &tkr, list) {
1084 if (ref->unique_id < ref3->unique_id) {
1085 LIST_ADDQ(&ref3->list, &ref->list);
1086 break;
1087 }
1088 }
1089 if (&ref3->list == &tkr)
1090 LIST_ADDQ(&tkr, &ref->list);
1091 }
1092
1093 /* swap root */
1094 LIST_ADD(&tkr, &tlskeys_reference);
1095 LIST_DEL(&tkr);
Willy Tarreaud1c57502016-12-22 22:46:15 +01001096 return 0;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02001097}
Nenad Merdanovic05552d42015-02-27 19:56:49 +01001098#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
1099
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001100#ifndef OPENSSL_NO_OCSP
yanbzhube2774d2015-12-10 15:07:30 -05001101int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype)
1102{
1103 switch (evp_keytype) {
1104 case EVP_PKEY_RSA:
1105 return 2;
1106 case EVP_PKEY_DSA:
1107 return 0;
1108 case EVP_PKEY_EC:
1109 return 1;
1110 }
1111
1112 return -1;
1113}
1114
Emeric Brun4147b2e2014-06-16 18:36:30 +02001115/*
1116 * Callback used to set OCSP status extension content in server hello.
1117 */
1118int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg)
1119{
yanbzhube2774d2015-12-10 15:07:30 -05001120 struct certificate_ocsp *ocsp;
1121 struct ocsp_cbk_arg *ocsp_arg;
1122 char *ssl_buf;
1123 EVP_PKEY *ssl_pkey;
1124 int key_type;
1125 int index;
1126
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001127 ocsp_arg = arg;
yanbzhube2774d2015-12-10 15:07:30 -05001128
1129 ssl_pkey = SSL_get_privatekey(ssl);
1130 if (!ssl_pkey)
1131 return SSL_TLSEXT_ERR_NOACK;
1132
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001133 key_type = EVP_PKEY_base_id(ssl_pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001134
1135 if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type)
1136 ocsp = ocsp_arg->s_ocsp;
1137 else {
1138 /* For multiple certs per context, we have to find the correct OCSP response based on
1139 * the certificate type
1140 */
1141 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
1142
1143 if (index < 0)
1144 return SSL_TLSEXT_ERR_NOACK;
1145
1146 ocsp = ocsp_arg->m_ocsp[index];
1147
1148 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001149
1150 if (!ocsp ||
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001151 !ocsp->response.area ||
1152 !ocsp->response.data ||
Emeric Brun4f3c87a2014-06-20 15:46:13 +02001153 (ocsp->expire < now.tv_sec))
Emeric Brun4147b2e2014-06-16 18:36:30 +02001154 return SSL_TLSEXT_ERR_NOACK;
1155
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001156 ssl_buf = OPENSSL_malloc(ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001157 if (!ssl_buf)
1158 return SSL_TLSEXT_ERR_NOACK;
1159
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001160 memcpy(ssl_buf, ocsp->response.area, ocsp->response.data);
1161 SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001162
1163 return SSL_TLSEXT_ERR_OK;
1164}
1165
1166/*
1167 * This function enables the handling of OCSP status extension on 'ctx' if a
1168 * file name 'cert_path' suffixed using ".ocsp" is present.
1169 * To enable OCSP status extension, the issuer's certificate is mandatory.
1170 * It should be present in the certificate's extra chain builded from file
1171 * 'cert_path'. If not found, the issuer certificate is loaded from a file
1172 * named 'cert_path' suffixed using '.issuer'.
1173 *
1174 * In addition, ".ocsp" file content is loaded as a DER format of an OCSP
1175 * response. If file is empty or content is not a valid OCSP response,
1176 * OCSP status extension is enabled but OCSP response is ignored (a warning
1177 * is displayed).
1178 *
1179 * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is
Joseph Herlant017b3da2018-11-15 09:07:59 -08001180 * successfully enabled, or -1 in other error case.
Emeric Brun4147b2e2014-06-16 18:36:30 +02001181 */
1182static int ssl_sock_load_ocsp(SSL_CTX *ctx, const char *cert_path)
1183{
1184
1185 BIO *in = NULL;
1186 X509 *x, *xi = NULL, *issuer = NULL;
1187 STACK_OF(X509) *chain = NULL;
1188 OCSP_CERTID *cid = NULL;
1189 SSL *ssl;
1190 char ocsp_path[MAXPATHLEN+1];
1191 int i, ret = -1;
1192 struct stat st;
1193 struct certificate_ocsp *ocsp = NULL, *iocsp;
1194 char *warn = NULL;
1195 unsigned char *p;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001196 pem_password_cb *passwd_cb;
1197 void *passwd_cb_userdata;
1198 void (*callback) (void);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001199
1200 snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path);
1201
1202 if (stat(ocsp_path, &st))
1203 return 1;
1204
1205 ssl = SSL_new(ctx);
1206 if (!ssl)
1207 goto out;
1208
1209 x = SSL_get_certificate(ssl);
1210 if (!x)
1211 goto out;
1212
1213 /* Try to lookup for issuer in certificate extra chain */
Emeric Brun4147b2e2014-06-16 18:36:30 +02001214 SSL_CTX_get_extra_chain_certs(ctx, &chain);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001215 for (i = 0; i < sk_X509_num(chain); i++) {
1216 issuer = sk_X509_value(chain, i);
1217 if (X509_check_issued(issuer, x) == X509_V_OK)
1218 break;
1219 else
1220 issuer = NULL;
1221 }
1222
1223 /* If not found try to load issuer from a suffixed file */
1224 if (!issuer) {
1225 char issuer_path[MAXPATHLEN+1];
1226
1227 in = BIO_new(BIO_s_file());
1228 if (!in)
1229 goto out;
1230
1231 snprintf(issuer_path, MAXPATHLEN+1, "%s.issuer", cert_path);
1232 if (BIO_read_filename(in, issuer_path) <= 0)
1233 goto out;
1234
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001235 passwd_cb = SSL_CTX_get_default_passwd_cb(ctx);
1236 passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx);
1237
1238 xi = PEM_read_bio_X509_AUX(in, NULL, passwd_cb, passwd_cb_userdata);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001239 if (!xi)
1240 goto out;
1241
1242 if (X509_check_issued(xi, x) != X509_V_OK)
1243 goto out;
1244
1245 issuer = xi;
1246 }
1247
1248 cid = OCSP_cert_to_id(0, x, issuer);
1249 if (!cid)
1250 goto out;
1251
1252 i = i2d_OCSP_CERTID(cid, NULL);
1253 if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH))
1254 goto out;
1255
Vincent Bernat02779b62016-04-03 13:48:43 +02001256 ocsp = calloc(1, sizeof(*ocsp));
Emeric Brun4147b2e2014-06-16 18:36:30 +02001257 if (!ocsp)
1258 goto out;
1259
1260 p = ocsp->key_data;
1261 i2d_OCSP_CERTID(cid, &p);
1262
1263 iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH);
1264 if (iocsp == ocsp)
1265 ocsp = NULL;
1266
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001267#ifndef SSL_CTX_get_tlsext_status_cb
1268# define SSL_CTX_get_tlsext_status_cb(ctx, cb) \
1269 *cb = (void (*) (void))ctx->tlsext_status_cb;
1270#endif
1271 SSL_CTX_get_tlsext_status_cb(ctx, &callback);
1272
1273 if (!callback) {
Vincent Bernat02779b62016-04-03 13:48:43 +02001274 struct ocsp_cbk_arg *cb_arg = calloc(1, sizeof(*cb_arg));
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001275 EVP_PKEY *pkey;
yanbzhube2774d2015-12-10 15:07:30 -05001276
1277 cb_arg->is_single = 1;
1278 cb_arg->s_ocsp = iocsp;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001279
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001280 pkey = X509_get_pubkey(x);
1281 cb_arg->single_kt = EVP_PKEY_base_id(pkey);
1282 EVP_PKEY_free(pkey);
yanbzhube2774d2015-12-10 15:07:30 -05001283
1284 SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk);
1285 SSL_CTX_set_tlsext_status_arg(ctx, cb_arg);
1286 } else {
1287 /*
1288 * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx
1289 * Update that cb_arg with the new cert's staple
1290 */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001291 struct ocsp_cbk_arg *cb_arg;
yanbzhube2774d2015-12-10 15:07:30 -05001292 struct certificate_ocsp *tmp_ocsp;
1293 int index;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001294 int key_type;
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001295 EVP_PKEY *pkey;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001296
1297#ifdef SSL_CTX_get_tlsext_status_arg
1298 SSL_CTX_ctrl(ctx, SSL_CTRL_GET_TLSEXT_STATUS_REQ_CB_ARG, 0, &cb_arg);
1299#else
1300 cb_arg = ctx->tlsext_status_arg;
1301#endif
yanbzhube2774d2015-12-10 15:07:30 -05001302
1303 /*
1304 * The following few lines will convert cb_arg from a single ocsp to multi ocsp
1305 * the order of operations below matter, take care when changing it
1306 */
1307 tmp_ocsp = cb_arg->s_ocsp;
1308 index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt);
1309 cb_arg->s_ocsp = NULL;
1310 cb_arg->m_ocsp[index] = tmp_ocsp;
1311 cb_arg->is_single = 0;
1312 cb_arg->single_kt = 0;
1313
Emmanuel Hocdetb7a4c342017-01-06 12:57:46 +01001314 pkey = X509_get_pubkey(x);
1315 key_type = EVP_PKEY_base_id(pkey);
1316 EVP_PKEY_free(pkey);
1317
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001318 index = ssl_sock_get_ocsp_arg_kt_index(key_type);
yanbzhube2774d2015-12-10 15:07:30 -05001319 if (index >= 0 && !cb_arg->m_ocsp[index])
1320 cb_arg->m_ocsp[index] = iocsp;
1321
1322 }
Emeric Brun4147b2e2014-06-16 18:36:30 +02001323
1324 ret = 0;
1325
1326 warn = NULL;
1327 if (ssl_sock_load_ocsp_response_from_file(ocsp_path, iocsp, cid, &warn)) {
1328 memprintf(&warn, "Loading '%s': %s. Content will be ignored", ocsp_path, warn ? warn : "failure");
Christopher Faulet767a84b2017-11-24 16:50:31 +01001329 ha_warning("%s.\n", warn);
Emeric Brun4147b2e2014-06-16 18:36:30 +02001330 }
1331
1332out:
1333 if (ssl)
1334 SSL_free(ssl);
1335
1336 if (in)
1337 BIO_free(in);
1338
1339 if (xi)
1340 X509_free(xi);
1341
1342 if (cid)
1343 OCSP_CERTID_free(cid);
1344
1345 if (ocsp)
1346 free(ocsp);
1347
1348 if (warn)
1349 free(warn);
1350
1351
1352 return ret;
1353}
1354
1355#endif
1356
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001357#ifdef OPENSSL_IS_BORINGSSL
1358static int ssl_sock_set_ocsp_response_from_file(SSL_CTX *ctx, const char *cert_path)
1359{
1360 char ocsp_path[MAXPATHLEN+1];
1361 struct stat st;
1362 int fd = -1, r = 0;
1363
1364 snprintf(ocsp_path, MAXPATHLEN+1, "%s.ocsp", cert_path);
1365 if (stat(ocsp_path, &st))
1366 return 0;
1367
1368 fd = open(ocsp_path, O_RDONLY);
1369 if (fd == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001370 ha_warning("Error opening OCSP response file %s.\n", ocsp_path);
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001371 return -1;
1372 }
1373
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001374 trash.data = 0;
1375 while (trash.data < trash.size) {
1376 r = read(fd, trash.area + trash.data, trash.size - trash.data);
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001377 if (r < 0) {
1378 if (errno == EINTR)
1379 continue;
Christopher Faulet767a84b2017-11-24 16:50:31 +01001380 ha_warning("Error reading OCSP response from file %s.\n", ocsp_path);
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001381 close(fd);
1382 return -1;
1383 }
1384 else if (r == 0) {
1385 break;
1386 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001387 trash.data += r;
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001388 }
1389 close(fd);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001390 return SSL_CTX_set_ocsp_response(ctx, (const uint8_t *) trash.area,
1391 trash.data);
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02001392}
1393#endif
1394
Willy Tarreau5db847a2019-05-09 14:13:35 +02001395#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001396
1397#define CT_EXTENSION_TYPE 18
1398
1399static int sctl_ex_index = -1;
1400
1401/*
1402 * Try to parse Signed Certificate Timestamp List structure. This function
1403 * makes only basic test if the data seems like SCTL. No signature validation
1404 * is performed.
1405 */
Willy Tarreau83061a82018-07-13 11:56:34 +02001406static int ssl_sock_parse_sctl(struct buffer *sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001407{
1408 int ret = 1;
1409 int len, pos, sct_len;
1410 unsigned char *data;
1411
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001412 if (sctl->data < 2)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001413 goto out;
1414
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001415 data = (unsigned char *) sctl->area;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001416 len = (data[0] << 8) | data[1];
1417
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001418 if (len + 2 != sctl->data)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001419 goto out;
1420
1421 data = data + 2;
1422 pos = 0;
1423 while (pos < len) {
1424 if (len - pos < 2)
1425 goto out;
1426
1427 sct_len = (data[pos] << 8) | data[pos + 1];
1428 if (pos + sct_len + 2 > len)
1429 goto out;
1430
1431 pos += sct_len + 2;
1432 }
1433
1434 ret = 0;
1435
1436out:
1437 return ret;
1438}
1439
Willy Tarreau83061a82018-07-13 11:56:34 +02001440static int ssl_sock_load_sctl_from_file(const char *sctl_path,
1441 struct buffer **sctl)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001442{
1443 int fd = -1;
1444 int r = 0;
1445 int ret = 1;
1446
1447 *sctl = NULL;
1448
1449 fd = open(sctl_path, O_RDONLY);
1450 if (fd == -1)
1451 goto end;
1452
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001453 trash.data = 0;
1454 while (trash.data < trash.size) {
1455 r = read(fd, trash.area + trash.data, trash.size - trash.data);
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001456 if (r < 0) {
1457 if (errno == EINTR)
1458 continue;
1459
1460 goto end;
1461 }
1462 else if (r == 0) {
1463 break;
1464 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001465 trash.data += r;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001466 }
1467
1468 ret = ssl_sock_parse_sctl(&trash);
1469 if (ret)
1470 goto end;
1471
Vincent Bernat02779b62016-04-03 13:48:43 +02001472 *sctl = calloc(1, sizeof(**sctl));
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001473 if (!chunk_dup(*sctl, &trash)) {
1474 free(*sctl);
1475 *sctl = NULL;
1476 goto end;
1477 }
1478
1479end:
1480 if (fd != -1)
1481 close(fd);
1482
1483 return ret;
1484}
1485
1486int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg)
1487{
Willy Tarreau83061a82018-07-13 11:56:34 +02001488 struct buffer *sctl = add_arg;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001489
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001490 *out = (unsigned char *) sctl->area;
1491 *outlen = sctl->data;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001492
1493 return 1;
1494}
1495
1496int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg)
1497{
1498 return 1;
1499}
1500
1501static int ssl_sock_load_sctl(SSL_CTX *ctx, const char *cert_path)
1502{
1503 char sctl_path[MAXPATHLEN+1];
1504 int ret = -1;
1505 struct stat st;
Willy Tarreau83061a82018-07-13 11:56:34 +02001506 struct buffer *sctl = NULL;
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01001507
1508 snprintf(sctl_path, MAXPATHLEN+1, "%s.sctl", cert_path);
1509
1510 if (stat(sctl_path, &st))
1511 return 1;
1512
1513 if (ssl_sock_load_sctl_from_file(sctl_path, &sctl))
1514 goto out;
1515
1516 if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) {
1517 free(sctl);
1518 goto out;
1519 }
1520
1521 SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl);
1522
1523 ret = 0;
1524
1525out:
1526 return ret;
1527}
1528
1529#endif
1530
Emeric Brune1f38db2012-09-03 20:36:47 +02001531void ssl_sock_infocbk(const SSL *ssl, int where, int ret)
1532{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001533 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001534 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001535 BIO *write_bio;
Willy Tarreau622317d2015-02-27 16:36:16 +01001536 (void)ret; /* shut gcc stupid warning */
Emeric Brune1f38db2012-09-03 20:36:47 +02001537
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001538#ifndef SSL_OP_NO_RENEGOTIATION
1539 /* Please note that BoringSSL defines this macro to zero so don't
1540 * change this to #if and do not assign a default value to this macro!
1541 */
Emeric Brune1f38db2012-09-03 20:36:47 +02001542 if (where & SSL_CB_HANDSHAKE_START) {
1543 /* Disable renegotiation (CVE-2009-3555) */
Olivier Houchard90084a12017-11-23 18:21:29 +01001544 if ((conn->flags & (CO_FL_CONNECTED | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == CO_FL_CONNECTED) {
Emeric Brune1f38db2012-09-03 20:36:47 +02001545 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01001546 conn->err_code = CO_ER_SSL_RENEG;
1547 }
Emeric Brune1f38db2012-09-03 20:36:47 +02001548 }
Dirkjan Bussink526894f2019-01-21 09:35:03 -08001549#endif
Emeric Brund8b2bb52014-01-28 15:43:53 +01001550
1551 if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001552 if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) {
Emeric Brund8b2bb52014-01-28 15:43:53 +01001553 /* Long certificate chains optimz
1554 If write and read bios are differents, we
1555 consider that the buffering was activated,
1556 so we rise the output buffer size from 4k
1557 to 16k */
1558 write_bio = SSL_get_wbio(ssl);
1559 if (write_bio != SSL_get_rbio(ssl)) {
1560 BIO_set_write_buffer_size(write_bio, 16384);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001561 ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE;
Emeric Brund8b2bb52014-01-28 15:43:53 +01001562 }
1563 }
1564 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02001565}
1566
Emeric Brune64aef12012-09-21 13:15:06 +02001567/* Callback is called for each certificate of the chain during a verify
1568 ok is set to 1 if preverify detect no error on current certificate.
1569 Returns 0 to break the handshake, 1 otherwise. */
Evan Broderbe554312013-06-27 00:05:25 -07001570int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store)
Emeric Brune64aef12012-09-21 13:15:06 +02001571{
1572 SSL *ssl;
1573 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001574 struct ssl_sock_ctx *ctx;
Emeric Brun81c00f02012-09-21 14:31:21 +02001575 int err, depth;
Emeric Brune64aef12012-09-21 13:15:06 +02001576
1577 ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001578 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emeric Brune64aef12012-09-21 13:15:06 +02001579
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001580 ctx = conn->xprt_ctx;
1581
1582 ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE;
Emeric Brune64aef12012-09-21 13:15:06 +02001583
Emeric Brun81c00f02012-09-21 14:31:21 +02001584 if (ok) /* no errors */
1585 return ok;
1586
1587 depth = X509_STORE_CTX_get_error_depth(x_store);
1588 err = X509_STORE_CTX_get_error(x_store);
1589
1590 /* check if CA error needs to be ignored */
1591 if (depth > 0) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001592 if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) {
1593 ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err);
1594 ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth);
Emeric Brunf282a812012-09-21 15:27:54 +02001595 }
1596
Willy Tarreau07d94e42018-09-20 10:57:52 +02001597 if (__objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001598 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001599 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001600 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001601 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001602
Willy Tarreau20879a02012-12-03 16:32:10 +01001603 conn->err_code = CO_ER_SSL_CA_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001604 return 0;
1605 }
1606
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001607 if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st))
1608 ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err);
Emeric Brunf282a812012-09-21 15:27:54 +02001609
Emeric Brun81c00f02012-09-21 14:31:21 +02001610 /* check if certificate error needs to be ignored */
Willy Tarreau07d94e42018-09-20 10:57:52 +02001611 if (__objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) {
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02001612 ssl_sock_dump_errors(conn);
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001613 ERR_clear_error();
Emeric Brun81c00f02012-09-21 14:31:21 +02001614 return 1;
Emeric Brun1eb20ef2012-12-03 13:24:29 +01001615 }
Emeric Brun81c00f02012-09-21 14:31:21 +02001616
Willy Tarreau20879a02012-12-03 16:32:10 +01001617 conn->err_code = CO_ER_SSL_CRT_FAIL;
Emeric Brun81c00f02012-09-21 14:31:21 +02001618 return 0;
Emeric Brune64aef12012-09-21 13:15:06 +02001619}
1620
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001621static inline
1622void ssl_sock_parse_clienthello(int write_p, int version, int content_type,
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001623 const void *buf, size_t len, SSL *ssl)
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001624{
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001625 struct ssl_capture *capture;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001626 unsigned char *msg;
1627 unsigned char *end;
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001628 size_t rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001629
1630 /* This function is called for "from client" and "to server"
1631 * connections. The combination of write_p == 0 and content_type == 22
Joseph Herlant017b3da2018-11-15 09:07:59 -08001632 * is only available during "from client" connection.
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001633 */
1634
1635 /* "write_p" is set to 0 is the bytes are received messages,
1636 * otherwise it is set to 1.
1637 */
1638 if (write_p != 0)
1639 return;
1640
1641 /* content_type contains the type of message received or sent
1642 * according with the SSL/TLS protocol spec. This message is
1643 * encoded with one byte. The value 256 (two bytes) is used
1644 * for designing the SSL/TLS record layer. According with the
1645 * rfc6101, the expected message (other than 256) are:
1646 * - change_cipher_spec(20)
1647 * - alert(21)
1648 * - handshake(22)
1649 * - application_data(23)
1650 * - (255)
1651 * We are interessed by the handshake and specially the client
1652 * hello.
1653 */
1654 if (content_type != 22)
1655 return;
1656
1657 /* The message length is at least 4 bytes, containing the
1658 * message type and the message length.
1659 */
1660 if (len < 4)
1661 return;
1662
1663 /* First byte of the handshake message id the type of
1664 * message. The konwn types are:
1665 * - hello_request(0)
1666 * - client_hello(1)
1667 * - server_hello(2)
1668 * - certificate(11)
1669 * - server_key_exchange (12)
1670 * - certificate_request(13)
1671 * - server_hello_done(14)
1672 * We are interested by the client hello.
1673 */
1674 msg = (unsigned char *)buf;
1675 if (msg[0] != 1)
1676 return;
1677
1678 /* Next three bytes are the length of the message. The total length
1679 * must be this decoded length + 4. If the length given as argument
1680 * is not the same, we abort the protocol dissector.
1681 */
1682 rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3];
1683 if (len < rec_len + 4)
1684 return;
1685 msg += 4;
1686 end = msg + rec_len;
1687 if (end < msg)
1688 return;
1689
1690 /* Expect 2 bytes for protocol version (1 byte for major and 1 byte
1691 * for minor, the random, composed by 4 bytes for the unix time and
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001692 * 28 bytes for unix payload. So we jump 1 + 1 + 4 + 28.
1693 */
1694 msg += 1 + 1 + 4 + 28;
1695 if (msg > end)
1696 return;
1697
1698 /* Next, is session id:
1699 * if present, we have to jump by length + 1 for the size information
1700 * if not present, we have to jump by 1 only
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001701 */
Baptiste Assmann6be139f2018-11-28 15:20:25 +01001702 if (msg[0] > 0)
1703 msg += msg[0];
1704 msg += 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001705 if (msg > end)
1706 return;
1707
1708 /* Next two bytes are the ciphersuite length. */
1709 if (msg + 2 > end)
1710 return;
1711 rec_len = (msg[0] << 8) + msg[1];
1712 msg += 2;
1713 if (msg + rec_len > end || msg + rec_len < msg)
1714 return;
1715
Willy Tarreaubafbe012017-11-24 17:34:44 +01001716 capture = pool_alloc_dirty(pool_head_ssl_capture);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001717 if (!capture)
1718 return;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001719 /* Compute the xxh64 of the ciphersuite. */
1720 capture->xxh64 = XXH64(msg, rec_len, 0);
1721
1722 /* Capture the ciphersuite. */
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001723 capture->ciphersuite_len = (global_ssl.capture_cipherlist < rec_len) ?
1724 global_ssl.capture_cipherlist : rec_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001725 memcpy(capture->ciphersuite, msg, capture->ciphersuite_len);
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001726
1727 SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01001728}
1729
Emeric Brun29f037d2014-04-25 19:05:36 +02001730/* Callback is called for ssl protocol analyse */
1731void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg)
1732{
Emeric Brun29f037d2014-04-25 19:05:36 +02001733#ifdef TLS1_RT_HEARTBEAT
1734 /* test heartbeat received (write_p is set to 0
1735 for a received record) */
Willy Tarreauf51c6982014-04-25 20:02:39 +02001736 if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) {
Thierry FOURNIER28962c92018-06-17 21:37:05 +02001737 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
William Lallemand7e1770b2019-05-13 14:31:34 +02001738 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Willy Tarreauf51c6982014-04-25 20:02:39 +02001739 const unsigned char *p = buf;
1740 unsigned int payload;
1741
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01001742 ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT;
Willy Tarreauf51c6982014-04-25 20:02:39 +02001743
1744 /* Check if this is a CVE-2014-0160 exploitation attempt. */
1745 if (*p != TLS1_HB_REQUEST)
1746 return;
1747
Willy Tarreauaeed6722014-04-25 23:59:58 +02001748 if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */
Willy Tarreauf51c6982014-04-25 20:02:39 +02001749 goto kill_it;
1750
1751 payload = (p[1] * 256) + p[2];
Willy Tarreau3b2fdb62014-04-25 23:44:22 +02001752 if (3 + payload + 16 <= len)
Willy Tarreauf51c6982014-04-25 20:02:39 +02001753 return; /* OK no problem */
Willy Tarreauaeed6722014-04-25 23:59:58 +02001754 kill_it:
Willy Tarreau3b2fdb62014-04-25 23:44:22 +02001755 /* We have a clear heartbleed attack (CVE-2014-0160), the
1756 * advertised payload is larger than the advertised packet
1757 * length, so we have garbage in the buffer between the
1758 * payload and the end of the buffer (p+len). We can't know
1759 * if the SSL stack is patched, and we don't know if we can
1760 * safely wipe out the area between p+3+len and payload.
1761 * So instead, we prevent the response from being sent by
1762 * setting the max_send_fragment to 0 and we report an SSL
1763 * error, which will kill this connection. It will be reported
1764 * above as SSL_ERROR_SSL while an other handshake failure with
Willy Tarreauf51c6982014-04-25 20:02:39 +02001765 * a heartbeat message will be reported as SSL_ERROR_SYSCALL.
1766 */
Willy Tarreau3b2fdb62014-04-25 23:44:22 +02001767 ssl->max_send_fragment = 0;
Willy Tarreauf51c6982014-04-25 20:02:39 +02001768 SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE);
1769 return;
1770 }
Emeric Brun29f037d2014-04-25 19:05:36 +02001771#endif
Emmanuel Hocdete3804742017-03-08 11:07:10 +01001772 if (global_ssl.capture_cipherlist > 0)
1773 ssl_sock_parse_clienthello(write_p, version, content_type, buf, len, ssl);
Emeric Brun29f037d2014-04-25 19:05:36 +02001774}
1775
Bernard Spil13c53f82018-02-15 13:34:58 +01001776#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchardc7566002018-11-20 23:33:50 +01001777static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen,
1778 const unsigned char *in, unsigned int inlen,
1779 void *arg)
1780{
1781 struct server *srv = arg;
1782
1783 if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str,
1784 srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED)
1785 return SSL_TLSEXT_ERR_OK;
1786 return SSL_TLSEXT_ERR_NOACK;
1787}
1788#endif
1789
1790#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001791/* This callback is used so that the server advertises the list of
1792 * negociable protocols for NPN.
1793 */
1794static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data,
1795 unsigned int *len, void *arg)
1796{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001797 struct ssl_bind_conf *conf = arg;
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02001798
1799 *data = (const unsigned char *)conf->npn_str;
1800 *len = conf->npn_len;
1801 return SSL_TLSEXT_ERR_OK;
1802}
1803#endif
1804
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001805#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02001806/* This callback is used so that the server advertises the list of
1807 * negociable protocols for ALPN.
1808 */
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001809static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out,
1810 unsigned char *outlen,
1811 const unsigned char *server,
1812 unsigned int server_len, void *arg)
Willy Tarreauab861d32013-04-02 02:30:41 +02001813{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001814 struct ssl_bind_conf *conf = arg;
Willy Tarreauab861d32013-04-02 02:30:41 +02001815
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01001816 if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str,
1817 conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) {
1818 return SSL_TLSEXT_ERR_NOACK;
1819 }
Willy Tarreauab861d32013-04-02 02:30:41 +02001820 return SSL_TLSEXT_ERR_OK;
1821}
1822#endif
1823
Willy Tarreauc8ad3be2015-06-17 15:48:26 +02001824#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01001825#ifndef SSL_NO_GENERATE_CERTIFICATES
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001826
Christopher Faulet30548802015-06-11 13:39:32 +02001827/* Create a X509 certificate with the specified servername and serial. This
1828 * function returns a SSL_CTX object or NULL if an error occurs. */
Christopher Faulet7969a332015-10-09 11:15:03 +02001829static SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001830ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001831{
Christopher Faulet7969a332015-10-09 11:15:03 +02001832 X509 *cacert = bind_conf->ca_sign_cert;
1833 EVP_PKEY *capkey = bind_conf->ca_sign_pkey;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001834 SSL_CTX *ssl_ctx = NULL;
1835 X509 *newcrt = NULL;
1836 EVP_PKEY *pkey = NULL;
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001837 SSL *tmp_ssl = NULL;
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001838 CONF *ctmp = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001839 X509_NAME *name;
1840 const EVP_MD *digest;
1841 X509V3_CTX ctx;
1842 unsigned int i;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001843 int key_type;
Christopher Faulet31af49d2015-06-09 17:29:50 +02001844
Christopher Faulet48a83322017-07-28 16:56:09 +02001845 /* Get the private key of the default certificate and use it */
Willy Tarreau5db847a2019-05-09 14:13:35 +02001846#if (HA_OPENSSL_VERSION_NUMBER >= 0x10002000L)
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001847 pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx);
1848#else
1849 tmp_ssl = SSL_new(bind_conf->default_ctx);
1850 if (tmp_ssl)
1851 pkey = SSL_get_privatekey(tmp_ssl);
1852#endif
1853 if (!pkey)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001854 goto mkcert_error;
1855
1856 /* Create the certificate */
1857 if (!(newcrt = X509_new()))
1858 goto mkcert_error;
1859
1860 /* Set version number for the certificate (X509v3) and the serial
1861 * number */
1862 if (X509_set_version(newcrt, 2L) != 1)
1863 goto mkcert_error;
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01001864 ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD(&ssl_ctx_serial, 1));
Christopher Faulet31af49d2015-06-09 17:29:50 +02001865
1866 /* Set duration for the certificate */
Rosen Penev68185952018-12-14 08:47:02 -08001867 if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) ||
1868 !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001869 goto mkcert_error;
1870
1871 /* set public key in the certificate */
1872 if (X509_set_pubkey(newcrt, pkey) != 1)
1873 goto mkcert_error;
1874
1875 /* Set issuer name from the CA */
1876 if (!(name = X509_get_subject_name(cacert)))
1877 goto mkcert_error;
1878 if (X509_set_issuer_name(newcrt, name) != 1)
1879 goto mkcert_error;
1880
1881 /* Set the subject name using the same, but the CN */
1882 name = X509_NAME_dup(name);
1883 if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC,
1884 (const unsigned char *)servername,
1885 -1, -1, 0) != 1) {
1886 X509_NAME_free(name);
1887 goto mkcert_error;
1888 }
1889 if (X509_set_subject_name(newcrt, name) != 1) {
1890 X509_NAME_free(name);
1891 goto mkcert_error;
1892 }
1893 X509_NAME_free(name);
1894
1895 /* Add x509v3 extensions as specified */
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001896 ctmp = NCONF_new(NULL);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001897 X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0);
1898 for (i = 0; i < X509V3_EXT_SIZE; i++) {
1899 X509_EXTENSION *ext;
1900
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001901 if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i])))
Christopher Faulet31af49d2015-06-09 17:29:50 +02001902 goto mkcert_error;
1903 if (!X509_add_ext(newcrt, ext, -1)) {
1904 X509_EXTENSION_free(ext);
1905 goto mkcert_error;
1906 }
1907 X509_EXTENSION_free(ext);
1908 }
1909
1910 /* Sign the certificate with the CA private key */
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001911
1912 key_type = EVP_PKEY_base_id(capkey);
1913
1914 if (key_type == EVP_PKEY_DSA)
1915 digest = EVP_sha1();
1916 else if (key_type == EVP_PKEY_RSA)
Christopher Faulet31af49d2015-06-09 17:29:50 +02001917 digest = EVP_sha256();
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02001918 else if (key_type == EVP_PKEY_EC)
Christopher Faulet7969a332015-10-09 11:15:03 +02001919 digest = EVP_sha256();
1920 else {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02001921#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000000fL) && !defined(OPENSSL_IS_BORINGSSL)
Christopher Faulet7969a332015-10-09 11:15:03 +02001922 int nid;
1923
1924 if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0)
1925 goto mkcert_error;
1926 if (!(digest = EVP_get_digestbynid(nid)))
1927 goto mkcert_error;
Christopher Faulete7db2162015-10-19 13:59:24 +02001928#else
1929 goto mkcert_error;
1930#endif
Christopher Faulet7969a332015-10-09 11:15:03 +02001931 }
1932
Christopher Faulet31af49d2015-06-09 17:29:50 +02001933 if (!(X509_sign(newcrt, capkey, digest)))
1934 goto mkcert_error;
1935
1936 /* Create and set the new SSL_CTX */
1937 if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method())))
1938 goto mkcert_error;
1939 if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey))
1940 goto mkcert_error;
1941 if (!SSL_CTX_use_certificate(ssl_ctx, newcrt))
1942 goto mkcert_error;
1943 if (!SSL_CTX_check_private_key(ssl_ctx))
1944 goto mkcert_error;
1945
1946 if (newcrt) X509_free(newcrt);
Christopher Faulet7969a332015-10-09 11:15:03 +02001947
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01001948#ifndef OPENSSL_NO_DH
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001949 SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh);
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01001950#endif
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001951#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
1952 {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01001953 const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE);
Christopher Faulet85b5a1a2015-10-09 11:46:32 +02001954 EC_KEY *ecc;
1955 int nid;
1956
1957 if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef)
1958 goto end;
1959 if (!(ecc = EC_KEY_new_by_curve_name(nid)))
1960 goto end;
1961 SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc);
1962 EC_KEY_free(ecc);
1963 }
1964#endif
1965 end:
Christopher Faulet31af49d2015-06-09 17:29:50 +02001966 return ssl_ctx;
1967
1968 mkcert_error:
Emmanuel Hocdeta9b84022018-10-01 18:41:36 +02001969 if (ctmp) NCONF_free(ctmp);
Emmanuel Hocdet15969292017-08-11 10:56:00 +02001970 if (tmp_ssl) SSL_free(tmp_ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001971 if (ssl_ctx) SSL_CTX_free(ssl_ctx);
1972 if (newcrt) X509_free(newcrt);
Christopher Faulet31af49d2015-06-09 17:29:50 +02001973 return NULL;
1974}
1975
Christopher Faulet7969a332015-10-09 11:15:03 +02001976SSL_CTX *
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001977ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key)
Christopher Faulet7969a332015-10-09 11:15:03 +02001978{
Willy Tarreau07d94e42018-09-20 10:57:52 +02001979 struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf;
Olivier Houchard66ab4982019-02-26 18:37:15 +01001980 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001981
Olivier Houchard66ab4982019-02-26 18:37:15 +01001982 return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl);
Christopher Faulet7969a332015-10-09 11:15:03 +02001983}
1984
Christopher Faulet30548802015-06-11 13:39:32 +02001985/* Do a lookup for a certificate in the LRU cache used to store generated
Emeric Brun821bb9b2017-06-15 16:37:39 +02001986 * certificates and immediately assign it to the SSL session if not null. */
Christopher Faulet30548802015-06-11 13:39:32 +02001987SSL_CTX *
Emeric Brun821bb9b2017-06-15 16:37:39 +02001988ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet30548802015-06-11 13:39:32 +02001989{
1990 struct lru64 *lru = NULL;
1991
1992 if (ssl_ctx_lru_tree) {
Willy Tarreau03f4ec42018-05-17 10:56:47 +02001993 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01001994 lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02001995 if (lru && lru->domain) {
1996 if (ssl)
1997 SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data);
Willy Tarreau03f4ec42018-05-17 10:56:47 +02001998 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02001999 return (SSL_CTX *)lru->data;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002000 }
Willy Tarreau03f4ec42018-05-17 10:56:47 +02002001 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet30548802015-06-11 13:39:32 +02002002 }
2003 return NULL;
2004}
2005
Emeric Brun821bb9b2017-06-15 16:37:39 +02002006/* Same as <ssl_sock_assign_generated_cert> but without SSL session. This
2007 * function is not thread-safe, it should only be used to check if a certificate
2008 * exists in the lru cache (with no warranty it will not be removed by another
2009 * thread). It is kept for backward compatibility. */
2010SSL_CTX *
2011ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf)
2012{
2013 return ssl_sock_assign_generated_cert(key, bind_conf, NULL);
2014}
2015
Christopher Fauletd2cab922015-07-28 16:03:47 +02002016/* Set a certificate int the LRU cache used to store generated
2017 * certificate. Return 0 on success, otherwise -1 */
2018int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002019ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf)
Christopher Faulet30548802015-06-11 13:39:32 +02002020{
2021 struct lru64 *lru = NULL;
2022
2023 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002024 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002025 lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_cert, 0);
Emeric Brun821bb9b2017-06-15 16:37:39 +02002026 if (!lru) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002027 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002028 return -1;
Emeric Brun821bb9b2017-06-15 16:37:39 +02002029 }
Christopher Faulet30548802015-06-11 13:39:32 +02002030 if (lru->domain && lru->data)
2031 lru->free((SSL_CTX *)lru->data);
Christopher Faulet7969a332015-10-09 11:15:03 +02002032 lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_cert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002033 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002034 return 0;
Christopher Faulet30548802015-06-11 13:39:32 +02002035 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02002036 return -1;
Christopher Faulet30548802015-06-11 13:39:32 +02002037}
2038
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002039/* Compute the key of the certificate. */
Christopher Faulet30548802015-06-11 13:39:32 +02002040unsigned int
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002041ssl_sock_generated_cert_key(const void *data, size_t len)
Christopher Faulet30548802015-06-11 13:39:32 +02002042{
2043 return XXH32(data, len, ssl_ctx_lru_seed);
2044}
2045
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002046/* Generate a cert and immediately assign it to the SSL session so that the cert's
2047 * refcount is maintained regardless of the cert's presence in the LRU cache.
2048 */
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002049static int
Christopher Faulet7969a332015-10-09 11:15:03 +02002050ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl)
Christopher Faulet31af49d2015-06-09 17:29:50 +02002051{
2052 X509 *cacert = bind_conf->ca_sign_cert;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002053 SSL_CTX *ssl_ctx = NULL;
2054 struct lru64 *lru = NULL;
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002055 unsigned int key;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002056
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002057 key = ssl_sock_generated_cert_key(servername, strlen(servername));
Christopher Faulet31af49d2015-06-09 17:29:50 +02002058 if (ssl_ctx_lru_tree) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002059 HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002060 lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002061 if (lru && lru->domain)
2062 ssl_ctx = (SSL_CTX *)lru->data;
Christopher Fauletd2cab922015-07-28 16:03:47 +02002063 if (!ssl_ctx && lru) {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002064 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Christopher Faulet31af49d2015-06-09 17:29:50 +02002065 lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free);
Christopher Fauletd2cab922015-07-28 16:03:47 +02002066 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002067 SSL_set_SSL_CTX(ssl, ssl_ctx);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002068 HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002069 return 1;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002070 }
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002071 else {
Christopher Faulet635c0ad2015-11-12 11:35:51 +01002072 ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl);
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002073 SSL_set_SSL_CTX(ssl, ssl_ctx);
2074 /* No LRU cache, this CTX will be released as soon as the session dies */
2075 SSL_CTX_free(ssl_ctx);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002076 return 1;
Willy Tarreau2f63ef42015-10-20 15:16:01 +02002077 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002078 return 0;
2079}
2080static int
2081ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl)
2082{
2083 unsigned int key;
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002084 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002085
2086 conn_get_to_addr(conn);
2087 if (conn->flags & CO_FL_ADDR_TO_SET) {
2088 key = ssl_sock_generated_cert_key(&conn->addr.to, get_addr_len(&conn->addr.to));
Emeric Brun821bb9b2017-06-15 16:37:39 +02002089 if (ssl_sock_assign_generated_cert(key, bind_conf, ssl))
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002090 return 1;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002091 }
2092 return 0;
Christopher Faulet31af49d2015-06-09 17:29:50 +02002093}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002094#endif /* !defined SSL_NO_GENERATE_CERTIFICATES */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002095
Willy Tarreau9a1ab082019-05-09 13:26:41 +02002096#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002097typedef enum { SET_CLIENT, SET_SERVER } set_context_func;
2098
2099static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002100{
Emmanuel Hocdet23877ab2017-07-12 12:53:02 +02002101#if SSL_OP_NO_SSLv3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002102 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002103 : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method());
2104#endif
2105}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002106static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2107 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002108 : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method());
2109}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002110static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002111#if SSL_OP_NO_TLSv1_1
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002112 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002113 : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method());
2114#endif
2115}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002116static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002117#if SSL_OP_NO_TLSv1_2
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002118 c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method())
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002119 : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method());
2120#endif
2121}
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002122/* TLSv1.2 is the last supported version in this context. */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002123static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {}
2124/* Unusable in this context. */
2125static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {}
2126static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {}
2127static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {}
2128static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {}
2129static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {}
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002130#else /* openssl >= 1.1.0 */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002131typedef enum { SET_MIN, SET_MAX } set_context_func;
2132
2133static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) {
2134 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002135 : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION);
2136}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002137static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {
2138 c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION)
2139 : SSL_set_min_proto_version(ssl, SSL3_VERSION);
2140}
2141static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) {
2142 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002143 : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
2144}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002145static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {
2146 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION)
2147 : SSL_set_min_proto_version(ssl, TLS1_VERSION);
2148}
2149static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) {
2150 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002151 : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION);
2152}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002153static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {
2154 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION)
2155 : SSL_set_min_proto_version(ssl, TLS1_1_VERSION);
2156}
2157static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) {
2158 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002159 : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
2160}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002161static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {
2162 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION)
2163 : SSL_set_min_proto_version(ssl, TLS1_2_VERSION);
2164}
2165static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002166#if SSL_OP_NO_TLSv1_3
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002167 c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION)
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002168 : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION);
2169#endif
2170}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002171static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {
2172#if SSL_OP_NO_TLSv1_3
2173 c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION)
2174 : SSL_set_min_proto_version(ssl, TLS1_3_VERSION);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002175#endif
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002176}
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002177#endif
2178static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { }
2179static void ssl_set_None_func(SSL *ssl, set_context_func c) { }
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002180
2181static struct {
2182 int option;
2183 uint16_t flag;
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002184 void (*ctx_set_version)(SSL_CTX *, set_context_func);
2185 void (*ssl_set_version)(SSL *, set_context_func);
Emmanuel Hocdetecb0e232017-05-18 11:56:58 +02002186 const char *name;
2187} methodVersions[] = {
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02002188 {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */
2189 {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */
2190 {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */
2191 {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */
2192 {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */
2193 {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 +02002194};
2195
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002196static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx)
2197{
2198 SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk);
2199 SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx)));
2200 SSL_set_SSL_CTX(ssl, ctx);
2201}
2202
Willy Tarreau5db847a2019-05-09 14:13:35 +02002203#if ((HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(OPENSSL_IS_BORINGSSL))
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002204
2205static int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv)
2206{
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002207 struct bind_conf *s = priv;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002208 (void)al; /* shut gcc stupid warning */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002209
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002210 if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs)
2211 return SSL_TLSEXT_ERR_OK;
2212 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002213}
2214
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002215#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002216static int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx)
2217{
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002218 SSL *ssl = ctx->ssl;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002219#else
2220static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg)
2221{
2222#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002223 struct connection *conn;
2224 struct bind_conf *s;
2225 const uint8_t *extension_data;
2226 size_t extension_len;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002227 int has_rsa_sig = 0, has_ecdsa_sig = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002228
2229 char *wildp = NULL;
2230 const uint8_t *servername;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002231 size_t servername_len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002232 struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL;
Olivier Houchardc2aae742017-09-22 18:26:28 +02002233 int allow_early = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002234 int i;
2235
Thierry FOURNIER28962c92018-06-17 21:37:05 +02002236 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Willy Tarreaua8825522018-10-15 13:20:07 +02002237 s = __objt_listener(conn->target)->bind_conf;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002238
Olivier Houchard9679ac92017-10-27 14:58:08 +02002239 if (s->ssl_conf.early_data)
Olivier Houchardc2aae742017-09-22 18:26:28 +02002240 allow_early = 1;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002241#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002242 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name,
2243 &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002244#else
2245 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) {
2246#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002247 /*
2248 * The server_name extension was given too much extensibility when it
2249 * was written, so parsing the normal case is a bit complex.
2250 */
2251 size_t len;
2252 if (extension_len <= 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002253 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002254 /* Extract the length of the supplied list of names. */
2255 len = (*extension_data++) << 8;
2256 len |= *extension_data++;
2257 if (len + 2 != extension_len)
2258 goto abort;
2259 /*
2260 * The list in practice only has a single element, so we only consider
2261 * the first one.
2262 */
2263 if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name)
2264 goto abort;
2265 extension_len = len - 1;
2266 /* Now we can finally pull out the byte array with the actual hostname. */
2267 if (extension_len <= 2)
2268 goto abort;
2269 len = (*extension_data++) << 8;
2270 len |= *extension_data++;
2271 if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name
2272 || memchr(extension_data, 0, len) != NULL)
2273 goto abort;
2274 servername = extension_data;
2275 servername_len = len;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002276 } else {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002277#if (!defined SSL_NO_GENERATE_CERTIFICATES)
2278 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02002279 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002280 }
2281#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002282 /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002283 if (!s->strict_sni) {
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002284 ssl_sock_switchctx_set(ssl, s->default_ctx);
Olivier Houchardc2aae742017-09-22 18:26:28 +02002285 goto allow_early;
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002286 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002287 goto abort;
2288 }
2289
2290 /* extract/check clientHello informations */
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002291#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002292 if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002293#else
2294 if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) {
2295#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002296 uint8_t sign;
2297 size_t len;
2298 if (extension_len < 2)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002299 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002300 len = (*extension_data++) << 8;
2301 len |= *extension_data++;
2302 if (len + 2 != extension_len)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002303 goto abort;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002304 if (len % 2 != 0)
2305 goto abort;
2306 for (; len > 0; len -= 2) {
2307 extension_data++; /* hash */
2308 sign = *extension_data++;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002309 switch (sign) {
2310 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002311 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002312 break;
2313 case TLSEXT_signature_ecdsa:
2314 has_ecdsa_sig = 1;
2315 break;
2316 default:
2317 continue;
2318 }
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002319 if (has_ecdsa_sig && has_rsa_sig)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002320 break;
2321 }
2322 } else {
Bertrand Jacquina25282b2018-08-14 00:56:13 +01002323 /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002324 has_rsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002325 }
2326 if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002327 const SSL_CIPHER *cipher;
2328 size_t len;
2329 const uint8_t *cipher_suites;
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002330 has_ecdsa_sig = 0;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002331#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002332 len = ctx->cipher_suites_len;
2333 cipher_suites = ctx->cipher_suites;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002334#else
2335 len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites);
2336#endif
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002337 if (len % 2 != 0)
2338 goto abort;
2339 for (; len != 0; len -= 2, cipher_suites += 2) {
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002340#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002341 uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002342 cipher = SSL_get_cipher_by_value(cipher_suite);
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002343#else
2344 cipher = SSL_CIPHER_find(ssl, cipher_suites);
2345#endif
Emmanuel Hocdet019f9b12017-10-02 17:12:06 +02002346 if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) {
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002347 has_ecdsa_sig = 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002348 break;
2349 }
2350 }
2351 }
2352
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002353 for (i = 0; i < trash.size && i < servername_len; i++) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002354 trash.area[i] = tolower(servername[i]);
2355 if (!wildp && (trash.area[i] == '.'))
2356 wildp = &trash.area[i];
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002357 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002358 trash.area[i] = 0;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002359
2360 /* lookup in full qualified names */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002361 node = ebst_lookup(&s->sni_ctx, trash.area);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002362
2363 /* lookup a not neg filter */
2364 for (n = node; n; n = ebmb_next_dup(n)) {
2365 if (!container_of(n, struct sni_ctx, name)->neg) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002366 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002367 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002368 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002369 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002370 break;
2371 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002372 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002373 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002374 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002375 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002376 if (!node_anonymous)
2377 node_anonymous = n;
2378 break;
2379 }
2380 }
2381 }
2382 if (wildp) {
2383 /* lookup in wildcards names */
2384 node = ebst_lookup(&s->sni_w_ctx, wildp);
2385 for (n = node; n; n = ebmb_next_dup(n)) {
2386 if (!container_of(n, struct sni_ctx, name)->neg) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002387 switch(container_of(n, struct sni_ctx, name)->kinfo.sig) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002388 case TLSEXT_signature_ecdsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002389 if (!node_ecdsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002390 node_ecdsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002391 break;
2392 case TLSEXT_signature_rsa:
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002393 if (!node_rsa)
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002394 node_rsa = n;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002395 break;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002396 default: /* TLSEXT_signature_anonymous|dsa */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002397 if (!node_anonymous)
2398 node_anonymous = n;
2399 break;
2400 }
2401 }
2402 }
2403 }
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002404 /* select by key_signature priority order */
Emmanuel Hocdet9f9b0c62018-09-03 16:29:16 +02002405 node = (has_ecdsa_sig && node_ecdsa) ? node_ecdsa
2406 : ((has_rsa_sig && node_rsa) ? node_rsa
2407 : (node_anonymous ? node_anonymous
2408 : (node_ecdsa ? node_ecdsa /* no ecdsa signature case (< TLSv1.2) */
2409 : node_rsa /* no rsa signature case (far far away) */
2410 )));
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002411 if (node) {
2412 /* switch ctx */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02002413 struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf;
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002414 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
Olivier Houchard35a63cc2017-11-02 19:04:38 +01002415 if (conf) {
2416 methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN);
2417 methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX);
2418 if (conf->early_data)
2419 allow_early = 1;
2420 }
2421 goto allow_early;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002422 }
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002423#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002424 if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) {
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002425 /* switch ctx done in ssl_sock_generate_certificate */
Olivier Houchardc2aae742017-09-22 18:26:28 +02002426 goto allow_early;
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002427 }
2428#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002429 if (!s->strict_sni) {
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002430 /* no certificate match, is the default_ctx */
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002431 ssl_sock_switchctx_set(ssl, s->default_ctx);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002432 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02002433allow_early:
2434#ifdef OPENSSL_IS_BORINGSSL
2435 if (allow_early)
2436 SSL_set_early_data_enabled(ssl, 1);
2437#else
2438 if (!allow_early)
2439 SSL_set_max_early_data(ssl, 0);
2440#endif
2441 return 1;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002442 abort:
2443 /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */
2444 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002445#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet48e87552017-08-16 11:28:44 +02002446 return ssl_select_cert_error;
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02002447#else
2448 *al = SSL_AD_UNRECOGNIZED_NAME;
2449 return 0;
2450#endif
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002451}
2452
2453#else /* OPENSSL_IS_BORINGSSL */
2454
Emeric Brunfc0421f2012-09-07 17:30:07 +02002455/* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a
2456 * warning when no match is found, which implies the default (first) cert
2457 * will keep being used.
2458 */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002459static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv)
Emeric Brunfc0421f2012-09-07 17:30:07 +02002460{
2461 const char *servername;
2462 const char *wildp = NULL;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002463 struct ebmb_node *node, *n;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002464 struct bind_conf *s = priv;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002465 int i;
2466 (void)al; /* shut gcc stupid warning */
2467
2468 servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002469 if (!servername) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002470#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002471 if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl))
2472 return SSL_TLSEXT_ERR_OK;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002473#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002474 if (s->strict_sni)
2475 return SSL_TLSEXT_ERR_ALERT_FATAL;
2476 ssl_sock_switchctx_set(ssl, s->default_ctx);
2477 return SSL_TLSEXT_ERR_NOACK;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002478 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02002479
Willy Tarreau19d14ef2012-10-29 16:51:55 +01002480 for (i = 0; i < trash.size; i++) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02002481 if (!servername[i])
2482 break;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002483 trash.area[i] = tolower(servername[i]);
2484 if (!wildp && (trash.area[i] == '.'))
2485 wildp = &trash.area[i];
Emeric Brunfc0421f2012-09-07 17:30:07 +02002486 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002487 trash.area[i] = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002488
2489 /* lookup in full qualified names */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002490 node = ebst_lookup(&s->sni_ctx, trash.area);
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002491
2492 /* lookup a not neg filter */
2493 for (n = node; n; n = ebmb_next_dup(n)) {
2494 if (!container_of(n, struct sni_ctx, name)->neg) {
2495 node = n;
2496 break;
Emmanuel Hocdet65623372013-01-24 17:17:15 +01002497 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002498 }
2499 if (!node && wildp) {
2500 /* lookup in wildcards names */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002501 node = ebst_lookup(&s->sni_w_ctx, wildp);
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002502 }
2503 if (!node || container_of(node, struct sni_ctx, name)->neg) {
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002504#if (!defined SSL_NO_GENERATE_CERTIFICATES)
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02002505 if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) {
2506 /* switch ctx done in ssl_sock_generate_certificate */
Christopher Faulet31af49d2015-06-09 17:29:50 +02002507 return SSL_TLSEXT_ERR_OK;
2508 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01002509#endif
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01002510 if (s->strict_sni)
2511 return SSL_TLSEXT_ERR_ALERT_FATAL;
2512 ssl_sock_switchctx_set(ssl, s->default_ctx);
2513 return SSL_TLSEXT_ERR_OK;
Emeric Brunfc0421f2012-09-07 17:30:07 +02002514 }
2515
2516 /* switch ctx */
Emmanuel Hocdet530141f2017-03-01 18:54:56 +01002517 ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02002518 return SSL_TLSEXT_ERR_OK;
2519}
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002520#endif /* (!) OPENSSL_IS_BORINGSSL */
Emeric Brunfc0421f2012-09-07 17:30:07 +02002521#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
2522
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002523#ifndef OPENSSL_NO_DH
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002524
2525static DH * ssl_get_dh_1024(void)
2526{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002527 static unsigned char dh1024_p[]={
2528 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7,
2529 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3,
2530 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9,
2531 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96,
2532 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D,
2533 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17,
2534 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B,
2535 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94,
2536 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC,
2537 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E,
2538 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B,
2539 };
2540 static unsigned char dh1024_g[]={
2541 0x02,
2542 };
2543
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002544 BIGNUM *p;
2545 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002546 DH *dh = DH_new();
2547 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002548 p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL);
2549 g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002550
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002551 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002552 DH_free(dh);
2553 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002554 } else {
2555 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002556 }
2557 }
2558 return dh;
2559}
2560
2561static DH *ssl_get_dh_2048(void)
2562{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002563 static unsigned char dh2048_p[]={
2564 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59,
2565 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24,
2566 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66,
2567 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10,
2568 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B,
2569 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23,
2570 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC,
2571 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E,
2572 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77,
2573 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A,
2574 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66,
2575 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74,
2576 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E,
2577 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40,
2578 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93,
2579 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43,
2580 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88,
2581 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1,
2582 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17,
2583 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB,
2584 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41,
2585 0xB7,0x1F,0x77,0xF3,
2586 };
2587 static unsigned char dh2048_g[]={
2588 0x02,
2589 };
2590
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002591 BIGNUM *p;
2592 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002593 DH *dh = DH_new();
2594 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002595 p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL);
2596 g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002597
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002598 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002599 DH_free(dh);
2600 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002601 } else {
2602 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002603 }
2604 }
2605 return dh;
2606}
2607
2608static DH *ssl_get_dh_4096(void)
2609{
Remi Gacogned3a341a2015-05-29 16:26:17 +02002610 static unsigned char dh4096_p[]={
2611 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11,
2612 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68,
2613 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD,
2614 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B,
2615 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B,
2616 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47,
2617 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15,
2618 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35,
2619 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79,
2620 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3,
2621 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC,
2622 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52,
2623 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C,
2624 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A,
2625 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41,
2626 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55,
2627 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52,
2628 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66,
2629 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E,
2630 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47,
2631 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2,
2632 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73,
2633 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13,
2634 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10,
2635 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14,
2636 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD,
2637 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E,
2638 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48,
2639 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01,
2640 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60,
2641 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC,
2642 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41,
2643 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8,
2644 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B,
2645 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23,
2646 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE,
2647 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD,
2648 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03,
2649 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08,
2650 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5,
2651 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F,
2652 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67,
2653 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B,
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002654 };
Remi Gacogned3a341a2015-05-29 16:26:17 +02002655 static unsigned char dh4096_g[]={
2656 0x02,
2657 };
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002658
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002659 BIGNUM *p;
2660 BIGNUM *g;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002661 DH *dh = DH_new();
2662 if (dh) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002663 p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL);
2664 g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL);
Remi Gacogned3a341a2015-05-29 16:26:17 +02002665
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002666 if (!p || !g) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002667 DH_free(dh);
2668 dh = NULL;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002669 } else {
2670 DH_set0_pqg(dh, p, NULL, g);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002671 }
2672 }
2673 return dh;
2674}
2675
2676/* Returns Diffie-Hellman parameters matching the private key length
Willy Tarreauef934602016-12-22 23:12:01 +01002677 but not exceeding global_ssl.default_dh_param */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002678static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen)
2679{
2680 DH *dh = NULL;
2681 EVP_PKEY *pkey = SSL_get_privatekey(ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02002682 int type;
2683
2684 type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002685
2686 /* The keylen supplied by OpenSSL can only be 512 or 1024.
2687 See ssl3_send_server_key_exchange() in ssl/s3_srvr.c
2688 */
2689 if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) {
2690 keylen = EVP_PKEY_bits(pkey);
2691 }
2692
Willy Tarreauef934602016-12-22 23:12:01 +01002693 if (keylen > global_ssl.default_dh_param) {
2694 keylen = global_ssl.default_dh_param;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002695 }
2696
Remi Gacogned3a341a2015-05-29 16:26:17 +02002697 if (keylen >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002698 dh = local_dh_4096;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002699 }
2700 else if (keylen >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02002701 dh = local_dh_2048;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002702 }
2703 else {
Remi Gacogne8de54152014-07-15 11:36:40 +02002704 dh = local_dh_1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002705 }
2706
2707 return dh;
2708}
2709
Remi Gacogne47783ef2015-05-29 15:53:22 +02002710static DH * ssl_sock_get_dh_from_file(const char *filename)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002711{
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002712 DH *dh = NULL;
Remi Gacogne47783ef2015-05-29 15:53:22 +02002713 BIO *in = BIO_new(BIO_s_file());
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002714
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002715 if (in == NULL)
2716 goto end;
2717
Remi Gacogne47783ef2015-05-29 15:53:22 +02002718 if (BIO_read_filename(in, filename) <= 0)
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002719 goto end;
2720
Remi Gacogne47783ef2015-05-29 15:53:22 +02002721 dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL);
2722
2723end:
2724 if (in)
2725 BIO_free(in);
2726
Emeric Brune1b4ed42018-08-16 15:14:12 +02002727 ERR_clear_error();
2728
Remi Gacogne47783ef2015-05-29 15:53:22 +02002729 return dh;
2730}
2731
2732int ssl_sock_load_global_dh_param_from_file(const char *filename)
2733{
2734 global_dh = ssl_sock_get_dh_from_file(filename);
2735
2736 if (global_dh) {
2737 return 0;
2738 }
2739
2740 return -1;
2741}
2742
2743/* Loads Diffie-Hellman parameter from a file. Returns 1 if loaded, else -1
Joseph Herlant017b3da2018-11-15 09:07:59 -08002744 if an error occurred, and 0 if parameter not found. */
Remi Gacogne47783ef2015-05-29 15:53:22 +02002745int ssl_sock_load_dh_params(SSL_CTX *ctx, const char *file)
2746{
2747 int ret = -1;
2748 DH *dh = ssl_sock_get_dh_from_file(file);
2749
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002750 if (dh) {
2751 ret = 1;
2752 SSL_CTX_set_tmp_dh(ctx, dh);
Remi Gacogne4f902b82015-05-28 16:23:00 +02002753
2754 if (ssl_dh_ptr_index >= 0) {
2755 /* store a pointer to the DH params to avoid complaining about
2756 ssl-default-dh-param not being set for this SSL_CTX */
2757 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh);
2758 }
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002759 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02002760 else if (global_dh) {
2761 SSL_CTX_set_tmp_dh(ctx, global_dh);
2762 ret = 0; /* DH params not found */
2763 }
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002764 else {
Emeric Brun41fdb3c2013-04-26 11:05:44 +02002765 /* Clear openssl global errors stack */
2766 ERR_clear_error();
2767
Willy Tarreauef934602016-12-22 23:12:01 +01002768 if (global_ssl.default_dh_param <= 1024) {
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002769 /* we are limited to DH parameter of 1024 bits anyway */
Remi Gacognec7e12632016-07-02 16:26:10 +02002770 if (local_dh_1024 == NULL)
2771 local_dh_1024 = ssl_get_dh_1024();
2772
Remi Gacogne8de54152014-07-15 11:36:40 +02002773 if (local_dh_1024 == NULL)
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002774 goto end;
Willy Tarreau6e774b42014-04-25 21:35:23 +02002775
Remi Gacogne8de54152014-07-15 11:36:40 +02002776 SSL_CTX_set_tmp_dh(ctx, local_dh_1024);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02002777 }
2778 else {
2779 SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh);
2780 }
Willy Tarreau6e774b42014-04-25 21:35:23 +02002781
Emeric Brun41fdb3c2013-04-26 11:05:44 +02002782 ret = 0; /* DH params not found */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002783 }
Emeric Brun644cde02012-12-14 11:21:13 +01002784
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002785end:
2786 if (dh)
2787 DH_free(dh);
2788
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02002789 return ret;
2790}
2791#endif
2792
Emmanuel Hocdet05942112017-02-20 16:11:50 +01002793static int ssl_sock_add_cert_sni(SSL_CTX *ctx, struct bind_conf *s, struct ssl_bind_conf *conf,
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002794 struct pkey_info kinfo, char *name, int order)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002795{
2796 struct sni_ctx *sc;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002797 int wild = 0, neg = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002798 struct ebmb_node *node;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002799
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002800 if (*name == '!') {
2801 neg = 1;
2802 name++;
2803 }
2804 if (*name == '*') {
2805 wild = 1;
2806 name++;
2807 }
2808 /* !* filter is a nop */
2809 if (neg && wild)
2810 return order;
2811 if (*name) {
2812 int j, len;
2813 len = strlen(name);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002814 for (j = 0; j < len && j < trash.size; j++)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002815 trash.area[j] = tolower(name[j]);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002816 if (j >= trash.size)
2817 return order;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002818 trash.area[j] = 0;
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002819
2820 /* Check for duplicates. */
2821 if (wild)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002822 node = ebst_lookup(&s->sni_w_ctx, trash.area);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002823 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002824 node = ebst_lookup(&s->sni_ctx, trash.area);
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002825 for (; node; node = ebmb_next_dup(node)) {
2826 sc = ebmb_entry(node, struct sni_ctx, name);
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002827 if (sc->ctx == ctx && sc->conf == conf && sc->neg == neg)
Thierry FOURNIER / OZON.IO07c3d782016-10-06 10:56:48 +02002828 return order;
2829 }
2830
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002831 sc = malloc(sizeof(struct sni_ctx) + len + 1);
Thierry FOURNIER / OZON.IO7a3bd3b2016-10-06 10:35:29 +02002832 if (!sc)
2833 return order;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002834 memcpy(sc->name.key, trash.area, len + 1);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002835 sc->ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01002836 sc->conf = conf;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02002837 sc->kinfo = kinfo;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02002838 sc->order = order++;
2839 sc->neg = neg;
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01002840 if (kinfo.sig != TLSEXT_signature_anonymous)
2841 SSL_CTX_set_ex_data(ctx, ssl_pkey_info_index, &sc->kinfo);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01002842 if (wild)
2843 ebst_insert(&s->sni_w_ctx, &sc->name);
2844 else
2845 ebst_insert(&s->sni_ctx, &sc->name);
2846 }
2847 return order;
2848}
2849
yanbzhu488a4d22015-12-01 15:16:07 -05002850
2851/* The following code is used for loading multiple crt files into
2852 * SSL_CTX's based on CN/SAN
2853 */
Willy Tarreau5db847a2019-05-09 14:13:35 +02002854#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
yanbzhu488a4d22015-12-01 15:16:07 -05002855/* This is used to preload the certifcate, private key
2856 * and Cert Chain of a file passed in via the crt
2857 * argument
2858 *
2859 * This way, we do not have to read the file multiple times
2860 */
2861struct cert_key_and_chain {
2862 X509 *cert;
2863 EVP_PKEY *key;
2864 unsigned int num_chain_certs;
2865 /* This is an array of X509 pointers */
2866 X509 **chain_certs;
2867};
2868
yanbzhu08ce6ab2015-12-02 13:01:29 -05002869#define SSL_SOCK_POSSIBLE_KT_COMBOS (1<<(SSL_SOCK_NUM_KEYTYPES))
2870
2871struct key_combo_ctx {
2872 SSL_CTX *ctx;
2873 int order;
2874};
2875
2876/* Map used for processing multiple keypairs for a single purpose
2877 *
2878 * This maps CN/SNI name to certificate type
2879 */
2880struct sni_keytype {
2881 int keytypes; /* BITMASK for keytypes */
2882 struct ebmb_node name; /* node holding the servername value */
2883};
2884
2885
yanbzhu488a4d22015-12-01 15:16:07 -05002886/* Frees the contents of a cert_key_and_chain
2887 */
2888static void ssl_sock_free_cert_key_and_chain_contents(struct cert_key_and_chain *ckch)
2889{
2890 int i;
2891
2892 if (!ckch)
2893 return;
2894
2895 /* Free the certificate and set pointer to NULL */
2896 if (ckch->cert)
2897 X509_free(ckch->cert);
2898 ckch->cert = NULL;
2899
2900 /* Free the key and set pointer to NULL */
2901 if (ckch->key)
2902 EVP_PKEY_free(ckch->key);
2903 ckch->key = NULL;
2904
2905 /* Free each certificate in the chain */
2906 for (i = 0; i < ckch->num_chain_certs; i++) {
2907 if (ckch->chain_certs[i])
2908 X509_free(ckch->chain_certs[i]);
2909 }
2910
2911 /* Free the chain obj itself and set to NULL */
2912 if (ckch->num_chain_certs > 0) {
2913 free(ckch->chain_certs);
2914 ckch->num_chain_certs = 0;
2915 ckch->chain_certs = NULL;
2916 }
2917
2918}
2919
2920/* checks if a key and cert exists in the ckch
2921 */
2922static int ssl_sock_is_ckch_valid(struct cert_key_and_chain *ckch)
2923{
2924 return (ckch->cert != NULL && ckch->key != NULL);
2925}
2926
2927
2928/* Loads the contents of a crt file (path) into a cert_key_and_chain
2929 * This allows us to carry the contents of the file without having to
2930 * read the file multiple times.
2931 *
2932 * returns:
2933 * 0 on Success
2934 * 1 on SSL Failure
2935 * 2 on file not found
2936 */
2937static int ssl_sock_load_crt_file_into_ckch(const char *path, struct cert_key_and_chain *ckch, char **err)
2938{
2939
2940 BIO *in;
2941 X509 *ca = NULL;
2942 int ret = 1;
2943
2944 ssl_sock_free_cert_key_and_chain_contents(ckch);
2945
2946 in = BIO_new(BIO_s_file());
2947 if (in == NULL)
2948 goto end;
2949
2950 if (BIO_read_filename(in, path) <= 0)
2951 goto end;
2952
yanbzhu488a4d22015-12-01 15:16:07 -05002953 /* Read Private Key */
2954 ckch->key = PEM_read_bio_PrivateKey(in, NULL, NULL, NULL);
2955 if (ckch->key == NULL) {
2956 memprintf(err, "%sunable to load private key from file '%s'.\n",
2957 err && *err ? *err : "", path);
2958 goto end;
2959 }
2960
Willy Tarreaubb137a82016-04-06 19:02:38 +02002961 /* Seek back to beginning of file */
Thierry FOURNIER / OZON.IOd44ea3f2016-10-14 00:49:21 +02002962 if (BIO_reset(in) == -1) {
2963 memprintf(err, "%san error occurred while reading the file '%s'.\n",
2964 err && *err ? *err : "", path);
2965 goto end;
2966 }
Willy Tarreaubb137a82016-04-06 19:02:38 +02002967
2968 /* Read Certificate */
2969 ckch->cert = PEM_read_bio_X509_AUX(in, NULL, NULL, NULL);
2970 if (ckch->cert == NULL) {
2971 memprintf(err, "%sunable to load certificate from file '%s'.\n",
2972 err && *err ? *err : "", path);
2973 goto end;
2974 }
2975
yanbzhu488a4d22015-12-01 15:16:07 -05002976 /* Read Certificate Chain */
2977 while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) {
2978 /* Grow the chain certs */
2979 ckch->num_chain_certs++;
2980 ckch->chain_certs = realloc(ckch->chain_certs, (ckch->num_chain_certs * sizeof(X509 *)));
2981
2982 /* use - 1 here since we just incremented it above */
2983 ckch->chain_certs[ckch->num_chain_certs - 1] = ca;
2984 }
2985 ret = ERR_get_error();
2986 if (ret && (ERR_GET_LIB(ret) != ERR_LIB_PEM && ERR_GET_REASON(ret) != PEM_R_NO_START_LINE)) {
2987 memprintf(err, "%sunable to load certificate chain from file '%s'.\n",
2988 err && *err ? *err : "", path);
2989 ret = 1;
2990 goto end;
2991 }
2992
2993 ret = 0;
2994
2995end:
2996
2997 ERR_clear_error();
2998 if (in)
2999 BIO_free(in);
3000
3001 /* Something went wrong in one of the reads */
3002 if (ret != 0)
3003 ssl_sock_free_cert_key_and_chain_contents(ckch);
3004
3005 return ret;
3006}
3007
3008/* Loads the info in ckch into ctx
3009 * Currently, this does not process any information about ocsp, dhparams or
3010 * sctl
3011 * Returns
3012 * 0 on success
3013 * 1 on failure
3014 */
3015static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err)
3016{
3017 int i = 0;
3018
3019 if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) {
3020 memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n",
3021 err && *err ? *err : "", path);
3022 return 1;
3023 }
3024
3025 if (!SSL_CTX_use_certificate(ctx, ckch->cert)) {
3026 memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n",
3027 err && *err ? *err : "", path);
3028 return 1;
3029 }
3030
yanbzhu488a4d22015-12-01 15:16:07 -05003031 /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */
3032 for (i = 0; i < ckch->num_chain_certs; i++) {
3033 if (!SSL_CTX_add1_chain_cert(ctx, ckch->chain_certs[i])) {
yanbzhu08ce6ab2015-12-02 13:01:29 -05003034 memprintf(err, "%sunable to load chain certificate #%d into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n",
3035 err && *err ? *err : "", (i+1), path);
yanbzhu488a4d22015-12-01 15:16:07 -05003036 return 1;
3037 }
3038 }
3039
3040 if (SSL_CTX_check_private_key(ctx) <= 0) {
3041 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3042 err && *err ? *err : "", path);
3043 return 1;
3044 }
3045
3046 return 0;
3047}
3048
yanbzhu08ce6ab2015-12-02 13:01:29 -05003049
3050static void ssl_sock_populate_sni_keytypes_hplr(const char *str, struct eb_root *sni_keytypes, int key_index)
3051{
3052 struct sni_keytype *s_kt = NULL;
3053 struct ebmb_node *node;
3054 int i;
3055
3056 for (i = 0; i < trash.size; i++) {
3057 if (!str[i])
3058 break;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003059 trash.area[i] = tolower(str[i]);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003060 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003061 trash.area[i] = 0;
3062 node = ebst_lookup(sni_keytypes, trash.area);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003063 if (!node) {
3064 /* CN not found in tree */
3065 s_kt = malloc(sizeof(struct sni_keytype) + i + 1);
3066 /* Using memcpy here instead of strncpy.
3067 * strncpy will cause sig_abrt errors under certain versions of gcc with -O2
3068 * See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=60792
3069 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003070 memcpy(s_kt->name.key, trash.area, i+1);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003071 s_kt->keytypes = 0;
3072 ebst_insert(sni_keytypes, &s_kt->name);
3073 } else {
3074 /* CN found in tree */
3075 s_kt = container_of(node, struct sni_keytype, name);
3076 }
3077
3078 /* Mark that this CN has the keytype of key_index via keytypes mask */
3079 s_kt->keytypes |= 1<<key_index;
3080
3081}
3082
3083
3084/* Given a path that does not exist, try to check for path.rsa, path.dsa and path.ecdsa files.
3085 * If any are found, group these files into a set of SSL_CTX*
3086 * based on shared and unique CN and SAN entries. Add these SSL_CTX* to the SNI tree.
3087 *
Joseph Herlant017b3da2018-11-15 09:07:59 -08003088 * This will allow the user to explicitly group multiple cert/keys for a single purpose
yanbzhu08ce6ab2015-12-02 13:01:29 -05003089 *
3090 * Returns
3091 * 0 on success
3092 * 1 on failure
3093 */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003094static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
3095 char **sni_filter, int fcount, char **err)
yanbzhu08ce6ab2015-12-02 13:01:29 -05003096{
3097 char fp[MAXPATHLEN+1] = {0};
3098 int n = 0;
3099 int i = 0;
3100 struct cert_key_and_chain certs_and_keys[SSL_SOCK_NUM_KEYTYPES] = { {0} };
3101 struct eb_root sni_keytypes_map = { {0} };
3102 struct ebmb_node *node;
3103 struct ebmb_node *next;
3104 /* Array of SSL_CTX pointers corresponding to each possible combo
3105 * of keytypes
3106 */
3107 struct key_combo_ctx key_combos[SSL_SOCK_POSSIBLE_KT_COMBOS] = { {0} };
3108 int rv = 0;
3109 X509_NAME *xname = NULL;
3110 char *str = NULL;
3111#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3112 STACK_OF(GENERAL_NAME) *names = NULL;
3113#endif
3114
3115 /* Load all possible certs and keys */
3116 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3117 struct stat buf;
3118
3119 snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3120 if (stat(fp, &buf) == 0) {
3121 if (ssl_sock_load_crt_file_into_ckch(fp, &certs_and_keys[n], err) == 1) {
3122 rv = 1;
3123 goto end;
3124 }
3125 }
3126 }
3127
3128 /* Process each ckch and update keytypes for each CN/SAN
3129 * for example, if CN/SAN www.a.com is associated with
3130 * certs with keytype 0 and 2, then at the end of the loop,
3131 * www.a.com will have:
3132 * keyindex = 0 | 1 | 4 = 5
3133 */
3134 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3135
3136 if (!ssl_sock_is_ckch_valid(&certs_and_keys[n]))
3137 continue;
3138
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003139 if (fcount) {
Willy Tarreau24b892f2016-06-20 23:01:57 +02003140 for (i = 0; i < fcount; i++)
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003141 ssl_sock_populate_sni_keytypes_hplr(sni_filter[i], &sni_keytypes_map, n);
3142 } else {
3143 /* A lot of the following code is OpenSSL boilerplate for processing CN's and SAN's,
3144 * so the line that contains logic is marked via comments
3145 */
3146 xname = X509_get_subject_name(certs_and_keys[n].cert);
3147 i = -1;
3148 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3149 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003150 ASN1_STRING *value;
3151 value = X509_NAME_ENTRY_get_data(entry);
3152 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003153 /* Important line is here */
3154 ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003155
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003156 OPENSSL_free(str);
3157 str = NULL;
3158 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003159 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003160
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003161 /* Do the above logic for each SAN */
yanbzhu08ce6ab2015-12-02 13:01:29 -05003162#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003163 names = X509_get_ext_d2i(certs_and_keys[n].cert, NID_subject_alt_name, NULL, NULL);
3164 if (names) {
3165 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3166 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003167
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003168 if (name->type == GEN_DNS) {
3169 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
3170 /* Important line is here */
3171 ssl_sock_populate_sni_keytypes_hplr(str, &sni_keytypes_map, n);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003172
Emmanuel Hocdetd294aea2016-05-13 11:14:06 +02003173 OPENSSL_free(str);
3174 str = NULL;
3175 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003176 }
3177 }
3178 }
3179 }
3180#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
3181 }
3182
3183 /* If no files found, return error */
3184 if (eb_is_empty(&sni_keytypes_map)) {
3185 memprintf(err, "%sunable to load SSL certificate file '%s' file does not exist.\n",
3186 err && *err ? *err : "", path);
3187 rv = 1;
3188 goto end;
3189 }
3190
3191 /* We now have a map of CN/SAN to keytypes that are loaded in
3192 * Iterate through the map to create the SSL_CTX's (if needed)
3193 * and add each CTX to the SNI tree
3194 *
3195 * Some math here:
Joseph Herlant017b3da2018-11-15 09:07:59 -08003196 * There are 2^n - 1 possible combinations, each unique
yanbzhu08ce6ab2015-12-02 13:01:29 -05003197 * combination is denoted by the key in the map. Each key
3198 * has a value between 1 and 2^n - 1. Conveniently, the array
3199 * of SSL_CTX* is sized 2^n. So, we can simply use the i'th
3200 * entry in the array to correspond to the unique combo (key)
3201 * associated with i. This unique key combo (i) will be associated
3202 * with combos[i-1]
3203 */
3204
3205 node = ebmb_first(&sni_keytypes_map);
3206 while (node) {
3207 SSL_CTX *cur_ctx;
Bertrand Jacquin33423092016-11-13 16:37:13 +00003208 char cur_file[MAXPATHLEN+1];
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003209 const struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
yanbzhu08ce6ab2015-12-02 13:01:29 -05003210
3211 str = (char *)container_of(node, struct sni_keytype, name)->name.key;
3212 i = container_of(node, struct sni_keytype, name)->keytypes;
3213 cur_ctx = key_combos[i-1].ctx;
3214
3215 if (cur_ctx == NULL) {
3216 /* need to create SSL_CTX */
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003217 cur_ctx = SSL_CTX_new(SSLv23_server_method());
yanbzhu08ce6ab2015-12-02 13:01:29 -05003218 if (cur_ctx == NULL) {
3219 memprintf(err, "%sunable to allocate SSL context.\n",
3220 err && *err ? *err : "");
3221 rv = 1;
3222 goto end;
3223 }
3224
yanbzhube2774d2015-12-10 15:07:30 -05003225 /* Load all required certs/keys/chains/OCSPs info into SSL_CTX */
yanbzhu08ce6ab2015-12-02 13:01:29 -05003226 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) {
3227 if (i & (1<<n)) {
3228 /* Key combo contains ckch[n] */
Bertrand Jacquin33423092016-11-13 16:37:13 +00003229 snprintf(cur_file, MAXPATHLEN+1, "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]);
3230 if (ssl_sock_put_ckch_into_ctx(cur_file, &certs_and_keys[n], cur_ctx, err) != 0) {
yanbzhu08ce6ab2015-12-02 13:01:29 -05003231 SSL_CTX_free(cur_ctx);
3232 rv = 1;
3233 goto end;
3234 }
yanbzhube2774d2015-12-10 15:07:30 -05003235
3236#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
3237 /* Load OCSP Info into context */
Bertrand Jacquin33423092016-11-13 16:37:13 +00003238 if (ssl_sock_load_ocsp(cur_ctx, cur_file) < 0) {
yanbzhube2774d2015-12-10 15:07:30 -05003239 if (err)
3240 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",
Bertrand Jacquin5424ee02016-11-13 16:37:14 +00003241 *err ? *err : "", cur_file);
yanbzhube2774d2015-12-10 15:07:30 -05003242 SSL_CTX_free(cur_ctx);
3243 rv = 1;
3244 goto end;
3245 }
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02003246#elif (defined OPENSSL_IS_BORINGSSL)
3247 ssl_sock_set_ocsp_response_from_file(cur_ctx, cur_file);
yanbzhube2774d2015-12-10 15:07:30 -05003248#endif
yanbzhu08ce6ab2015-12-02 13:01:29 -05003249 }
3250 }
3251
3252 /* Load DH params into the ctx to support DHE keys */
3253#ifndef OPENSSL_NO_DH
3254 if (ssl_dh_ptr_index >= 0)
3255 SSL_CTX_set_ex_data(cur_ctx, ssl_dh_ptr_index, NULL);
3256
3257 rv = ssl_sock_load_dh_params(cur_ctx, NULL);
3258 if (rv < 0) {
3259 if (err)
3260 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3261 *err ? *err : "", path);
3262 rv = 1;
3263 goto end;
3264 }
3265#endif
3266
3267 /* Update key_combos */
3268 key_combos[i-1].ctx = cur_ctx;
3269 }
3270
3271 /* Update SNI Tree */
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003272 key_combos[i-1].order = ssl_sock_add_cert_sni(cur_ctx, bind_conf, ssl_conf,
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003273 kinfo, str, key_combos[i-1].order);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003274 node = ebmb_next(node);
3275 }
3276
3277
3278 /* Mark a default context if none exists, using the ctx that has the most shared keys */
3279 if (!bind_conf->default_ctx) {
3280 for (i = SSL_SOCK_POSSIBLE_KT_COMBOS - 1; i >= 0; i--) {
3281 if (key_combos[i].ctx) {
3282 bind_conf->default_ctx = key_combos[i].ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003283 bind_conf->default_ssl_conf = ssl_conf;
yanbzhu08ce6ab2015-12-02 13:01:29 -05003284 break;
3285 }
3286 }
3287 }
3288
3289end:
3290
3291 if (names)
3292 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
3293
3294 for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++)
3295 ssl_sock_free_cert_key_and_chain_contents(&certs_and_keys[n]);
3296
3297 node = ebmb_first(&sni_keytypes_map);
3298 while (node) {
3299 next = ebmb_next(node);
3300 ebmb_delete(node);
3301 node = next;
3302 }
3303
3304 return rv;
3305}
3306#else
3307/* This is a dummy, that just logs an error and returns error */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003308static int ssl_sock_load_multi_cert(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
3309 char **sni_filter, int fcount, char **err)
yanbzhu08ce6ab2015-12-02 13:01:29 -05003310{
3311 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3312 err && *err ? *err : "", path, strerror(errno));
3313 return 1;
3314}
3315
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003316#endif /* #if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL: Support for loading multiple certs into a single SSL_CTX */
yanbzhu488a4d22015-12-01 15:16:07 -05003317
Emeric Brunfc0421f2012-09-07 17:30:07 +02003318/* Loads a certificate key and CA chain from a file. Returns 0 on error, -1 if
3319 * an early error happens and the caller must call SSL_CTX_free() by itelf.
3320 */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003321static int ssl_sock_load_cert_chain_file(SSL_CTX *ctx, const char *file, struct bind_conf *s,
3322 struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003323{
3324 BIO *in;
3325 X509 *x = NULL, *ca;
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003326 int i, err;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003327 int ret = -1;
3328 int order = 0;
3329 X509_NAME *xname;
3330 char *str;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003331 pem_password_cb *passwd_cb;
3332 void *passwd_cb_userdata;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003333 EVP_PKEY *pkey;
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003334 struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 };
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003335
Emeric Brunfc0421f2012-09-07 17:30:07 +02003336#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3337 STACK_OF(GENERAL_NAME) *names;
3338#endif
3339
3340 in = BIO_new(BIO_s_file());
3341 if (in == NULL)
3342 goto end;
3343
3344 if (BIO_read_filename(in, file) <= 0)
3345 goto end;
3346
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003347
3348 passwd_cb = SSL_CTX_get_default_passwd_cb(ctx);
3349 passwd_cb_userdata = SSL_CTX_get_default_passwd_cb_userdata(ctx);
3350
3351 x = PEM_read_bio_X509_AUX(in, NULL, passwd_cb, passwd_cb_userdata);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003352 if (x == NULL)
3353 goto end;
3354
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003355 pkey = X509_get_pubkey(x);
3356 if (pkey) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003357 kinfo.bits = EVP_PKEY_bits(pkey);
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003358 switch(EVP_PKEY_base_id(pkey)) {
3359 case EVP_PKEY_RSA:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003360 kinfo.sig = TLSEXT_signature_rsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003361 break;
3362 case EVP_PKEY_EC:
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003363 kinfo.sig = TLSEXT_signature_ecdsa;
3364 break;
3365 case EVP_PKEY_DSA:
3366 kinfo.sig = TLSEXT_signature_dsa;
Emmanuel Hocdet05942112017-02-20 16:11:50 +01003367 break;
3368 }
3369 EVP_PKEY_free(pkey);
3370 }
3371
Emeric Brun50bcecc2013-04-22 13:05:23 +02003372 if (fcount) {
3373 while (fcount--)
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003374 order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, sni_filter[fcount], order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003375 }
3376 else {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003377#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003378 names = X509_get_ext_d2i(x, NID_subject_alt_name, NULL, NULL);
3379 if (names) {
3380 for (i = 0; i < sk_GENERAL_NAME_num(names); i++) {
3381 GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i);
3382 if (name->type == GEN_DNS) {
3383 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003384 order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003385 OPENSSL_free(str);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003386 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003387 }
3388 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003389 sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003390 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003391#endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003392 xname = X509_get_subject_name(x);
3393 i = -1;
3394 while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) {
3395 X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003396 ASN1_STRING *value;
3397
3398 value = X509_NAME_ENTRY_get_data(entry);
3399 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Emmanuel Hocdetddc090b2017-10-27 18:43:29 +02003400 order = ssl_sock_add_cert_sni(ctx, s, ssl_conf, kinfo, str, order);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003401 OPENSSL_free(str);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003402 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003403 }
3404 }
3405
3406 ret = 0; /* the caller must not free the SSL_CTX argument anymore */
3407 if (!SSL_CTX_use_certificate(ctx, x))
3408 goto end;
3409
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003410#ifdef SSL_CTX_clear_extra_chain_certs
3411 SSL_CTX_clear_extra_chain_certs(ctx);
3412#else
Emeric Brunfc0421f2012-09-07 17:30:07 +02003413 if (ctx->extra_certs != NULL) {
3414 sk_X509_pop_free(ctx->extra_certs, X509_free);
3415 ctx->extra_certs = NULL;
3416 }
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003417#endif
Emeric Brunfc0421f2012-09-07 17:30:07 +02003418
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02003419 while ((ca = PEM_read_bio_X509(in, NULL, passwd_cb, passwd_cb_userdata))) {
Emeric Brunfc0421f2012-09-07 17:30:07 +02003420 if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) {
3421 X509_free(ca);
3422 goto end;
3423 }
3424 }
3425
3426 err = ERR_get_error();
3427 if (!err || (ERR_GET_LIB(err) == ERR_LIB_PEM && ERR_GET_REASON(err) == PEM_R_NO_START_LINE)) {
3428 /* we successfully reached the last cert in the file */
3429 ret = 1;
3430 }
3431 ERR_clear_error();
3432
3433end:
3434 if (x)
3435 X509_free(x);
3436
3437 if (in)
3438 BIO_free(in);
3439
3440 return ret;
3441}
3442
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003443static int ssl_sock_load_cert_file(const char *path, struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf,
3444 char **sni_filter, int fcount, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003445{
3446 int ret;
3447 SSL_CTX *ctx;
3448
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003449 ctx = SSL_CTX_new(SSLv23_server_method());
Emeric Brunfc0421f2012-09-07 17:30:07 +02003450 if (!ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003451 memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n",
3452 err && *err ? *err : "", path);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003453 return 1;
3454 }
3455
3456 if (SSL_CTX_use_PrivateKey_file(ctx, path, SSL_FILETYPE_PEM) <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003457 memprintf(err, "%sunable to load SSL private key from PEM file '%s'.\n",
3458 err && *err ? *err : "", path);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003459 SSL_CTX_free(ctx);
3460 return 1;
3461 }
3462
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003463 ret = ssl_sock_load_cert_chain_file(ctx, path, bind_conf, ssl_conf, sni_filter, fcount);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003464 if (ret <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003465 memprintf(err, "%sunable to load SSL certificate from PEM file '%s'.\n",
3466 err && *err ? *err : "", path);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003467 if (ret < 0) /* serious error, must do that ourselves */
3468 SSL_CTX_free(ctx);
3469 return 1;
3470 }
Emeric Brun61694ab2012-10-26 13:35:33 +02003471
3472 if (SSL_CTX_check_private_key(ctx) <= 0) {
3473 memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n",
3474 err && *err ? *err : "", path);
3475 return 1;
3476 }
3477
Emeric Brunfc0421f2012-09-07 17:30:07 +02003478 /* we must not free the SSL_CTX anymore below, since it's already in
3479 * the tree, so it will be discovered and cleaned in time.
3480 */
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003481#ifndef OPENSSL_NO_DH
Remi Gacogne4f902b82015-05-28 16:23:00 +02003482 /* store a NULL pointer to indicate we have not yet loaded
3483 a custom DH param file */
3484 if (ssl_dh_ptr_index >= 0) {
3485 SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL);
3486 }
3487
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003488 ret = ssl_sock_load_dh_params(ctx, path);
3489 if (ret < 0) {
3490 if (err)
3491 memprintf(err, "%sunable to load DH parameters from file '%s'.\n",
3492 *err ? *err : "", path);
3493 return 1;
3494 }
3495#endif
3496
Lukas Tribuse4e30f72014-12-09 16:32:51 +01003497#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
Emeric Brun4147b2e2014-06-16 18:36:30 +02003498 ret = ssl_sock_load_ocsp(ctx, path);
3499 if (ret < 0) {
3500 if (err)
3501 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",
3502 *err ? *err : "", path);
3503 return 1;
3504 }
Emmanuel Hocdet2c32d8f2017-05-22 14:58:00 +02003505#elif (defined OPENSSL_IS_BORINGSSL)
3506 ssl_sock_set_ocsp_response_from_file(ctx, path);
Emeric Brun4147b2e2014-06-16 18:36:30 +02003507#endif
3508
Willy Tarreau5db847a2019-05-09 14:13:35 +02003509#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01003510 if (sctl_ex_index >= 0) {
3511 ret = ssl_sock_load_sctl(ctx, path);
3512 if (ret < 0) {
3513 if (err)
3514 memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n",
3515 *err ? *err : "", path);
3516 return 1;
3517 }
3518 }
3519#endif
3520
Emeric Brunfc0421f2012-09-07 17:30:07 +02003521#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003522 if (bind_conf->default_ctx) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02003523 memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n",
3524 err && *err ? *err : "");
Emeric Brunfc0421f2012-09-07 17:30:07 +02003525 return 1;
3526 }
3527#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003528 if (!bind_conf->default_ctx) {
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003529 bind_conf->default_ctx = ctx;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003530 bind_conf->default_ssl_conf = ssl_conf;
3531 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02003532
3533 return 0;
3534}
3535
Willy Tarreau03209342016-12-22 17:08:28 +01003536int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003537{
Cyril Bonté3180f7b2015-01-25 00:16:08 +01003538 struct dirent **de_list;
3539 int i, n;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003540 DIR *dir;
3541 struct stat buf;
Willy Tarreauee2663b2012-12-06 11:36:59 +01003542 char *end;
3543 char fp[MAXPATHLEN+1];
Emeric Brunfc0421f2012-09-07 17:30:07 +02003544 int cfgerr = 0;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003545#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
yanbzhu63ea8462015-12-09 13:35:14 -05003546 int is_bundle;
3547 int j;
3548#endif
Emeric Brunfc0421f2012-09-07 17:30:07 +02003549
yanbzhu08ce6ab2015-12-02 13:01:29 -05003550 if (stat(path, &buf) == 0) {
3551 dir = opendir(path);
3552 if (!dir)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003553 return ssl_sock_load_cert_file(path, bind_conf, NULL, NULL, 0, err);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003554
yanbzhu08ce6ab2015-12-02 13:01:29 -05003555 /* strip trailing slashes, including first one */
3556 for (end = path + strlen(path) - 1; end >= path && *end == '/'; end--)
3557 *end = 0;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003558
yanbzhu08ce6ab2015-12-02 13:01:29 -05003559 n = scandir(path, &de_list, 0, alphasort);
3560 if (n < 0) {
3561 memprintf(err, "%sunable to scan directory '%s' : %s.\n",
3562 err && *err ? *err : "", path, strerror(errno));
3563 cfgerr++;
3564 }
3565 else {
3566 for (i = 0; i < n; i++) {
3567 struct dirent *de = de_list[i];
Emeric Brun2aab7222014-06-18 18:15:09 +02003568
yanbzhu08ce6ab2015-12-02 13:01:29 -05003569 end = strrchr(de->d_name, '.');
3570 if (end && (!strcmp(end, ".issuer") || !strcmp(end, ".ocsp") || !strcmp(end, ".sctl")))
3571 goto ignore_entry;
Cyril Bonté3180f7b2015-01-25 00:16:08 +01003572
yanbzhu08ce6ab2015-12-02 13:01:29 -05003573 snprintf(fp, sizeof(fp), "%s/%s", path, de->d_name);
3574 if (stat(fp, &buf) != 0) {
3575 memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n",
3576 err && *err ? *err : "", fp, strerror(errno));
3577 cfgerr++;
3578 goto ignore_entry;
3579 }
3580 if (!S_ISREG(buf.st_mode))
3581 goto ignore_entry;
yanbzhu63ea8462015-12-09 13:35:14 -05003582
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003583#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
yanbzhu63ea8462015-12-09 13:35:14 -05003584 is_bundle = 0;
3585 /* Check if current entry in directory is part of a multi-cert bundle */
3586
3587 if (end) {
3588 for (j = 0; j < SSL_SOCK_NUM_KEYTYPES; j++) {
3589 if (!strcmp(end + 1, SSL_SOCK_KEYTYPE_NAMES[j])) {
3590 is_bundle = 1;
3591 break;
3592 }
3593 }
3594
3595 if (is_bundle) {
3596 char dp[MAXPATHLEN+1] = {0}; /* this will be the filename w/o the keytype */
3597 int dp_len;
3598
3599 dp_len = end - de->d_name;
3600 snprintf(dp, dp_len + 1, "%s", de->d_name);
3601
3602 /* increment i and free de until we get to a non-bundle cert
3603 * Note here that we look at de_list[i + 1] before freeing de
3604 * this is important since ignore_entry will free de
3605 */
3606 while (i + 1 < n && !strncmp(de_list[i + 1]->d_name, dp, dp_len)) {
3607 free(de);
3608 i++;
3609 de = de_list[i];
3610 }
3611
3612 snprintf(fp, sizeof(fp), "%s/%s", path, dp);
Emeric Bruneb155b62018-08-16 15:11:12 +02003613 cfgerr += ssl_sock_load_multi_cert(fp, bind_conf, NULL, NULL, 0, err);
yanbzhu63ea8462015-12-09 13:35:14 -05003614
3615 /* Successfully processed the bundle */
3616 goto ignore_entry;
3617 }
3618 }
3619
3620#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003621 cfgerr += ssl_sock_load_cert_file(fp, bind_conf, NULL, NULL, 0, err);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003622ignore_entry:
3623 free(de);
Cyril Bonté3180f7b2015-01-25 00:16:08 +01003624 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003625 free(de_list);
Emeric Brunfc0421f2012-09-07 17:30:07 +02003626 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003627 closedir(dir);
3628 return cfgerr;
Emeric Brunfc0421f2012-09-07 17:30:07 +02003629 }
yanbzhu08ce6ab2015-12-02 13:01:29 -05003630
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003631 cfgerr = ssl_sock_load_multi_cert(path, bind_conf, NULL, NULL, 0, err);
yanbzhu08ce6ab2015-12-02 13:01:29 -05003632
Emeric Brunfc0421f2012-09-07 17:30:07 +02003633 return cfgerr;
3634}
3635
Thierry Fournier383085f2013-01-24 14:15:43 +01003636/* Make sure openssl opens /dev/urandom before the chroot. The work is only
3637 * done once. Zero is returned if the operation fails. No error is returned
3638 * if the random is said as not implemented, because we expect that openssl
3639 * will use another method once needed.
3640 */
3641static int ssl_initialize_random()
3642{
3643 unsigned char random;
3644 static int random_initialized = 0;
3645
3646 if (!random_initialized && RAND_bytes(&random, 1) != 0)
3647 random_initialized = 1;
3648
3649 return random_initialized;
3650}
3651
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003652/* release ssl bind conf */
3653void ssl_sock_free_ssl_conf(struct ssl_bind_conf *conf)
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003654{
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003655 if (conf) {
Bernard Spil13c53f82018-02-15 13:34:58 +01003656#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003657 free(conf->npn_str);
3658 conf->npn_str = NULL;
3659#endif
3660#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
3661 free(conf->alpn_str);
3662 conf->alpn_str = NULL;
3663#endif
3664 free(conf->ca_file);
3665 conf->ca_file = NULL;
3666 free(conf->crl_file);
3667 conf->crl_file = NULL;
3668 free(conf->ciphers);
3669 conf->ciphers = NULL;
Willy Tarreau5db847a2019-05-09 14:13:35 +02003670#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02003671 free(conf->ciphersuites);
3672 conf->ciphersuites = NULL;
3673#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01003674 free(conf->curves);
3675 conf->curves = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003676 free(conf->ecdhe);
3677 conf->ecdhe = NULL;
3678 }
3679}
3680
3681int ssl_sock_load_cert_list_file(char *file, struct bind_conf *bind_conf, struct proxy *curproxy, char **err)
3682{
3683 char thisline[CRT_LINESIZE];
3684 char path[MAXPATHLEN+1];
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003685 FILE *f;
yanbzhu1b04e5b2015-12-02 13:54:14 -05003686 struct stat buf;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003687 int linenum = 0;
3688 int cfgerr = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003689
Willy Tarreauad1731d2013-04-02 17:35:58 +02003690 if ((f = fopen(file, "r")) == NULL) {
3691 memprintf(err, "cannot open file '%s' : %s", file, strerror(errno));
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003692 return 1;
Willy Tarreauad1731d2013-04-02 17:35:58 +02003693 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003694
3695 while (fgets(thisline, sizeof(thisline), f) != NULL) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003696 int arg, newarg, cur_arg, i, ssl_b = 0, ssl_e = 0;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003697 char *end;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003698 char *args[MAX_CRT_ARGS + 1];
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003699 char *line = thisline;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003700 char *crt_path;
3701 struct ssl_bind_conf *ssl_conf = NULL;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003702
3703 linenum++;
3704 end = line + strlen(line);
3705 if (end-line == sizeof(thisline)-1 && *(end-1) != '\n') {
3706 /* Check if we reached the limit and the last char is not \n.
3707 * Watch out for the last line without the terminating '\n'!
3708 */
Willy Tarreauad1731d2013-04-02 17:35:58 +02003709 memprintf(err, "line %d too long in file '%s', limit is %d characters",
3710 linenum, file, (int)sizeof(thisline)-1);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003711 cfgerr = 1;
Willy Tarreauad1731d2013-04-02 17:35:58 +02003712 break;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003713 }
3714
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003715 arg = 0;
Emeric Brun50bcecc2013-04-22 13:05:23 +02003716 newarg = 1;
3717 while (*line) {
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003718 if (*line == '#' || *line == '\n' || *line == '\r') {
3719 /* end of string, end of loop */
3720 *line = 0;
3721 break;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003722 } else if (isspace(*line)) {
Emeric Brun50bcecc2013-04-22 13:05:23 +02003723 newarg = 1;
3724 *line = 0;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003725 } else if (*line == '[') {
3726 if (ssl_b) {
3727 memprintf(err, "too many '[' on line %d in file '%s'.", linenum, file);
3728 cfgerr = 1;
3729 break;
3730 }
3731 if (!arg) {
3732 memprintf(err, "file must start with a cert on line %d in file '%s'", linenum, file);
3733 cfgerr = 1;
3734 break;
3735 }
3736 ssl_b = arg;
3737 newarg = 1;
3738 *line = 0;
3739 } else if (*line == ']') {
3740 if (ssl_e) {
3741 memprintf(err, "too many ']' on line %d in file '%s'.", linenum, file);
Emeric Brun50bcecc2013-04-22 13:05:23 +02003742 cfgerr = 1;
3743 break;
3744 }
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003745 if (!ssl_b) {
3746 memprintf(err, "missing '[' in line %d in file '%s'.", linenum, file);
3747 cfgerr = 1;
3748 break;
3749 }
3750 ssl_e = arg;
3751 newarg = 1;
3752 *line = 0;
3753 } else if (newarg) {
3754 if (arg == MAX_CRT_ARGS) {
3755 memprintf(err, "too many args on line %d in file '%s'.", linenum, file);
3756 cfgerr = 1;
3757 break;
3758 }
Emeric Brun50bcecc2013-04-22 13:05:23 +02003759 newarg = 0;
3760 args[arg++] = line;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003761 }
Emeric Brun50bcecc2013-04-22 13:05:23 +02003762 line++;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003763 }
Emmanuel Hocdet7c41a1b2013-05-07 20:20:06 +02003764 if (cfgerr)
3765 break;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003766 args[arg++] = line;
Willy Tarreauad1731d2013-04-02 17:35:58 +02003767
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003768 /* empty line */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003769 if (!*args[0])
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003770 continue;
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003771
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003772 crt_path = args[0];
3773 if (*crt_path != '/' && global_ssl.crt_base) {
3774 if ((strlen(global_ssl.crt_base) + 1 + strlen(crt_path)) > MAXPATHLEN) {
3775 memprintf(err, "'%s' : path too long on line %d in file '%s'",
3776 crt_path, linenum, file);
3777 cfgerr = 1;
3778 break;
3779 }
3780 snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, crt_path);
3781 crt_path = path;
3782 }
3783
3784 ssl_conf = calloc(1, sizeof *ssl_conf);
3785 cur_arg = ssl_b ? ssl_b : 1;
3786 while (cur_arg < ssl_e) {
3787 newarg = 0;
3788 for (i = 0; ssl_bind_kws[i].kw != NULL; i++) {
3789 if (strcmp(ssl_bind_kws[i].kw, args[cur_arg]) == 0) {
3790 newarg = 1;
3791 cfgerr = ssl_bind_kws[i].parse(args, cur_arg, curproxy, ssl_conf, err);
3792 if (cur_arg + 1 + ssl_bind_kws[i].skip > ssl_e) {
3793 memprintf(err, "ssl args out of '[]' for %s on line %d in file '%s'",
3794 args[cur_arg], linenum, file);
3795 cfgerr = 1;
3796 }
3797 cur_arg += 1 + ssl_bind_kws[i].skip;
3798 break;
3799 }
3800 }
3801 if (!cfgerr && !newarg) {
3802 memprintf(err, "unknown ssl keyword %s on line %d in file '%s'.",
3803 args[cur_arg], linenum, file);
3804 cfgerr = 1;
3805 break;
3806 }
3807 }
3808 if (cfgerr) {
3809 ssl_sock_free_ssl_conf(ssl_conf);
3810 free(ssl_conf);
3811 ssl_conf = NULL;
3812 break;
3813 }
3814
3815 if (stat(crt_path, &buf) == 0) {
3816 cfgerr = ssl_sock_load_cert_file(crt_path, bind_conf, ssl_conf,
3817 &args[cur_arg], arg - cur_arg - 1, err);
yanbzhu1b04e5b2015-12-02 13:54:14 -05003818 } else {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01003819 cfgerr = ssl_sock_load_multi_cert(crt_path, bind_conf, ssl_conf,
3820 &args[cur_arg], arg - cur_arg - 1, err);
yanbzhu1b04e5b2015-12-02 13:54:14 -05003821 }
3822
Willy Tarreauad1731d2013-04-02 17:35:58 +02003823 if (cfgerr) {
3824 memprintf(err, "error processing line %d in file '%s' : %s", linenum, file, *err);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003825 break;
Willy Tarreauad1731d2013-04-02 17:35:58 +02003826 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003827 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01003828 fclose(f);
3829 return cfgerr;
3830}
3831
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003832/* Create an initial CTX used to start the SSL connection before switchctx */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003833static int
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003834ssl_sock_initial_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02003835{
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003836 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003837 long options =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003838 SSL_OP_ALL | /* all known workarounds for bugs */
3839 SSL_OP_NO_SSLv2 |
3840 SSL_OP_NO_COMPRESSION |
Emeric Bruna4bcd9a2012-09-20 16:19:02 +02003841 SSL_OP_SINGLE_DH_USE |
Emeric Brun2b58d042012-09-20 17:10:03 +02003842 SSL_OP_SINGLE_ECDH_USE |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003843 SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION |
Lukas Tribus926594f2018-05-18 17:55:57 +02003844 SSL_OP_PRIORITIZE_CHACHA |
Emeric Brun3c4bc6e2012-10-04 18:44:19 +02003845 SSL_OP_CIPHER_SERVER_PREFERENCE;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003846 long mode =
Emeric Brunfc0421f2012-09-07 17:30:07 +02003847 SSL_MODE_ENABLE_PARTIAL_WRITE |
3848 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01003849 SSL_MODE_RELEASE_BUFFERS |
3850 SSL_MODE_SMALL_BUFFERS;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02003851 struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003852 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003853 int flags = MC_SSL_O_ALL;
3854 int cfgerr = 0;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003855
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003856 ctx = SSL_CTX_new(SSLv23_server_method());
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003857 bind_conf->initial_ctx = ctx;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003858
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003859 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003860 ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. "
3861 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3862 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003863 else
3864 flags = conf_ssl_methods->flags;
3865
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003866 min = conf_ssl_methods->min;
3867 max = conf_ssl_methods->max;
3868 /* start with TLSv10 to remove SSLv3 per default */
3869 if (!min && (!max || max >= CONF_TLSV10))
3870 min = CONF_TLSV10;
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003871 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdetbd695fe2017-05-15 15:53:41 +02003872 if (min)
3873 flags |= (methodVersions[min].flag - 1);
3874 if (max)
3875 flags |= ~((methodVersions[max].flag << 1) - 1);
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003876 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003877 min = max = CONF_TLSV_NONE;
3878 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003879 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003880 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003881 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003882 if (min) {
3883 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003884 ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. "
3885 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
3886 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line,
3887 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003888 hole = 0;
3889 }
3890 max = i;
3891 }
3892 else {
3893 min = max = i;
3894 }
3895 }
3896 else {
3897 if (min)
3898 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003899 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003900 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003901 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
3902 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003903 cfgerr += 1;
3904 }
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02003905 /* save real min/max in bind_conf */
3906 conf_ssl_methods->min = min;
3907 conf_ssl_methods->max = max;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003908
Willy Tarreau9a1ab082019-05-09 13:26:41 +02003909#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003910 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08003911 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003912 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003913 methodVersions[min].ctx_set_version(ctx, SET_SERVER);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003914 else
3915 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
3916 if (flags & methodVersions[i].flag)
3917 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003918#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02003919 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02003920 methodVersions[min].ctx_set_version(ctx, SET_MIN);
3921 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emeric Brunfa5c5c82017-04-28 16:19:51 +02003922#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003923
3924 if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS)
3925 options |= SSL_OP_NO_TICKET;
3926 if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH)
3927 options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE;
Dirkjan Bussink526894f2019-01-21 09:35:03 -08003928
3929#ifdef SSL_OP_NO_RENEGOTIATION
3930 options |= SSL_OP_NO_RENEGOTIATION;
3931#endif
3932
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003933 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003934
Willy Tarreau5db847a2019-05-09 14:13:35 +02003935#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00003936 if (global_ssl.async)
3937 mode |= SSL_MODE_ASYNC;
3938#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02003939 SSL_CTX_set_mode(ctx, mode);
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003940 if (global_ssl.life_time)
3941 SSL_CTX_set_timeout(ctx, global_ssl.life_time);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003942
3943#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
3944#ifdef OPENSSL_IS_BORINGSSL
3945 SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk);
3946 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Willy Tarreau5db847a2019-05-09 14:13:35 +02003947#elif (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchard51088ce2019-01-02 18:46:41 +01003948 if (bind_conf->ssl_conf.early_data) {
3949 SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY);
3950 SSL_CTX_set_max_early_data(ctx, global.tune.bufsize - global.tune.maxrewrite);
3951 }
Emmanuel Hocdet84e417d2017-08-16 11:33:17 +02003952 SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL);
3953 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003954#else
3955 SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003956#endif
Emmanuel Hocdet253c62b2017-08-14 11:01:25 +02003957 SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01003958#endif
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02003959 return cfgerr;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01003960}
3961
William Lallemand4f45bb92017-10-30 20:08:51 +01003962
3963static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block)
3964{
3965 if (first == block) {
3966 struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3967 if (first->len > 0)
3968 sh_ssl_sess_tree_delete(sh_ssl_sess);
3969 }
3970}
3971
3972/* return first block from sh_ssl_sess */
3973static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess)
3974{
3975 return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data);
3976
3977}
3978
3979/* store a session into the cache
3980 * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH
3981 * data: asn1 encoded session
3982 * data_len: asn1 encoded session length
3983 * Returns 1 id session was stored (else 0)
3984 */
3985static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len)
3986{
3987 struct shared_block *first;
3988 struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess;
3989
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02003990 first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr));
William Lallemand4f45bb92017-10-30 20:08:51 +01003991 if (!first) {
3992 /* Could not retrieve enough free blocks to store that session */
3993 return 0;
3994 }
3995
3996 /* STORE the key in the first elem */
3997 sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data;
3998 memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH);
3999 first->len = sizeof(struct sh_ssl_sess_hdr);
4000
4001 /* it returns the already existing node
4002 or current node if none, never returns null */
4003 oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess);
4004 if (oldsh_ssl_sess != sh_ssl_sess) {
4005 /* NOTE: Row couldn't be in use because we lock read & write function */
4006 /* release the reserved row */
4007 shctx_row_dec_hot(ssl_shctx, first);
4008 /* replace the previous session already in the tree */
4009 sh_ssl_sess = oldsh_ssl_sess;
4010 /* ignore the previous session data, only use the header */
4011 first = sh_ssl_sess_first_block(sh_ssl_sess);
4012 shctx_row_inc_hot(ssl_shctx, first);
4013 first->len = sizeof(struct sh_ssl_sess_hdr);
4014 }
4015
Frédéric Lécaille0bec8072018-10-22 17:55:57 +02004016 if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) {
William Lallemand99b90af2018-01-03 19:15:51 +01004017 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004018 return 0;
William Lallemand99b90af2018-01-03 19:15:51 +01004019 }
4020
4021 shctx_row_dec_hot(ssl_shctx, first);
William Lallemand4f45bb92017-10-30 20:08:51 +01004022
4023 return 1;
4024}
William Lallemanded0b5ad2017-10-30 19:36:36 +01004025
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004026/* SSL callback used when a new session is created while connecting to a server */
4027static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess)
4028{
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004029 struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houcharde6060c52017-11-16 17:42:52 +01004030 struct server *s;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004031
Willy Tarreau07d94e42018-09-20 10:57:52 +02004032 s = __objt_server(conn->target);
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004033
Olivier Houcharde6060c52017-11-16 17:42:52 +01004034 if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) {
4035 int len;
4036 unsigned char *ptr;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004037
Olivier Houcharde6060c52017-11-16 17:42:52 +01004038 len = i2d_SSL_SESSION(sess, NULL);
4039 if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) {
4040 ptr = s->ssl_ctx.reused_sess[tid].ptr;
4041 } else {
4042 free(s->ssl_ctx.reused_sess[tid].ptr);
4043 ptr = s->ssl_ctx.reused_sess[tid].ptr = malloc(len);
4044 s->ssl_ctx.reused_sess[tid].allocated_size = len;
4045 }
4046 if (s->ssl_ctx.reused_sess[tid].ptr) {
4047 s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess,
4048 &ptr);
4049 }
4050 } else {
4051 free(s->ssl_ctx.reused_sess[tid].ptr);
4052 s->ssl_ctx.reused_sess[tid].ptr = NULL;
4053 }
4054
4055 return 0;
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004056}
4057
Olivier Houcharde6060c52017-11-16 17:42:52 +01004058
William Lallemanded0b5ad2017-10-30 19:36:36 +01004059/* SSL callback used on new session creation */
William Lallemand4f45bb92017-10-30 20:08:51 +01004060int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004061{
4062 unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */
4063 unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */
4064 unsigned char *p;
4065 int data_len;
4066 unsigned int sid_length, sid_ctx_length;
4067 const unsigned char *sid_data;
4068 const unsigned char *sid_ctx_data;
4069
4070 /* Session id is already stored in to key and session id is known
4071 * so we dont store it to keep size.
4072 */
4073
4074 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4075 sid_ctx_data = SSL_SESSION_get0_id_context(sess, &sid_ctx_length);
4076 SSL_SESSION_set1_id(sess, sid_data, 0);
4077 SSL_SESSION_set1_id_context(sess, sid_ctx_data, 0);
4078
4079 /* check if buffer is large enough for the ASN1 encoded session */
4080 data_len = i2d_SSL_SESSION(sess, NULL);
4081 if (data_len > SHSESS_MAX_DATA_LEN)
4082 goto err;
4083
4084 p = encsess;
4085
4086 /* process ASN1 session encoding before the lock */
4087 i2d_SSL_SESSION(sess, &p);
4088
4089 memcpy(encid, sid_data, sid_length);
4090 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH)
4091 memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length);
4092
William Lallemanda3c77cf2017-10-30 23:44:40 +01004093 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004094 /* store to cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004095 sh_ssl_sess_store(encid, encsess, data_len);
William Lallemanda3c77cf2017-10-30 23:44:40 +01004096 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004097err:
4098 /* reset original length values */
4099 SSL_SESSION_set1_id(sess, sid_data, sid_length);
4100 SSL_SESSION_set1_id_context(sess, sid_ctx_data, sid_ctx_length);
4101
4102 return 0; /* do not increment session reference count */
4103}
4104
4105/* SSL callback used on lookup an existing session cause none found in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004106SSL_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 +01004107{
William Lallemand4f45bb92017-10-30 20:08:51 +01004108 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004109 unsigned char data[SHSESS_MAX_DATA_LEN], *p;
4110 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
William Lallemanded0b5ad2017-10-30 19:36:36 +01004111 SSL_SESSION *sess;
William Lallemand4f45bb92017-10-30 20:08:51 +01004112 struct shared_block *first;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004113
4114 global.shctx_lookups++;
4115
4116 /* allow the session to be freed automatically by openssl */
4117 *do_copy = 0;
4118
4119 /* tree key is zeros padded sessionid */
4120 if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4121 memcpy(tmpkey, key, key_len);
4122 memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len);
4123 key = tmpkey;
4124 }
4125
4126 /* lock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004127 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004128
4129 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004130 sh_ssl_sess = sh_ssl_sess_tree_lookup(key);
4131 if (!sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004132 /* no session found: unlock cache and exit */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004133 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004134 global.shctx_misses++;
4135 return NULL;
4136 }
4137
William Lallemand4f45bb92017-10-30 20:08:51 +01004138 /* sh_ssl_sess (shared_block->data) is at the end of shared_block */
4139 first = sh_ssl_sess_first_block(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004140
William Lallemand4f45bb92017-10-30 20:08:51 +01004141 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 +01004142
William Lallemanda3c77cf2017-10-30 23:44:40 +01004143 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004144
4145 /* decode ASN1 session */
4146 p = data;
William Lallemand4f45bb92017-10-30 20:08:51 +01004147 sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr));
William Lallemanded0b5ad2017-10-30 19:36:36 +01004148 /* Reset session id and session id contenxt */
4149 if (sess) {
4150 SSL_SESSION_set1_id(sess, key, key_len);
4151 SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4152 }
4153
4154 return sess;
4155}
4156
William Lallemand4f45bb92017-10-30 20:08:51 +01004157
William Lallemanded0b5ad2017-10-30 19:36:36 +01004158/* SSL callback used to signal session is no more used in internal cache */
William Lallemand4f45bb92017-10-30 20:08:51 +01004159void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004160{
William Lallemand4f45bb92017-10-30 20:08:51 +01004161 struct sh_ssl_sess_hdr *sh_ssl_sess;
William Lallemanded0b5ad2017-10-30 19:36:36 +01004162 unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH];
4163 unsigned int sid_length;
4164 const unsigned char *sid_data;
4165 (void)ctx;
4166
4167 sid_data = SSL_SESSION_get_id(sess, &sid_length);
4168 /* tree key is zeros padded sessionid */
4169 if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) {
4170 memcpy(tmpkey, sid_data, sid_length);
4171 memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length);
4172 sid_data = tmpkey;
4173 }
4174
William Lallemanda3c77cf2017-10-30 23:44:40 +01004175 shctx_lock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004176
4177 /* lookup for session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004178 sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data);
4179 if (sh_ssl_sess) {
William Lallemanded0b5ad2017-10-30 19:36:36 +01004180 /* free session */
William Lallemand4f45bb92017-10-30 20:08:51 +01004181 sh_ssl_sess_tree_delete(sh_ssl_sess);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004182 }
4183
4184 /* unlock cache */
William Lallemanda3c77cf2017-10-30 23:44:40 +01004185 shctx_unlock(ssl_shctx);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004186}
4187
4188/* Set session cache mode to server and disable openssl internal cache.
4189 * Set shared cache callbacks on an ssl context.
4190 * Shared context MUST be firstly initialized */
William Lallemand4f45bb92017-10-30 20:08:51 +01004191void ssl_set_shctx(SSL_CTX *ctx)
William Lallemanded0b5ad2017-10-30 19:36:36 +01004192{
4193 SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME));
4194
4195 if (!ssl_shctx) {
4196 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF);
4197 return;
4198 }
4199
4200 SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER |
4201 SSL_SESS_CACHE_NO_INTERNAL |
4202 SSL_SESS_CACHE_NO_AUTO_CLEAR);
4203
4204 /* Set callbacks */
William Lallemand4f45bb92017-10-30 20:08:51 +01004205 SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb);
4206 SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb);
4207 SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb);
William Lallemanded0b5ad2017-10-30 19:36:36 +01004208}
4209
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004210int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx)
4211{
4212 struct proxy *curproxy = bind_conf->frontend;
4213 int cfgerr = 0;
4214 int verify = SSL_VERIFY_NONE;
Willy Tarreau5d4cafb2018-01-04 18:55:19 +01004215 struct ssl_bind_conf __maybe_unused *ssl_conf_cur;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004216 const char *conf_ciphers;
Willy Tarreau5db847a2019-05-09 14:13:35 +02004217#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004218 const char *conf_ciphersuites;
4219#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004220 const char *conf_curves = NULL;
Emeric Brunfc0421f2012-09-07 17:30:07 +02004221
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004222 if (ssl_conf) {
4223 struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods;
4224 int i, min, max;
4225 int flags = MC_SSL_O_ALL;
4226
4227 /* Real min and max should be determinate with configuration and openssl's capabilities */
Emmanuel Hocdet43664762017-08-09 18:26:20 +02004228 min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min;
4229 max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max;
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004230 if (min)
4231 flags |= (methodVersions[min].flag - 1);
4232 if (max)
4233 flags |= ~((methodVersions[max].flag << 1) - 1);
4234 min = max = CONF_TLSV_NONE;
4235 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4236 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
4237 if (min)
4238 max = i;
4239 else
4240 min = max = i;
4241 }
4242 /* save real min/max */
4243 conf_ssl_methods->min = min;
4244 conf_ssl_methods->max = max;
4245 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004246 ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n",
4247 bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02004248 cfgerr += 1;
4249 }
4250 }
4251
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004252 switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) {
Emeric Brun850efd52014-01-29 12:24:34 +01004253 case SSL_SOCK_VERIFY_NONE:
4254 verify = SSL_VERIFY_NONE;
4255 break;
4256 case SSL_SOCK_VERIFY_OPTIONAL:
4257 verify = SSL_VERIFY_PEER;
4258 break;
4259 case SSL_SOCK_VERIFY_REQUIRED:
4260 verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
4261 break;
4262 }
4263 SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk);
4264 if (verify & SSL_VERIFY_PEER) {
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004265 char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file;
4266 char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file;
4267 if (ca_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004268 /* load CAfile to verify */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004269 if (!SSL_CTX_load_verify_locations(ctx, ca_file, NULL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004270 ha_alert("Proxy '%s': unable to load CA file '%s' for bind '%s' at [%s:%d].\n",
4271 curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line);
Emeric Brund94b3fe2012-09-20 18:23:56 +02004272 cfgerr++;
4273 }
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02004274 if (!((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) {
4275 /* set CA names for client cert request, function returns void */
4276 SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(ca_file));
4277 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004278 }
Emeric Brun850efd52014-01-29 12:24:34 +01004279 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004280 ha_alert("Proxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n",
4281 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emeric Brun850efd52014-01-29 12:24:34 +01004282 cfgerr++;
4283 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004284#ifdef X509_V_FLAG_CRL_CHECK
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004285 if (crl_file) {
Emeric Brund94b3fe2012-09-20 18:23:56 +02004286 X509_STORE *store = SSL_CTX_get_cert_store(ctx);
4287
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004288 if (!store || !X509_STORE_load_locations(store, crl_file, NULL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004289 ha_alert("Proxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n",
4290 curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line);
Emeric Brund94b3fe2012-09-20 18:23:56 +02004291 cfgerr++;
4292 }
Emeric Brun561e5742012-10-02 15:20:55 +02004293 else {
4294 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4295 }
Emeric Brund94b3fe2012-09-20 18:23:56 +02004296 }
Emeric Brun051cdab2012-10-02 19:25:50 +02004297#endif
Emeric Brun644cde02012-12-14 11:21:13 +01004298 ERR_clear_error();
Emeric Brund94b3fe2012-09-20 18:23:56 +02004299 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004300#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
Nenad Merdanovic146defa2015-05-09 08:46:00 +02004301 if(bind_conf->keys_ref) {
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004302 if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004303 ha_alert("Proxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n",
4304 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Nenad Merdanovic05552d42015-02-27 19:56:49 +01004305 cfgerr++;
4306 }
4307 }
4308#endif
4309
William Lallemand4f45bb92017-10-30 20:08:51 +01004310 ssl_set_shctx(ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004311 conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers;
4312 if (conf_ciphers &&
4313 !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004314 ha_alert("Proxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n",
4315 curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004316 cfgerr++;
4317 }
4318
Willy Tarreau5db847a2019-05-09 14:13:35 +02004319#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004320 conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites;
4321 if (conf_ciphersuites &&
4322 !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) {
4323 ha_alert("Proxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n",
4324 curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line);
4325 cfgerr++;
4326 }
4327#endif
4328
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004329#ifndef OPENSSL_NO_DH
Remi Gacogne47783ef2015-05-29 15:53:22 +02004330 /* If tune.ssl.default-dh-param has not been set,
4331 neither has ssl-default-dh-file and no static DH
4332 params were in the certificate file. */
Willy Tarreauef934602016-12-22 23:12:01 +01004333 if (global_ssl.default_dh_param == 0 &&
Remi Gacogne47783ef2015-05-29 15:53:22 +02004334 global_dh == NULL &&
Remi Gacogne4f902b82015-05-28 16:23:00 +02004335 (ssl_dh_ptr_index == -1 ||
4336 SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) {
Emmanuel Hocdetcc6c2a22017-03-03 17:04:14 +01004337 STACK_OF(SSL_CIPHER) * ciphers = NULL;
4338 const SSL_CIPHER * cipher = NULL;
4339 char cipher_description[128];
4340 /* The description of ciphers using an Ephemeral Diffie Hellman key exchange
4341 contains " Kx=DH " or " Kx=DH(". Beware of " Kx=DH/",
4342 which is not ephemeral DH. */
4343 const char dhe_description[] = " Kx=DH ";
4344 const char dhe_export_description[] = " Kx=DH(";
4345 int idx = 0;
4346 int dhe_found = 0;
4347 SSL *ssl = NULL;
Lukas Tribus90132722014-08-18 00:56:33 +02004348
Remi Gacogne23d5d372014-10-10 17:04:26 +02004349 ssl = SSL_new(ctx);
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004350
Remi Gacogne23d5d372014-10-10 17:04:26 +02004351 if (ssl) {
4352 ciphers = SSL_get_ciphers(ssl);
4353
4354 if (ciphers) {
4355 for (idx = 0; idx < sk_SSL_CIPHER_num(ciphers); idx++) {
4356 cipher = sk_SSL_CIPHER_value(ciphers, idx);
4357 if (SSL_CIPHER_description(cipher, cipher_description, sizeof (cipher_description)) == cipher_description) {
4358 if (strstr(cipher_description, dhe_description) != NULL ||
4359 strstr(cipher_description, dhe_export_description) != NULL) {
4360 dhe_found = 1;
4361 break;
4362 }
Remi Gacognec1eab8c2014-06-12 18:20:11 +02004363 }
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004364 }
4365 }
Remi Gacogne23d5d372014-10-10 17:04:26 +02004366 SSL_free(ssl);
4367 ssl = NULL;
Lukas Tribus90132722014-08-18 00:56:33 +02004368 }
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004369
Lukas Tribus90132722014-08-18 00:56:33 +02004370 if (dhe_found) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004371 ha_warning("Setting tune.ssl.default-dh-param to 1024 by default, if your workload permits it you should set it to at least 2048. Please set a value >= 1024 to make this warning disappear.\n");
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004372 }
4373
Willy Tarreauef934602016-12-22 23:12:01 +01004374 global_ssl.default_dh_param = 1024;
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004375 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004376
Willy Tarreauef934602016-12-22 23:12:01 +01004377 if (global_ssl.default_dh_param >= 1024) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004378 if (local_dh_1024 == NULL) {
4379 local_dh_1024 = ssl_get_dh_1024();
4380 }
Willy Tarreauef934602016-12-22 23:12:01 +01004381 if (global_ssl.default_dh_param >= 2048) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004382 if (local_dh_2048 == NULL) {
4383 local_dh_2048 = ssl_get_dh_2048();
4384 }
Willy Tarreauef934602016-12-22 23:12:01 +01004385 if (global_ssl.default_dh_param >= 4096) {
Remi Gacogne8de54152014-07-15 11:36:40 +02004386 if (local_dh_4096 == NULL) {
4387 local_dh_4096 = ssl_get_dh_4096();
4388 }
Remi Gacogne8de54152014-07-15 11:36:40 +02004389 }
4390 }
4391 }
4392#endif /* OPENSSL_NO_DH */
Remi Gacognef46cd6e2014-06-12 14:58:40 +02004393
Emeric Brunfc0421f2012-09-07 17:30:07 +02004394 SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004395#if HA_OPENSSL_VERSION_NUMBER >= 0x00907000L
Emeric Brun29f037d2014-04-25 19:05:36 +02004396 SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk);
Willy Tarreau5cbe4ef2014-05-08 22:45:11 +02004397#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02004398
Bernard Spil13c53f82018-02-15 13:34:58 +01004399#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004400 ssl_conf_cur = NULL;
4401 if (ssl_conf && ssl_conf->npn_str)
4402 ssl_conf_cur = ssl_conf;
4403 else if (bind_conf->ssl_conf.npn_str)
4404 ssl_conf_cur = &bind_conf->ssl_conf;
4405 if (ssl_conf_cur)
4406 SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02004407#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01004408#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004409 ssl_conf_cur = NULL;
4410 if (ssl_conf && ssl_conf->alpn_str)
4411 ssl_conf_cur = ssl_conf;
4412 else if (bind_conf->ssl_conf.alpn_str)
4413 ssl_conf_cur = &bind_conf->ssl_conf;
4414 if (ssl_conf_cur)
4415 SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur);
Willy Tarreauab861d32013-04-02 02:30:41 +02004416#endif
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004417#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004418 conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves;
4419 if (conf_curves) {
4420 if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004421 ha_alert("Proxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n",
4422 curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004423 cfgerr++;
4424 }
Emmanuel Hocdeta52bb152017-03-20 11:11:49 +01004425#if defined(SSL_CTX_set_ecdh_auto)
4426 (void)SSL_CTX_set_ecdh_auto(ctx, 1);
4427#endif
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004428 }
4429#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004430#if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH)
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01004431 if (!conf_curves) {
Emeric Brun2b58d042012-09-20 17:10:03 +02004432 int i;
4433 EC_KEY *ecdh;
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004434#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004435 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
Olivier Houchardc2aae742017-09-22 18:26:28 +02004436 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4437 NULL);
4438
4439 if (ecdhe == NULL) {
4440 SSL_CTX_set_dh_auto(ctx, 1);
4441 return cfgerr;
4442 }
4443#else
4444 const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe :
4445 (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe :
4446 ECDHE_DEFAULT_CURVE);
4447#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02004448
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004449 i = OBJ_sn2nid(ecdhe);
Emeric Brun2b58d042012-09-20 17:10:03 +02004450 if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004451 ha_alert("Proxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n",
4452 curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line);
Emeric Brun2b58d042012-09-20 17:10:03 +02004453 cfgerr++;
4454 }
4455 else {
4456 SSL_CTX_set_tmp_ecdh(ctx, ecdh);
4457 EC_KEY_free(ecdh);
4458 }
4459 }
4460#endif
4461
Emeric Brunfc0421f2012-09-07 17:30:07 +02004462 return cfgerr;
4463}
4464
Evan Broderbe554312013-06-27 00:05:25 -07004465static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname)
4466{
4467 const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end;
4468 size_t prefixlen, suffixlen;
4469
4470 /* Trivial case */
4471 if (strcmp(pattern, hostname) == 0)
4472 return 1;
4473
Evan Broderbe554312013-06-27 00:05:25 -07004474 /* The rest of this logic is based on RFC 6125, section 6.4.3
4475 * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */
4476
Emeric Bruna848dae2013-10-08 11:27:28 +02004477 pattern_wildcard = NULL;
4478 pattern_left_label_end = pattern;
4479 while (*pattern_left_label_end != '.') {
4480 switch (*pattern_left_label_end) {
4481 case 0:
4482 /* End of label not found */
4483 return 0;
4484 case '*':
4485 /* If there is more than one wildcards */
4486 if (pattern_wildcard)
4487 return 0;
4488 pattern_wildcard = pattern_left_label_end;
4489 break;
4490 }
4491 pattern_left_label_end++;
4492 }
4493
4494 /* If it's not trivial and there is no wildcard, it can't
4495 * match */
4496 if (!pattern_wildcard)
Evan Broderbe554312013-06-27 00:05:25 -07004497 return 0;
4498
4499 /* Make sure all labels match except the leftmost */
4500 hostname_left_label_end = strchr(hostname, '.');
4501 if (!hostname_left_label_end
4502 || strcmp(pattern_left_label_end, hostname_left_label_end) != 0)
4503 return 0;
4504
4505 /* Make sure the leftmost label of the hostname is long enough
4506 * that the wildcard can match */
Emeric Brun369da852013-10-08 11:39:35 +02004507 if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1)
Evan Broderbe554312013-06-27 00:05:25 -07004508 return 0;
4509
4510 /* Finally compare the string on either side of the
4511 * wildcard */
4512 prefixlen = pattern_wildcard - pattern;
4513 suffixlen = pattern_left_label_end - (pattern_wildcard + 1);
Emeric Bruna848dae2013-10-08 11:27:28 +02004514 if ((prefixlen && (memcmp(pattern, hostname, prefixlen) != 0))
4515 || (suffixlen && (memcmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0)))
Evan Broderbe554312013-06-27 00:05:25 -07004516 return 0;
4517
4518 return 1;
4519}
4520
4521static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx)
4522{
4523 SSL *ssl;
4524 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01004525 struct ssl_sock_ctx *ssl_ctx;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004526 const char *servername;
Willy Tarreau71d058c2017-07-26 20:09:56 +02004527 const char *sni;
Evan Broderbe554312013-06-27 00:05:25 -07004528
4529 int depth;
4530 X509 *cert;
4531 STACK_OF(GENERAL_NAME) *alt_names;
4532 int i;
4533 X509_NAME *cert_subject;
4534 char *str;
4535
4536 if (ok == 0)
4537 return ok;
4538
4539 ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx());
Thierry FOURNIER28962c92018-06-17 21:37:05 +02004540 conn = SSL_get_ex_data(ssl, ssl_app_data_index);
Olivier Houchard66ab4982019-02-26 18:37:15 +01004541 ssl_ctx = conn->xprt_ctx;
Evan Broderbe554312013-06-27 00:05:25 -07004542
Willy Tarreauad92a9a2017-07-28 11:38:41 +02004543 /* We're checking if the provided hostnames match the desired one. The
4544 * desired hostname comes from the SNI we presented if any, or if not
4545 * provided then it may have been explicitly stated using a "verifyhost"
4546 * directive. If neither is set, we don't care about the name so the
4547 * verification is OK.
Willy Tarreau2ab88672017-07-05 18:23:03 +02004548 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01004549 servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau71d058c2017-07-26 20:09:56 +02004550 sni = servername;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004551 if (!servername) {
Willy Tarreau07d94e42018-09-20 10:57:52 +02004552 servername = __objt_server(conn->target)->ssl_ctx.verify_host;
Willy Tarreau2ab88672017-07-05 18:23:03 +02004553 if (!servername)
4554 return ok;
4555 }
Evan Broderbe554312013-06-27 00:05:25 -07004556
4557 /* We only need to verify the CN on the actual server cert,
4558 * not the indirect CAs */
4559 depth = X509_STORE_CTX_get_error_depth(ctx);
4560 if (depth != 0)
4561 return ok;
4562
4563 /* At this point, the cert is *not* OK unless we can find a
4564 * hostname match */
4565 ok = 0;
4566
4567 cert = X509_STORE_CTX_get_current_cert(ctx);
4568 /* It seems like this might happen if verify peer isn't set */
4569 if (!cert)
4570 return ok;
4571
4572 alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL);
4573 if (alt_names) {
4574 for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) {
4575 GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i);
4576 if (name->type == GEN_DNS) {
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004577#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Emeric Bruna33410c2013-09-17 15:47:48 +02004578 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) {
4579#else
Evan Broderbe554312013-06-27 00:05:25 -07004580 if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) {
Emeric Bruna33410c2013-09-17 15:47:48 +02004581#endif
Evan Broderbe554312013-06-27 00:05:25 -07004582 ok = ssl_sock_srv_hostcheck(str, servername);
4583 OPENSSL_free(str);
4584 }
4585 }
4586 }
Emeric Brun4ad50a42013-09-17 15:19:54 +02004587 sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free);
Evan Broderbe554312013-06-27 00:05:25 -07004588 }
4589
4590 cert_subject = X509_get_subject_name(cert);
4591 i = -1;
4592 while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) {
4593 X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02004594 ASN1_STRING *value;
4595 value = X509_NAME_ENTRY_get_data(entry);
4596 if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) {
Evan Broderbe554312013-06-27 00:05:25 -07004597 ok = ssl_sock_srv_hostcheck(str, servername);
4598 OPENSSL_free(str);
4599 }
4600 }
4601
Willy Tarreau71d058c2017-07-26 20:09:56 +02004602 /* report the mismatch and indicate if SNI was used or not */
4603 if (!ok && !conn->err_code)
4604 conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH;
Evan Broderbe554312013-06-27 00:05:25 -07004605 return ok;
4606}
4607
Emeric Brun94324a42012-10-11 14:00:19 +02004608/* prepare ssl context from servers options. Returns an error count */
Willy Tarreau03209342016-12-22 17:08:28 +01004609int ssl_sock_prepare_srv_ctx(struct server *srv)
Emeric Brun94324a42012-10-11 14:00:19 +02004610{
Willy Tarreau03209342016-12-22 17:08:28 +01004611 struct proxy *curproxy = srv->proxy;
Emeric Brun94324a42012-10-11 14:00:19 +02004612 int cfgerr = 0;
Remi Gacogneaf5c3da2014-05-19 10:29:58 +02004613 long options =
Emeric Brun94324a42012-10-11 14:00:19 +02004614 SSL_OP_ALL | /* all known workarounds for bugs */
4615 SSL_OP_NO_SSLv2 |
4616 SSL_OP_NO_COMPRESSION;
Remi Gacogneaf5c3da2014-05-19 10:29:58 +02004617 long mode =
Emeric Brun94324a42012-10-11 14:00:19 +02004618 SSL_MODE_ENABLE_PARTIAL_WRITE |
4619 SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER |
Willy Tarreau396a1862014-11-13 14:06:52 +01004620 SSL_MODE_RELEASE_BUFFERS |
4621 SSL_MODE_SMALL_BUFFERS;
Emeric Brun850efd52014-01-29 12:24:34 +01004622 int verify = SSL_VERIFY_NONE;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004623 SSL_CTX *ctx = NULL;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004624 struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004625 int i, min, max, hole;
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004626 int flags = MC_SSL_O_ALL;
Emeric Brun94324a42012-10-11 14:00:19 +02004627
Thierry Fournier383085f2013-01-24 14:15:43 +01004628 /* Make sure openssl opens /dev/urandom before the chroot */
4629 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004630 ha_alert("OpenSSL random data generator initialization failed.\n");
Thierry Fournier383085f2013-01-24 14:15:43 +01004631 cfgerr++;
4632 }
4633
Willy Tarreaufce03112015-01-15 21:32:40 +01004634 /* Automatic memory computations need to know we use SSL there */
4635 global.ssl_used_backend = 1;
4636
4637 /* Initiate SSL context for current server */
Emeric Brun821bb9b2017-06-15 16:37:39 +02004638 if (!srv->ssl_ctx.reused_sess) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01004639 if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004640 ha_alert("Proxy '%s', server '%s' [%s:%d] out of memory.\n",
4641 curproxy->id, srv->id,
4642 srv->conf.file, srv->conf.line);
Emeric Brun821bb9b2017-06-15 16:37:39 +02004643 cfgerr++;
4644 return cfgerr;
4645 }
4646 }
Emeric Brun94324a42012-10-11 14:00:19 +02004647 if (srv->use_ssl)
4648 srv->xprt = &ssl_sock;
4649 if (srv->check.use_ssl)
Cyril Bonté9ce13112014-11-15 22:41:27 +01004650 srv->check.xprt = &ssl_sock;
Emeric Brun94324a42012-10-11 14:00:19 +02004651
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004652 ctx = SSL_CTX_new(SSLv23_client_method());
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004653 if (!ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004654 ha_alert("config : %s '%s', server '%s': unable to allocate ssl context.\n",
4655 proxy_type_str(curproxy), curproxy->id,
4656 srv->id);
Emeric Brun94324a42012-10-11 14:00:19 +02004657 cfgerr++;
4658 return cfgerr;
4659 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004660
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004661 if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max))
Christopher Faulet767a84b2017-11-24 16:50:31 +01004662 ha_warning("config : %s '%s': no-sslv3/no-tlsv1x are ignored for server '%s'. "
4663 "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4664 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004665 else
4666 flags = conf_ssl_methods->flags;
4667
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004668 /* Real min and max should be determinate with configuration and openssl's capabilities */
4669 if (conf_ssl_methods->min)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004670 flags |= (methodVersions[conf_ssl_methods->min].flag - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004671 if (conf_ssl_methods->max)
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004672 flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004673
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004674 /* find min, max and holes */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004675 min = max = CONF_TLSV_NONE;
4676 hole = 0;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004677 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004678 /* version is in openssl && version not disable in configuration */
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004679 if (methodVersions[i].option && !(flags & methodVersions[i].flag)) {
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004680 if (min) {
4681 if (hole) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004682 ha_warning("config : %s '%s': SSL/TLS versions range not contiguous for server '%s'. "
4683 "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n",
4684 proxy_type_str(curproxy), curproxy->id, srv->id,
4685 methodVersions[hole].name);
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004686 hole = 0;
4687 }
4688 max = i;
4689 }
4690 else {
4691 min = max = i;
4692 }
4693 }
4694 else {
4695 if (min)
4696 hole = i;
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004697 }
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004698 if (!min) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004699 ha_alert("config : %s '%s': all SSL/TLS versions are disabled for server '%s'.\n",
4700 proxy_type_str(curproxy), curproxy->id, srv->id);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004701 cfgerr += 1;
4702 }
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004703
Willy Tarreau9a1ab082019-05-09 13:26:41 +02004704#if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL)
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004705 /* Keep force-xxx implementation as it is in older haproxy. It's a
Joseph Herlant017b3da2018-11-15 09:07:59 -08004706 precautionary measure to avoid any surprise with older openssl version. */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004707 if (min == max)
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004708 methodVersions[min].ctx_set_version(ctx, SET_CLIENT);
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004709 else
4710 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
4711 if (flags & methodVersions[i].flag)
4712 options |= methodVersions[i].option;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004713#else /* openssl >= 1.1.0 */
Emmanuel Hocdetb4e9ba42017-03-30 19:25:07 +02004714 /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */
Emmanuel Hocdet4aa615f2017-05-18 12:33:19 +02004715 methodVersions[min].ctx_set_version(ctx, SET_MIN);
4716 methodVersions[max].ctx_set_version(ctx, SET_MAX);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02004717#endif
4718
4719 if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS)
4720 options |= SSL_OP_NO_TICKET;
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004721 SSL_CTX_set_options(ctx, options);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004722
Willy Tarreau5db847a2019-05-09 14:13:35 +02004723#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00004724 if (global_ssl.async)
4725 mode |= SSL_MODE_ASYNC;
4726#endif
Emmanuel Hocdet4de1ff12017-03-03 12:21:32 +01004727 SSL_CTX_set_mode(ctx, mode);
4728 srv->ssl_ctx.ctx = ctx;
4729
Emeric Bruna7aa3092012-10-26 12:58:00 +02004730 if (srv->ssl_ctx.client_crt) {
4731 if (SSL_CTX_use_PrivateKey_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt, SSL_FILETYPE_PEM) <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004732 ha_alert("config : %s '%s', server '%s': unable to load SSL private key from PEM file '%s'.\n",
4733 proxy_type_str(curproxy), curproxy->id,
4734 srv->id, srv->ssl_ctx.client_crt);
Emeric Bruna7aa3092012-10-26 12:58:00 +02004735 cfgerr++;
4736 }
4737 else if (SSL_CTX_use_certificate_chain_file(srv->ssl_ctx.ctx, srv->ssl_ctx.client_crt) <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004738 ha_alert("config : %s '%s', server '%s': unable to load ssl certificate from PEM file '%s'.\n",
4739 proxy_type_str(curproxy), curproxy->id,
4740 srv->id, srv->ssl_ctx.client_crt);
Emeric Bruna7aa3092012-10-26 12:58:00 +02004741 cfgerr++;
4742 }
4743 else if (SSL_CTX_check_private_key(srv->ssl_ctx.ctx) <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004744 ha_alert("config : %s '%s', server '%s': inconsistencies between private key and certificate loaded from PEM file '%s'.\n",
4745 proxy_type_str(curproxy), curproxy->id,
4746 srv->id, srv->ssl_ctx.client_crt);
Emeric Bruna7aa3092012-10-26 12:58:00 +02004747 cfgerr++;
4748 }
4749 }
Emeric Brun94324a42012-10-11 14:00:19 +02004750
Emeric Brun850efd52014-01-29 12:24:34 +01004751 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
4752 verify = SSL_VERIFY_PEER;
Emeric Brun850efd52014-01-29 12:24:34 +01004753 switch (srv->ssl_ctx.verify) {
4754 case SSL_SOCK_VERIFY_NONE:
4755 verify = SSL_VERIFY_NONE;
4756 break;
4757 case SSL_SOCK_VERIFY_REQUIRED:
4758 verify = SSL_VERIFY_PEER;
4759 break;
4760 }
Evan Broderbe554312013-06-27 00:05:25 -07004761 SSL_CTX_set_verify(srv->ssl_ctx.ctx,
Emeric Brun850efd52014-01-29 12:24:34 +01004762 verify,
Willy Tarreau2ab88672017-07-05 18:23:03 +02004763 (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL);
Emeric Brun850efd52014-01-29 12:24:34 +01004764 if (verify & SSL_VERIFY_PEER) {
Emeric Brunef42d922012-10-11 16:11:36 +02004765 if (srv->ssl_ctx.ca_file) {
4766 /* load CAfile to verify */
4767 if (!SSL_CTX_load_verify_locations(srv->ssl_ctx.ctx, srv->ssl_ctx.ca_file, NULL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004768 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to load CA file '%s'.\n",
4769 curproxy->id, srv->id,
4770 srv->conf.file, srv->conf.line, srv->ssl_ctx.ca_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004771 cfgerr++;
4772 }
4773 }
Emeric Brun850efd52014-01-29 12:24:34 +01004774 else {
4775 if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004776 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",
4777 curproxy->id, srv->id,
4778 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004779 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01004780 ha_alert("Proxy '%s', server '%s' [%s:%d] verify is enabled but no CA file specified.\n",
4781 curproxy->id, srv->id,
4782 srv->conf.file, srv->conf.line);
Emeric Brun850efd52014-01-29 12:24:34 +01004783 cfgerr++;
4784 }
Emeric Brunef42d922012-10-11 16:11:36 +02004785#ifdef X509_V_FLAG_CRL_CHECK
4786 if (srv->ssl_ctx.crl_file) {
4787 X509_STORE *store = SSL_CTX_get_cert_store(srv->ssl_ctx.ctx);
4788
4789 if (!store || !X509_STORE_load_locations(store, srv->ssl_ctx.crl_file, NULL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004790 ha_alert("Proxy '%s', server '%s' [%s:%d] unable to configure CRL file '%s'.\n",
4791 curproxy->id, srv->id,
4792 srv->conf.file, srv->conf.line, srv->ssl_ctx.crl_file);
Emeric Brunef42d922012-10-11 16:11:36 +02004793 cfgerr++;
4794 }
4795 else {
4796 X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL);
4797 }
4798 }
4799#endif
4800 }
4801
Olivier Houchardbd84ac82017-11-03 13:43:35 +01004802 SSL_CTX_set_session_cache_mode(srv->ssl_ctx.ctx, SSL_SESS_CACHE_CLIENT |
4803 SSL_SESS_CACHE_NO_INTERNAL_STORE);
4804 SSL_CTX_sess_set_new_cb(srv->ssl_ctx.ctx, ssl_sess_new_srv_cb);
Emeric Brun94324a42012-10-11 14:00:19 +02004805 if (srv->ssl_ctx.ciphers &&
4806 !SSL_CTX_set_cipher_list(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphers)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004807 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set SSL cipher list to '%s'.\n",
4808 curproxy->id, srv->id,
4809 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphers);
Emeric Brun94324a42012-10-11 14:00:19 +02004810 cfgerr++;
4811 }
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004812
Willy Tarreau5db847a2019-05-09 14:13:35 +02004813#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004814 if (srv->ssl_ctx.ciphersuites &&
Pierre Cheynierbc34cd12019-03-21 16:15:47 +00004815 !SSL_CTX_set_ciphersuites(srv->ssl_ctx.ctx, srv->ssl_ctx.ciphersuites)) {
Dirkjan Bussink415150f2018-09-14 11:14:21 +02004816 ha_alert("Proxy '%s', server '%s' [%s:%d] : unable to set TLS 1.3 cipher suites to '%s'.\n",
4817 curproxy->id, srv->id,
4818 srv->conf.file, srv->conf.line, srv->ssl_ctx.ciphersuites);
4819 cfgerr++;
4820 }
4821#endif
Olivier Houchardc7566002018-11-20 23:33:50 +01004822#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
4823 if (srv->ssl_ctx.npn_str)
4824 SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, srv);
4825#endif
4826#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4827 if (srv->ssl_ctx.alpn_str)
4828 SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len);
4829#endif
4830
Emeric Brun94324a42012-10-11 14:00:19 +02004831
4832 return cfgerr;
4833}
4834
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004835/* Walks down the two trees in bind_conf and prepares all certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004836 * be NULL, in which case nothing is done. Returns the number of errors
4837 * encountered.
4838 */
Willy Tarreau03209342016-12-22 17:08:28 +01004839int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004840{
4841 struct ebmb_node *node;
4842 struct sni_ctx *sni;
4843 int err = 0;
4844
Willy Tarreaufce03112015-01-15 21:32:40 +01004845 /* Automatic memory computations need to know we use SSL there */
4846 global.ssl_used_frontend = 1;
4847
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004848 /* Make sure openssl opens /dev/urandom before the chroot */
4849 if (!ssl_initialize_random()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004850 ha_alert("OpenSSL random data generator initialization failed.\n");
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004851 err++;
4852 }
4853 /* Create initial_ctx used to start the ssl connection before do switchctx */
4854 if (!bind_conf->initial_ctx) {
Emmanuel Hocdetabd32332017-05-05 18:06:12 +02004855 err += ssl_sock_initial_ctx(bind_conf);
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004856 /* It should not be necessary to call this function, but it's
4857 necessary first to check and move all initialisation related
4858 to initial_ctx in ssl_sock_initial_ctx. */
4859 err += ssl_sock_prepare_ctx(bind_conf, NULL, bind_conf->initial_ctx);
4860 }
Emeric Brun0bed9942014-10-30 19:25:24 +01004861 if (bind_conf->default_ctx)
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004862 err += ssl_sock_prepare_ctx(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx);
Emeric Brun0bed9942014-10-30 19:25:24 +01004863
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004864 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004865 while (node) {
4866 sni = ebmb_entry(node, struct sni_ctx, name);
Emeric Brun0bed9942014-10-30 19:25:24 +01004867 if (!sni->order && sni->ctx != bind_conf->default_ctx)
4868 /* only initialize the CTX on its first occurrence and
4869 if it is not the default_ctx */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004870 err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004871 node = ebmb_next(node);
4872 }
4873
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004874 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004875 while (node) {
4876 sni = ebmb_entry(node, struct sni_ctx, name);
Emeric Brun0bed9942014-10-30 19:25:24 +01004877 if (!sni->order && sni->ctx != bind_conf->default_ctx)
4878 /* only initialize the CTX on its first occurrence and
4879 if it is not the default_ctx */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004880 err += ssl_sock_prepare_ctx(bind_conf, sni->conf, sni->ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004881 node = ebmb_next(node);
4882 }
4883 return err;
4884}
4885
Willy Tarreau55d37912016-12-21 23:38:39 +01004886/* Prepares all the contexts for a bind_conf and allocates the shared SSL
4887 * context if needed. Returns < 0 on error, 0 on success. The warnings and
4888 * alerts are directly emitted since the rest of the stack does it below.
4889 */
4890int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf)
4891{
4892 struct proxy *px = bind_conf->frontend;
4893 int alloc_ctx;
4894 int err;
4895
4896 if (!bind_conf->is_ssl) {
4897 if (bind_conf->default_ctx) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004898 ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n",
4899 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau55d37912016-12-21 23:38:39 +01004900 }
4901 return 0;
4902 }
4903 if (!bind_conf->default_ctx) {
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004904 if (bind_conf->strict_sni && !bind_conf->generate_certs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004905 ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n",
4906 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004907 }
4908 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004909 ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n",
4910 px->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Emmanuel Hocdetaa0d6372017-08-09 11:24:25 +02004911 return -1;
4912 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004913 }
William Lallemandc61c0b32017-12-04 18:46:39 +01004914 if (!ssl_shctx && global.tune.sslcachesize) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004915 alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize,
Frédéric Lécailleb7838af2018-10-22 16:21:39 +02004916 sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1,
William Lallemandc3cd35f2017-11-28 11:04:43 +01004917 sizeof(*sh_ssl_sess_tree),
4918 ((global.nbthread > 1) || (!global_ssl.private_cache && (global.nbproc > 1))) ? 1 : 0);
Frédéric Lécaille4c8aa112018-10-25 20:22:46 +02004919 if (alloc_ctx <= 0) {
William Lallemandc3cd35f2017-11-28 11:04:43 +01004920 if (alloc_ctx == SHCTX_E_INIT_LOCK)
4921 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");
4922 else
4923 ha_alert("Unable to allocate SSL session cache.\n");
4924 return -1;
4925 }
4926 /* free block callback */
4927 ssl_shctx->free_block = sh_ssl_sess_free_blocks;
4928 /* init the root tree within the extra space */
4929 sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context);
4930 *sh_ssl_sess_tree = EB_ROOT_UNIQUE;
Willy Tarreau55d37912016-12-21 23:38:39 +01004931 }
Willy Tarreau55d37912016-12-21 23:38:39 +01004932 err = 0;
4933 /* initialize all certificate contexts */
4934 err += ssl_sock_prepare_all_ctx(bind_conf);
4935
4936 /* initialize CA variables if the certificates generation is enabled */
4937 err += ssl_sock_load_ca(bind_conf);
4938
4939 return -err;
4940}
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004941
4942/* release ssl context allocated for servers. */
4943void ssl_sock_free_srv_ctx(struct server *srv)
4944{
Olivier Houchardc7566002018-11-20 23:33:50 +01004945#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
4946 if (srv->ssl_ctx.alpn_str)
4947 free(srv->ssl_ctx.alpn_str);
4948#endif
Lukas Tribusda95fd92018-11-25 13:21:27 +01004949#ifdef OPENSSL_NPN_NEGOTIATED
Olivier Houchardc7566002018-11-20 23:33:50 +01004950 if (srv->ssl_ctx.npn_str)
4951 free(srv->ssl_ctx.npn_str);
Lukas Tribus7706b852018-11-26 22:57:17 +01004952#endif
Christopher Faulet77fe80c2015-07-29 13:02:40 +02004953 if (srv->ssl_ctx.ctx)
4954 SSL_CTX_free(srv->ssl_ctx.ctx);
4955}
4956
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004957/* Walks down the two trees in bind_conf and frees all the certs. The pointer may
Emeric Brunfc0421f2012-09-07 17:30:07 +02004958 * be NULL, in which case nothing is done. The default_ctx is nullified too.
4959 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004960void ssl_sock_free_all_ctx(struct bind_conf *bind_conf)
Emeric Brunfc0421f2012-09-07 17:30:07 +02004961{
4962 struct ebmb_node *node, *back;
4963 struct sni_ctx *sni;
4964
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004965 node = ebmb_first(&bind_conf->sni_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004966 while (node) {
4967 sni = ebmb_entry(node, struct sni_ctx, name);
4968 back = ebmb_next(node);
4969 ebmb_delete(node);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004970 if (!sni->order) { /* only free the CTX on its first occurrence */
Emeric Brunfc0421f2012-09-07 17:30:07 +02004971 SSL_CTX_free(sni->ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004972 ssl_sock_free_ssl_conf(sni->conf);
4973 free(sni->conf);
4974 sni->conf = NULL;
4975 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004976 free(sni);
4977 node = back;
4978 }
4979
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004980 node = ebmb_first(&bind_conf->sni_w_ctx);
Emeric Brunfc0421f2012-09-07 17:30:07 +02004981 while (node) {
4982 sni = ebmb_entry(node, struct sni_ctx, name);
4983 back = ebmb_next(node);
4984 ebmb_delete(node);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004985 if (!sni->order) { /* only free the CTX on its first occurrence */
Emeric Brunfc0421f2012-09-07 17:30:07 +02004986 SSL_CTX_free(sni->ctx);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004987 ssl_sock_free_ssl_conf(sni->conf);
4988 free(sni->conf);
4989 sni->conf = NULL;
4990 }
Emeric Brunfc0421f2012-09-07 17:30:07 +02004991 free(sni);
4992 node = back;
4993 }
Emmanuel Hocdetf6b37c62017-03-06 15:34:44 +01004994 SSL_CTX_free(bind_conf->initial_ctx);
4995 bind_conf->initial_ctx = NULL;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004996 bind_conf->default_ctx = NULL;
Emmanuel Hocdet98263292016-12-29 18:26:15 +01004997 bind_conf->default_ssl_conf = NULL;
Emeric Brune1f38db2012-09-03 20:36:47 +02004998}
4999
Willy Tarreau795cdab2016-12-22 17:30:54 +01005000/* Destroys all the contexts for a bind_conf. This is used during deinit(). */
5001void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf)
5002{
5003 ssl_sock_free_ca(bind_conf);
5004 ssl_sock_free_all_ctx(bind_conf);
Emmanuel Hocdet98263292016-12-29 18:26:15 +01005005 ssl_sock_free_ssl_conf(&bind_conf->ssl_conf);
Willy Tarreau795cdab2016-12-22 17:30:54 +01005006 free(bind_conf->ca_sign_file);
5007 free(bind_conf->ca_sign_pass);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02005008 if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01005009 free(bind_conf->keys_ref->filename);
5010 free(bind_conf->keys_ref->tlskeys);
5011 LIST_DEL(&bind_conf->keys_ref->list);
5012 free(bind_conf->keys_ref);
5013 }
5014 bind_conf->keys_ref = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005015 bind_conf->ca_sign_pass = NULL;
5016 bind_conf->ca_sign_file = NULL;
Willy Tarreau795cdab2016-12-22 17:30:54 +01005017}
5018
Christopher Faulet31af49d2015-06-09 17:29:50 +02005019/* Load CA cert file and private key used to generate certificates */
5020int
Willy Tarreau03209342016-12-22 17:08:28 +01005021ssl_sock_load_ca(struct bind_conf *bind_conf)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005022{
Willy Tarreau03209342016-12-22 17:08:28 +01005023 struct proxy *px = bind_conf->frontend;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005024 FILE *fp;
5025 X509 *cacert = NULL;
5026 EVP_PKEY *capkey = NULL;
5027 int err = 0;
5028
Christopher Fauletf8bb0ce2017-09-15 09:52:49 +02005029 if (!bind_conf->generate_certs)
Christopher Faulet31af49d2015-06-09 17:29:50 +02005030 return err;
5031
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005032#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02005033 if (global_ssl.ctx_cache) {
Willy Tarreauef934602016-12-22 23:12:01 +01005034 ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005035 }
Christopher Fauletd2cab922015-07-28 16:03:47 +02005036 ssl_ctx_lru_seed = (unsigned int)time(NULL);
Emeric Brun821bb9b2017-06-15 16:37:39 +02005037 ssl_ctx_serial = now_ms;
Willy Tarreaua84c2672015-10-09 12:10:13 +02005038#endif
Christopher Fauletd2cab922015-07-28 16:03:47 +02005039
Christopher Faulet31af49d2015-06-09 17:29:50 +02005040 if (!bind_conf->ca_sign_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005041 ha_alert("Proxy '%s': cannot enable certificate generation, "
5042 "no CA certificate File configured at [%s:%d].\n",
5043 px->id, bind_conf->file, bind_conf->line);
Christopher Faulet31af49d2015-06-09 17:29:50 +02005044 goto load_error;
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005045 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005046
5047 /* read in the CA certificate */
5048 if (!(fp = fopen(bind_conf->ca_sign_file, "r"))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005049 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n",
5050 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
Christopher Faulet31af49d2015-06-09 17:29:50 +02005051 goto load_error;
5052 }
5053 if (!(cacert = PEM_read_X509(fp, NULL, NULL, NULL))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005054 ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d].\n",
5055 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005056 goto read_error;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005057 }
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005058 rewind(fp);
Christopher Faulet31af49d2015-06-09 17:29:50 +02005059 if (!(capkey = PEM_read_PrivateKey(fp, NULL, NULL, bind_conf->ca_sign_pass))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01005060 ha_alert("Proxy '%s': Failed to read CA private key file '%s' at [%s:%d].\n",
5061 px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line);
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005062 goto read_error;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005063 }
Christopher Faulet31af49d2015-06-09 17:29:50 +02005064
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005065 fclose (fp);
Christopher Faulet31af49d2015-06-09 17:29:50 +02005066 bind_conf->ca_sign_cert = cacert;
5067 bind_conf->ca_sign_pkey = capkey;
5068 return err;
5069
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005070 read_error:
5071 fclose (fp);
Christopher Faulet31af49d2015-06-09 17:29:50 +02005072 if (capkey) EVP_PKEY_free(capkey);
5073 if (cacert) X509_free(cacert);
Christopher Fauletc6f02fb2015-10-09 10:53:31 +02005074 load_error:
5075 bind_conf->generate_certs = 0;
5076 err++;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005077 return err;
5078}
5079
5080/* Release CA cert and private key used to generate certificated */
5081void
5082ssl_sock_free_ca(struct bind_conf *bind_conf)
5083{
Christopher Faulet31af49d2015-06-09 17:29:50 +02005084 if (bind_conf->ca_sign_pkey)
5085 EVP_PKEY_free(bind_conf->ca_sign_pkey);
5086 if (bind_conf->ca_sign_cert)
5087 X509_free(bind_conf->ca_sign_cert);
Willy Tarreau94ff03a2016-12-22 17:57:46 +01005088 bind_conf->ca_sign_pkey = NULL;
5089 bind_conf->ca_sign_cert = NULL;
Christopher Faulet31af49d2015-06-09 17:29:50 +02005090}
5091
Emeric Brun46591952012-05-18 15:47:34 +02005092/*
5093 * This function is called if SSL * context is not yet allocated. The function
5094 * is designed to be called before any other data-layer operation and sets the
5095 * handshake flag on the connection. It is safe to call it multiple times.
5096 * It returns 0 on success and -1 in error case.
5097 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005098static int ssl_sock_init(struct connection *conn, void **xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005099{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005100 struct ssl_sock_ctx *ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005101 /* already initialized */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005102 if (*xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005103 return 0;
5104
Willy Tarreau3c728722014-01-23 13:50:42 +01005105 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005106 return 0;
5107
Olivier Houchard66ab4982019-02-26 18:37:15 +01005108 ctx = pool_alloc(ssl_sock_ctx_pool);
5109 if (!ctx) {
5110 conn->err_code = CO_ER_SSL_NO_MEM;
5111 return -1;
5112 }
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005113 ctx->sent_early_data = 0;
5114 ctx->tmp_early_data = -1;
Olivier Houcharda8955d52019-04-07 22:00:38 +02005115 ctx->conn = conn;
5116
5117 /* Only work with sockets for now, this should be adapted when we'll
5118 * add QUIC support.
5119 */
5120 ctx->xprt = xprt_get(XPRT_RAW);
Olivier Houchard19afb272019-05-23 18:24:07 +02005121 if (ctx->xprt->init) {
5122 if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) {
5123 pool_free(ssl_sock_ctx_pool, ctx);
5124 return -1;
5125 }
5126 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005127
Willy Tarreau20879a02012-12-03 16:32:10 +01005128 if (global.maxsslconn && sslconns >= global.maxsslconn) {
5129 conn->err_code = CO_ER_SSL_TOO_MANY;
Willy Tarreau403edff2012-09-06 11:58:37 +02005130 return -1;
Willy Tarreau20879a02012-12-03 16:32:10 +01005131 }
Willy Tarreau403edff2012-09-06 11:58:37 +02005132
Emeric Brun46591952012-05-18 15:47:34 +02005133 /* If it is in client mode initiate SSL session
5134 in connect state otherwise accept state */
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005135 if (objt_server(conn->target)) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005136 int may_retry = 1;
5137
5138 retry_connect:
Emeric Brun46591952012-05-18 15:47:34 +02005139 /* Alloc a new SSL session ctx */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005140 ctx->ssl = SSL_new(__objt_server(conn->target)->ssl_ctx.ctx);
5141 if (!ctx->ssl) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005142 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005143 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005144 goto retry_connect;
5145 }
Willy Tarreau20879a02012-12-03 16:32:10 +01005146 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005147 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005148 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02005149 ctx->bio = BIO_new(ha_meth);
5150 if (!ctx->bio) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005151 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005152 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005153 goto retry_connect;
5154 }
Emeric Brun55476152014-11-12 17:35:37 +01005155 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005156 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005157 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02005158 BIO_set_data(ctx->bio, ctx);
Olivier Houcharda8955d52019-04-07 22:00:38 +02005159 SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio);
Emeric Brun46591952012-05-18 15:47:34 +02005160
Evan Broderbe554312013-06-27 00:05:25 -07005161 /* set connection pointer */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005162 if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) {
5163 SSL_free(ctx->ssl);
5164 ctx->ssl = NULL;
Emeric Brun55476152014-11-12 17:35:37 +01005165 conn->xprt_ctx = NULL;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005166 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005167 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005168 goto retry_connect;
5169 }
Emeric Brun55476152014-11-12 17:35:37 +01005170 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005171 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005172 }
5173
Olivier Houchard66ab4982019-02-26 18:37:15 +01005174 SSL_set_connect_state(ctx->ssl);
Willy Tarreau07d94e42018-09-20 10:57:52 +02005175 if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5176 const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr;
5177 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 +01005178 if (sess && !SSL_set_session(ctx->ssl, sess)) {
Olivier Houcharde6060c52017-11-16 17:42:52 +01005179 SSL_SESSION_free(sess);
Willy Tarreau07d94e42018-09-20 10:57:52 +02005180 free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
5181 __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL;
Olivier Houcharde6060c52017-11-16 17:42:52 +01005182 } else if (sess) {
5183 SSL_SESSION_free(sess);
Emeric Brun55476152014-11-12 17:35:37 +01005184 }
5185 }
Evan Broderbe554312013-06-27 00:05:25 -07005186
Emeric Brun46591952012-05-18 15:47:34 +02005187 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005188 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau403edff2012-09-06 11:58:37 +02005189
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005190 _HA_ATOMIC_ADD(&sslconns, 1);
5191 _HA_ATOMIC_ADD(&totalsslconns, 1);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005192 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005193 return 0;
5194 }
Willy Tarreau3fdb3662012-11-12 00:42:33 +01005195 else if (objt_listener(conn->target)) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005196 int may_retry = 1;
5197
5198 retry_accept:
Emeric Brun46591952012-05-18 15:47:34 +02005199 /* Alloc a new SSL session ctx */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005200 ctx->ssl = SSL_new(__objt_listener(conn->target)->bind_conf->initial_ctx);
5201 if (!ctx->ssl) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005202 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005203 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005204 goto retry_accept;
5205 }
Willy Tarreau20879a02012-12-03 16:32:10 +01005206 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005207 goto err;
Willy Tarreau20879a02012-12-03 16:32:10 +01005208 }
Emeric Brun46591952012-05-18 15:47:34 +02005209
Olivier Houcharda8955d52019-04-07 22:00:38 +02005210 ctx->bio = BIO_new(ha_meth);
5211 if (!ctx->bio) {
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005212 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005213 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005214 goto retry_accept;
5215 }
Emeric Brun55476152014-11-12 17:35:37 +01005216 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005217 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005218 }
Olivier Houcharda8955d52019-04-07 22:00:38 +02005219 BIO_set_data(ctx->bio, ctx);
Olivier Houcharda8955d52019-04-07 22:00:38 +02005220 SSL_set_bio(ctx->ssl, ctx->bio, ctx->bio);
Emeric Brun46591952012-05-18 15:47:34 +02005221
Emeric Brune1f38db2012-09-03 20:36:47 +02005222 /* set connection pointer */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005223 if (!SSL_set_ex_data(ctx->ssl, ssl_app_data_index, conn)) {
5224 SSL_free(ctx->ssl);
5225 ctx->ssl = NULL;
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005226 if (may_retry--) {
Willy Tarreaubafbe012017-11-24 17:34:44 +01005227 pool_gc(NULL);
Willy Tarreaufba03cd2014-11-13 13:48:58 +01005228 goto retry_accept;
5229 }
Emeric Brun55476152014-11-12 17:35:37 +01005230 conn->err_code = CO_ER_SSL_NO_MEM;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005231 goto err;
Emeric Brun55476152014-11-12 17:35:37 +01005232 }
5233
Olivier Houchard66ab4982019-02-26 18:37:15 +01005234 SSL_set_accept_state(ctx->ssl);
Emeric Brune1f38db2012-09-03 20:36:47 +02005235
Emeric Brun46591952012-05-18 15:47:34 +02005236 /* leave init state and start handshake */
Willy Tarreau05737472012-09-04 08:03:39 +02005237 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005238#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(OPENSSL_IS_BORINGSSL)
Olivier Houchardc2aae742017-09-22 18:26:28 +02005239 conn->flags |= CO_FL_EARLY_SSL_HS;
5240#endif
Willy Tarreau403edff2012-09-06 11:58:37 +02005241
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005242 _HA_ATOMIC_ADD(&sslconns, 1);
5243 _HA_ATOMIC_ADD(&totalsslconns, 1);
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005244 *xprt_ctx = ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005245 return 0;
5246 }
5247 /* don't know how to handle such a target */
Willy Tarreau20879a02012-12-03 16:32:10 +01005248 conn->err_code = CO_ER_SSL_NO_TARGET;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005249err:
5250 pool_free(ssl_sock_ctx_pool, ctx);
Emeric Brun46591952012-05-18 15:47:34 +02005251 return -1;
5252}
5253
5254
5255/* This is the callback which is used when an SSL handshake is pending. It
5256 * updates the FD status if it wants some polling before being called again.
5257 * It returns 0 if it fails in a fatal way or needs to poll to go further,
5258 * otherwise it returns non-zero and removes itself from the connection's
5259 * flags (the bit is provided in <flag> by the caller).
5260 */
5261int ssl_sock_handshake(struct connection *conn, unsigned int flag)
5262{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005263 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emeric Brun46591952012-05-18 15:47:34 +02005264 int ret;
5265
Willy Tarreau3c728722014-01-23 13:50:42 +01005266 if (!conn_ctrl_ready(conn))
Willy Tarreauf79c8172013-10-21 16:30:56 +02005267 return 0;
5268
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02005269 if (!conn->xprt_ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005270 goto out_error;
5271
Willy Tarreau5db847a2019-05-09 14:13:35 +02005272#if HA_OPENSSL_VERSION_NUMBER >= 0x10101000L
Olivier Houchardc2aae742017-09-22 18:26:28 +02005273 /*
5274 * Check if we have early data. If we do, we have to read them
5275 * before SSL_do_handshake() is called, And there's no way to
5276 * detect early data, except to try to read them
5277 */
5278 if (conn->flags & CO_FL_EARLY_SSL_HS) {
5279 size_t read_data;
5280
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005281 ret = SSL_read_early_data(ctx->ssl, &ctx->tmp_early_data,
Olivier Houchardc2aae742017-09-22 18:26:28 +02005282 1, &read_data);
5283 if (ret == SSL_READ_EARLY_DATA_ERROR)
5284 goto check_error;
5285 if (ret == SSL_READ_EARLY_DATA_SUCCESS) {
5286 conn->flags &= ~(CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN);
5287 return 1;
5288 } else
5289 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5290 }
5291#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005292 /* If we use SSL_do_handshake to process a reneg initiated by
5293 * the remote peer, it sometimes returns SSL_ERROR_SSL.
5294 * Usually SSL_write and SSL_read are used and process implicitly
5295 * the reneg handshake.
5296 * Here we use SSL_peek as a workaround for reneg.
5297 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005298 if ((conn->flags & CO_FL_CONNECTED) && SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005299 char c;
5300
Olivier Houchard66ab4982019-02-26 18:37:15 +01005301 ret = SSL_peek(ctx->ssl, &c, 1);
Emeric Brun674b7432012-11-08 19:21:55 +01005302 if (ret <= 0) {
5303 /* handshake may have not been completed, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005304 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005305
Emeric Brun674b7432012-11-08 19:21:55 +01005306 if (ret == SSL_ERROR_WANT_WRITE) {
5307 /* SSL handshake needs to write, L4 connection may not be ready */
5308 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +01005309 __conn_sock_want_send(conn);
Willy Tarreau585744b2017-08-24 14:31:19 +02005310 fd_cant_send(conn->handle.fd);
Emeric Brun674b7432012-11-08 19:21:55 +01005311 return 0;
5312 }
5313 else if (ret == SSL_ERROR_WANT_READ) {
5314 /* handshake may have been completed but we have
5315 * no more data to read.
5316 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005317 if (!SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun674b7432012-11-08 19:21:55 +01005318 ret = 1;
5319 goto reneg_ok;
5320 }
5321 /* SSL handshake needs to read, L4 connection is ready */
5322 if (conn->flags & CO_FL_WAIT_L4_CONN)
5323 conn->flags &= ~CO_FL_WAIT_L4_CONN;
5324 __conn_sock_stop_send(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +01005325 __conn_sock_want_recv(conn);
Willy Tarreau585744b2017-08-24 14:31:19 +02005326 fd_cant_recv(conn->handle.fd);
Emeric Brun674b7432012-11-08 19:21:55 +01005327 return 0;
5328 }
Willy Tarreau5db847a2019-05-09 14:13:35 +02005329#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005330 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005331 ssl_async_process_fds(conn, ctx->ssl);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005332 return 0;
5333 }
5334#endif
Emeric Brun674b7432012-11-08 19:21:55 +01005335 else if (ret == SSL_ERROR_SYSCALL) {
5336 /* if errno is null, then connection was successfully established */
5337 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5338 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Willy Tarreau20879a02012-12-03 16:32:10 +01005339 if (!conn->err_code) {
Emeric Brun77e89192018-08-16 11:36:40 +02005340#ifdef OPENSSL_IS_BORINGSSL /* BoringSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005341 conn->err_code = CO_ER_SSL_HANDSHAKE;
5342#else
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005343 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005344#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005345 OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl);
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005346 empty_handshake = state == TLS_ST_BEFORE;
5347#else
Ilya Shipitsin54832b92019-05-05 23:27:54 +05005348 empty_handshake = SSL_state((SSL *)ctx->ssl) == SSL_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005349#endif
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005350 if (empty_handshake) {
Emeric Brun29f037d2014-04-25 19:05:36 +02005351 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005352 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005353 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5354 else
5355 conn->err_code = CO_ER_SSL_EMPTY;
5356 }
5357 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005358 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005359 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5360 else
5361 conn->err_code = CO_ER_SSL_ABORT;
5362 }
5363 }
5364 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005365 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005366 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
Willy Tarreau20879a02012-12-03 16:32:10 +01005367 else
Emeric Brun29f037d2014-04-25 19:05:36 +02005368 conn->err_code = CO_ER_SSL_HANDSHAKE;
5369 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005370#endif
Willy Tarreau20879a02012-12-03 16:32:10 +01005371 }
Emeric Brun674b7432012-11-08 19:21:55 +01005372 goto out_error;
5373 }
5374 else {
5375 /* Fail on all other handshake errors */
5376 /* Note: OpenSSL may leave unread bytes in the socket's
5377 * buffer, causing an RST to be emitted upon close() on
5378 * TCP sockets. We first try to drain possibly pending
5379 * data to avoid this as much as possible.
5380 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01005381 conn_sock_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005382 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005383 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005384 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun674b7432012-11-08 19:21:55 +01005385 goto out_error;
5386 }
5387 }
5388 /* read some data: consider handshake completed */
5389 goto reneg_ok;
5390 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005391 ret = SSL_do_handshake(ctx->ssl);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005392check_error:
Emeric Brun46591952012-05-18 15:47:34 +02005393 if (ret != 1) {
5394 /* handshake did not complete, let's find why */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005395 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005396
5397 if (ret == SSL_ERROR_WANT_WRITE) {
5398 /* SSL handshake needs to write, L4 connection may not be ready */
5399 __conn_sock_stop_recv(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +01005400 __conn_sock_want_send(conn);
Willy Tarreau585744b2017-08-24 14:31:19 +02005401 fd_cant_send(conn->handle.fd);
Emeric Brun46591952012-05-18 15:47:34 +02005402 return 0;
5403 }
5404 else if (ret == SSL_ERROR_WANT_READ) {
5405 /* SSL handshake needs to read, L4 connection is ready */
5406 if (conn->flags & CO_FL_WAIT_L4_CONN)
5407 conn->flags &= ~CO_FL_WAIT_L4_CONN;
5408 __conn_sock_stop_send(conn);
Willy Tarreaue1f50c42014-01-22 20:02:06 +01005409 __conn_sock_want_recv(conn);
Willy Tarreau585744b2017-08-24 14:31:19 +02005410 fd_cant_recv(conn->handle.fd);
Emeric Brun46591952012-05-18 15:47:34 +02005411 return 0;
5412 }
Willy Tarreau5db847a2019-05-09 14:13:35 +02005413#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005414 else if (ret == SSL_ERROR_WANT_ASYNC) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005415 ssl_async_process_fds(conn, ctx->ssl);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005416 return 0;
5417 }
5418#endif
Willy Tarreau89230192012-09-28 20:22:13 +02005419 else if (ret == SSL_ERROR_SYSCALL) {
5420 /* if errno is null, then connection was successfully established */
5421 if (!errno && conn->flags & CO_FL_WAIT_L4_CONN)
5422 conn->flags &= ~CO_FL_WAIT_L4_CONN;
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005423 if (!conn->err_code) {
Emeric Brun77e89192018-08-16 11:36:40 +02005424#ifdef OPENSSL_IS_BORINGSSL /* BoringSSL */
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005425 conn->err_code = CO_ER_SSL_HANDSHAKE;
5426#else
5427 int empty_handshake;
Willy Tarreau5db847a2019-05-09 14:13:35 +02005428#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005429 OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl);
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005430 empty_handshake = state == TLS_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005431#else
Ilya Shipitsin54832b92019-05-05 23:27:54 +05005432 empty_handshake = SSL_state((SSL *)ctx->ssl) == SSL_ST_BEFORE;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02005433#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005434 if (empty_handshake) {
5435 if (!errno) {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005436 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005437 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5438 else
5439 conn->err_code = CO_ER_SSL_EMPTY;
5440 }
5441 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005442 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005443 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5444 else
5445 conn->err_code = CO_ER_SSL_ABORT;
5446 }
Emeric Brun29f037d2014-04-25 19:05:36 +02005447 }
5448 else {
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005449 if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT)
Emeric Brun29f037d2014-04-25 19:05:36 +02005450 conn->err_code = CO_ER_SSL_HANDSHAKE_HB;
5451 else
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005452 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun29f037d2014-04-25 19:05:36 +02005453 }
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01005454#endif
Emeric Brun29f037d2014-04-25 19:05:36 +02005455 }
Willy Tarreau89230192012-09-28 20:22:13 +02005456 goto out_error;
5457 }
Emeric Brun46591952012-05-18 15:47:34 +02005458 else {
5459 /* Fail on all other handshake errors */
Willy Tarreau566dc552012-10-19 20:52:18 +02005460 /* Note: OpenSSL may leave unread bytes in the socket's
5461 * buffer, causing an RST to be emitted upon close() on
5462 * TCP sockets. We first try to drain possibly pending
5463 * data to avoid this as much as possible.
5464 */
Willy Tarreaud85c4852015-03-13 00:40:28 +01005465 conn_sock_drain(conn);
Willy Tarreau20879a02012-12-03 16:32:10 +01005466 if (!conn->err_code)
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005467 conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ?
Willy Tarreauf51c6982014-04-25 20:02:39 +02005468 CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005469 goto out_error;
5470 }
5471 }
Willy Tarreau5db847a2019-05-09 14:13:35 +02005472#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchard522eea72017-11-03 16:27:47 +01005473 else {
5474 /*
5475 * If the server refused the early data, we have to send a
5476 * 425 to the client, as we no longer have the data to sent
5477 * them again.
5478 */
5479 if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005480 if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) {
Olivier Houchard522eea72017-11-03 16:27:47 +01005481 conn->err_code = CO_ER_SSL_EARLY_FAILED;
5482 goto out_error;
5483 }
5484 }
5485 }
5486#endif
5487
Emeric Brun46591952012-05-18 15:47:34 +02005488
Emeric Brun674b7432012-11-08 19:21:55 +01005489reneg_ok:
Emeric Brunb5e42a82017-06-06 12:35:14 +00005490
Willy Tarreau5db847a2019-05-09 14:13:35 +02005491#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005492 /* ASYNC engine API doesn't support moving read/write
5493 * buffers. So we disable ASYNC mode right after
5494 * the handshake to avoid buffer oveflows.
5495 */
5496 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005497 SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005498#endif
Emeric Brun46591952012-05-18 15:47:34 +02005499 /* Handshake succeeded */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005500 if (!SSL_session_reused(ctx->ssl)) {
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005501 if (objt_server(conn->target)) {
5502 update_freq_ctr(&global.ssl_be_keys_per_sec, 1);
5503 if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max)
5504 global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr;
Emeric Brun46591952012-05-18 15:47:34 +02005505 }
Willy Tarreau0c9c2722014-05-28 12:28:58 +02005506 else {
5507 update_freq_ctr(&global.ssl_fe_keys_per_sec, 1);
5508 if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max)
5509 global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr;
5510 }
Emeric Brun46591952012-05-18 15:47:34 +02005511 }
5512
Emmanuel Hocdetca6a9572017-11-23 12:40:07 +01005513#ifdef OPENSSL_IS_BORINGSSL
Olivier Houchard66ab4982019-02-26 18:37:15 +01005514 if ((conn->flags & CO_FL_EARLY_SSL_HS) && !SSL_in_early_data(ctx->ssl))
Emmanuel Hocdetca6a9572017-11-23 12:40:07 +01005515 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5516#endif
Emeric Brun46591952012-05-18 15:47:34 +02005517 /* The connection is now established at both layers, it's time to leave */
5518 conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN);
5519 return 1;
5520
5521 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005522 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005523 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005524 ERR_clear_error();
5525
Emeric Brun9fa89732012-10-04 17:09:56 +02005526 /* free resumed session if exists */
Willy Tarreau07d94e42018-09-20 10:57:52 +02005527 if (objt_server(conn->target) && __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) {
5528 free(__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr);
5529 __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr = NULL;
Emeric Brun9fa89732012-10-04 17:09:56 +02005530 }
5531
Emeric Brun46591952012-05-18 15:47:34 +02005532 /* Fail on all other handshake errors */
5533 conn->flags |= CO_FL_ERROR;
Willy Tarreau20879a02012-12-03 16:32:10 +01005534 if (!conn->err_code)
5535 conn->err_code = CO_ER_SSL_HANDSHAKE;
Emeric Brun46591952012-05-18 15:47:34 +02005536 return 0;
5537}
5538
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005539static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param)
Olivier Houcharddf357842019-03-21 16:30:07 +01005540{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005541
5542 return conn_subscribe(conn, NULL, event_type, param);
Olivier Houcharddf357842019-03-21 16:30:07 +01005543}
5544
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005545static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, void *param)
Olivier Houcharddf357842019-03-21 16:30:07 +01005546{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005547
5548 return conn_unsubscribe(conn, NULL, event_type, param);
Olivier Houcharddf357842019-03-21 16:30:07 +01005549}
5550
Emeric Brun46591952012-05-18 15:47:34 +02005551/* Receive up to <count> bytes from connection <conn>'s socket and store them
Willy Tarreauabf08d92014-01-14 11:31:27 +01005552 * into buffer <buf>. Only one call to recv() is performed, unless the
Emeric Brun46591952012-05-18 15:47:34 +02005553 * buffer wraps, in which case a second call may be performed. The connection's
5554 * flags are updated with whatever special event is detected (error, read0,
5555 * empty). The caller is responsible for taking care of those events and
5556 * avoiding the call if inappropriate. The function does not call the
5557 * connection's polling update function, so the caller is responsible for this.
5558 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005559static 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 +02005560{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005561 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreaubfc4d772018-07-18 11:22:03 +02005562 ssize_t ret;
5563 size_t try, done = 0;
Emeric Brun46591952012-05-18 15:47:34 +02005564
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005565 conn_refresh_polling_flags(conn);
5566
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005567 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005568 goto out_error;
5569
5570 if (conn->flags & CO_FL_HANDSHAKE)
5571 /* a handshake was requested */
5572 return 0;
5573
Emeric Brun46591952012-05-18 15:47:34 +02005574 /* read the largest possible block. For this, we perform only one call
5575 * to recv() unless the buffer wraps and we exactly fill the first hunk,
5576 * in which case we accept to do it once again. A new attempt is made on
5577 * EINTR too.
5578 */
Willy Tarreau00b0fb92014-01-17 11:09:40 +01005579 while (count > 0) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005580 int need_out = 0;
5581
Willy Tarreau591d4452018-06-15 17:21:00 +02005582 try = b_contig_space(buf);
5583 if (!try)
5584 break;
5585
Willy Tarreauabf08d92014-01-14 11:31:27 +01005586 if (try > count)
5587 try = count;
Willy Tarreau591d4452018-06-15 17:21:00 +02005588
Olivier Houchardc2aae742017-09-22 18:26:28 +02005589 if (((conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == CO_FL_EARLY_SSL_HS) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005590 ctx->tmp_early_data != -1) {
5591 *b_tail(buf) = ctx->tmp_early_data;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005592 done++;
5593 try--;
5594 count--;
Olivier Houchardacd14032018-06-28 18:17:23 +02005595 b_add(buf, 1);
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005596 ctx->tmp_early_data = -1;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005597 continue;
5598 }
Willy Tarreauabf08d92014-01-14 11:31:27 +01005599
Willy Tarreau5db847a2019-05-09 14:13:35 +02005600#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchardc2aae742017-09-22 18:26:28 +02005601 if (conn->flags & CO_FL_EARLY_SSL_HS) {
5602 size_t read_length;
5603
Olivier Houchard66ab4982019-02-26 18:37:15 +01005604 ret = SSL_read_early_data(ctx->ssl,
Willy Tarreau8f9c72d2018-06-07 18:46:28 +02005605 b_tail(buf), try, &read_length);
Olivier Houchard522eea72017-11-03 16:27:47 +01005606 if (ret == SSL_READ_EARLY_DATA_SUCCESS &&
5607 read_length > 0)
Olivier Houchardc2aae742017-09-22 18:26:28 +02005608 conn->flags |= CO_FL_EARLY_DATA;
5609 if (ret == SSL_READ_EARLY_DATA_SUCCESS ||
5610 ret == SSL_READ_EARLY_DATA_FINISH) {
5611 if (ret == SSL_READ_EARLY_DATA_FINISH) {
5612 /*
5613 * We're done reading the early data,
5614 * let's make the handshake
5615 */
5616 conn->flags &= ~CO_FL_EARLY_SSL_HS;
5617 conn->flags |= CO_FL_SSL_WAIT_HS;
5618 need_out = 1;
5619 if (read_length == 0)
5620 break;
5621 }
5622 ret = read_length;
5623 }
5624 } else
5625#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01005626 ret = SSL_read(ctx->ssl, b_tail(buf), try);
Emmanuel Hocdetca6a9572017-11-23 12:40:07 +01005627#ifdef OPENSSL_IS_BORINGSSL
5628 if (conn->flags & CO_FL_EARLY_SSL_HS) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005629 if (SSL_in_early_data(ctx->ssl)) {
Emmanuel Hocdetca6a9572017-11-23 12:40:07 +01005630 if (ret > 0)
5631 conn->flags |= CO_FL_EARLY_DATA;
5632 } else {
Emmanuel Hocdetcebd7962017-11-27 16:14:40 +01005633 conn->flags &= ~(CO_FL_EARLY_SSL_HS);
Emmanuel Hocdetca6a9572017-11-23 12:40:07 +01005634 }
5635 }
5636#endif
Emeric Brune1f38db2012-09-03 20:36:47 +02005637 if (conn->flags & CO_FL_ERROR) {
5638 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005639 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005640 }
Emeric Brun46591952012-05-18 15:47:34 +02005641 if (ret > 0) {
Olivier Houchardacd14032018-06-28 18:17:23 +02005642 b_add(buf, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005643 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005644 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005645 }
Emeric Brun46591952012-05-18 15:47:34 +02005646 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005647 ret = SSL_get_error(ctx->ssl, ret);
Emeric Brun46591952012-05-18 15:47:34 +02005648 if (ret == SSL_ERROR_WANT_WRITE) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01005649 /* handshake is running, and it needs to enable write */
Emeric Brun46591952012-05-18 15:47:34 +02005650 conn->flags |= CO_FL_SSL_WAIT_HS;
Emeric Brun8af8dd12012-11-08 17:56:20 +01005651 __conn_sock_want_send(conn);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005652#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005653 /* Async mode can be re-enabled, because we're leaving data state.*/
5654 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005655 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005656#endif
Emeric Brun46591952012-05-18 15:47:34 +02005657 break;
5658 }
5659 else if (ret == SSL_ERROR_WANT_READ) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005660 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01005661 /* handshake is running, and it may need to re-enable read */
5662 conn->flags |= CO_FL_SSL_WAIT_HS;
5663 __conn_sock_want_recv(conn);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005664#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005665 /* Async mode can be re-enabled, because we're leaving data state.*/
5666 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005667 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005668#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01005669 break;
5670 }
Emeric Brun46591952012-05-18 15:47:34 +02005671 /* we need to poll for retry a read later */
Willy Tarreau585744b2017-08-24 14:31:19 +02005672 fd_cant_recv(conn->handle.fd);
Emeric Brun46591952012-05-18 15:47:34 +02005673 break;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005674 } else if (ret == SSL_ERROR_ZERO_RETURN)
5675 goto read0;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005676 /* For SSL_ERROR_SYSCALL, make sure to clear the error
5677 * stack before shutting down the connection for
5678 * reading. */
Olivier Houchard7e2e5052018-02-13 15:17:23 +01005679 if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN))
5680 goto clear_ssl_error;
Emeric Brun46591952012-05-18 15:47:34 +02005681 /* otherwise it's a real error */
5682 goto out_error;
5683 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005684 if (need_out)
5685 break;
Emeric Brun46591952012-05-18 15:47:34 +02005686 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005687 leave:
5688 conn_cond_update_sock_polling(conn);
Emeric Brun46591952012-05-18 15:47:34 +02005689 return done;
5690
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005691 clear_ssl_error:
5692 /* Clear openssl global errors stack */
5693 ssl_sock_dump_errors(conn);
5694 ERR_clear_error();
Emeric Brun46591952012-05-18 15:47:34 +02005695 read0:
5696 conn_sock_read0(conn);
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005697 goto leave;
Christopher Faulet4ac77a92018-02-19 14:25:15 +01005698
Emeric Brun46591952012-05-18 15:47:34 +02005699 out_error:
Olivier Houchard7e2e5052018-02-13 15:17:23 +01005700 conn->flags |= CO_FL_ERROR;
Emeric Brun644cde02012-12-14 11:21:13 +01005701 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005702 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005703 ERR_clear_error();
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005704 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02005705}
5706
5707
Willy Tarreau787db9a2018-06-14 18:31:46 +02005708/* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s
5709 * socket. <flags> may contain some CO_SFL_* flags to hint the system about
5710 * other pending data for example, but this flag is ignored at the moment.
Emeric Brun46591952012-05-18 15:47:34 +02005711 * Only one call to send() is performed, unless the buffer wraps, in which case
5712 * a second call may be performed. The connection's flags are updated with
5713 * whatever special event is detected (error, empty). The caller is responsible
5714 * for taking care of those events and avoiding the call if inappropriate. The
5715 * function does not call the connection's polling update function, so the caller
Willy Tarreau787db9a2018-06-14 18:31:46 +02005716 * is responsible for this. The buffer's output is not adjusted, it's up to the
5717 * caller to take care of this. It's up to the caller to update the buffer's
5718 * contents based on the return value.
Emeric Brun46591952012-05-18 15:47:34 +02005719 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005720static 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 +02005721{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005722 struct ssl_sock_ctx *ctx = xprt_ctx;
Willy Tarreau787db9a2018-06-14 18:31:46 +02005723 ssize_t ret;
5724 size_t try, done;
Emeric Brun46591952012-05-18 15:47:34 +02005725
5726 done = 0;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005727 conn_refresh_polling_flags(conn);
Emeric Brun46591952012-05-18 15:47:34 +02005728
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005729 if (!ctx)
Emeric Brun46591952012-05-18 15:47:34 +02005730 goto out_error;
5731
Olivier Houchard010941f2019-05-03 20:56:19 +02005732 if (conn->flags & (CO_FL_HANDSHAKE | CO_FL_EARLY_SSL_HS))
Emeric Brun46591952012-05-18 15:47:34 +02005733 /* a handshake was requested */
5734 return 0;
5735
5736 /* send the largest possible block. For this we perform only one call
5737 * to send() unless the buffer wraps and we exactly fill the first hunk,
5738 * in which case we accept to do it once again.
5739 */
Willy Tarreau787db9a2018-06-14 18:31:46 +02005740 while (count) {
Willy Tarreau5db847a2019-05-09 14:13:35 +02005741#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchardc2aae742017-09-22 18:26:28 +02005742 size_t written_data;
5743#endif
5744
Willy Tarreau787db9a2018-06-14 18:31:46 +02005745 try = b_contig_data(buf, done);
5746 if (try > count)
5747 try = count;
Willy Tarreaubfd59462013-02-21 07:46:09 +01005748
Willy Tarreau7bed9452014-02-02 02:00:24 +01005749 if (!(flags & CO_SFL_STREAMER) &&
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005750 !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) &&
Willy Tarreauef934602016-12-22 23:12:01 +01005751 global_ssl.max_record && try > global_ssl.max_record) {
5752 try = global_ssl.max_record;
Willy Tarreau518cedd2014-02-17 15:43:01 +01005753 }
5754 else {
5755 /* we need to keep the information about the fact that
5756 * we're not limiting the upcoming send(), because if it
5757 * fails, we'll have to retry with at least as many data.
5758 */
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005759 ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau518cedd2014-02-17 15:43:01 +01005760 }
Willy Tarreaubfd59462013-02-21 07:46:09 +01005761
Willy Tarreau5db847a2019-05-09 14:13:35 +02005762#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Olivier Houchard010941f2019-05-03 20:56:19 +02005763 if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) {
Olivier Houchardc2aae742017-09-22 18:26:28 +02005764 unsigned int max_early;
5765
Olivier Houchard522eea72017-11-03 16:27:47 +01005766 if (objt_listener(conn->target))
Olivier Houchard66ab4982019-02-26 18:37:15 +01005767 max_early = SSL_get_max_early_data(ctx->ssl);
Olivier Houchard522eea72017-11-03 16:27:47 +01005768 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005769 if (SSL_get0_session(ctx->ssl))
5770 max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl));
Olivier Houchard522eea72017-11-03 16:27:47 +01005771 else
5772 max_early = 0;
5773 }
5774
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005775 if (try + ctx->sent_early_data > max_early) {
5776 try -= (try + ctx->sent_early_data) - max_early;
Olivier Houchard522eea72017-11-03 16:27:47 +01005777 if (try <= 0) {
Olivier Houchard010941f2019-05-03 20:56:19 +02005778 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN;
Olivier Houchardc2aae742017-09-22 18:26:28 +02005779 break;
Olivier Houchard522eea72017-11-03 16:27:47 +01005780 }
Olivier Houchardc2aae742017-09-22 18:26:28 +02005781 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005782 ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data);
Olivier Houchardc2aae742017-09-22 18:26:28 +02005783 if (ret == 1) {
5784 ret = written_data;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005785 ctx->sent_early_data += ret;
Olivier Houchard010941f2019-05-03 20:56:19 +02005786 if (objt_server(conn->target))
Olivier Houchard522eea72017-11-03 16:27:47 +01005787 conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA;
Olivier Houchard522eea72017-11-03 16:27:47 +01005788
Olivier Houchardc2aae742017-09-22 18:26:28 +02005789 }
5790
5791 } else
5792#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01005793 ret = SSL_write(ctx->ssl, b_peek(buf, done), try);
Willy Tarreau518cedd2014-02-17 15:43:01 +01005794
Emeric Brune1f38db2012-09-03 20:36:47 +02005795 if (conn->flags & CO_FL_ERROR) {
5796 /* CO_FL_ERROR may be set by ssl_sock_infocbk */
Emeric Brun644cde02012-12-14 11:21:13 +01005797 goto out_error;
Emeric Brune1f38db2012-09-03 20:36:47 +02005798 }
Emeric Brun46591952012-05-18 15:47:34 +02005799 if (ret > 0) {
Olivier Houchardf24502b2019-01-17 19:09:11 +01005800 /* A send succeeded, so we can consier ourself connected */
5801 conn->flags |= CO_FL_CONNECTED;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01005802 ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED;
Willy Tarreau787db9a2018-06-14 18:31:46 +02005803 count -= ret;
Emeric Brun46591952012-05-18 15:47:34 +02005804 done += ret;
Emeric Brun46591952012-05-18 15:47:34 +02005805 }
5806 else {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005807 ret = SSL_get_error(ctx->ssl, ret);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005808
Emeric Brun46591952012-05-18 15:47:34 +02005809 if (ret == SSL_ERROR_WANT_WRITE) {
Olivier Houchard66ab4982019-02-26 18:37:15 +01005810 if (SSL_renegotiate_pending(ctx->ssl)) {
Emeric Brun282a76a2012-11-08 18:02:56 +01005811 /* handshake is running, and it may need to re-enable write */
5812 conn->flags |= CO_FL_SSL_WAIT_HS;
5813 __conn_sock_want_send(conn);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005814#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005815 /* Async mode can be re-enabled, because we're leaving data state.*/
5816 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005817 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005818#endif
Emeric Brun282a76a2012-11-08 18:02:56 +01005819 break;
5820 }
Emeric Brun46591952012-05-18 15:47:34 +02005821 /* we need to poll to retry a write later */
Willy Tarreau585744b2017-08-24 14:31:19 +02005822 fd_cant_send(conn->handle.fd);
Emeric Brun46591952012-05-18 15:47:34 +02005823 break;
5824 }
5825 else if (ret == SSL_ERROR_WANT_READ) {
Emeric Brun8af8dd12012-11-08 17:56:20 +01005826 /* handshake is running, and it needs to enable read */
Emeric Brun46591952012-05-18 15:47:34 +02005827 conn->flags |= CO_FL_SSL_WAIT_HS;
Emeric Brun8af8dd12012-11-08 17:56:20 +01005828 __conn_sock_want_recv(conn);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005829#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brunb5e42a82017-06-06 12:35:14 +00005830 /* Async mode can be re-enabled, because we're leaving data state.*/
5831 if (global_ssl.async)
Olivier Houchard66ab4982019-02-26 18:37:15 +01005832 SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC);
Emeric Brunb5e42a82017-06-06 12:35:14 +00005833#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005834 break;
5835 }
Emeric Brun46591952012-05-18 15:47:34 +02005836 goto out_error;
5837 }
5838 }
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005839 leave:
5840 conn_cond_update_sock_polling(conn);
Emeric Brun46591952012-05-18 15:47:34 +02005841 return done;
5842
5843 out_error:
Emeric Brun644cde02012-12-14 11:21:13 +01005844 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005845 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005846 ERR_clear_error();
5847
Emeric Brun46591952012-05-18 15:47:34 +02005848 conn->flags |= CO_FL_ERROR;
Willy Tarreau31d4dbe2017-10-25 09:32:15 +02005849 goto leave;
Emeric Brun46591952012-05-18 15:47:34 +02005850}
5851
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005852static void ssl_sock_close(struct connection *conn, void *xprt_ctx) {
Emeric Brun46591952012-05-18 15:47:34 +02005853
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005854 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005855
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005856 if (ctx) {
Olivier Houchard692c1d02019-05-23 18:41:47 +02005857 if (ctx->xprt->close)
5858 ctx->xprt->close(conn, ctx->xprt_ctx);
Willy Tarreau5db847a2019-05-09 14:13:35 +02005859#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Emeric Brun3854e012017-05-17 20:42:48 +02005860 if (global_ssl.async) {
5861 OSSL_ASYNC_FD all_fd[32], afd;
5862 size_t num_all_fds = 0;
5863 int i;
5864
Olivier Houchard66ab4982019-02-26 18:37:15 +01005865 SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02005866 if (num_all_fds > 32) {
5867 send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n");
5868 return;
5869 }
5870
Olivier Houchard66ab4982019-02-26 18:37:15 +01005871 SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds);
Emeric Brun3854e012017-05-17 20:42:48 +02005872
5873 /* If an async job is pending, we must try to
5874 to catch the end using polling before calling
5875 SSL_free */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005876 if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) {
Emeric Brun3854e012017-05-17 20:42:48 +02005877 for (i=0 ; i < num_all_fds ; i++) {
5878 /* switch on an handler designed to
5879 * handle the SSL_free
5880 */
5881 afd = all_fd[i];
5882 fdtab[afd].iocb = ssl_async_fd_free;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005883 fdtab[afd].owner = ctx->ssl;
Emeric Brun3854e012017-05-17 20:42:48 +02005884 fd_want_recv(afd);
Emeric Brunce9e01c2017-05-31 10:02:53 +00005885 /* To ensure that the fd cache won't be used
5886 * and we'll catch a real RD event.
5887 */
5888 fd_cant_recv(afd);
Emeric Brun3854e012017-05-17 20:42:48 +02005889 }
Olivier Houchard66ab4982019-02-26 18:37:15 +01005890 pool_free(ssl_sock_ctx_pool, ctx);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005891 _HA_ATOMIC_ADD(&jobs, 1);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005892 return;
5893 }
Emeric Brun3854e012017-05-17 20:42:48 +02005894 /* Else we can remove the fds from the fdtab
5895 * and call SSL_free.
5896 * note: we do a fd_remove and not a delete
5897 * because the fd is owned by the engine.
5898 * the engine is responsible to close
5899 */
5900 for (i=0 ; i < num_all_fds ; i++)
5901 fd_remove(all_fd[i]);
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00005902 }
5903#endif
Olivier Houchard66ab4982019-02-26 18:37:15 +01005904 SSL_free(ctx->ssl);
5905 pool_free(ssl_sock_ctx_pool, ctx);
Olivier Houchard2be5a4c2019-03-08 18:54:43 +01005906 _HA_ATOMIC_SUB(&sslconns, 1);
Emeric Brun46591952012-05-18 15:47:34 +02005907 }
Emeric Brun46591952012-05-18 15:47:34 +02005908}
5909
5910/* This function tries to perform a clean shutdown on an SSL connection, and in
5911 * any case, flags the connection as reusable if no handshake was in progress.
5912 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005913static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean)
Emeric Brun46591952012-05-18 15:47:34 +02005914{
Olivier Houcharde179d0e2019-03-21 18:27:17 +01005915 struct ssl_sock_ctx *ctx = xprt_ctx;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005916
Emeric Brun46591952012-05-18 15:47:34 +02005917 if (conn->flags & CO_FL_HANDSHAKE)
5918 return;
Emmanuel Hocdet405ff312017-01-08 14:07:39 +01005919 if (!clean)
5920 /* don't sent notify on SSL_shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005921 SSL_set_quiet_shutdown(ctx->ssl, 1);
Emeric Brun46591952012-05-18 15:47:34 +02005922 /* no handshake was in progress, try a clean ssl shutdown */
Olivier Houchard66ab4982019-02-26 18:37:15 +01005923 if (SSL_shutdown(ctx->ssl) <= 0) {
Emeric Brun644cde02012-12-14 11:21:13 +01005924 /* Clear openssl global errors stack */
Thierry FOURNIER / OZON.IO8b068c22016-10-10 11:59:50 +02005925 ssl_sock_dump_errors(conn);
Emeric Brun644cde02012-12-14 11:21:13 +01005926 ERR_clear_error();
5927 }
Emeric Brun46591952012-05-18 15:47:34 +02005928}
5929
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01005930/* used for ppv2 pkey alog (can be used for logging) */
Willy Tarreau83061a82018-07-13 11:56:34 +02005931int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out)
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01005932{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005933 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01005934 struct pkey_info *pkinfo;
5935 int bits = 0;
5936 int sig = TLSEXT_signature_anonymous;
5937 int len = -1;
5938
5939 if (!ssl_sock_is_ssl(conn))
5940 return 0;
5941
Olivier Houchard66ab4982019-02-26 18:37:15 +01005942 pkinfo = SSL_CTX_get_ex_data(SSL_get_SSL_CTX(ctx->ssl), ssl_pkey_info_index);
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01005943 if (pkinfo) {
5944 sig = pkinfo->sig;
5945 bits = pkinfo->bits;
5946 } else {
5947 /* multicert and generated cert have no pkey info */
5948 X509 *crt;
5949 EVP_PKEY *pkey;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005950 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01005951 if (!crt)
5952 return 0;
5953 pkey = X509_get_pubkey(crt);
5954 if (pkey) {
5955 bits = EVP_PKEY_bits(pkey);
5956 switch(EVP_PKEY_base_id(pkey)) {
5957 case EVP_PKEY_RSA:
5958 sig = TLSEXT_signature_rsa;
5959 break;
5960 case EVP_PKEY_EC:
5961 sig = TLSEXT_signature_ecdsa;
5962 break;
5963 case EVP_PKEY_DSA:
5964 sig = TLSEXT_signature_dsa;
5965 break;
5966 }
5967 EVP_PKEY_free(pkey);
5968 }
5969 }
5970
5971 switch(sig) {
5972 case TLSEXT_signature_rsa:
5973 len = chunk_printf(out, "RSA%d", bits);
5974 break;
5975 case TLSEXT_signature_ecdsa:
5976 len = chunk_printf(out, "EC%d", bits);
5977 break;
5978 case TLSEXT_signature_dsa:
5979 len = chunk_printf(out, "DSA%d", bits);
5980 break;
5981 default:
5982 return 0;
5983 }
5984 if (len < 0)
5985 return 0;
5986 return 1;
5987}
5988
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01005989/* used for ppv2 cert signature (can be used for logging) */
5990const char *ssl_sock_get_cert_sig(struct connection *conn)
5991{
Olivier Houchard66ab4982019-02-26 18:37:15 +01005992 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
5993
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01005994 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
5995 X509 *crt;
5996
5997 if (!ssl_sock_is_ssl(conn))
5998 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01005999 crt = SSL_get_certificate(ctx->ssl);
Emmanuel Hocdet283e0042017-11-02 14:05:23 +01006000 if (!crt)
6001 return NULL;
6002 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6003 return OBJ_nid2sn(OBJ_obj2nid(algorithm));
6004}
6005
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006006/* used for ppv2 authority */
6007const char *ssl_sock_get_sni(struct connection *conn)
6008{
6009#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Olivier Houchard66ab4982019-02-26 18:37:15 +01006010 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6011
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006012 if (!ssl_sock_is_ssl(conn))
6013 return NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006014 return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006015#else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006016 return NULL;
Emmanuel Hocdet253c3b72018-02-01 18:29:59 +01006017#endif
6018}
6019
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006020/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006021const char *ssl_sock_get_cipher_name(struct connection *conn)
6022{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006023 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6024
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006025 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006026 return NULL;
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006027
Olivier Houchard66ab4982019-02-26 18:37:15 +01006028 return SSL_get_cipher_name(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006029}
6030
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006031/* used for logging/ppv2, may be changed for a sample fetch later */
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006032const char *ssl_sock_get_proto_version(struct connection *conn)
6033{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006034 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6035
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006036 if (!ssl_sock_is_ssl(conn))
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006037 return NULL;
Emmanuel Hocdet01da5712017-10-13 16:59:49 +02006038
Olivier Houchard66ab4982019-02-26 18:37:15 +01006039 return SSL_get_version(ctx->ssl);
Willy Tarreauffc3fcd2012-10-12 20:17:54 +02006040}
6041
Willy Tarreau8d598402012-10-22 17:58:39 +02006042/* Extract a serial from a cert, and copy it to a chunk.
6043 * Returns 1 if serial is found and copied, 0 if no serial found and
6044 * -1 if output is not large enough.
6045 */
6046static int
Willy Tarreau83061a82018-07-13 11:56:34 +02006047ssl_sock_get_serial(X509 *crt, struct buffer *out)
Willy Tarreau8d598402012-10-22 17:58:39 +02006048{
6049 ASN1_INTEGER *serial;
6050
6051 serial = X509_get_serialNumber(crt);
6052 if (!serial)
6053 return 0;
6054
6055 if (out->size < serial->length)
6056 return -1;
6057
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006058 memcpy(out->area, serial->data, serial->length);
6059 out->data = serial->length;
Willy Tarreau8d598402012-10-22 17:58:39 +02006060 return 1;
6061}
6062
Emeric Brun43e79582014-10-29 19:03:26 +01006063/* Extract a cert to der, and copy it to a chunk.
Joseph Herlant017b3da2018-11-15 09:07:59 -08006064 * Returns 1 if the cert is found and copied, 0 on der conversion failure
6065 * and -1 if the output is not large enough.
Emeric Brun43e79582014-10-29 19:03:26 +01006066 */
6067static int
Willy Tarreau83061a82018-07-13 11:56:34 +02006068ssl_sock_crt2der(X509 *crt, struct buffer *out)
Emeric Brun43e79582014-10-29 19:03:26 +01006069{
6070 int len;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006071 unsigned char *p = (unsigned char *) out->area;;
Emeric Brun43e79582014-10-29 19:03:26 +01006072
6073 len =i2d_X509(crt, NULL);
6074 if (len <= 0)
6075 return 1;
6076
6077 if (out->size < len)
6078 return -1;
6079
6080 i2d_X509(crt,&p);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006081 out->data = len;
Emeric Brun43e79582014-10-29 19:03:26 +01006082 return 1;
6083}
6084
Emeric Brunce5ad802012-10-22 14:11:22 +02006085
Willy Tarreau83061a82018-07-13 11:56:34 +02006086/* Copy Date in ASN1_UTCTIME format in struct buffer out.
Emeric Brunce5ad802012-10-22 14:11:22 +02006087 * Returns 1 if serial is found and copied, 0 if no valid time found
6088 * and -1 if output is not large enough.
6089 */
6090static int
Willy Tarreau83061a82018-07-13 11:56:34 +02006091ssl_sock_get_time(ASN1_TIME *tm, struct buffer *out)
Emeric Brunce5ad802012-10-22 14:11:22 +02006092{
6093 if (tm->type == V_ASN1_GENERALIZEDTIME) {
6094 ASN1_GENERALIZEDTIME *gentm = (ASN1_GENERALIZEDTIME *)tm;
6095
6096 if (gentm->length < 12)
6097 return 0;
6098 if (gentm->data[0] != 0x32 || gentm->data[1] != 0x30)
6099 return 0;
6100 if (out->size < gentm->length-2)
6101 return -1;
6102
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006103 memcpy(out->area, gentm->data+2, gentm->length-2);
6104 out->data = gentm->length-2;
Emeric Brunce5ad802012-10-22 14:11:22 +02006105 return 1;
6106 }
6107 else if (tm->type == V_ASN1_UTCTIME) {
6108 ASN1_UTCTIME *utctm = (ASN1_UTCTIME *)tm;
6109
6110 if (utctm->length < 10)
6111 return 0;
6112 if (utctm->data[0] >= 0x35)
6113 return 0;
6114 if (out->size < utctm->length)
6115 return -1;
6116
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006117 memcpy(out->area, utctm->data, utctm->length);
6118 out->data = utctm->length;
Emeric Brunce5ad802012-10-22 14:11:22 +02006119 return 1;
6120 }
6121
6122 return 0;
6123}
6124
Emeric Brun87855892012-10-17 17:39:35 +02006125/* Extract an entry from a X509_NAME and copy its value to an output chunk.
6126 * Returns 1 if entry found, 0 if entry not found, or -1 if output not large enough.
6127 */
6128static int
Willy Tarreau83061a82018-07-13 11:56:34 +02006129ssl_sock_get_dn_entry(X509_NAME *a, const struct buffer *entry, int pos,
6130 struct buffer *out)
Emeric Brun87855892012-10-17 17:39:35 +02006131{
6132 X509_NAME_ENTRY *ne;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006133 ASN1_OBJECT *obj;
6134 ASN1_STRING *data;
6135 const unsigned char *data_ptr;
6136 int data_len;
Emeric Brun87855892012-10-17 17:39:35 +02006137 int i, j, n;
6138 int cur = 0;
6139 const char *s;
6140 char tmp[128];
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006141 int name_count;
6142
6143 name_count = X509_NAME_entry_count(a);
Emeric Brun87855892012-10-17 17:39:35 +02006144
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006145 out->data = 0;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006146 for (i = 0; i < name_count; i++) {
Emeric Brun87855892012-10-17 17:39:35 +02006147 if (pos < 0)
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006148 j = (name_count-1) - i;
Emeric Brun87855892012-10-17 17:39:35 +02006149 else
6150 j = i;
6151
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006152 ne = X509_NAME_get_entry(a, j);
6153 obj = X509_NAME_ENTRY_get_object(ne);
6154 data = X509_NAME_ENTRY_get_data(ne);
6155 data_ptr = ASN1_STRING_get0_data(data);
6156 data_len = ASN1_STRING_length(data);
6157 n = OBJ_obj2nid(obj);
Emeric Brun87855892012-10-17 17:39:35 +02006158 if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006159 i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj);
Emeric Brun87855892012-10-17 17:39:35 +02006160 s = tmp;
6161 }
6162
6163 if (chunk_strcasecmp(entry, s) != 0)
6164 continue;
6165
6166 if (pos < 0)
6167 cur--;
6168 else
6169 cur++;
6170
6171 if (cur != pos)
6172 continue;
6173
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006174 if (data_len > out->size)
Emeric Brun87855892012-10-17 17:39:35 +02006175 return -1;
6176
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006177 memcpy(out->area, data_ptr, data_len);
6178 out->data = data_len;
Emeric Brun87855892012-10-17 17:39:35 +02006179 return 1;
6180 }
6181
6182 return 0;
6183
6184}
6185
6186/* Extract and format full DN from a X509_NAME and copy result into a chunk
6187 * Returns 1 if dn entries exits, 0 if no dn entry found or -1 if output is not large enough.
6188 */
6189static int
Willy Tarreau83061a82018-07-13 11:56:34 +02006190ssl_sock_get_dn_oneline(X509_NAME *a, struct buffer *out)
Emeric Brun87855892012-10-17 17:39:35 +02006191{
6192 X509_NAME_ENTRY *ne;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006193 ASN1_OBJECT *obj;
6194 ASN1_STRING *data;
6195 const unsigned char *data_ptr;
6196 int data_len;
Emeric Brun87855892012-10-17 17:39:35 +02006197 int i, n, ln;
6198 int l = 0;
6199 const char *s;
6200 char *p;
6201 char tmp[128];
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006202 int name_count;
6203
6204
6205 name_count = X509_NAME_entry_count(a);
Emeric Brun87855892012-10-17 17:39:35 +02006206
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006207 out->data = 0;
6208 p = out->area;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006209 for (i = 0; i < name_count; i++) {
6210 ne = X509_NAME_get_entry(a, i);
6211 obj = X509_NAME_ENTRY_get_object(ne);
6212 data = X509_NAME_ENTRY_get_data(ne);
6213 data_ptr = ASN1_STRING_get0_data(data);
6214 data_len = ASN1_STRING_length(data);
6215 n = OBJ_obj2nid(obj);
Emeric Brun87855892012-10-17 17:39:35 +02006216 if ((n == NID_undef) || ((s = OBJ_nid2sn(n)) == NULL)) {
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006217 i2t_ASN1_OBJECT(tmp, sizeof(tmp), obj);
Emeric Brun87855892012-10-17 17:39:35 +02006218 s = tmp;
6219 }
6220 ln = strlen(s);
6221
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006222 l += 1 + ln + 1 + data_len;
Emeric Brun87855892012-10-17 17:39:35 +02006223 if (l > out->size)
6224 return -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006225 out->data = l;
Emeric Brun87855892012-10-17 17:39:35 +02006226
6227 *(p++)='/';
6228 memcpy(p, s, ln);
6229 p += ln;
6230 *(p++)='=';
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006231 memcpy(p, data_ptr, data_len);
6232 p += data_len;
Emeric Brun87855892012-10-17 17:39:35 +02006233 }
6234
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006235 if (!out->data)
Emeric Brun87855892012-10-17 17:39:35 +02006236 return 0;
6237
6238 return 1;
6239}
6240
Olivier Houchardab28a322018-12-21 19:45:40 +01006241void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len)
6242{
6243#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006244 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6245
6246 SSL_set_alpn_protos(ctx->ssl, alpn, len);
Olivier Houchardab28a322018-12-21 19:45:40 +01006247#endif
6248}
6249
Willy Tarreau119a4082016-12-22 21:58:38 +01006250/* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL
6251 * to disable SNI.
6252 */
Willy Tarreau63076412015-07-10 11:33:32 +02006253void ssl_sock_set_servername(struct connection *conn, const char *hostname)
6254{
6255#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Olivier Houchard66ab4982019-02-26 18:37:15 +01006256 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6257
Willy Tarreau119a4082016-12-22 21:58:38 +01006258 char *prev_name;
6259
Willy Tarreau63076412015-07-10 11:33:32 +02006260 if (!ssl_sock_is_ssl(conn))
6261 return;
6262
Willy Tarreau119a4082016-12-22 21:58:38 +01006263 /* if the SNI changes, we must destroy the reusable context so that a
6264 * new connection will present a new SNI. As an optimization we could
6265 * later imagine having a small cache of ssl_ctx to hold a few SNI per
6266 * server.
6267 */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006268 prev_name = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau119a4082016-12-22 21:58:38 +01006269 if ((!prev_name && hostname) ||
6270 (prev_name && (!hostname || strcmp(hostname, prev_name) != 0)))
Olivier Houchard66ab4982019-02-26 18:37:15 +01006271 SSL_set_session(ctx->ssl, NULL);
Willy Tarreau119a4082016-12-22 21:58:38 +01006272
Olivier Houchard66ab4982019-02-26 18:37:15 +01006273 SSL_set_tlsext_host_name(ctx->ssl, hostname);
Willy Tarreau63076412015-07-10 11:33:32 +02006274#endif
6275}
6276
Emeric Brun0abf8362014-06-24 18:26:41 +02006277/* Extract peer certificate's common name into the chunk dest
6278 * Returns
6279 * the len of the extracted common name
6280 * or 0 if no CN found in DN
6281 * or -1 on error case (i.e. no peer certificate)
6282 */
Willy Tarreau83061a82018-07-13 11:56:34 +02006283int ssl_sock_get_remote_common_name(struct connection *conn,
6284 struct buffer *dest)
David Safb76832014-05-08 23:42:08 -04006285{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006286 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
David Safb76832014-05-08 23:42:08 -04006287 X509 *crt = NULL;
6288 X509_NAME *name;
David Safb76832014-05-08 23:42:08 -04006289 const char find_cn[] = "CN";
Willy Tarreau83061a82018-07-13 11:56:34 +02006290 const struct buffer find_cn_chunk = {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006291 .area = (char *)&find_cn,
6292 .data = sizeof(find_cn)-1
David Safb76832014-05-08 23:42:08 -04006293 };
Emeric Brun0abf8362014-06-24 18:26:41 +02006294 int result = -1;
David Safb76832014-05-08 23:42:08 -04006295
6296 if (!ssl_sock_is_ssl(conn))
Emeric Brun0abf8362014-06-24 18:26:41 +02006297 goto out;
David Safb76832014-05-08 23:42:08 -04006298
6299 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006300 crt = SSL_get_peer_certificate(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006301 if (!crt)
6302 goto out;
6303
6304 name = X509_get_subject_name(crt);
6305 if (!name)
6306 goto out;
David Safb76832014-05-08 23:42:08 -04006307
Emeric Brun0abf8362014-06-24 18:26:41 +02006308 result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest);
6309out:
David Safb76832014-05-08 23:42:08 -04006310 if (crt)
6311 X509_free(crt);
6312
6313 return result;
6314}
6315
Dave McCowan328fb582014-07-30 10:39:13 -04006316/* returns 1 if client passed a certificate for this session, 0 if not */
6317int ssl_sock_get_cert_used_sess(struct connection *conn)
6318{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006319 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
Dave McCowan328fb582014-07-30 10:39:13 -04006320 X509 *crt = NULL;
6321
6322 if (!ssl_sock_is_ssl(conn))
6323 return 0;
6324
6325 /* SSL_get_peer_certificate, it increase X509 * ref count */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006326 crt = SSL_get_peer_certificate(ctx->ssl);
Dave McCowan328fb582014-07-30 10:39:13 -04006327 if (!crt)
6328 return 0;
6329
6330 X509_free(crt);
6331 return 1;
6332}
6333
6334/* returns 1 if client passed a certificate for this connection, 0 if not */
6335int ssl_sock_get_cert_used_conn(struct connection *conn)
David Safb76832014-05-08 23:42:08 -04006336{
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006337 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6338
David Safb76832014-05-08 23:42:08 -04006339 if (!ssl_sock_is_ssl(conn))
6340 return 0;
6341
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006342 return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
David Safb76832014-05-08 23:42:08 -04006343}
6344
6345/* returns result from SSL verify */
6346unsigned int ssl_sock_get_verify_result(struct connection *conn)
6347{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006348 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
6349
David Safb76832014-05-08 23:42:08 -04006350 if (!ssl_sock_is_ssl(conn))
6351 return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION;
6352
Olivier Houchard66ab4982019-02-26 18:37:15 +01006353 return (unsigned int)SSL_get_verify_result(ctx->ssl);
David Safb76832014-05-08 23:42:08 -04006354}
6355
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006356/* Returns the application layer protocol name in <str> and <len> when known.
6357 * Zero is returned if the protocol name was not found, otherwise non-zero is
6358 * returned. The string is allocated in the SSL context and doesn't have to be
6359 * freed by the caller. NPN is also checked if available since older versions
6360 * of openssl (1.0.1) which are more common in field only support this one.
6361 */
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006362static int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006363{
Olivier Houchard66ab4982019-02-26 18:37:15 +01006364#if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \
6365 defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006366 struct ssl_sock_ctx *ctx = xprt_ctx;
6367 if (!ctx)
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006368 return 0;
6369
6370 *str = NULL;
6371
6372#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Olivier Houchard66ab4982019-02-26 18:37:15 +01006373 SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006374 if (*str)
6375 return 1;
6376#endif
Bernard Spil13c53f82018-02-15 13:34:58 +01006377#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006378 SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len);
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006379 if (*str)
6380 return 1;
6381#endif
Olivier Houcharde179d0e2019-03-21 18:27:17 +01006382#endif
Willy Tarreau8743f7e2016-12-04 18:44:29 +01006383 return 0;
6384}
6385
Willy Tarreau7875d092012-09-10 08:20:03 +02006386/***** Below are some sample fetching functions for ACL/patterns *****/
6387
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006388static int
6389smp_fetch_ssl_fc_has_early(const struct arg *args, struct sample *smp, const char *kw, void *private)
6390{
6391 struct connection *conn;
6392
6393 conn = objt_conn(smp->sess->origin);
6394 if (!conn || conn->xprt != &ssl_sock)
6395 return 0;
6396
6397 smp->flags = 0;
6398 smp->data.type = SMP_T_BOOL;
Olivier Houchard25ae45a2017-11-29 19:51:19 +01006399 smp->data.u.sint = ((conn->flags & CO_FL_EARLY_DATA) &&
6400 (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_HANDSHAKE))) ? 1 : 0;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02006401
6402 return 1;
6403}
6404
Emeric Brune64aef12012-09-21 13:15:06 +02006405/* boolean, returns true if client cert was present */
6406static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006407smp_fetch_ssl_fc_has_crt(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brune64aef12012-09-21 13:15:06 +02006408{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006409 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006410 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006411
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006412 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006413 if (!conn || conn->xprt != &ssl_sock)
Emeric Brune64aef12012-09-21 13:15:06 +02006414 return 0;
6415
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006416 ctx = conn->xprt_ctx;
6417
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006418 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brune64aef12012-09-21 13:15:06 +02006419 smp->flags |= SMP_F_MAY_CHANGE;
6420 return 0;
6421 }
6422
6423 smp->flags = 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006424 smp->data.type = SMP_T_BOOL;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01006425 smp->data.u.sint = SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0;
Emeric Brune64aef12012-09-21 13:15:06 +02006426
6427 return 1;
6428}
6429
Emeric Brun43e79582014-10-29 19:03:26 +01006430/* binary, returns a certificate in a binary chunk (der/raw).
6431 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6432 * should be use.
6433 */
6434static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006435smp_fetch_ssl_x_der(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun43e79582014-10-29 19:03:26 +01006436{
6437 int cert_peer = (kw[4] == 'c') ? 1 : 0;
6438 X509 *crt = NULL;
6439 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006440 struct buffer *smp_trash;
Emeric Brun43e79582014-10-29 19:03:26 +01006441 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006442 struct ssl_sock_ctx *ctx;
Emeric Brun43e79582014-10-29 19:03:26 +01006443
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006444 conn = objt_conn(smp->sess->origin);
Emeric Brun43e79582014-10-29 19:03:26 +01006445 if (!conn || conn->xprt != &ssl_sock)
6446 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006447 ctx = conn->xprt_ctx;
Emeric Brun43e79582014-10-29 19:03:26 +01006448
6449 if (!(conn->flags & CO_FL_CONNECTED)) {
6450 smp->flags |= SMP_F_MAY_CHANGE;
6451 return 0;
6452 }
6453
6454 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006455 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brun43e79582014-10-29 19:03:26 +01006456 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006457 crt = SSL_get_certificate(ctx->ssl);
Emeric Brun43e79582014-10-29 19:03:26 +01006458
6459 if (!crt)
6460 goto out;
6461
6462 smp_trash = get_trash_chunk();
6463 if (ssl_sock_crt2der(crt, smp_trash) <= 0)
6464 goto out;
6465
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006466 smp->data.u.str = *smp_trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006467 smp->data.type = SMP_T_BIN;
Emeric Brun43e79582014-10-29 19:03:26 +01006468 ret = 1;
6469out:
6470 /* SSL_get_peer_certificate, it increase X509 * ref count */
6471 if (cert_peer && crt)
6472 X509_free(crt);
6473 return ret;
6474}
6475
Emeric Brunba841a12014-04-30 17:05:08 +02006476/* binary, returns serial of certificate in a binary chunk.
6477 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6478 * should be use.
6479 */
Willy Tarreau8d598402012-10-22 17:58:39 +02006480static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006481smp_fetch_ssl_x_serial(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau8d598402012-10-22 17:58:39 +02006482{
Emeric Brunba841a12014-04-30 17:05:08 +02006483 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Willy Tarreau8d598402012-10-22 17:58:39 +02006484 X509 *crt = NULL;
6485 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006486 struct buffer *smp_trash;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006487 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006488 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006489
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006490 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006491 if (!conn || conn->xprt != &ssl_sock)
Willy Tarreau8d598402012-10-22 17:58:39 +02006492 return 0;
6493
Olivier Houchard66ab4982019-02-26 18:37:15 +01006494 ctx = conn->xprt_ctx;
6495
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006496 if (!(conn->flags & CO_FL_CONNECTED)) {
Willy Tarreau8d598402012-10-22 17:58:39 +02006497 smp->flags |= SMP_F_MAY_CHANGE;
6498 return 0;
6499 }
6500
Emeric Brunba841a12014-04-30 17:05:08 +02006501 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006502 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006503 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006504 crt = SSL_get_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006505
Willy Tarreau8d598402012-10-22 17:58:39 +02006506 if (!crt)
6507 goto out;
6508
Willy Tarreau47ca5452012-12-23 20:22:19 +01006509 smp_trash = get_trash_chunk();
Willy Tarreau8d598402012-10-22 17:58:39 +02006510 if (ssl_sock_get_serial(crt, smp_trash) <= 0)
6511 goto out;
6512
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006513 smp->data.u.str = *smp_trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006514 smp->data.type = SMP_T_BIN;
Willy Tarreau8d598402012-10-22 17:58:39 +02006515 ret = 1;
6516out:
Emeric Brunba841a12014-04-30 17:05:08 +02006517 /* SSL_get_peer_certificate, it increase X509 * ref count */
6518 if (cert_peer && crt)
Willy Tarreau8d598402012-10-22 17:58:39 +02006519 X509_free(crt);
6520 return ret;
6521}
Emeric Brune64aef12012-09-21 13:15:06 +02006522
Emeric Brunba841a12014-04-30 17:05:08 +02006523/* binary, returns the client certificate's SHA-1 fingerprint (SHA-1 hash of DER-encoded certificate) in a binary chunk.
6524 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6525 * should be use.
6526 */
James Votha051b4a2013-05-14 20:37:59 +02006527static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006528smp_fetch_ssl_x_sha1(const struct arg *args, struct sample *smp, const char *kw, void *private)
James Votha051b4a2013-05-14 20:37:59 +02006529{
Emeric Brunba841a12014-04-30 17:05:08 +02006530 int cert_peer = (kw[4] == 'c') ? 1 : 0;
James Votha051b4a2013-05-14 20:37:59 +02006531 X509 *crt = NULL;
6532 const EVP_MD *digest;
6533 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006534 struct buffer *smp_trash;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006535 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006536 struct ssl_sock_ctx *ctx;
James Votha051b4a2013-05-14 20:37:59 +02006537
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006538 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006539 if (!conn || conn->xprt != &ssl_sock)
6540 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006541 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006542
6543 if (!(conn->flags & CO_FL_CONNECTED)) {
James Votha051b4a2013-05-14 20:37:59 +02006544 smp->flags |= SMP_F_MAY_CHANGE;
6545 return 0;
6546 }
6547
Emeric Brunba841a12014-04-30 17:05:08 +02006548 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006549 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006550 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006551 crt = SSL_get_certificate(ctx->ssl);
James Votha051b4a2013-05-14 20:37:59 +02006552 if (!crt)
6553 goto out;
6554
6555 smp_trash = get_trash_chunk();
6556 digest = EVP_sha1();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006557 X509_digest(crt, digest, (unsigned char *) smp_trash->area,
6558 (unsigned int *)&smp_trash->data);
James Votha051b4a2013-05-14 20:37:59 +02006559
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006560 smp->data.u.str = *smp_trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006561 smp->data.type = SMP_T_BIN;
James Votha051b4a2013-05-14 20:37:59 +02006562 ret = 1;
6563out:
Emeric Brunba841a12014-04-30 17:05:08 +02006564 /* SSL_get_peer_certificate, it increase X509 * ref count */
6565 if (cert_peer && crt)
James Votha051b4a2013-05-14 20:37:59 +02006566 X509_free(crt);
6567 return ret;
6568}
6569
Emeric Brunba841a12014-04-30 17:05:08 +02006570/* string, returns certificate's notafter date in ASN1_UTCTIME format.
6571 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6572 * should be use.
6573 */
Emeric Brunce5ad802012-10-22 14:11:22 +02006574static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006575smp_fetch_ssl_x_notafter(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunce5ad802012-10-22 14:11:22 +02006576{
Emeric Brunba841a12014-04-30 17:05:08 +02006577 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Brunce5ad802012-10-22 14:11:22 +02006578 X509 *crt = NULL;
6579 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006580 struct buffer *smp_trash;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006581 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006582 struct ssl_sock_ctx *ctx;
Emeric Brunce5ad802012-10-22 14:11:22 +02006583
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006584 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006585 if (!conn || conn->xprt != &ssl_sock)
6586 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006587 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006588
6589 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brunce5ad802012-10-22 14:11:22 +02006590 smp->flags |= SMP_F_MAY_CHANGE;
6591 return 0;
6592 }
6593
Emeric Brunba841a12014-04-30 17:05:08 +02006594 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006595 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006596 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006597 crt = SSL_get_certificate(ctx->ssl);
Emeric Brunce5ad802012-10-22 14:11:22 +02006598 if (!crt)
6599 goto out;
6600
Willy Tarreau47ca5452012-12-23 20:22:19 +01006601 smp_trash = get_trash_chunk();
Rosen Penev68185952018-12-14 08:47:02 -08006602 if (ssl_sock_get_time(X509_getm_notAfter(crt), smp_trash) <= 0)
Emeric Brunce5ad802012-10-22 14:11:22 +02006603 goto out;
6604
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006605 smp->data.u.str = *smp_trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006606 smp->data.type = SMP_T_STR;
Emeric Brunce5ad802012-10-22 14:11:22 +02006607 ret = 1;
6608out:
Emeric Brunba841a12014-04-30 17:05:08 +02006609 /* SSL_get_peer_certificate, it increase X509 * ref count */
6610 if (cert_peer && crt)
Emeric Brunce5ad802012-10-22 14:11:22 +02006611 X509_free(crt);
6612 return ret;
6613}
6614
Emeric Brunba841a12014-04-30 17:05:08 +02006615/* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's issuer
6616 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6617 * should be use.
6618 */
Emeric Brun87855892012-10-17 17:39:35 +02006619static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006620smp_fetch_ssl_x_i_dn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun87855892012-10-17 17:39:35 +02006621{
Emeric Brunba841a12014-04-30 17:05:08 +02006622 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Brun87855892012-10-17 17:39:35 +02006623 X509 *crt = NULL;
6624 X509_NAME *name;
6625 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006626 struct buffer *smp_trash;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006627 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006628 struct ssl_sock_ctx *ctx;
Emeric Brun87855892012-10-17 17:39:35 +02006629
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006630 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006631 if (!conn || conn->xprt != &ssl_sock)
6632 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006633 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006634
6635 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brun87855892012-10-17 17:39:35 +02006636 smp->flags |= SMP_F_MAY_CHANGE;
6637 return 0;
6638 }
6639
Emeric Brunba841a12014-04-30 17:05:08 +02006640 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006641 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006642 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006643 crt = SSL_get_certificate(ctx->ssl);
Emeric Brun87855892012-10-17 17:39:35 +02006644 if (!crt)
6645 goto out;
6646
6647 name = X509_get_issuer_name(crt);
6648 if (!name)
6649 goto out;
6650
Willy Tarreau47ca5452012-12-23 20:22:19 +01006651 smp_trash = get_trash_chunk();
Emeric Brun87855892012-10-17 17:39:35 +02006652 if (args && args[0].type == ARGT_STR) {
6653 int pos = 1;
6654
6655 if (args[1].type == ARGT_SINT)
6656 pos = args[1].data.sint;
Emeric Brun87855892012-10-17 17:39:35 +02006657
6658 if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0)
6659 goto out;
6660 }
6661 else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0)
6662 goto out;
6663
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006664 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006665 smp->data.u.str = *smp_trash;
Emeric Brun87855892012-10-17 17:39:35 +02006666 ret = 1;
6667out:
Emeric Brunba841a12014-04-30 17:05:08 +02006668 /* SSL_get_peer_certificate, it increase X509 * ref count */
6669 if (cert_peer && crt)
Emeric Brun87855892012-10-17 17:39:35 +02006670 X509_free(crt);
6671 return ret;
6672}
6673
Emeric Brunba841a12014-04-30 17:05:08 +02006674/* string, returns notbefore date in ASN1_UTCTIME format.
6675 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6676 * should be use.
6677 */
Emeric Brunce5ad802012-10-22 14:11:22 +02006678static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006679smp_fetch_ssl_x_notbefore(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunce5ad802012-10-22 14:11:22 +02006680{
Emeric Brunba841a12014-04-30 17:05:08 +02006681 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Brunce5ad802012-10-22 14:11:22 +02006682 X509 *crt = NULL;
6683 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006684 struct buffer *smp_trash;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006685 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006686 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006687
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006688 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006689 if (!conn || conn->xprt != &ssl_sock)
Emeric Brunce5ad802012-10-22 14:11:22 +02006690 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006691 ctx = conn->xprt_ctx;
Emeric Brunce5ad802012-10-22 14:11:22 +02006692
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006693 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brunce5ad802012-10-22 14:11:22 +02006694 smp->flags |= SMP_F_MAY_CHANGE;
6695 return 0;
6696 }
6697
Emeric Brunba841a12014-04-30 17:05:08 +02006698 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006699 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006700 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006701 crt = SSL_get_certificate(ctx->ssl);
Emeric Brunce5ad802012-10-22 14:11:22 +02006702 if (!crt)
6703 goto out;
6704
Willy Tarreau47ca5452012-12-23 20:22:19 +01006705 smp_trash = get_trash_chunk();
Rosen Penev68185952018-12-14 08:47:02 -08006706 if (ssl_sock_get_time(X509_getm_notBefore(crt), smp_trash) <= 0)
Emeric Brunce5ad802012-10-22 14:11:22 +02006707 goto out;
6708
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006709 smp->data.u.str = *smp_trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006710 smp->data.type = SMP_T_STR;
Emeric Brunce5ad802012-10-22 14:11:22 +02006711 ret = 1;
6712out:
Emeric Brunba841a12014-04-30 17:05:08 +02006713 /* SSL_get_peer_certificate, it increase X509 * ref count */
6714 if (cert_peer && crt)
Emeric Brunce5ad802012-10-22 14:11:22 +02006715 X509_free(crt);
6716 return ret;
6717}
6718
Emeric Brunba841a12014-04-30 17:05:08 +02006719/* string, returns a string of a formatted full dn \C=..\O=..\OU=.. \CN=.. of certificate's subject
6720 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6721 * should be use.
6722 */
Emeric Brun87855892012-10-17 17:39:35 +02006723static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006724smp_fetch_ssl_x_s_dn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun87855892012-10-17 17:39:35 +02006725{
Emeric Brunba841a12014-04-30 17:05:08 +02006726 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Brun87855892012-10-17 17:39:35 +02006727 X509 *crt = NULL;
6728 X509_NAME *name;
6729 int ret = 0;
Willy Tarreau83061a82018-07-13 11:56:34 +02006730 struct buffer *smp_trash;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006731 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006732 struct ssl_sock_ctx *ctx;
Emeric Brun87855892012-10-17 17:39:35 +02006733
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006734 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006735 if (!conn || conn->xprt != &ssl_sock)
6736 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006737 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006738
6739 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brun87855892012-10-17 17:39:35 +02006740 smp->flags |= SMP_F_MAY_CHANGE;
6741 return 0;
6742 }
6743
Emeric Brunba841a12014-04-30 17:05:08 +02006744 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006745 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006746 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006747 crt = SSL_get_certificate(ctx->ssl);
Emeric Brun87855892012-10-17 17:39:35 +02006748 if (!crt)
6749 goto out;
6750
6751 name = X509_get_subject_name(crt);
6752 if (!name)
6753 goto out;
6754
Willy Tarreau47ca5452012-12-23 20:22:19 +01006755 smp_trash = get_trash_chunk();
Emeric Brun87855892012-10-17 17:39:35 +02006756 if (args && args[0].type == ARGT_STR) {
6757 int pos = 1;
6758
6759 if (args[1].type == ARGT_SINT)
6760 pos = args[1].data.sint;
Emeric Brun87855892012-10-17 17:39:35 +02006761
6762 if (ssl_sock_get_dn_entry(name, &args[0].data.str, pos, smp_trash) <= 0)
6763 goto out;
6764 }
6765 else if (ssl_sock_get_dn_oneline(name, smp_trash) <= 0)
6766 goto out;
6767
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006768 smp->data.type = SMP_T_STR;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006769 smp->data.u.str = *smp_trash;
Emeric Brun87855892012-10-17 17:39:35 +02006770 ret = 1;
6771out:
Emeric Brunba841a12014-04-30 17:05:08 +02006772 /* SSL_get_peer_certificate, it increase X509 * ref count */
6773 if (cert_peer && crt)
Emeric Brun87855892012-10-17 17:39:35 +02006774 X509_free(crt);
6775 return ret;
6776}
Emeric Brun9143d372012-12-20 15:44:16 +01006777
6778/* integer, returns true if current session use a client certificate */
6779static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006780smp_fetch_ssl_c_used(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun9143d372012-12-20 15:44:16 +01006781{
6782 X509 *crt;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006783 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006784 struct ssl_sock_ctx *ctx;
Emeric Brun9143d372012-12-20 15:44:16 +01006785
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006786 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006787 if (!conn || conn->xprt != &ssl_sock)
6788 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006789 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006790
6791 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brun9143d372012-12-20 15:44:16 +01006792 smp->flags |= SMP_F_MAY_CHANGE;
6793 return 0;
6794 }
6795
6796 /* SSL_get_peer_certificate returns a ptr on allocated X509 struct */
Olivier Houchard66ab4982019-02-26 18:37:15 +01006797 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brun9143d372012-12-20 15:44:16 +01006798 if (crt) {
6799 X509_free(crt);
6800 }
6801
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006802 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006803 smp->data.u.sint = (crt != NULL);
Emeric Brun9143d372012-12-20 15:44:16 +01006804 return 1;
6805}
6806
Emeric Brunba841a12014-04-30 17:05:08 +02006807/* integer, returns the certificate version
6808 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6809 * should be use.
6810 */
Emeric Bruna7359fd2012-10-17 15:03:11 +02006811static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006812smp_fetch_ssl_x_version(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Bruna7359fd2012-10-17 15:03:11 +02006813{
Emeric Brunba841a12014-04-30 17:05:08 +02006814 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Bruna7359fd2012-10-17 15:03:11 +02006815 X509 *crt;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006816 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006817 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006818
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006819 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006820 if (!conn || conn->xprt != &ssl_sock)
Emeric Bruna7359fd2012-10-17 15:03:11 +02006821 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006822 ctx = conn->xprt_ctx;
Emeric Bruna7359fd2012-10-17 15:03:11 +02006823
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006824 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Bruna7359fd2012-10-17 15:03:11 +02006825 smp->flags |= SMP_F_MAY_CHANGE;
6826 return 0;
6827 }
6828
Emeric Brunba841a12014-04-30 17:05:08 +02006829 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006830 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006831 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006832 crt = SSL_get_certificate(ctx->ssl);
Emeric Bruna7359fd2012-10-17 15:03:11 +02006833 if (!crt)
6834 return 0;
6835
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006836 smp->data.u.sint = (unsigned int)(1 + X509_get_version(crt));
Emeric Brunba841a12014-04-30 17:05:08 +02006837 /* SSL_get_peer_certificate increase X509 * ref count */
6838 if (cert_peer)
6839 X509_free(crt);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006840 smp->data.type = SMP_T_SINT;
Emeric Bruna7359fd2012-10-17 15:03:11 +02006841
6842 return 1;
6843}
6844
Emeric Brunba841a12014-04-30 17:05:08 +02006845/* string, returns the certificate's signature algorithm.
6846 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6847 * should be use.
6848 */
Emeric Brun7f56e742012-10-19 18:15:40 +02006849static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006850smp_fetch_ssl_x_sig_alg(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun7f56e742012-10-19 18:15:40 +02006851{
Emeric Brunba841a12014-04-30 17:05:08 +02006852 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Brun7f56e742012-10-19 18:15:40 +02006853 X509 *crt;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006854 __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm;
Emeric Brun7f56e742012-10-19 18:15:40 +02006855 int nid;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006856 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006857 struct ssl_sock_ctx *ctx;
Emeric Brun7f56e742012-10-19 18:15:40 +02006858
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006859 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006860 if (!conn || conn->xprt != &ssl_sock)
6861 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006862 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006863
6864 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brun7f56e742012-10-19 18:15:40 +02006865 smp->flags |= SMP_F_MAY_CHANGE;
6866 return 0;
6867 }
6868
Emeric Brunba841a12014-04-30 17:05:08 +02006869 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006870 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006871 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006872 crt = SSL_get_certificate(ctx->ssl);
Emeric Brun7f56e742012-10-19 18:15:40 +02006873 if (!crt)
6874 return 0;
6875
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006876 X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt));
6877 nid = OBJ_obj2nid(algorithm);
Emeric Brun7f56e742012-10-19 18:15:40 +02006878
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006879 smp->data.u.str.area = (char *)OBJ_nid2sn(nid);
6880 if (!smp->data.u.str.area) {
Emeric Brunba841a12014-04-30 17:05:08 +02006881 /* SSL_get_peer_certificate increase X509 * ref count */
6882 if (cert_peer)
6883 X509_free(crt);
Emeric Brun7f56e742012-10-19 18:15:40 +02006884 return 0;
Emeric Brun9bf3ba22013-10-07 14:31:44 +02006885 }
Emeric Brun7f56e742012-10-19 18:15:40 +02006886
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006887 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01006888 smp->flags |= SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006889 smp->data.u.str.data = strlen(smp->data.u.str.area);
Emeric Brunba841a12014-04-30 17:05:08 +02006890 /* SSL_get_peer_certificate increase X509 * ref count */
6891 if (cert_peer)
6892 X509_free(crt);
Emeric Brun7f56e742012-10-19 18:15:40 +02006893
6894 return 1;
6895}
6896
Emeric Brunba841a12014-04-30 17:05:08 +02006897/* string, returns the certificate's key algorithm.
6898 * The 5th keyword char is used to know if SSL_get_certificate or SSL_get_peer_certificate
6899 * should be use.
6900 */
Emeric Brun521a0112012-10-22 12:22:55 +02006901static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006902smp_fetch_ssl_x_key_alg(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun521a0112012-10-22 12:22:55 +02006903{
Emeric Brunba841a12014-04-30 17:05:08 +02006904 int cert_peer = (kw[4] == 'c') ? 1 : 0;
Emeric Brun521a0112012-10-22 12:22:55 +02006905 X509 *crt;
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006906 ASN1_OBJECT *algorithm;
Emeric Brun521a0112012-10-22 12:22:55 +02006907 int nid;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006908 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006909 struct ssl_sock_ctx *ctx;
Emeric Brun521a0112012-10-22 12:22:55 +02006910
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006911 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006912 if (!conn || conn->xprt != &ssl_sock)
6913 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006914 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006915
6916 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brun521a0112012-10-22 12:22:55 +02006917 smp->flags |= SMP_F_MAY_CHANGE;
6918 return 0;
6919 }
6920
Emeric Brunba841a12014-04-30 17:05:08 +02006921 if (cert_peer)
Olivier Houchard66ab4982019-02-26 18:37:15 +01006922 crt = SSL_get_peer_certificate(ctx->ssl);
Emeric Brunba841a12014-04-30 17:05:08 +02006923 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01006924 crt = SSL_get_certificate(ctx->ssl);
Emeric Brun521a0112012-10-22 12:22:55 +02006925 if (!crt)
6926 return 0;
6927
Dirkjan Bussink1866d6d2016-08-29 13:26:37 +02006928 X509_PUBKEY_get0_param(&algorithm, NULL, NULL, NULL, X509_get_X509_PUBKEY(crt));
6929 nid = OBJ_obj2nid(algorithm);
Emeric Brun521a0112012-10-22 12:22:55 +02006930
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006931 smp->data.u.str.area = (char *)OBJ_nid2sn(nid);
6932 if (!smp->data.u.str.area) {
Emeric Brunba841a12014-04-30 17:05:08 +02006933 /* SSL_get_peer_certificate increase X509 * ref count */
6934 if (cert_peer)
6935 X509_free(crt);
Emeric Brun521a0112012-10-22 12:22:55 +02006936 return 0;
Emeric Brun9bf3ba22013-10-07 14:31:44 +02006937 }
Emeric Brun521a0112012-10-22 12:22:55 +02006938
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006939 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01006940 smp->flags |= SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02006941 smp->data.u.str.data = strlen(smp->data.u.str.area);
Emeric Brunba841a12014-04-30 17:05:08 +02006942 if (cert_peer)
6943 X509_free(crt);
Emeric Brun521a0112012-10-22 12:22:55 +02006944
6945 return 1;
6946}
6947
Emeric Brun645ae792014-04-30 14:21:06 +02006948/* boolean, returns true if front conn. transport layer is SSL.
6949 * This function is also usable on backend conn if the fetch keyword 5th
6950 * char is 'b'.
6951 */
Willy Tarreau7875d092012-09-10 08:20:03 +02006952static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006953smp_fetch_ssl_fc(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau7875d092012-09-10 08:20:03 +02006954{
Emeric Bruneb8def92018-02-19 15:59:48 +01006955 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
6956 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006957
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006958 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006959 smp->data.u.sint = (conn && conn->xprt == &ssl_sock);
Willy Tarreau7875d092012-09-10 08:20:03 +02006960 return 1;
6961}
6962
Emeric Brun2525b6b2012-10-18 15:59:43 +02006963/* boolean, returns true if client present a SNI */
Willy Tarreau7875d092012-09-10 08:20:03 +02006964static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02006965smp_fetch_ssl_fc_has_sni(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau7875d092012-09-10 08:20:03 +02006966{
6967#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02006968 struct connection *conn = objt_conn(smp->sess->origin);
Olivier Houchard66ab4982019-02-26 18:37:15 +01006969 struct ssl_sock_ctx *ctx = conn ? conn->xprt_ctx : NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006970
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006971 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006972 smp->data.u.sint = (conn && conn->xprt == &ssl_sock) &&
Willy Tarreaub363a1f2013-10-01 10:45:07 +02006973 conn->xprt_ctx &&
Olivier Houchard66ab4982019-02-26 18:37:15 +01006974 SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name) != NULL;
Willy Tarreau7875d092012-09-10 08:20:03 +02006975 return 1;
6976#else
6977 return 0;
6978#endif
6979}
6980
Emeric Brun74f7ffa2018-02-19 16:14:12 +01006981/* boolean, returns true if client session has been resumed.
6982 * This function is also usable on backend conn if the fetch keyword 5th
6983 * char is 'b'.
6984 */
Nenad Merdanovic26ea8222015-05-18 02:28:57 +02006985static int
6986smp_fetch_ssl_fc_is_resumed(const struct arg *args, struct sample *smp, const char *kw, void *private)
6987{
Emeric Brun74f7ffa2018-02-19 16:14:12 +01006988 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
6989 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01006990 struct ssl_sock_ctx *ctx = conn ? conn->xprt_ctx : NULL;
Emeric Brun74f7ffa2018-02-19 16:14:12 +01006991
Nenad Merdanovic26ea8222015-05-18 02:28:57 +02006992
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02006993 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02006994 smp->data.u.sint = (conn && conn->xprt == &ssl_sock) &&
Nenad Merdanovic26ea8222015-05-18 02:28:57 +02006995 conn->xprt_ctx &&
Olivier Houchard66ab4982019-02-26 18:37:15 +01006996 SSL_session_reused(ctx->ssl);
Nenad Merdanovic26ea8222015-05-18 02:28:57 +02006997 return 1;
6998}
6999
Emeric Brun645ae792014-04-30 14:21:06 +02007000/* string, returns the used cipher if front conn. transport layer is SSL.
7001 * This function is also usable on backend conn if the fetch keyword 5th
7002 * char is 'b'.
7003 */
Emeric Brun589fcad2012-10-16 14:13:26 +02007004static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007005smp_fetch_ssl_fc_cipher(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun589fcad2012-10-16 14:13:26 +02007006{
Emeric Bruneb8def92018-02-19 15:59:48 +01007007 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7008 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007009 struct ssl_sock_ctx *ctx;
Emeric Brun589fcad2012-10-16 14:13:26 +02007010
Willy Tarreaube508f12016-03-10 11:47:01 +01007011 smp->flags = 0;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007012 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
Emeric Brun589fcad2012-10-16 14:13:26 +02007013 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007014 ctx = conn->xprt_ctx;
Emeric Brun589fcad2012-10-16 14:13:26 +02007015
Olivier Houchard66ab4982019-02-26 18:37:15 +01007016 smp->data.u.str.area = (char *)SSL_get_cipher_name(ctx->ssl);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007017 if (!smp->data.u.str.area)
Emeric Brun589fcad2012-10-16 14:13:26 +02007018 return 0;
7019
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007020 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01007021 smp->flags |= SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007022 smp->data.u.str.data = strlen(smp->data.u.str.area);
Emeric Brun589fcad2012-10-16 14:13:26 +02007023
7024 return 1;
7025}
7026
Emeric Brun645ae792014-04-30 14:21:06 +02007027/* integer, returns the algoritm's keysize if front conn. transport layer
7028 * is SSL.
7029 * This function is also usable on backend conn if the fetch keyword 5th
7030 * char is 'b'.
7031 */
Emeric Brun589fcad2012-10-16 14:13:26 +02007032static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007033smp_fetch_ssl_fc_alg_keysize(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun589fcad2012-10-16 14:13:26 +02007034{
Emeric Bruneb8def92018-02-19 15:59:48 +01007035 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7036 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007037 struct ssl_sock_ctx *ctx;
Willy Tarreaue237fe12016-03-10 17:05:28 +01007038 int sint;
Willy Tarreaube508f12016-03-10 11:47:01 +01007039
Emeric Brun589fcad2012-10-16 14:13:26 +02007040 smp->flags = 0;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007041 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
Emeric Brun589fcad2012-10-16 14:13:26 +02007042 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007043 ctx = conn->xprt_ctx;
Emeric Brun589fcad2012-10-16 14:13:26 +02007044
Olivier Houchard66ab4982019-02-26 18:37:15 +01007045 if (!SSL_get_cipher_bits(ctx->ssl, &sint))
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007046 return 0;
7047
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02007048 smp->data.u.sint = sint;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007049 smp->data.type = SMP_T_SINT;
Emeric Brun589fcad2012-10-16 14:13:26 +02007050
7051 return 1;
7052}
7053
Emeric Brun645ae792014-04-30 14:21:06 +02007054/* integer, returns the used keysize if front conn. transport layer is SSL.
7055 * This function is also usable on backend conn if the fetch keyword 5th
7056 * char is 'b'.
7057 */
Emeric Brun589fcad2012-10-16 14:13:26 +02007058static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007059smp_fetch_ssl_fc_use_keysize(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun589fcad2012-10-16 14:13:26 +02007060{
Emeric Bruneb8def92018-02-19 15:59:48 +01007061 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7062 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007063 struct ssl_sock_ctx *ctx;
Willy Tarreaube508f12016-03-10 11:47:01 +01007064
Emeric Brun589fcad2012-10-16 14:13:26 +02007065 smp->flags = 0;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007066 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7067 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007068 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007069
Olivier Houchard66ab4982019-02-26 18:37:15 +01007070 smp->data.u.sint = (unsigned int)SSL_get_cipher_bits(ctx->ssl, NULL);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02007071 if (!smp->data.u.sint)
Emeric Brun589fcad2012-10-16 14:13:26 +02007072 return 0;
7073
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007074 smp->data.type = SMP_T_SINT;
Emeric Brun589fcad2012-10-16 14:13:26 +02007075
7076 return 1;
7077}
7078
Bernard Spil13c53f82018-02-15 13:34:58 +01007079#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau7875d092012-09-10 08:20:03 +02007080static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007081smp_fetch_ssl_fc_npn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreaua33c6542012-10-15 13:19:06 +02007082{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007083 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007084 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007085
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01007086 smp->flags = SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007087 smp->data.type = SMP_T_STR;
Willy Tarreaua33c6542012-10-15 13:19:06 +02007088
Olivier Houchard6b77f492018-11-22 18:18:29 +01007089 conn = (kw[4] != 'b' ) ? objt_conn(smp->sess->origin) :
7090 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007091 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7092 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007093 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007094
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007095 smp->data.u.str.area = NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007096 SSL_get0_next_proto_negotiated(ctx->ssl,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007097 (const unsigned char **)&smp->data.u.str.area,
7098 (unsigned *)&smp->data.u.str.data);
Willy Tarreaua33c6542012-10-15 13:19:06 +02007099
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007100 if (!smp->data.u.str.area)
Willy Tarreaua33c6542012-10-15 13:19:06 +02007101 return 0;
7102
7103 return 1;
Willy Tarreaua33c6542012-10-15 13:19:06 +02007104}
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007105#endif
Willy Tarreaua33c6542012-10-15 13:19:06 +02007106
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01007107#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02007108static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007109smp_fetch_ssl_fc_alpn(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreauab861d32013-04-02 02:30:41 +02007110{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007111 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007112 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007113
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01007114 smp->flags = SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007115 smp->data.type = SMP_T_STR;
Willy Tarreauab861d32013-04-02 02:30:41 +02007116
Olivier Houchard6b77f492018-11-22 18:18:29 +01007117 conn = (kw[4] != 'b' ) ? objt_conn(smp->sess->origin) :
7118 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
7119
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007120 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
Willy Tarreauab861d32013-04-02 02:30:41 +02007121 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007122 ctx = conn->xprt_ctx;
Willy Tarreauab861d32013-04-02 02:30:41 +02007123
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007124 smp->data.u.str.area = NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007125 SSL_get0_alpn_selected(ctx->ssl,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007126 (const unsigned char **)&smp->data.u.str.area,
7127 (unsigned *)&smp->data.u.str.data);
Willy Tarreauab861d32013-04-02 02:30:41 +02007128
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007129 if (!smp->data.u.str.area)
Willy Tarreauab861d32013-04-02 02:30:41 +02007130 return 0;
7131
7132 return 1;
7133}
7134#endif
7135
Emeric Brun645ae792014-04-30 14:21:06 +02007136/* string, returns the used protocol if front conn. transport layer is SSL.
7137 * This function is also usable on backend conn if the fetch keyword 5th
7138 * char is 'b'.
7139 */
Willy Tarreaua33c6542012-10-15 13:19:06 +02007140static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007141smp_fetch_ssl_fc_protocol(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brun589fcad2012-10-16 14:13:26 +02007142{
Emeric Bruneb8def92018-02-19 15:59:48 +01007143 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7144 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007145 struct ssl_sock_ctx *ctx;
Willy Tarreaube508f12016-03-10 11:47:01 +01007146
Emeric Brun589fcad2012-10-16 14:13:26 +02007147 smp->flags = 0;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007148 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7149 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007150 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007151
Olivier Houchard66ab4982019-02-26 18:37:15 +01007152 smp->data.u.str.area = (char *)SSL_get_version(ctx->ssl);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007153 if (!smp->data.u.str.area)
Emeric Brun589fcad2012-10-16 14:13:26 +02007154 return 0;
7155
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007156 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01007157 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007158 smp->data.u.str.data = strlen(smp->data.u.str.area);
Emeric Brun589fcad2012-10-16 14:13:26 +02007159
7160 return 1;
7161}
7162
Willy Tarreau87b09662015-04-03 00:22:06 +02007163/* binary, returns the SSL stream id if front conn. transport layer is SSL.
Emeric Brun645ae792014-04-30 14:21:06 +02007164 * This function is also usable on backend conn if the fetch keyword 5th
7165 * char is 'b'.
7166 */
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007167#if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL
Emeric Brun589fcad2012-10-16 14:13:26 +02007168static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007169smp_fetch_ssl_fc_session_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunfe68f682012-10-16 14:59:28 +02007170{
Emeric Bruneb8def92018-02-19 15:59:48 +01007171 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7172 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
Willy Tarreaue237fe12016-03-10 17:05:28 +01007173 SSL_SESSION *ssl_sess;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007174 struct ssl_sock_ctx *ctx;
Willy Tarreaube508f12016-03-10 11:47:01 +01007175
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01007176 smp->flags = SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007177 smp->data.type = SMP_T_BIN;
Emeric Brunfe68f682012-10-16 14:59:28 +02007178
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007179 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7180 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007181 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007182
Olivier Houchard66ab4982019-02-26 18:37:15 +01007183 ssl_sess = SSL_get_session(ctx->ssl);
Willy Tarreau192252e2015-04-04 01:47:55 +02007184 if (!ssl_sess)
Emeric Brunfe68f682012-10-16 14:59:28 +02007185 return 0;
7186
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007187 smp->data.u.str.area = (char *)SSL_SESSION_get_id(ssl_sess,
7188 (unsigned int *)&smp->data.u.str.data);
7189 if (!smp->data.u.str.area || !smp->data.u.str.data)
Emeric Brunfe68f682012-10-16 14:59:28 +02007190 return 0;
7191
7192 return 1;
Emeric Brunfe68f682012-10-16 14:59:28 +02007193}
Patrick Hemmer41966772018-04-28 19:15:48 -04007194#endif
7195
Emeric Brunfe68f682012-10-16 14:59:28 +02007196
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007197#if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL)
Patrick Hemmere0275472018-04-28 19:15:51 -04007198static int
7199smp_fetch_ssl_fc_session_key(const struct arg *args, struct sample *smp, const char *kw, void *private)
7200{
7201 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7202 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
7203 SSL_SESSION *ssl_sess;
Willy Tarreau83061a82018-07-13 11:56:34 +02007204 struct buffer *data;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007205 struct ssl_sock_ctx *ctx;
Patrick Hemmere0275472018-04-28 19:15:51 -04007206
7207 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7208 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007209 ctx = conn->xprt_ctx;
Patrick Hemmere0275472018-04-28 19:15:51 -04007210
Olivier Houchard66ab4982019-02-26 18:37:15 +01007211 ssl_sess = SSL_get_session(ctx->ssl);
Patrick Hemmere0275472018-04-28 19:15:51 -04007212 if (!ssl_sess)
7213 return 0;
7214
7215 data = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007216 data->data = SSL_SESSION_get_master_key(ssl_sess,
7217 (unsigned char *) data->area,
7218 data->size);
7219 if (!data->data)
Patrick Hemmere0275472018-04-28 19:15:51 -04007220 return 0;
7221
7222 smp->flags = 0;
7223 smp->data.type = SMP_T_BIN;
7224 smp->data.u.str = *data;
7225
7226 return 1;
7227}
7228#endif
7229
Patrick Hemmer41966772018-04-28 19:15:48 -04007230#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Emeric Brunfe68f682012-10-16 14:59:28 +02007231static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007232smp_fetch_ssl_fc_sni(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau7875d092012-09-10 08:20:03 +02007233{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007234 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007235 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007236
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01007237 smp->flags = SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007238 smp->data.type = SMP_T_STR;
Willy Tarreau7875d092012-09-10 08:20:03 +02007239
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02007240 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007241 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7242 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007243 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007244
Olivier Houchard66ab4982019-02-26 18:37:15 +01007245 smp->data.u.str.area = (char *)SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007246 if (!smp->data.u.str.area)
Willy Tarreau3e394c92012-09-14 23:56:58 +02007247 return 0;
7248
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007249 smp->data.u.str.data = strlen(smp->data.u.str.area);
Willy Tarreau7875d092012-09-10 08:20:03 +02007250 return 1;
Willy Tarreau7875d092012-09-10 08:20:03 +02007251}
Patrick Hemmer41966772018-04-28 19:15:48 -04007252#endif
Willy Tarreau7875d092012-09-10 08:20:03 +02007253
David Sc1ad52e2014-04-08 18:48:47 -04007254static int
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007255smp_fetch_ssl_fc_cl_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
7256{
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007257 struct connection *conn;
7258 struct ssl_capture *capture;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007259 struct ssl_sock_ctx *ctx;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007260
7261 conn = objt_conn(smp->sess->origin);
7262 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7263 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007264 ctx = conn->xprt_ctx;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007265
Olivier Houchard66ab4982019-02-26 18:37:15 +01007266 capture = SSL_get_ex_data(ctx->ssl, ssl_capture_ptr_index);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007267 if (!capture)
7268 return 0;
7269
7270 smp->flags = SMP_F_CONST;
7271 smp->data.type = SMP_T_BIN;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007272 smp->data.u.str.area = capture->ciphersuite;
7273 smp->data.u.str.data = capture->ciphersuite_len;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007274 return 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007275}
7276
7277static int
7278smp_fetch_ssl_fc_cl_hex(const struct arg *args, struct sample *smp, const char *kw, void *private)
7279{
Willy Tarreau83061a82018-07-13 11:56:34 +02007280 struct buffer *data;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007281
7282 if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private))
7283 return 0;
7284
7285 data = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007286 dump_binary(data, smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007287 smp->data.type = SMP_T_BIN;
7288 smp->data.u.str = *data;
7289 return 1;
7290}
7291
7292static int
7293smp_fetch_ssl_fc_cl_xxh64(const struct arg *args, struct sample *smp, const char *kw, void *private)
7294{
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007295 struct connection *conn;
7296 struct ssl_capture *capture;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007297 struct ssl_sock_ctx *ctx;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007298
7299 conn = objt_conn(smp->sess->origin);
7300 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7301 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007302 ctx = conn->xprt_ctx;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007303
Olivier Houchard66ab4982019-02-26 18:37:15 +01007304 capture = SSL_get_ex_data(ctx->ssl, ssl_capture_ptr_index);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007305 if (!capture)
7306 return 0;
7307
7308 smp->data.type = SMP_T_SINT;
7309 smp->data.u.sint = capture->xxh64;
7310 return 1;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007311}
7312
7313static int
7314smp_fetch_ssl_fc_cl_str(const struct arg *args, struct sample *smp, const char *kw, void *private)
7315{
Willy Tarreau5db847a2019-05-09 14:13:35 +02007316#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL)
Willy Tarreau83061a82018-07-13 11:56:34 +02007317 struct buffer *data;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007318 int i;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007319
7320 if (!smp_fetch_ssl_fc_cl_bin(args, smp, kw, private))
7321 return 0;
7322
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007323 data = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007324 for (i = 0; i + 1 < smp->data.u.str.data; i += 2) {
Emmanuel Hocdetddcde192017-09-01 17:32:08 +02007325 const char *str;
7326 const SSL_CIPHER *cipher;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007327 const unsigned char *bin = (const unsigned char *) smp->data.u.str.area + i;
Emmanuel Hocdetddcde192017-09-01 17:32:08 +02007328 uint16_t id = (bin[0] << 8) | bin[1];
7329#if defined(OPENSSL_IS_BORINGSSL)
7330 cipher = SSL_get_cipher_by_value(id);
7331#else
Willy Tarreaub7290772018-10-15 11:01:59 +02007332 struct connection *conn = __objt_conn(smp->sess->origin);
Olivier Houchard66ab4982019-02-26 18:37:15 +01007333 struct ssl_sock_ctx *ctx = conn->xprt_ctx;
7334 cipher = SSL_CIPHER_find(ctx->ssl, bin);
Emmanuel Hocdetddcde192017-09-01 17:32:08 +02007335#endif
7336 str = SSL_CIPHER_get_name(cipher);
7337 if (!str || strcmp(str, "(NONE)") == 0)
7338 chunk_appendf(data, "%sUNKNOWN(%04x)", i == 0 ? "" : ",", id);
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007339 else
7340 chunk_appendf(data, "%s%s", i == 0 ? "" : ",", str);
7341 }
7342 smp->data.type = SMP_T_STR;
7343 smp->data.u.str = *data;
7344 return 1;
7345#else
7346 return smp_fetch_ssl_fc_cl_xxh64(args, smp, kw, private);
7347#endif
7348}
7349
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007350#if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01007351static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007352smp_fetch_ssl_fc_unique_id(const struct arg *args, struct sample *smp, const char *kw, void *private)
David Sc1ad52e2014-04-08 18:48:47 -04007353{
Emeric Bruneb8def92018-02-19 15:59:48 +01007354 struct connection *conn = (kw[4] != 'b') ? objt_conn(smp->sess->origin) :
7355 smp->strm ? cs_conn(objt_cs(smp->strm->si[1].end)) : NULL;
David Sc1ad52e2014-04-08 18:48:47 -04007356 int finished_len;
Willy Tarreau83061a82018-07-13 11:56:34 +02007357 struct buffer *finished_trash;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007358 struct ssl_sock_ctx *ctx;
David Sc1ad52e2014-04-08 18:48:47 -04007359
7360 smp->flags = 0;
David Sc1ad52e2014-04-08 18:48:47 -04007361 if (!conn || !conn->xprt_ctx || conn->xprt != &ssl_sock)
7362 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007363 ctx = conn->xprt_ctx;
David Sc1ad52e2014-04-08 18:48:47 -04007364
7365 if (!(conn->flags & CO_FL_CONNECTED)) {
7366 smp->flags |= SMP_F_MAY_CHANGE;
7367 return 0;
7368 }
7369
7370 finished_trash = get_trash_chunk();
Olivier Houchard66ab4982019-02-26 18:37:15 +01007371 if (!SSL_session_reused(ctx->ssl))
7372 finished_len = SSL_get_peer_finished(ctx->ssl,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007373 finished_trash->area,
7374 finished_trash->size);
David Sc1ad52e2014-04-08 18:48:47 -04007375 else
Olivier Houchard66ab4982019-02-26 18:37:15 +01007376 finished_len = SSL_get_finished(ctx->ssl,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007377 finished_trash->area,
7378 finished_trash->size);
David Sc1ad52e2014-04-08 18:48:47 -04007379
7380 if (!finished_len)
7381 return 0;
7382
Willy Tarreau843b7cb2018-07-13 10:54:26 +02007383 finished_trash->data = finished_len;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02007384 smp->data.u.str = *finished_trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007385 smp->data.type = SMP_T_BIN;
David Sc1ad52e2014-04-08 18:48:47 -04007386
7387 return 1;
David Sc1ad52e2014-04-08 18:48:47 -04007388}
Patrick Hemmer41966772018-04-28 19:15:48 -04007389#endif
David Sc1ad52e2014-04-08 18:48:47 -04007390
Emeric Brun2525b6b2012-10-18 15:59:43 +02007391/* integer, returns the first verify error in CA chain of client certificate chain. */
Emeric Brunf282a812012-09-21 15:27:54 +02007392static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007393smp_fetch_ssl_c_ca_err(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunf282a812012-09-21 15:27:54 +02007394{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007395 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007396 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007397
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02007398 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007399 if (!conn || conn->xprt != &ssl_sock)
7400 return 0;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007401 ctx = conn->xprt_ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007402
7403 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brunf282a812012-09-21 15:27:54 +02007404 smp->flags = SMP_F_MAY_CHANGE;
7405 return 0;
7406 }
7407
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007408 smp->data.type = SMP_T_SINT;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007409 smp->data.u.sint = (unsigned long long int)SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st);
Emeric Brunf282a812012-09-21 15:27:54 +02007410 smp->flags = 0;
7411
7412 return 1;
7413}
7414
Emeric Brun2525b6b2012-10-18 15:59:43 +02007415/* integer, returns the depth of the first verify error in CA chain of client certificate chain. */
Emeric Brunf282a812012-09-21 15:27:54 +02007416static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007417smp_fetch_ssl_c_ca_err_depth(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunf282a812012-09-21 15:27:54 +02007418{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007419 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007420 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007421
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02007422 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007423 if (!conn || conn->xprt != &ssl_sock)
Emeric Brunf282a812012-09-21 15:27:54 +02007424 return 0;
7425
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007426 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brunf282a812012-09-21 15:27:54 +02007427 smp->flags = SMP_F_MAY_CHANGE;
7428 return 0;
7429 }
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007430 ctx = conn->xprt_ctx;
Emeric Brunf282a812012-09-21 15:27:54 +02007431
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007432 smp->data.type = SMP_T_SINT;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007433 smp->data.u.sint = (long long int)SSL_SOCK_ST_TO_CAEDEPTH(ctx->xprt_st);
Emeric Brunf282a812012-09-21 15:27:54 +02007434 smp->flags = 0;
7435
7436 return 1;
7437}
7438
Emeric Brun2525b6b2012-10-18 15:59:43 +02007439/* integer, returns the first verify error on client certificate */
Emeric Brunf282a812012-09-21 15:27:54 +02007440static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007441smp_fetch_ssl_c_err(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunf282a812012-09-21 15:27:54 +02007442{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007443 struct connection *conn;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007444 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007445
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02007446 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007447 if (!conn || conn->xprt != &ssl_sock)
7448 return 0;
7449
7450 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brunf282a812012-09-21 15:27:54 +02007451 smp->flags = SMP_F_MAY_CHANGE;
7452 return 0;
7453 }
7454
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007455 ctx = conn->xprt_ctx;
7456
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007457 smp->data.type = SMP_T_SINT;
Olivier Houchard7b5fd1e2019-02-28 18:10:45 +01007458 smp->data.u.sint = (long long int)SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st);
Emeric Brunf282a812012-09-21 15:27:54 +02007459 smp->flags = 0;
7460
7461 return 1;
7462}
7463
Emeric Brun2525b6b2012-10-18 15:59:43 +02007464/* integer, returns the verify result on client cert */
Emeric Brunbaf8ffb2012-09-21 15:27:20 +02007465static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02007466smp_fetch_ssl_c_verify(const struct arg *args, struct sample *smp, const char *kw, void *private)
Emeric Brunbaf8ffb2012-09-21 15:27:20 +02007467{
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007468 struct connection *conn;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007469 struct ssl_sock_ctx *ctx;
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007470
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02007471 conn = objt_conn(smp->sess->origin);
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007472 if (!conn || conn->xprt != &ssl_sock)
7473 return 0;
7474
7475 if (!(conn->flags & CO_FL_CONNECTED)) {
Emeric Brunbaf8ffb2012-09-21 15:27:20 +02007476 smp->flags = SMP_F_MAY_CHANGE;
7477 return 0;
7478 }
7479
Willy Tarreaub363a1f2013-10-01 10:45:07 +02007480 if (!conn->xprt_ctx)
Emeric Brunbaf8ffb2012-09-21 15:27:20 +02007481 return 0;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007482 ctx = conn->xprt_ctx;
Emeric Brunbaf8ffb2012-09-21 15:27:20 +02007483
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02007484 smp->data.type = SMP_T_SINT;
Olivier Houchard66ab4982019-02-26 18:37:15 +01007485 smp->data.u.sint = (long long int)SSL_get_verify_result(ctx->ssl);
Emeric Brunbaf8ffb2012-09-21 15:27:20 +02007486 smp->flags = 0;
7487
7488 return 1;
7489}
7490
Emeric Brunfb510ea2012-10-05 12:00:26 +02007491/* parse the "ca-file" bind keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007492static int ssl_bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Emeric Brund94b3fe2012-09-20 18:23:56 +02007493{
7494 if (!*args[cur_arg + 1]) {
7495 if (err)
7496 memprintf(err, "'%s' : missing CAfile path", args[cur_arg]);
7497 return ERR_ALERT | ERR_FATAL;
7498 }
7499
Willy Tarreauef934602016-12-22 23:12:01 +01007500 if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base)
7501 memprintf(&conf->ca_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]);
Emeric Brunef42d922012-10-11 16:11:36 +02007502 else
7503 memprintf(&conf->ca_file, "%s", args[cur_arg + 1]);
Emeric Brunc8e8d122012-10-02 18:42:10 +02007504
Emeric Brund94b3fe2012-09-20 18:23:56 +02007505 return 0;
7506}
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007507static int bind_parse_ca_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7508{
7509 return ssl_bind_parse_ca_file(args, cur_arg, px, &conf->ssl_conf, err);
7510}
Emeric Brund94b3fe2012-09-20 18:23:56 +02007511
Christopher Faulet31af49d2015-06-09 17:29:50 +02007512/* parse the "ca-sign-file" bind keyword */
7513static int bind_parse_ca_sign_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7514{
7515 if (!*args[cur_arg + 1]) {
7516 if (err)
7517 memprintf(err, "'%s' : missing CAfile path", args[cur_arg]);
7518 return ERR_ALERT | ERR_FATAL;
7519 }
7520
Willy Tarreauef934602016-12-22 23:12:01 +01007521 if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base)
7522 memprintf(&conf->ca_sign_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]);
Christopher Faulet31af49d2015-06-09 17:29:50 +02007523 else
7524 memprintf(&conf->ca_sign_file, "%s", args[cur_arg + 1]);
7525
7526 return 0;
7527}
7528
Bertrand Jacquinff13c062016-11-13 16:37:11 +00007529/* parse the "ca-sign-pass" bind keyword */
Christopher Faulet31af49d2015-06-09 17:29:50 +02007530static int bind_parse_ca_sign_pass(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7531{
7532 if (!*args[cur_arg + 1]) {
7533 if (err)
7534 memprintf(err, "'%s' : missing CAkey password", args[cur_arg]);
7535 return ERR_ALERT | ERR_FATAL;
7536 }
7537 memprintf(&conf->ca_sign_pass, "%s", args[cur_arg + 1]);
7538 return 0;
7539}
7540
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007541/* parse the "ciphers" bind keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007542static int ssl_bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007543{
7544 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02007545 memprintf(err, "'%s' : missing cipher suite", args[cur_arg]);
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007546 return ERR_ALERT | ERR_FATAL;
7547 }
7548
Emeric Brun76d88952012-10-05 15:47:31 +02007549 free(conf->ciphers);
Willy Tarreau4348fad2012-09-20 16:48:07 +02007550 conf->ciphers = strdup(args[cur_arg + 1]);
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007551 return 0;
7552}
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007553static int bind_parse_ciphers(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7554{
7555 return ssl_bind_parse_ciphers(args, cur_arg, px, &conf->ssl_conf, err);
7556}
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007557
Willy Tarreau5db847a2019-05-09 14:13:35 +02007558#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007559/* parse the "ciphersuites" bind keyword */
7560static int ssl_bind_parse_ciphersuites(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
7561{
7562 if (!*args[cur_arg + 1]) {
7563 memprintf(err, "'%s' : missing cipher suite", args[cur_arg]);
7564 return ERR_ALERT | ERR_FATAL;
7565 }
7566
7567 free(conf->ciphersuites);
7568 conf->ciphersuites = strdup(args[cur_arg + 1]);
7569 return 0;
7570}
7571static int bind_parse_ciphersuites(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7572{
7573 return ssl_bind_parse_ciphersuites(args, cur_arg, px, &conf->ssl_conf, err);
7574}
7575#endif
7576
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007577/* parse the "crt" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02007578static int bind_parse_crt(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007579{
Willy Tarreau38011032013-08-13 16:59:39 +02007580 char path[MAXPATHLEN];
Willy Tarreaub75d6922014-04-14 18:05:41 +02007581
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007582 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +02007583 memprintf(err, "'%s' : missing certificate location", args[cur_arg]);
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007584 return ERR_ALERT | ERR_FATAL;
7585 }
7586
Willy Tarreauef934602016-12-22 23:12:01 +01007587 if ((*args[cur_arg + 1] != '/' ) && global_ssl.crt_base) {
7588 if ((strlen(global_ssl.crt_base) + 1 + strlen(args[cur_arg + 1]) + 1) > MAXPATHLEN) {
Emeric Brunc8e8d122012-10-02 18:42:10 +02007589 memprintf(err, "'%s' : path too long", args[cur_arg]);
7590 return ERR_ALERT | ERR_FATAL;
7591 }
Willy Tarreauef934602016-12-22 23:12:01 +01007592 snprintf(path, sizeof(path), "%s/%s", global_ssl.crt_base, args[cur_arg + 1]);
Willy Tarreau03209342016-12-22 17:08:28 +01007593 if (ssl_sock_load_cert(path, conf, err) > 0)
Emeric Brunc8e8d122012-10-02 18:42:10 +02007594 return ERR_ALERT | ERR_FATAL;
7595
7596 return 0;
7597 }
7598
Willy Tarreau03209342016-12-22 17:08:28 +01007599 if (ssl_sock_load_cert(args[cur_arg + 1], conf, err) > 0)
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007600 return ERR_ALERT | ERR_FATAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02007601
7602 return 0;
7603}
7604
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007605/* parse the "crt-list" bind keyword */
7606static int bind_parse_crt_list(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7607{
7608 if (!*args[cur_arg + 1]) {
7609 memprintf(err, "'%s' : missing certificate location", args[cur_arg]);
7610 return ERR_ALERT | ERR_FATAL;
7611 }
7612
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007613 if (ssl_sock_load_cert_list_file(args[cur_arg + 1], conf, px, err) > 0) {
Willy Tarreauad1731d2013-04-02 17:35:58 +02007614 memprintf(err, "'%s' : %s", args[cur_arg], *err);
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007615 return ERR_ALERT | ERR_FATAL;
Willy Tarreauad1731d2013-04-02 17:35:58 +02007616 }
Emmanuel Hocdetfe616562013-01-22 15:31:15 +01007617
7618 return 0;
7619}
7620
Emeric Brunfb510ea2012-10-05 12:00:26 +02007621/* parse the "crl-file" bind keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007622static int ssl_bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Emeric Brund94b3fe2012-09-20 18:23:56 +02007623{
Emeric Brun051cdab2012-10-02 19:25:50 +02007624#ifndef X509_V_FLAG_CRL_CHECK
7625 if (err)
7626 memprintf(err, "'%s' : library does not support CRL verify", args[cur_arg]);
7627 return ERR_ALERT | ERR_FATAL;
7628#else
Emeric Brund94b3fe2012-09-20 18:23:56 +02007629 if (!*args[cur_arg + 1]) {
7630 if (err)
7631 memprintf(err, "'%s' : missing CRLfile path", args[cur_arg]);
7632 return ERR_ALERT | ERR_FATAL;
7633 }
Emeric Brun2b58d042012-09-20 17:10:03 +02007634
Willy Tarreauef934602016-12-22 23:12:01 +01007635 if ((*args[cur_arg + 1] != '/') && global_ssl.ca_base)
7636 memprintf(&conf->crl_file, "%s/%s", global_ssl.ca_base, args[cur_arg + 1]);
Emeric Brunef42d922012-10-11 16:11:36 +02007637 else
7638 memprintf(&conf->crl_file, "%s", args[cur_arg + 1]);
Emeric Brunc8e8d122012-10-02 18:42:10 +02007639
Emeric Brun2b58d042012-09-20 17:10:03 +02007640 return 0;
Emeric Brun051cdab2012-10-02 19:25:50 +02007641#endif
Emeric Brun2b58d042012-09-20 17:10:03 +02007642}
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007643static int bind_parse_crl_file(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7644{
7645 return ssl_bind_parse_crl_file(args, cur_arg, px, &conf->ssl_conf, err);
7646}
Emeric Brun2b58d042012-09-20 17:10:03 +02007647
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01007648/* parse the "curves" bind keyword keyword */
7649static int ssl_bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
7650{
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007651#if HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01007652 if (!*args[cur_arg + 1]) {
7653 if (err)
7654 memprintf(err, "'%s' : missing curve suite", args[cur_arg]);
7655 return ERR_ALERT | ERR_FATAL;
7656 }
7657 conf->curves = strdup(args[cur_arg + 1]);
7658 return 0;
7659#else
7660 if (err)
7661 memprintf(err, "'%s' : library does not support curve suite", args[cur_arg]);
7662 return ERR_ALERT | ERR_FATAL;
7663#endif
7664}
7665static int bind_parse_curves(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7666{
7667 return ssl_bind_parse_curves(args, cur_arg, px, &conf->ssl_conf, err);
7668}
7669
Bertrand Jacquinff13c062016-11-13 16:37:11 +00007670/* parse the "ecdhe" bind keyword keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007671static int ssl_bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Emeric Brun2b58d042012-09-20 17:10:03 +02007672{
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007673#if HA_OPENSSL_VERSION_NUMBER < 0x0090800fL
Emeric Brun2b58d042012-09-20 17:10:03 +02007674 if (err)
7675 memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (too old)", args[cur_arg]);
7676 return ERR_ALERT | ERR_FATAL;
7677#elif defined(OPENSSL_NO_ECDH)
7678 if (err)
7679 memprintf(err, "'%s' : library does not support elliptic curve Diffie-Hellman (disabled via OPENSSL_NO_ECDH)", args[cur_arg]);
7680 return ERR_ALERT | ERR_FATAL;
7681#else
7682 if (!*args[cur_arg + 1]) {
7683 if (err)
7684 memprintf(err, "'%s' : missing named curve", args[cur_arg]);
7685 return ERR_ALERT | ERR_FATAL;
7686 }
7687
7688 conf->ecdhe = strdup(args[cur_arg + 1]);
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007689
7690 return 0;
Emeric Brun2b58d042012-09-20 17:10:03 +02007691#endif
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007692}
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007693static int bind_parse_ecdhe(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7694{
7695 return ssl_bind_parse_ecdhe(args, cur_arg, px, &conf->ssl_conf, err);
7696}
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007697
Bertrand Jacquinff13c062016-11-13 16:37:11 +00007698/* parse the "crt-ignore-err" and "ca-ignore-err" bind keywords */
Emeric Brun81c00f02012-09-21 14:31:21 +02007699static int bind_parse_ignore_err(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7700{
7701 int code;
7702 char *p = args[cur_arg + 1];
7703 unsigned long long *ignerr = &conf->crt_ignerr;
7704
7705 if (!*p) {
7706 if (err)
7707 memprintf(err, "'%s' : missing error IDs list", args[cur_arg]);
7708 return ERR_ALERT | ERR_FATAL;
7709 }
7710
7711 if (strcmp(args[cur_arg], "ca-ignore-err") == 0)
7712 ignerr = &conf->ca_ignerr;
7713
7714 if (strcmp(p, "all") == 0) {
7715 *ignerr = ~0ULL;
7716 return 0;
7717 }
7718
7719 while (p) {
7720 code = atoi(p);
7721 if ((code <= 0) || (code > 63)) {
7722 if (err)
7723 memprintf(err, "'%s' : ID '%d' out of range (1..63) in error IDs list '%s'",
7724 args[cur_arg], code, args[cur_arg + 1]);
7725 return ERR_ALERT | ERR_FATAL;
7726 }
7727 *ignerr |= 1ULL << code;
7728 p = strchr(p, ',');
7729 if (p)
7730 p++;
7731 }
7732
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007733 return 0;
7734}
7735
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007736/* parse tls_method_options "no-xxx" and "force-xxx" */
7737static int parse_tls_method_options(char *arg, struct tls_version_filter *methods, char **err)
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007738{
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007739 uint16_t v;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007740 char *p;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007741 p = strchr(arg, '-');
7742 if (!p)
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007743 goto fail;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007744 p++;
7745 if (!strcmp(p, "sslv3"))
7746 v = CONF_SSLV3;
7747 else if (!strcmp(p, "tlsv10"))
7748 v = CONF_TLSV10;
7749 else if (!strcmp(p, "tlsv11"))
7750 v = CONF_TLSV11;
7751 else if (!strcmp(p, "tlsv12"))
7752 v = CONF_TLSV12;
Emmanuel Hocdet42fb9802017-03-30 19:29:39 +02007753 else if (!strcmp(p, "tlsv13"))
7754 v = CONF_TLSV13;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007755 else
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007756 goto fail;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007757 if (!strncmp(arg, "no-", 3))
7758 methods->flags |= methodVersions[v].flag;
7759 else if (!strncmp(arg, "force-", 6))
7760 methods->min = methods->max = v;
7761 else
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007762 goto fail;
Emeric Brun2d0c4822012-10-02 13:45:20 +02007763 return 0;
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007764 fail:
7765 if (err)
7766 memprintf(err, "'%s' : option not implemented", arg);
7767 return ERR_ALERT | ERR_FATAL;
Emeric Brun2d0c4822012-10-02 13:45:20 +02007768}
7769
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007770static int bind_parse_tls_method_options(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007771{
Emmanuel Hocdet43664762017-08-09 18:26:20 +02007772 return parse_tls_method_options(args[cur_arg], &conf->ssl_conf.ssl_methods, err);
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007773}
7774
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007775static int srv_parse_tls_method_options(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007776{
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007777 return parse_tls_method_options(args[*cur_arg], &newsrv->ssl_ctx.methods, err);
7778}
7779
7780/* parse tls_method min/max: "ssl-min-ver" and "ssl-max-ver" */
7781static int parse_tls_method_minmax(char **args, int cur_arg, struct tls_version_filter *methods, char **err)
7782{
7783 uint16_t i, v = 0;
7784 char *argv = args[cur_arg + 1];
7785 if (!*argv) {
7786 if (err)
7787 memprintf(err, "'%s' : missing the ssl/tls version", args[cur_arg]);
7788 return ERR_ALERT | ERR_FATAL;
7789 }
7790 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
7791 if (!strcmp(argv, methodVersions[i].name))
7792 v = i;
7793 if (!v) {
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007794 if (err)
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007795 memprintf(err, "'%s' : unknown ssl/tls version", args[cur_arg + 1]);
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02007796 return ERR_ALERT | ERR_FATAL;
7797 }
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007798 if (!strcmp("ssl-min-ver", args[cur_arg]))
7799 methods->min = v;
7800 else if (!strcmp("ssl-max-ver", args[cur_arg]))
7801 methods->max = v;
7802 else {
7803 if (err)
7804 memprintf(err, "'%s' : option not implemented", args[cur_arg]);
7805 return ERR_ALERT | ERR_FATAL;
7806 }
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007807 return 0;
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007808}
Emeric Brun2cb7ae52012-10-05 14:14:21 +02007809
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02007810static int ssl_bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
7811{
Willy Tarreau9a1ab082019-05-09 13:26:41 +02007812#if (HA_OPENSSL_VERSION_NUMBER < 0x10101000L) && !defined(OPENSSL_IS_BORINGSSL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01007813 ha_warning("crt-list: ssl-min-ver and ssl-max-ver are not supported with this Openssl version (skipped).\n");
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02007814#endif
7815 return parse_tls_method_minmax(args, cur_arg, &conf->ssl_methods, err);
7816}
7817
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007818static int bind_parse_tls_method_minmax(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7819{
Emmanuel Hocdet43664762017-08-09 18:26:20 +02007820 return parse_tls_method_minmax(args, cur_arg, &conf->ssl_conf.ssl_methods, err);
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02007821}
7822
7823static int srv_parse_tls_method_minmax(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
7824{
7825 return parse_tls_method_minmax(args, *cur_arg, &newsrv->ssl_ctx.methods, err);
7826}
7827
Emeric Brun2d0c4822012-10-02 13:45:20 +02007828/* parse the "no-tls-tickets" bind keyword */
Emmanuel Hocdet4608ed92017-01-20 13:06:27 +01007829static int bind_parse_no_tls_tickets(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Emeric Brun2d0c4822012-10-02 13:45:20 +02007830{
Emeric Brun89675492012-10-05 13:48:26 +02007831 conf->ssl_options |= BC_SSL_O_NO_TLS_TICKETS;
Emeric Brun81c00f02012-09-21 14:31:21 +02007832 return 0;
7833}
Emeric Brun2d0c4822012-10-02 13:45:20 +02007834
Olivier Houchardc2aae742017-09-22 18:26:28 +02007835/* parse the "allow-0rtt" bind keyword */
7836static int ssl_bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
7837{
7838 conf->early_data = 1;
7839 return 0;
7840}
7841
7842static int bind_parse_allow_0rtt(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7843{
Olivier Houchard9679ac92017-10-27 14:58:08 +02007844 conf->ssl_conf.early_data = 1;
Olivier Houchardc2aae742017-09-22 18:26:28 +02007845 return 0;
7846}
7847
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007848/* parse the "npn" bind keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007849static int ssl_bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007850{
Bernard Spil13c53f82018-02-15 13:34:58 +01007851#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007852 char *p1, *p2;
7853
7854 if (!*args[cur_arg + 1]) {
7855 memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[cur_arg]);
7856 return ERR_ALERT | ERR_FATAL;
7857 }
7858
7859 free(conf->npn_str);
7860
Willy Tarreau3724da12016-02-12 17:11:12 +01007861 /* the NPN string is built as a suite of (<len> <name>)*,
7862 * so we reuse each comma to store the next <len> and need
7863 * one more for the end of the string.
7864 */
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007865 conf->npn_len = strlen(args[cur_arg + 1]) + 1;
Willy Tarreau3724da12016-02-12 17:11:12 +01007866 conf->npn_str = calloc(1, conf->npn_len + 1);
Willy Tarreau6c9a3d52012-10-18 18:57:14 +02007867 memcpy(conf->npn_str + 1, args[cur_arg + 1], conf->npn_len);
7868
7869 /* replace commas with the name length */
7870 p1 = conf->npn_str;
7871 p2 = p1 + 1;
7872 while (1) {
7873 p2 = memchr(p1 + 1, ',', conf->npn_str + conf->npn_len - (p1 + 1));
7874 if (!p2)
7875 p2 = p1 + 1 + strlen(p1 + 1);
7876
7877 if (p2 - (p1 + 1) > 255) {
7878 *p2 = '\0';
7879 memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[cur_arg], p1 + 1);
7880 return ERR_ALERT | ERR_FATAL;
7881 }
7882
7883 *p1 = p2 - (p1 + 1);
7884 p1 = p2;
7885
7886 if (!*p2)
7887 break;
7888
7889 *(p2++) = '\0';
7890 }
7891 return 0;
7892#else
7893 if (err)
7894 memprintf(err, "'%s' : library does not support TLS NPN extension", args[cur_arg]);
7895 return ERR_ALERT | ERR_FATAL;
7896#endif
7897}
7898
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007899static int bind_parse_npn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7900{
7901 return ssl_bind_parse_npn(args, cur_arg, px, &conf->ssl_conf, err);
7902}
7903
Willy Tarreauab861d32013-04-02 02:30:41 +02007904/* parse the "alpn" bind keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007905static int ssl_bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Willy Tarreauab861d32013-04-02 02:30:41 +02007906{
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01007907#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Willy Tarreauab861d32013-04-02 02:30:41 +02007908 char *p1, *p2;
7909
7910 if (!*args[cur_arg + 1]) {
7911 memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[cur_arg]);
7912 return ERR_ALERT | ERR_FATAL;
7913 }
7914
7915 free(conf->alpn_str);
7916
Marcoen Hirschbergbef60912016-02-12 17:05:24 +01007917 /* the ALPN string is built as a suite of (<len> <name>)*,
7918 * so we reuse each comma to store the next <len> and need
7919 * one more for the end of the string.
7920 */
Willy Tarreauab861d32013-04-02 02:30:41 +02007921 conf->alpn_len = strlen(args[cur_arg + 1]) + 1;
Marcoen Hirschbergbef60912016-02-12 17:05:24 +01007922 conf->alpn_str = calloc(1, conf->alpn_len + 1);
Willy Tarreauab861d32013-04-02 02:30:41 +02007923 memcpy(conf->alpn_str + 1, args[cur_arg + 1], conf->alpn_len);
7924
7925 /* replace commas with the name length */
7926 p1 = conf->alpn_str;
7927 p2 = p1 + 1;
7928 while (1) {
7929 p2 = memchr(p1 + 1, ',', conf->alpn_str + conf->alpn_len - (p1 + 1));
7930 if (!p2)
7931 p2 = p1 + 1 + strlen(p1 + 1);
7932
7933 if (p2 - (p1 + 1) > 255) {
7934 *p2 = '\0';
7935 memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[cur_arg], p1 + 1);
7936 return ERR_ALERT | ERR_FATAL;
7937 }
7938
7939 *p1 = p2 - (p1 + 1);
7940 p1 = p2;
7941
7942 if (!*p2)
7943 break;
7944
7945 *(p2++) = '\0';
7946 }
7947 return 0;
7948#else
7949 if (err)
7950 memprintf(err, "'%s' : library does not support TLS ALPN extension", args[cur_arg]);
7951 return ERR_ALERT | ERR_FATAL;
7952#endif
7953}
7954
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007955static int bind_parse_alpn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7956{
7957 return ssl_bind_parse_alpn(args, cur_arg, px, &conf->ssl_conf, err);
7958}
7959
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007960/* parse the "ssl" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +02007961static int bind_parse_ssl(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007962{
Willy Tarreau71a8c7c2016-12-21 22:04:54 +01007963 conf->xprt = &ssl_sock;
Willy Tarreau4348fad2012-09-20 16:48:07 +02007964 conf->is_ssl = 1;
Emeric Brun76d88952012-10-05 15:47:31 +02007965
Emmanuel Hocdet98263292016-12-29 18:26:15 +01007966 if (global_ssl.listen_default_ciphers && !conf->ssl_conf.ciphers)
7967 conf->ssl_conf.ciphers = strdup(global_ssl.listen_default_ciphers);
Willy Tarreau5db847a2019-05-09 14:13:35 +02007968#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02007969 if (global_ssl.listen_default_ciphersuites && !conf->ssl_conf.ciphersuites)
7970 conf->ssl_conf.ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
7971#endif
Emmanuel Hocdet4608ed92017-01-20 13:06:27 +01007972 conf->ssl_options |= global_ssl.listen_default_ssloptions;
Emmanuel Hocdet43664762017-08-09 18:26:20 +02007973 conf->ssl_conf.ssl_methods.flags |= global_ssl.listen_default_sslmethods.flags;
7974 if (!conf->ssl_conf.ssl_methods.min)
7975 conf->ssl_conf.ssl_methods.min = global_ssl.listen_default_sslmethods.min;
7976 if (!conf->ssl_conf.ssl_methods.max)
7977 conf->ssl_conf.ssl_methods.max = global_ssl.listen_default_sslmethods.max;
Emeric Brun76d88952012-10-05 15:47:31 +02007978
Willy Tarreau79eeafa2012-09-14 07:53:05 +02007979 return 0;
7980}
7981
Lukas Tribus53ae85c2017-05-04 15:45:40 +00007982/* parse the "prefer-client-ciphers" bind keyword */
7983static int bind_parse_pcc(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7984{
7985 conf->ssl_options |= BC_SSL_O_PREF_CLIE_CIPH;
7986 return 0;
7987}
7988
Christopher Faulet31af49d2015-06-09 17:29:50 +02007989/* parse the "generate-certificates" bind keyword */
7990static int bind_parse_generate_certs(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
7991{
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01007992#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Christopher Faulet31af49d2015-06-09 17:29:50 +02007993 conf->generate_certs = 1;
7994#else
7995 memprintf(err, "%sthis version of openssl cannot generate SSL certificates.\n",
7996 err && *err ? *err : "");
7997#endif
7998 return 0;
7999}
8000
Emmanuel Hocdet65623372013-01-24 17:17:15 +01008001/* parse the "strict-sni" bind keyword */
8002static int bind_parse_strict_sni(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
8003{
8004 conf->strict_sni = 1;
8005 return 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008006}
8007
8008/* parse the "tls-ticket-keys" bind keyword */
8009static int bind_parse_tls_ticket_keys(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
8010{
8011#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
8012 FILE *f;
8013 int i = 0;
8014 char thisline[LINESIZE];
Nenad Merdanovic146defa2015-05-09 08:46:00 +02008015 struct tls_keys_ref *keys_ref;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008016
8017 if (!*args[cur_arg + 1]) {
8018 if (err)
8019 memprintf(err, "'%s' : missing TLS ticket keys file path", args[cur_arg]);
8020 return ERR_ALERT | ERR_FATAL;
8021 }
8022
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02008023 keys_ref = tlskeys_ref_lookup(args[cur_arg + 1]);
Willy Tarreau17b4aa12018-07-17 10:05:32 +02008024 if (keys_ref) {
8025 keys_ref->refcount++;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02008026 conf->keys_ref = keys_ref;
8027 return 0;
8028 }
8029
Vincent Bernat02779b62016-04-03 13:48:43 +02008030 keys_ref = malloc(sizeof(*keys_ref));
Emeric Brun09852f72019-01-10 10:51:13 +01008031 if (!keys_ref) {
8032 if (err)
8033 memprintf(err, "'%s' : allocation error", args[cur_arg+1]);
8034 return ERR_ALERT | ERR_FATAL;
8035 }
8036
Emeric Brun9e754772019-01-10 17:51:55 +01008037 keys_ref->tlskeys = malloc(TLS_TICKETS_NO * sizeof(union tls_sess_key));
Emeric Brun09852f72019-01-10 10:51:13 +01008038 if (!keys_ref->tlskeys) {
8039 free(keys_ref);
8040 if (err)
8041 memprintf(err, "'%s' : allocation error", args[cur_arg+1]);
8042 return ERR_ALERT | ERR_FATAL;
8043 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008044
8045 if ((f = fopen(args[cur_arg + 1], "r")) == NULL) {
Emeric Brun09852f72019-01-10 10:51:13 +01008046 free(keys_ref->tlskeys);
8047 free(keys_ref);
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008048 if (err)
8049 memprintf(err, "'%s' : unable to load ssl tickets keys file", args[cur_arg+1]);
8050 return ERR_ALERT | ERR_FATAL;
8051 }
8052
Nenad Merdanovic146defa2015-05-09 08:46:00 +02008053 keys_ref->filename = strdup(args[cur_arg + 1]);
Emeric Brun09852f72019-01-10 10:51:13 +01008054 if (!keys_ref->filename) {
8055 free(keys_ref->tlskeys);
8056 free(keys_ref);
8057 if (err)
8058 memprintf(err, "'%s' : allocation error", args[cur_arg+1]);
8059 return ERR_ALERT | ERR_FATAL;
8060 }
Nenad Merdanovic146defa2015-05-09 08:46:00 +02008061
Emeric Brun9e754772019-01-10 17:51:55 +01008062 keys_ref->key_size_bits = 0;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008063 while (fgets(thisline, sizeof(thisline), f) != NULL) {
8064 int len = strlen(thisline);
Emeric Brun9e754772019-01-10 17:51:55 +01008065 int dec_size;
8066
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008067 /* Strip newline characters from the end */
8068 if(thisline[len - 1] == '\n')
8069 thisline[--len] = 0;
8070
8071 if(thisline[len - 1] == '\r')
8072 thisline[--len] = 0;
8073
Emeric Brun9e754772019-01-10 17:51:55 +01008074 dec_size = base64dec(thisline, len, (char *) (keys_ref->tlskeys + i % TLS_TICKETS_NO), sizeof(union tls_sess_key));
8075 if (dec_size < 0) {
Emeric Brun09852f72019-01-10 10:51:13 +01008076 free(keys_ref->filename);
8077 free(keys_ref->tlskeys);
8078 free(keys_ref);
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008079 if (err)
8080 memprintf(err, "'%s' : unable to decode base64 key on line %d", args[cur_arg+1], i + 1);
mildis16aa0152016-06-22 17:46:29 +02008081 fclose(f);
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008082 return ERR_ALERT | ERR_FATAL;
8083 }
Emeric Brun9e754772019-01-10 17:51:55 +01008084 else if (!keys_ref->key_size_bits && (dec_size == sizeof(struct tls_sess_key_128))) {
8085 keys_ref->key_size_bits = 128;
8086 }
8087 else if (!keys_ref->key_size_bits && (dec_size == sizeof(struct tls_sess_key_256))) {
8088 keys_ref->key_size_bits = 256;
8089 }
8090 else if (((dec_size != sizeof(struct tls_sess_key_128)) && (dec_size != sizeof(struct tls_sess_key_256)))
8091 || ((dec_size == sizeof(struct tls_sess_key_128) && (keys_ref->key_size_bits != 128)))
8092 || ((dec_size == sizeof(struct tls_sess_key_256) && (keys_ref->key_size_bits != 256)))) {
8093 free(keys_ref->filename);
8094 free(keys_ref->tlskeys);
8095 free(keys_ref);
8096 if (err)
8097 memprintf(err, "'%s' : wrong sized key on line %d", args[cur_arg+1], i + 1);
8098 fclose(f);
8099 return ERR_ALERT | ERR_FATAL;
8100 }
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008101 i++;
8102 }
8103
8104 if (i < TLS_TICKETS_NO) {
Emeric Brun09852f72019-01-10 10:51:13 +01008105 free(keys_ref->filename);
8106 free(keys_ref->tlskeys);
8107 free(keys_ref);
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008108 if (err)
8109 memprintf(err, "'%s' : please supply at least %d keys in the tls-tickets-file", args[cur_arg+1], TLS_TICKETS_NO);
mildis16aa0152016-06-22 17:46:29 +02008110 fclose(f);
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008111 return ERR_ALERT | ERR_FATAL;
8112 }
8113
8114 fclose(f);
8115
8116 /* Use penultimate key for encryption, handle when TLS_TICKETS_NO = 1 */
Nenad Merdanovic17891152016-03-25 22:16:57 +01008117 i -= 2;
8118 keys_ref->tls_ticket_enc_index = i < 0 ? 0 : i % TLS_TICKETS_NO;
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02008119 keys_ref->unique_id = -1;
Willy Tarreau17b4aa12018-07-17 10:05:32 +02008120 keys_ref->refcount = 1;
Christopher Faulet16f45c82018-02-16 11:23:49 +01008121 HA_RWLOCK_INIT(&keys_ref->lock);
Nenad Merdanovic146defa2015-05-09 08:46:00 +02008122 conf->keys_ref = keys_ref;
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008123
Nenad Merdanovic200b0fa2015-05-09 08:46:01 +02008124 LIST_ADD(&tlskeys_reference, &keys_ref->list);
8125
Nenad Merdanovic05552d42015-02-27 19:56:49 +01008126 return 0;
8127#else
8128 if (err)
8129 memprintf(err, "'%s' : TLS ticket callback extension not supported", args[cur_arg]);
8130 return ERR_ALERT | ERR_FATAL;
8131#endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */
Emmanuel Hocdet65623372013-01-24 17:17:15 +01008132}
8133
Emeric Brund94b3fe2012-09-20 18:23:56 +02008134/* parse the "verify" bind keyword */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01008135static int ssl_bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
Emeric Brund94b3fe2012-09-20 18:23:56 +02008136{
8137 if (!*args[cur_arg + 1]) {
8138 if (err)
8139 memprintf(err, "'%s' : missing verify method", args[cur_arg]);
8140 return ERR_ALERT | ERR_FATAL;
8141 }
8142
8143 if (strcmp(args[cur_arg + 1], "none") == 0)
Emeric Brun850efd52014-01-29 12:24:34 +01008144 conf->verify = SSL_SOCK_VERIFY_NONE;
Emeric Brund94b3fe2012-09-20 18:23:56 +02008145 else if (strcmp(args[cur_arg + 1], "optional") == 0)
Emeric Brun850efd52014-01-29 12:24:34 +01008146 conf->verify = SSL_SOCK_VERIFY_OPTIONAL;
Emeric Brund94b3fe2012-09-20 18:23:56 +02008147 else if (strcmp(args[cur_arg + 1], "required") == 0)
Emeric Brun850efd52014-01-29 12:24:34 +01008148 conf->verify = SSL_SOCK_VERIFY_REQUIRED;
Emeric Brund94b3fe2012-09-20 18:23:56 +02008149 else {
8150 if (err)
8151 memprintf(err, "'%s' : unknown verify method '%s', only 'none', 'optional', and 'required' are supported\n",
8152 args[cur_arg], args[cur_arg + 1]);
8153 return ERR_ALERT | ERR_FATAL;
8154 }
8155
8156 return 0;
8157}
Emmanuel Hocdet98263292016-12-29 18:26:15 +01008158static int bind_parse_verify(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
8159{
8160 return ssl_bind_parse_verify(args, cur_arg, px, &conf->ssl_conf, err);
8161}
Emeric Brund94b3fe2012-09-20 18:23:56 +02008162
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02008163/* parse the "no-ca-names" bind keyword */
8164static int ssl_bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct ssl_bind_conf *conf, char **err)
8165{
8166 conf->no_ca_names = 1;
8167 return 0;
8168}
8169static int bind_parse_no_ca_names(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
8170{
8171 return ssl_bind_parse_no_ca_names(args, cur_arg, px, &conf->ssl_conf, err);
8172}
8173
Willy Tarreau92faadf2012-10-10 23:04:25 +02008174/************** "server" keywords ****************/
8175
Olivier Houchardc7566002018-11-20 23:33:50 +01008176/* parse the "npn" bind keyword */
8177static int srv_parse_npn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8178{
8179#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
8180 char *p1, *p2;
8181
8182 if (!*args[*cur_arg + 1]) {
8183 memprintf(err, "'%s' : missing the comma-delimited NPN protocol suite", args[*cur_arg]);
8184 return ERR_ALERT | ERR_FATAL;
8185 }
8186
8187 free(newsrv->ssl_ctx.npn_str);
8188
8189 /* the NPN string is built as a suite of (<len> <name>)*,
8190 * so we reuse each comma to store the next <len> and need
8191 * one more for the end of the string.
8192 */
8193 newsrv->ssl_ctx.npn_len = strlen(args[*cur_arg + 1]) + 1;
8194 newsrv->ssl_ctx.npn_str = calloc(1, newsrv->ssl_ctx.npn_len + 1);
8195 memcpy(newsrv->ssl_ctx.npn_str + 1, args[*cur_arg + 1],
8196 newsrv->ssl_ctx.npn_len);
8197
8198 /* replace commas with the name length */
8199 p1 = newsrv->ssl_ctx.npn_str;
8200 p2 = p1 + 1;
8201 while (1) {
8202 p2 = memchr(p1 + 1, ',', newsrv->ssl_ctx.npn_str +
8203 newsrv->ssl_ctx.npn_len - (p1 + 1));
8204 if (!p2)
8205 p2 = p1 + 1 + strlen(p1 + 1);
8206
8207 if (p2 - (p1 + 1) > 255) {
8208 *p2 = '\0';
8209 memprintf(err, "'%s' : NPN protocol name too long : '%s'", args[*cur_arg], p1 + 1);
8210 return ERR_ALERT | ERR_FATAL;
8211 }
8212
8213 *p1 = p2 - (p1 + 1);
8214 p1 = p2;
8215
8216 if (!*p2)
8217 break;
8218
8219 *(p2++) = '\0';
8220 }
8221 return 0;
8222#else
8223 if (err)
8224 memprintf(err, "'%s' : library does not support TLS NPN extension", args[*cur_arg]);
8225 return ERR_ALERT | ERR_FATAL;
8226#endif
8227}
8228
Olivier Houchard92150142018-12-21 19:47:01 +01008229/* parse the "alpn" or the "check-alpn" server keyword */
Olivier Houchardc7566002018-11-20 23:33:50 +01008230static int srv_parse_alpn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8231{
8232#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
8233 char *p1, *p2;
Olivier Houchard92150142018-12-21 19:47:01 +01008234 char **alpn_str;
8235 int *alpn_len;
Olivier Houchardc7566002018-11-20 23:33:50 +01008236
Olivier Houchard92150142018-12-21 19:47:01 +01008237 if (*args[*cur_arg] == 'c') {
8238 alpn_str = &newsrv->check.alpn_str;
8239 alpn_len = &newsrv->check.alpn_len;
8240 } else {
8241 alpn_str = &newsrv->ssl_ctx.alpn_str;
8242 alpn_len = &newsrv->ssl_ctx.alpn_len;
8243
8244 }
Olivier Houchardc7566002018-11-20 23:33:50 +01008245 if (!*args[*cur_arg + 1]) {
8246 memprintf(err, "'%s' : missing the comma-delimited ALPN protocol suite", args[*cur_arg]);
8247 return ERR_ALERT | ERR_FATAL;
8248 }
8249
Olivier Houchard92150142018-12-21 19:47:01 +01008250 free(*alpn_str);
Olivier Houchardc7566002018-11-20 23:33:50 +01008251
8252 /* the ALPN string is built as a suite of (<len> <name>)*,
8253 * so we reuse each comma to store the next <len> and need
8254 * one more for the end of the string.
8255 */
Olivier Houchard92150142018-12-21 19:47:01 +01008256 *alpn_len = strlen(args[*cur_arg + 1]) + 1;
8257 *alpn_str = calloc(1, *alpn_len + 1);
8258 memcpy(*alpn_str + 1, args[*cur_arg + 1], *alpn_len);
Olivier Houchardc7566002018-11-20 23:33:50 +01008259
8260 /* replace commas with the name length */
Olivier Houchard92150142018-12-21 19:47:01 +01008261 p1 = *alpn_str;
Olivier Houchardc7566002018-11-20 23:33:50 +01008262 p2 = p1 + 1;
8263 while (1) {
Olivier Houchard92150142018-12-21 19:47:01 +01008264 p2 = memchr(p1 + 1, ',', *alpn_str + *alpn_len - (p1 + 1));
Olivier Houchardc7566002018-11-20 23:33:50 +01008265 if (!p2)
8266 p2 = p1 + 1 + strlen(p1 + 1);
8267
8268 if (p2 - (p1 + 1) > 255) {
8269 *p2 = '\0';
8270 memprintf(err, "'%s' : ALPN protocol name too long : '%s'", args[*cur_arg], p1 + 1);
8271 return ERR_ALERT | ERR_FATAL;
8272 }
8273
8274 *p1 = p2 - (p1 + 1);
8275 p1 = p2;
8276
8277 if (!*p2)
8278 break;
8279
8280 *(p2++) = '\0';
8281 }
8282 return 0;
8283#else
8284 if (err)
8285 memprintf(err, "'%s' : library does not support TLS ALPN extension", args[*cur_arg]);
8286 return ERR_ALERT | ERR_FATAL;
8287#endif
8288}
8289
Emeric Brunef42d922012-10-11 16:11:36 +02008290/* parse the "ca-file" server keyword */
8291static int srv_parse_ca_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8292{
8293 if (!*args[*cur_arg + 1]) {
8294 if (err)
8295 memprintf(err, "'%s' : missing CAfile path", args[*cur_arg]);
8296 return ERR_ALERT | ERR_FATAL;
8297 }
8298
Willy Tarreauef934602016-12-22 23:12:01 +01008299 if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base)
8300 memprintf(&newsrv->ssl_ctx.ca_file, "%s/%s", global_ssl.ca_base, args[*cur_arg + 1]);
Emeric Brunef42d922012-10-11 16:11:36 +02008301 else
8302 memprintf(&newsrv->ssl_ctx.ca_file, "%s", args[*cur_arg + 1]);
8303
8304 return 0;
8305}
8306
Olivier Houchard9130a962017-10-17 17:33:43 +02008307/* parse the "check-sni" server keyword */
8308static int srv_parse_check_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8309{
8310 if (!*args[*cur_arg + 1]) {
8311 if (err)
8312 memprintf(err, "'%s' : missing SNI", args[*cur_arg]);
8313 return ERR_ALERT | ERR_FATAL;
8314 }
8315
8316 newsrv->check.sni = strdup(args[*cur_arg + 1]);
8317 if (!newsrv->check.sni) {
8318 memprintf(err, "'%s' : failed to allocate memory", args[*cur_arg]);
8319 return ERR_ALERT | ERR_FATAL;
8320 }
8321 return 0;
8322
8323}
8324
Willy Tarreau92faadf2012-10-10 23:04:25 +02008325/* parse the "check-ssl" server keyword */
8326static int srv_parse_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8327{
8328 newsrv->check.use_ssl = 1;
Willy Tarreauef934602016-12-22 23:12:01 +01008329 if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers)
8330 newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers);
Willy Tarreau5db847a2019-05-09 14:13:35 +02008331#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008332 if (global_ssl.connect_default_ciphersuites && !newsrv->ssl_ctx.ciphersuites)
8333 newsrv->ssl_ctx.ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
8334#endif
Willy Tarreauef934602016-12-22 23:12:01 +01008335 newsrv->ssl_ctx.options |= global_ssl.connect_default_ssloptions;
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02008336 newsrv->ssl_ctx.methods.flags |= global_ssl.connect_default_sslmethods.flags;
8337 if (!newsrv->ssl_ctx.methods.min)
8338 newsrv->ssl_ctx.methods.min = global_ssl.connect_default_sslmethods.min;
8339 if (!newsrv->ssl_ctx.methods.max)
8340 newsrv->ssl_ctx.methods.max = global_ssl.connect_default_sslmethods.max;
8341
Willy Tarreau92faadf2012-10-10 23:04:25 +02008342 return 0;
8343}
8344
8345/* parse the "ciphers" server keyword */
8346static int srv_parse_ciphers(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8347{
8348 if (!*args[*cur_arg + 1]) {
8349 memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]);
8350 return ERR_ALERT | ERR_FATAL;
8351 }
8352
8353 free(newsrv->ssl_ctx.ciphers);
8354 newsrv->ssl_ctx.ciphers = strdup(args[*cur_arg + 1]);
8355 return 0;
8356}
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008357
Willy Tarreau5db847a2019-05-09 14:13:35 +02008358#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008359/* parse the "ciphersuites" server keyword */
8360static int srv_parse_ciphersuites(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8361{
8362 if (!*args[*cur_arg + 1]) {
8363 memprintf(err, "'%s' : missing cipher suite", args[*cur_arg]);
8364 return ERR_ALERT | ERR_FATAL;
8365 }
8366
8367 free(newsrv->ssl_ctx.ciphersuites);
8368 newsrv->ssl_ctx.ciphersuites = strdup(args[*cur_arg + 1]);
8369 return 0;
8370}
8371#endif
Willy Tarreau92faadf2012-10-10 23:04:25 +02008372
Emeric Brunef42d922012-10-11 16:11:36 +02008373/* parse the "crl-file" server keyword */
8374static int srv_parse_crl_file(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8375{
8376#ifndef X509_V_FLAG_CRL_CHECK
8377 if (err)
8378 memprintf(err, "'%s' : library does not support CRL verify", args[*cur_arg]);
8379 return ERR_ALERT | ERR_FATAL;
8380#else
8381 if (!*args[*cur_arg + 1]) {
8382 if (err)
8383 memprintf(err, "'%s' : missing CRLfile path", args[*cur_arg]);
8384 return ERR_ALERT | ERR_FATAL;
8385 }
8386
Willy Tarreauef934602016-12-22 23:12:01 +01008387 if ((*args[*cur_arg + 1] != '/') && global_ssl.ca_base)
8388 memprintf(&newsrv->ssl_ctx.crl_file, "%s/%s", global_ssl.ca_base, args[*cur_arg + 1]);
Emeric Brunef42d922012-10-11 16:11:36 +02008389 else
8390 memprintf(&newsrv->ssl_ctx.crl_file, "%s", args[*cur_arg + 1]);
8391
8392 return 0;
8393#endif
8394}
8395
Emeric Bruna7aa3092012-10-26 12:58:00 +02008396/* parse the "crt" server keyword */
8397static int srv_parse_crt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8398{
8399 if (!*args[*cur_arg + 1]) {
8400 if (err)
8401 memprintf(err, "'%s' : missing certificate file path", args[*cur_arg]);
8402 return ERR_ALERT | ERR_FATAL;
8403 }
8404
Willy Tarreauef934602016-12-22 23:12:01 +01008405 if ((*args[*cur_arg + 1] != '/') && global_ssl.crt_base)
Christopher Fauletff3a41e2017-11-23 09:13:32 +01008406 memprintf(&newsrv->ssl_ctx.client_crt, "%s/%s", global_ssl.crt_base, args[*cur_arg + 1]);
Emeric Bruna7aa3092012-10-26 12:58:00 +02008407 else
8408 memprintf(&newsrv->ssl_ctx.client_crt, "%s", args[*cur_arg + 1]);
8409
8410 return 0;
8411}
Emeric Brunef42d922012-10-11 16:11:36 +02008412
Frédéric Lécaille340ae602017-03-13 10:38:04 +01008413/* parse the "no-check-ssl" server keyword */
8414static int srv_parse_no_check_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8415{
8416 newsrv->check.use_ssl = 0;
8417 free(newsrv->ssl_ctx.ciphers);
8418 newsrv->ssl_ctx.ciphers = NULL;
8419 newsrv->ssl_ctx.options &= ~global_ssl.connect_default_ssloptions;
8420 return 0;
8421}
8422
Frédéric Lécaillee892c4c2017-03-13 12:08:01 +01008423/* parse the "no-send-proxy-v2-ssl" server keyword */
8424static int srv_parse_no_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8425{
8426 newsrv->pp_opts &= ~SRV_PP_V2;
8427 newsrv->pp_opts &= ~SRV_PP_V2_SSL;
8428 return 0;
8429}
8430
8431/* parse the "no-send-proxy-v2-ssl-cn" server keyword */
8432static int srv_parse_no_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8433{
8434 newsrv->pp_opts &= ~SRV_PP_V2;
8435 newsrv->pp_opts &= ~SRV_PP_V2_SSL;
8436 newsrv->pp_opts &= ~SRV_PP_V2_SSL_CN;
8437 return 0;
8438}
8439
Frédéric Lécaillee381d762017-03-13 11:54:17 +01008440/* parse the "no-ssl" server keyword */
8441static int srv_parse_no_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8442{
8443 newsrv->use_ssl = 0;
8444 free(newsrv->ssl_ctx.ciphers);
8445 newsrv->ssl_ctx.ciphers = NULL;
8446 return 0;
8447}
8448
Olivier Houchard522eea72017-11-03 16:27:47 +01008449/* parse the "allow-0rtt" server keyword */
8450static int srv_parse_allow_0rtt(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8451{
8452 newsrv->ssl_ctx.options |= SRV_SSL_O_EARLY_DATA;
8453 return 0;
8454}
8455
Willy Tarreau2a3fb1c2015-02-05 16:47:07 +01008456/* parse the "no-ssl-reuse" server keyword */
8457static int srv_parse_no_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8458{
8459 newsrv->ssl_ctx.options |= SRV_SSL_O_NO_REUSE;
8460 return 0;
8461}
8462
Emeric Brunf9c5c472012-10-11 15:28:34 +02008463/* parse the "no-tls-tickets" server keyword */
8464static int srv_parse_no_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8465{
8466 newsrv->ssl_ctx.options |= SRV_SSL_O_NO_TLS_TICKETS;
8467 return 0;
8468}
David Safb76832014-05-08 23:42:08 -04008469/* parse the "send-proxy-v2-ssl" server keyword */
8470static int srv_parse_send_proxy_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8471{
8472 newsrv->pp_opts |= SRV_PP_V2;
8473 newsrv->pp_opts |= SRV_PP_V2_SSL;
8474 return 0;
8475}
8476
8477/* parse the "send-proxy-v2-ssl-cn" server keyword */
8478static int srv_parse_send_proxy_cn(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8479{
8480 newsrv->pp_opts |= SRV_PP_V2;
8481 newsrv->pp_opts |= SRV_PP_V2_SSL;
8482 newsrv->pp_opts |= SRV_PP_V2_SSL_CN;
8483 return 0;
8484}
Emeric Brunf9c5c472012-10-11 15:28:34 +02008485
Willy Tarreau732eac42015-07-09 11:40:25 +02008486/* parse the "sni" server keyword */
8487static int srv_parse_sni(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8488{
8489#ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME
8490 memprintf(err, "'%s' : the current SSL library doesn't support the SNI TLS extension", args[*cur_arg]);
8491 return ERR_ALERT | ERR_FATAL;
8492#else
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01008493 char *arg;
Willy Tarreau732eac42015-07-09 11:40:25 +02008494
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01008495 arg = args[*cur_arg + 1];
8496 if (!*arg) {
Willy Tarreau732eac42015-07-09 11:40:25 +02008497 memprintf(err, "'%s' : missing sni expression", args[*cur_arg]);
8498 return ERR_ALERT | ERR_FATAL;
8499 }
8500
Frédéric Lécaille9a146de2017-03-20 14:54:41 +01008501 free(newsrv->sni_expr);
8502 newsrv->sni_expr = strdup(arg);
Willy Tarreau732eac42015-07-09 11:40:25 +02008503
Willy Tarreau732eac42015-07-09 11:40:25 +02008504 return 0;
8505#endif
8506}
8507
Willy Tarreau92faadf2012-10-10 23:04:25 +02008508/* parse the "ssl" server keyword */
8509static int srv_parse_ssl(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8510{
8511 newsrv->use_ssl = 1;
Willy Tarreauef934602016-12-22 23:12:01 +01008512 if (global_ssl.connect_default_ciphers && !newsrv->ssl_ctx.ciphers)
8513 newsrv->ssl_ctx.ciphers = strdup(global_ssl.connect_default_ciphers);
Willy Tarreau5db847a2019-05-09 14:13:35 +02008514#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008515 if (global_ssl.connect_default_ciphersuites && !newsrv->ssl_ctx.ciphersuites)
8516 newsrv->ssl_ctx.ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
8517#endif
Willy Tarreau92faadf2012-10-10 23:04:25 +02008518 return 0;
8519}
8520
Frédéric Lécaille2cfcdbe2017-03-13 11:32:20 +01008521/* parse the "ssl-reuse" server keyword */
8522static int srv_parse_ssl_reuse(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8523{
8524 newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_REUSE;
8525 return 0;
8526}
8527
Frédéric Lécaille2cfcdbe2017-03-13 11:32:20 +01008528/* parse the "tls-tickets" server keyword */
8529static int srv_parse_tls_tickets(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8530{
8531 newsrv->ssl_ctx.options &= ~SRV_SSL_O_NO_TLS_TICKETS;
8532 return 0;
8533}
8534
Emeric Brunef42d922012-10-11 16:11:36 +02008535/* parse the "verify" server keyword */
8536static int srv_parse_verify(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8537{
8538 if (!*args[*cur_arg + 1]) {
8539 if (err)
8540 memprintf(err, "'%s' : missing verify method", args[*cur_arg]);
8541 return ERR_ALERT | ERR_FATAL;
8542 }
8543
8544 if (strcmp(args[*cur_arg + 1], "none") == 0)
Emeric Brun850efd52014-01-29 12:24:34 +01008545 newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_NONE;
Emeric Brunef42d922012-10-11 16:11:36 +02008546 else if (strcmp(args[*cur_arg + 1], "required") == 0)
Emeric Brun850efd52014-01-29 12:24:34 +01008547 newsrv->ssl_ctx.verify = SSL_SOCK_VERIFY_REQUIRED;
Emeric Brunef42d922012-10-11 16:11:36 +02008548 else {
8549 if (err)
8550 memprintf(err, "'%s' : unknown verify method '%s', only 'none' and 'required' are supported\n",
8551 args[*cur_arg], args[*cur_arg + 1]);
8552 return ERR_ALERT | ERR_FATAL;
8553 }
8554
Evan Broderbe554312013-06-27 00:05:25 -07008555 return 0;
8556}
8557
8558/* parse the "verifyhost" server keyword */
8559static int srv_parse_verifyhost(char **args, int *cur_arg, struct proxy *px, struct server *newsrv, char **err)
8560{
8561 if (!*args[*cur_arg + 1]) {
8562 if (err)
8563 memprintf(err, "'%s' : missing hostname to verify against", args[*cur_arg]);
8564 return ERR_ALERT | ERR_FATAL;
8565 }
8566
Frédéric Lécaille273f3212017-03-13 15:52:01 +01008567 free(newsrv->ssl_ctx.verify_host);
Evan Broderbe554312013-06-27 00:05:25 -07008568 newsrv->ssl_ctx.verify_host = strdup(args[*cur_arg + 1]);
8569
Emeric Brunef42d922012-10-11 16:11:36 +02008570 return 0;
8571}
8572
Emeric Brun2c86cbf2014-10-30 15:56:50 +01008573/* parse the "ssl-default-bind-options" keyword in global section */
8574static int ssl_parse_default_bind_options(char **args, int section_type, struct proxy *curpx,
8575 struct proxy *defpx, const char *file, int line,
8576 char **err) {
8577 int i = 1;
8578
8579 if (*(args[i]) == 0) {
8580 memprintf(err, "global statement '%s' expects an option as an argument.", args[0]);
8581 return -1;
8582 }
8583 while (*(args[i])) {
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02008584 if (!strcmp(args[i], "no-tls-tickets"))
Willy Tarreauef934602016-12-22 23:12:01 +01008585 global_ssl.listen_default_ssloptions |= BC_SSL_O_NO_TLS_TICKETS;
Lukas Tribus53ae85c2017-05-04 15:45:40 +00008586 else if (!strcmp(args[i], "prefer-client-ciphers"))
8587 global_ssl.listen_default_ssloptions |= BC_SSL_O_PREF_CLIE_CIPH;
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02008588 else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) {
8589 if (!parse_tls_method_minmax(args, i, &global_ssl.listen_default_sslmethods, err))
8590 i++;
8591 else {
8592 memprintf(err, "%s on global statement '%s'.", *err, args[0]);
8593 return -1;
8594 }
8595 }
8596 else if (parse_tls_method_options(args[i], &global_ssl.listen_default_sslmethods, err)) {
Emeric Brun2c86cbf2014-10-30 15:56:50 +01008597 memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]);
8598 return -1;
8599 }
8600 i++;
8601 }
8602 return 0;
8603}
8604
8605/* parse the "ssl-default-server-options" keyword in global section */
8606static int ssl_parse_default_server_options(char **args, int section_type, struct proxy *curpx,
8607 struct proxy *defpx, const char *file, int line,
8608 char **err) {
8609 int i = 1;
8610
8611 if (*(args[i]) == 0) {
8612 memprintf(err, "global statement '%s' expects an option as an argument.", args[0]);
8613 return -1;
8614 }
8615 while (*(args[i])) {
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02008616 if (!strcmp(args[i], "no-tls-tickets"))
Willy Tarreauef934602016-12-22 23:12:01 +01008617 global_ssl.connect_default_ssloptions |= SRV_SSL_O_NO_TLS_TICKETS;
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02008618 else if (!strcmp(args[i], "ssl-min-ver") || !strcmp(args[i], "ssl-max-ver")) {
8619 if (!parse_tls_method_minmax(args, i, &global_ssl.connect_default_sslmethods, err))
8620 i++;
8621 else {
8622 memprintf(err, "%s on global statement '%s'.", *err, args[0]);
8623 return -1;
8624 }
8625 }
8626 else if (parse_tls_method_options(args[i], &global_ssl.connect_default_sslmethods, err)) {
Emeric Brun2c86cbf2014-10-30 15:56:50 +01008627 memprintf(err, "unknown option '%s' on global statement '%s'.", args[i], args[0]);
8628 return -1;
8629 }
8630 i++;
8631 }
8632 return 0;
8633}
8634
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01008635/* parse the "ca-base" / "crt-base" keywords in global section.
8636 * Returns <0 on alert, >0 on warning, 0 on success.
8637 */
8638static int ssl_parse_global_ca_crt_base(char **args, int section_type, struct proxy *curpx,
8639 struct proxy *defpx, const char *file, int line,
8640 char **err)
8641{
8642 char **target;
8643
Willy Tarreauef934602016-12-22 23:12:01 +01008644 target = (args[0][1] == 'a') ? &global_ssl.ca_base : &global_ssl.crt_base;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01008645
8646 if (too_many_args(1, args, err, NULL))
8647 return -1;
8648
8649 if (*target) {
8650 memprintf(err, "'%s' already specified.", args[0]);
8651 return -1;
8652 }
8653
8654 if (*(args[1]) == 0) {
8655 memprintf(err, "global statement '%s' expects a directory path as an argument.", args[0]);
8656 return -1;
8657 }
8658 *target = strdup(args[1]);
8659 return 0;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008660}
8661
8662/* parse the "ssl-mode-async" keyword in global section.
8663 * Returns <0 on alert, >0 on warning, 0 on success.
8664 */
8665static int ssl_parse_global_ssl_async(char **args, int section_type, struct proxy *curpx,
8666 struct proxy *defpx, const char *file, int line,
8667 char **err)
8668{
Willy Tarreau5db847a2019-05-09 14:13:35 +02008669#if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) && !defined(OPENSSL_NO_ASYNC)
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008670 global_ssl.async = 1;
Emeric Brunece0c332017-12-06 13:51:49 +01008671 global.ssl_used_async_engines = nb_engines;
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008672 return 0;
8673#else
8674 memprintf(err, "'%s': openssl library does not support async mode", args[0]);
8675 return -1;
8676#endif
8677}
8678
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02008679#ifndef OPENSSL_NO_ENGINE
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008680static int ssl_check_async_engine_count(void) {
8681 int err_code = 0;
8682
Emeric Brun3854e012017-05-17 20:42:48 +02008683 if (global_ssl.async && (openssl_engines_initialized > 32)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01008684 ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n");
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00008685 err_code = ERR_ABORT;
8686 }
8687 return err_code;
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01008688}
8689
Grant Zhang872f9c22017-01-21 01:10:18 +00008690/* parse the "ssl-engine" keyword in global section.
8691 * Returns <0 on alert, >0 on warning, 0 on success.
8692 */
8693static int ssl_parse_global_ssl_engine(char **args, int section_type, struct proxy *curpx,
8694 struct proxy *defpx, const char *file, int line,
8695 char **err)
8696{
8697 char *algo;
8698 int ret = -1;
8699
8700 if (*(args[1]) == 0) {
8701 memprintf(err, "global statement '%s' expects a valid engine name as an argument.", args[0]);
8702 return ret;
8703 }
8704
8705 if (*(args[2]) == 0) {
8706 /* if no list of algorithms is given, it defaults to ALL */
8707 algo = strdup("ALL");
8708 goto add_engine;
8709 }
8710
8711 /* otherwise the expected format is ssl-engine <engine_name> algo <list of algo> */
8712 if (strcmp(args[2], "algo") != 0) {
8713 memprintf(err, "global statement '%s' expects to have algo keyword.", args[0]);
8714 return ret;
8715 }
8716
8717 if (*(args[3]) == 0) {
8718 memprintf(err, "global statement '%s' expects algorithm names as an argument.", args[0]);
8719 return ret;
8720 }
8721 algo = strdup(args[3]);
8722
8723add_engine:
8724 if (ssl_init_single_engine(args[1], algo)==0) {
8725 openssl_engines_initialized++;
8726 ret = 0;
8727 }
8728 free(algo);
8729 return ret;
8730}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02008731#endif
Grant Zhang872f9c22017-01-21 01:10:18 +00008732
Willy Tarreauf22e9682016-12-21 23:23:19 +01008733/* parse the "ssl-default-bind-ciphers" / "ssl-default-server-ciphers" keywords
8734 * in global section. Returns <0 on alert, >0 on warning, 0 on success.
8735 */
8736static int ssl_parse_global_ciphers(char **args, int section_type, struct proxy *curpx,
8737 struct proxy *defpx, const char *file, int line,
8738 char **err)
8739{
8740 char **target;
8741
Willy Tarreauef934602016-12-22 23:12:01 +01008742 target = (args[0][12] == 'b') ? &global_ssl.listen_default_ciphers : &global_ssl.connect_default_ciphers;
Willy Tarreauf22e9682016-12-21 23:23:19 +01008743
8744 if (too_many_args(1, args, err, NULL))
8745 return -1;
8746
8747 if (*(args[1]) == 0) {
8748 memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]);
8749 return -1;
8750 }
8751
8752 free(*target);
8753 *target = strdup(args[1]);
8754 return 0;
8755}
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008756
Willy Tarreau5db847a2019-05-09 14:13:35 +02008757#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02008758/* parse the "ssl-default-bind-ciphersuites" / "ssl-default-server-ciphersuites" keywords
8759 * in global section. Returns <0 on alert, >0 on warning, 0 on success.
8760 */
8761static int ssl_parse_global_ciphersuites(char **args, int section_type, struct proxy *curpx,
8762 struct proxy *defpx, const char *file, int line,
8763 char **err)
8764{
8765 char **target;
8766
8767 target = (args[0][12] == 'b') ? &global_ssl.listen_default_ciphersuites : &global_ssl.connect_default_ciphersuites;
8768
8769 if (too_many_args(1, args, err, NULL))
8770 return -1;
8771
8772 if (*(args[1]) == 0) {
8773 memprintf(err, "global statement '%s' expects a cipher suite as an argument.", args[0]);
8774 return -1;
8775 }
8776
8777 free(*target);
8778 *target = strdup(args[1]);
8779 return 0;
8780}
8781#endif
Willy Tarreauf22e9682016-12-21 23:23:19 +01008782
Willy Tarreau9ceda382016-12-21 23:13:03 +01008783/* parse various global tune.ssl settings consisting in positive integers.
8784 * Returns <0 on alert, >0 on warning, 0 on success.
8785 */
8786static int ssl_parse_global_int(char **args, int section_type, struct proxy *curpx,
8787 struct proxy *defpx, const char *file, int line,
8788 char **err)
8789{
8790 int *target;
8791
8792 if (strcmp(args[0], "tune.ssl.cachesize") == 0)
8793 target = &global.tune.sslcachesize;
8794 else if (strcmp(args[0], "tune.ssl.maxrecord") == 0)
Willy Tarreauef934602016-12-22 23:12:01 +01008795 target = (int *)&global_ssl.max_record;
Willy Tarreau9ceda382016-12-21 23:13:03 +01008796 else if (strcmp(args[0], "tune.ssl.ssl-ctx-cache-size") == 0)
Willy Tarreauef934602016-12-22 23:12:01 +01008797 target = &global_ssl.ctx_cache;
Willy Tarreau0bea58d2016-12-21 23:17:25 +01008798 else if (strcmp(args[0], "maxsslconn") == 0)
8799 target = &global.maxsslconn;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01008800 else if (strcmp(args[0], "tune.ssl.capture-cipherlist-size") == 0)
8801 target = &global_ssl.capture_cipherlist;
Willy Tarreau9ceda382016-12-21 23:13:03 +01008802 else {
8803 memprintf(err, "'%s' keyword not unhandled (please report this bug).", args[0]);
8804 return -1;
8805 }
8806
8807 if (too_many_args(1, args, err, NULL))
8808 return -1;
8809
8810 if (*(args[1]) == 0) {
8811 memprintf(err, "'%s' expects an integer argument.", args[0]);
8812 return -1;
8813 }
8814
8815 *target = atoi(args[1]);
8816 if (*target < 0) {
8817 memprintf(err, "'%s' expects a positive numeric value.", args[0]);
8818 return -1;
8819 }
8820 return 0;
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01008821}
8822
8823static int ssl_parse_global_capture_cipherlist(char **args, int section_type, struct proxy *curpx,
8824 struct proxy *defpx, const char *file, int line,
8825 char **err)
8826{
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01008827 int ret;
8828
8829 ret = ssl_parse_global_int(args, section_type, curpx, defpx, file, line, err);
8830 if (ret != 0)
8831 return ret;
8832
Willy Tarreaubafbe012017-11-24 17:34:44 +01008833 if (pool_head_ssl_capture) {
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01008834 memprintf(err, "'%s' is already configured.", args[0]);
8835 return -1;
8836 }
8837
Willy Tarreaubafbe012017-11-24 17:34:44 +01008838 pool_head_ssl_capture = create_pool("ssl-capture", sizeof(struct ssl_capture) + global_ssl.capture_cipherlist, MEM_F_SHARED);
8839 if (!pool_head_ssl_capture) {
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01008840 memprintf(err, "Out of memory error.");
8841 return -1;
8842 }
8843 return 0;
Willy Tarreau9ceda382016-12-21 23:13:03 +01008844}
8845
8846/* parse "ssl.force-private-cache".
8847 * Returns <0 on alert, >0 on warning, 0 on success.
8848 */
8849static int ssl_parse_global_private_cache(char **args, int section_type, struct proxy *curpx,
8850 struct proxy *defpx, const char *file, int line,
8851 char **err)
8852{
8853 if (too_many_args(0, args, err, NULL))
8854 return -1;
8855
Willy Tarreauef934602016-12-22 23:12:01 +01008856 global_ssl.private_cache = 1;
Willy Tarreau9ceda382016-12-21 23:13:03 +01008857 return 0;
8858}
8859
8860/* parse "ssl.lifetime".
8861 * Returns <0 on alert, >0 on warning, 0 on success.
8862 */
8863static int ssl_parse_global_lifetime(char **args, int section_type, struct proxy *curpx,
8864 struct proxy *defpx, const char *file, int line,
8865 char **err)
8866{
8867 const char *res;
8868
8869 if (too_many_args(1, args, err, NULL))
8870 return -1;
8871
8872 if (*(args[1]) == 0) {
8873 memprintf(err, "'%s' expects ssl sessions <lifetime> in seconds as argument.", args[0]);
8874 return -1;
8875 }
8876
Willy Tarreauef934602016-12-22 23:12:01 +01008877 res = parse_time_err(args[1], &global_ssl.life_time, TIME_UNIT_S);
Willy Tarreau9ceda382016-12-21 23:13:03 +01008878 if (res) {
8879 memprintf(err, "unexpected character '%c' in argument to <%s>.", *res, args[0]);
8880 return -1;
8881 }
8882 return 0;
8883}
8884
8885#ifndef OPENSSL_NO_DH
Willy Tarreau14e36a12016-12-21 23:28:13 +01008886/* parse "ssl-dh-param-file".
8887 * Returns <0 on alert, >0 on warning, 0 on success.
8888 */
8889static int ssl_parse_global_dh_param_file(char **args, int section_type, struct proxy *curpx,
8890 struct proxy *defpx, const char *file, int line,
8891 char **err)
8892{
8893 if (too_many_args(1, args, err, NULL))
8894 return -1;
8895
8896 if (*(args[1]) == 0) {
8897 memprintf(err, "'%s' expects a file path as an argument.", args[0]);
8898 return -1;
8899 }
8900
8901 if (ssl_sock_load_global_dh_param_from_file(args[1])) {
8902 memprintf(err, "'%s': unable to load DH parameters from file <%s>.", args[0], args[1]);
8903 return -1;
8904 }
8905 return 0;
8906}
8907
Willy Tarreau9ceda382016-12-21 23:13:03 +01008908/* parse "ssl.default-dh-param".
8909 * Returns <0 on alert, >0 on warning, 0 on success.
8910 */
8911static int ssl_parse_global_default_dh(char **args, int section_type, struct proxy *curpx,
8912 struct proxy *defpx, const char *file, int line,
8913 char **err)
8914{
8915 if (too_many_args(1, args, err, NULL))
8916 return -1;
8917
8918 if (*(args[1]) == 0) {
8919 memprintf(err, "'%s' expects an integer argument.", args[0]);
8920 return -1;
8921 }
8922
Willy Tarreauef934602016-12-22 23:12:01 +01008923 global_ssl.default_dh_param = atoi(args[1]);
8924 if (global_ssl.default_dh_param < 1024) {
Willy Tarreau9ceda382016-12-21 23:13:03 +01008925 memprintf(err, "'%s' expects a value >= 1024.", args[0]);
8926 return -1;
8927 }
8928 return 0;
8929}
8930#endif
8931
8932
William Lallemand32af2032016-10-29 18:09:35 +02008933/* This function is used with TLS ticket keys management. It permits to browse
8934 * each reference. The variable <getnext> must contain the current node,
8935 * <end> point to the root node.
8936 */
8937#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
8938static inline
8939struct tls_keys_ref *tlskeys_list_get_next(struct tls_keys_ref *getnext, struct list *end)
8940{
8941 struct tls_keys_ref *ref = getnext;
8942
8943 while (1) {
8944
8945 /* Get next list entry. */
8946 ref = LIST_NEXT(&ref->list, struct tls_keys_ref *, list);
8947
8948 /* If the entry is the last of the list, return NULL. */
8949 if (&ref->list == end)
8950 return NULL;
8951
8952 return ref;
8953 }
8954}
8955
8956static inline
8957struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference)
8958{
8959 int id;
8960 char *error;
8961
8962 /* If the reference starts by a '#', this is numeric id. */
8963 if (reference[0] == '#') {
8964 /* Try to convert the numeric id. If the conversion fails, the lookup fails. */
8965 id = strtol(reference + 1, &error, 10);
8966 if (*error != '\0')
8967 return NULL;
8968
8969 /* Perform the unique id lookup. */
8970 return tlskeys_ref_lookupid(id);
8971 }
8972
8973 /* Perform the string lookup. */
8974 return tlskeys_ref_lookup(reference);
8975}
8976#endif
8977
8978
8979#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
8980
8981static int cli_io_handler_tlskeys_files(struct appctx *appctx);
8982
8983static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) {
8984 return cli_io_handler_tlskeys_files(appctx);
8985}
8986
Willy Tarreauf5f26e82016-12-16 18:47:27 +01008987/* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1
8988 * (next index to be dumped), and cli.p0 (next key reference).
8989 */
William Lallemand32af2032016-10-29 18:09:35 +02008990static int cli_io_handler_tlskeys_files(struct appctx *appctx) {
8991
8992 struct stream_interface *si = appctx->owner;
8993
8994 switch (appctx->st2) {
8995 case STAT_ST_INIT:
8996 /* Display the column headers. If the message cannot be sent,
Joseph Herlant017b3da2018-11-15 09:07:59 -08008997 * quit the function with returning 0. The function is called
William Lallemand32af2032016-10-29 18:09:35 +02008998 * later and restart at the state "STAT_ST_INIT".
8999 */
9000 chunk_reset(&trash);
9001
9002 if (appctx->io_handler == cli_io_handler_tlskeys_entries)
9003 chunk_appendf(&trash, "# id secret\n");
9004 else
9005 chunk_appendf(&trash, "# id (file)\n");
9006
Willy Tarreau06d80a92017-10-19 14:32:15 +02009007 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01009008 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02009009 return 0;
9010 }
9011
William Lallemand32af2032016-10-29 18:09:35 +02009012 /* Now, we start the browsing of the references lists.
9013 * Note that the following call to LIST_ELEM return bad pointer. The only
9014 * available field of this pointer is <list>. It is used with the function
9015 * tlskeys_list_get_next() for retruning the first available entry
9016 */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009017 if (appctx->ctx.cli.p0 == NULL) {
9018 appctx->ctx.cli.p0 = LIST_ELEM(&tlskeys_reference, struct tls_keys_ref *, list);
9019 appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02009020 }
9021
9022 appctx->st2 = STAT_ST_LIST;
9023 /* fall through */
9024
9025 case STAT_ST_LIST:
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009026 while (appctx->ctx.cli.p0) {
9027 struct tls_keys_ref *ref = appctx->ctx.cli.p0;
William Lallemand32af2032016-10-29 18:09:35 +02009028
9029 chunk_reset(&trash);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009030 if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0)
William Lallemand32af2032016-10-29 18:09:35 +02009031 chunk_appendf(&trash, "# ");
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009032
9033 if (appctx->ctx.cli.i1 == 0)
9034 chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename);
9035
William Lallemand32af2032016-10-29 18:09:35 +02009036 if (appctx->io_handler == cli_io_handler_tlskeys_entries) {
Christopher Faulet16f45c82018-02-16 11:23:49 +01009037 int head;
9038
9039 HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock);
9040 head = ref->tls_ticket_enc_index;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009041 while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) {
Willy Tarreau83061a82018-07-13 11:56:34 +02009042 struct buffer *t2 = get_trash_chunk();
William Lallemand32af2032016-10-29 18:09:35 +02009043
9044 chunk_reset(t2);
9045 /* should never fail here because we dump only a key in the t2 buffer */
Emeric Brun9e754772019-01-10 17:51:55 +01009046 if (ref->key_size_bits == 128) {
9047 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
9048 sizeof(struct tls_sess_key_128),
9049 t2->area, t2->size);
9050 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
9051 t2->area);
9052 }
9053 else if (ref->key_size_bits == 256) {
9054 t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO),
9055 sizeof(struct tls_sess_key_256),
9056 t2->area, t2->size);
9057 chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1,
9058 t2->area);
9059 }
9060 else {
9061 /* This case should never happen */
9062 chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1);
9063 }
William Lallemand32af2032016-10-29 18:09:35 +02009064
Willy Tarreau06d80a92017-10-19 14:32:15 +02009065 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02009066 /* let's try again later from this stream. We add ourselves into
9067 * this stream's users so that it can remove us upon termination.
9068 */
Christopher Faulet16f45c82018-02-16 11:23:49 +01009069 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreaudb398432018-11-15 11:08:52 +01009070 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02009071 return 0;
9072 }
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009073 appctx->ctx.cli.i1++;
William Lallemand32af2032016-10-29 18:09:35 +02009074 }
Christopher Faulet16f45c82018-02-16 11:23:49 +01009075 HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock);
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009076 appctx->ctx.cli.i1 = 0;
William Lallemand32af2032016-10-29 18:09:35 +02009077 }
Willy Tarreau06d80a92017-10-19 14:32:15 +02009078 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand32af2032016-10-29 18:09:35 +02009079 /* let's try again later from this stream. We add ourselves into
9080 * this stream's users so that it can remove us upon termination.
9081 */
Willy Tarreaudb398432018-11-15 11:08:52 +01009082 si_rx_room_blk(si);
William Lallemand32af2032016-10-29 18:09:35 +02009083 return 0;
9084 }
9085
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009086 if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */
William Lallemand32af2032016-10-29 18:09:35 +02009087 break;
9088
9089 /* get next list entry and check the end of the list */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009090 appctx->ctx.cli.p0 = tlskeys_list_get_next(appctx->ctx.cli.p0, &tlskeys_reference);
William Lallemand32af2032016-10-29 18:09:35 +02009091 }
9092
9093 appctx->st2 = STAT_ST_FIN;
9094 /* fall through */
9095
9096 default:
9097 appctx->st2 = STAT_ST_FIN;
9098 return 1;
9099 }
9100 return 0;
9101}
9102
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009103/* sets cli.i0 to non-zero if only file lists should be dumped */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02009104static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02009105{
William Lallemand32af2032016-10-29 18:09:35 +02009106 /* no parameter, shows only file list */
9107 if (!*args[2]) {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009108 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02009109 appctx->io_handler = cli_io_handler_tlskeys_files;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01009110 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02009111 }
9112
9113 if (args[2][0] == '*') {
9114 /* list every TLS ticket keys */
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009115 appctx->ctx.cli.i0 = 1;
William Lallemand32af2032016-10-29 18:09:35 +02009116 } else {
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009117 appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]);
9118 if (!appctx->ctx.cli.p0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009119 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009120 appctx->ctx.cli.msg = "'show tls-keys' unable to locate referenced filename\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009121 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009122 return 1;
9123 }
9124 }
William Lallemand32af2032016-10-29 18:09:35 +02009125 appctx->io_handler = cli_io_handler_tlskeys_entries;
Willy Tarreau3067bfa2016-12-05 14:50:15 +01009126 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02009127}
9128
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02009129static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02009130{
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009131 struct tls_keys_ref *ref;
Willy Tarreau1c913e42018-08-22 05:26:57 +02009132 int ret;
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009133
William Lallemand32af2032016-10-29 18:09:35 +02009134 /* Expect two parameters: the filename and the new new TLS key in encoding */
9135 if (!*args[3] || !*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009136 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009137 appctx->ctx.cli.msg = "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009138 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009139 return 1;
9140 }
9141
Willy Tarreauf5f26e82016-12-16 18:47:27 +01009142 ref = tlskeys_ref_lookup_ref(args[3]);
9143 if (!ref) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009144 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009145 appctx->ctx.cli.msg = "'set ssl tls-key' unable to locate referenced filename\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009146 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009147 return 1;
9148 }
9149
Willy Tarreau1c913e42018-08-22 05:26:57 +02009150 ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size);
Emeric Brun9e754772019-01-10 17:51:55 +01009151 if (ret < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009152 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009153 appctx->ctx.cli.msg = "'set ssl tls-key' received invalid base64 encoded TLS key.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009154 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009155 return 1;
9156 }
Emeric Brun9e754772019-01-10 17:51:55 +01009157
Willy Tarreau1c913e42018-08-22 05:26:57 +02009158 trash.data = ret;
Emeric Brun9e754772019-01-10 17:51:55 +01009159 if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) {
9160 appctx->ctx.cli.severity = LOG_ERR;
9161 appctx->ctx.cli.msg = "'set ssl tls-key' received a key of wrong size.\n";
9162 appctx->st0 = CLI_ST_PRINT;
9163 return 1;
9164 }
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009165 appctx->ctx.cli.severity = LOG_INFO;
Aurélien Nephtali6e8a41d2018-03-15 21:48:50 +01009166 appctx->ctx.cli.msg = "TLS ticket key updated!\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009167 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009168 return 1;
9169
9170}
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01009171#endif
William Lallemand32af2032016-10-29 18:09:35 +02009172
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02009173static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand32af2032016-10-29 18:09:35 +02009174{
9175#if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP)
9176 char *err = NULL;
Willy Tarreau1c913e42018-08-22 05:26:57 +02009177 int i, j, ret;
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02009178
9179 if (!payload)
9180 payload = args[3];
William Lallemand32af2032016-10-29 18:09:35 +02009181
9182 /* Expect one parameter: the new response in base64 encoding */
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02009183 if (!*payload) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009184 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009185 appctx->ctx.cli.msg = "'set ssl ocsp-response' expects response in base64 encoding.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009186 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009187 return 1;
9188 }
Aurélien Nephtali1e0867c2018-04-18 14:04:58 +02009189
9190 /* remove \r and \n from the payload */
9191 for (i = 0, j = 0; payload[i]; i++) {
9192 if (payload[i] == '\r' || payload[i] == '\n')
9193 continue;
9194 payload[j++] = payload[i];
9195 }
9196 payload[j] = 0;
William Lallemand32af2032016-10-29 18:09:35 +02009197
Willy Tarreau1c913e42018-08-22 05:26:57 +02009198 ret = base64dec(payload, j, trash.area, trash.size);
9199 if (ret < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009200 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009201 appctx->ctx.cli.msg = "'set ssl ocsp-response' received invalid base64 encoded response.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009202 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009203 return 1;
9204 }
9205
Willy Tarreau1c913e42018-08-22 05:26:57 +02009206 trash.data = ret;
William Lallemand32af2032016-10-29 18:09:35 +02009207 if (ssl_sock_update_ocsp_response(&trash, &err)) {
9208 if (err) {
9209 memprintf(&err, "%s.\n", err);
9210 appctx->ctx.cli.err = err;
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009211 appctx->st0 = CLI_ST_PRINT_FREE;
William Lallemand32af2032016-10-29 18:09:35 +02009212 }
Aurélien Nephtali9a4da682018-04-16 19:02:42 +02009213 else {
9214 appctx->ctx.cli.severity = LOG_ERR;
9215 appctx->ctx.cli.msg = "Failed to update OCSP response.\n";
9216 appctx->st0 = CLI_ST_PRINT;
9217 }
William Lallemand32af2032016-10-29 18:09:35 +02009218 return 1;
9219 }
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009220 appctx->ctx.cli.severity = LOG_INFO;
Aurélien Nephtali6e8a41d2018-03-15 21:48:50 +01009221 appctx->ctx.cli.msg = "OCSP Response updated!\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009222 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009223 return 1;
9224#else
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02009225 appctx->ctx.cli.severity = LOG_ERR;
William Lallemand32af2032016-10-29 18:09:35 +02009226 appctx->ctx.cli.msg = "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01009227 appctx->st0 = CLI_ST_PRINT;
William Lallemand32af2032016-10-29 18:09:35 +02009228 return 1;
9229#endif
9230
Nenad Merdanovicc31499d2019-03-23 11:00:32 +01009231}
9232
Willy Tarreau86a394e2019-05-09 14:15:32 +02009233#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000100fL)
Nenad Merdanovicc31499d2019-03-23 11:00:32 +01009234static inline int sample_conv_var2smp_str(const struct arg *arg, struct sample *smp)
9235{
9236 switch (arg->type) {
9237 case ARGT_STR:
9238 smp->data.type = SMP_T_STR;
9239 smp->data.u.str = arg->data.str;
9240 return 1;
9241 case ARGT_VAR:
9242 if (!vars_get_by_desc(&arg->data.var, smp))
9243 return 0;
9244 if (!sample_casts[smp->data.type][SMP_T_STR])
9245 return 0;
9246 if (!sample_casts[smp->data.type][SMP_T_STR](smp))
9247 return 0;
9248 return 1;
9249 default:
9250 return 0;
9251 }
9252}
9253
9254static int check_aes_gcm(struct arg *args, struct sample_conv *conv,
9255 const char *file, int line, char **err)
9256{
9257 switch(args[0].data.sint) {
9258 case 128:
9259 case 192:
9260 case 256:
9261 break;
9262 default:
9263 memprintf(err, "key size must be 128, 192 or 256 (bits).");
9264 return 0;
9265 }
9266 /* Try to decode a variable. */
9267 vars_check_arg(&args[1], NULL);
9268 vars_check_arg(&args[2], NULL);
9269 vars_check_arg(&args[3], NULL);
9270 return 1;
9271}
9272
9273/* Arguements: AES size in bits, nonce, key, tag. The last three arguments are base64 encoded */
9274static int sample_conv_aes_gcm_dec(const struct arg *arg_p, struct sample *smp, void *private)
9275{
9276 struct sample nonce, key, aead_tag;
9277 struct buffer *smp_trash, *smp_trash_alloc;
9278 EVP_CIPHER_CTX *ctx;
9279 int dec_size, ret;
9280
9281 smp_set_owner(&nonce, smp->px, smp->sess, smp->strm, smp->opt);
9282 if (!sample_conv_var2smp_str(&arg_p[1], &nonce))
9283 return 0;
9284
9285 smp_set_owner(&key, smp->px, smp->sess, smp->strm, smp->opt);
9286 if (!sample_conv_var2smp_str(&arg_p[2], &key))
9287 return 0;
9288
9289 smp_set_owner(&aead_tag, smp->px, smp->sess, smp->strm, smp->opt);
9290 if (!sample_conv_var2smp_str(&arg_p[3], &aead_tag))
9291 return 0;
9292
9293 smp_trash = get_trash_chunk();
9294 smp_trash_alloc = alloc_trash_chunk();
9295 if (!smp_trash_alloc)
9296 return 0;
9297
9298 ctx = EVP_CIPHER_CTX_new();
9299
9300 if (!ctx)
9301 goto err;
9302
9303 dec_size = base64dec(nonce.data.u.str.area, nonce.data.u.str.data, smp_trash->area, smp_trash->size);
9304 if (dec_size < 0)
9305 goto err;
9306 smp_trash->data = dec_size;
9307
9308 /* Set cipher type and mode */
9309 switch(arg_p[0].data.sint) {
9310 case 128:
9311 EVP_DecryptInit_ex(ctx, EVP_aes_128_gcm(), NULL, NULL, NULL);
9312 break;
9313 case 192:
9314 EVP_DecryptInit_ex(ctx, EVP_aes_192_gcm(), NULL, NULL, NULL);
9315 break;
9316 case 256:
9317 EVP_DecryptInit_ex(ctx, EVP_aes_256_gcm(), NULL, NULL, NULL);
9318 break;
9319 }
9320
9321 EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_IVLEN, smp_trash->data, NULL);
9322
9323 /* Initialise IV */
9324 if(!EVP_DecryptInit_ex(ctx, NULL, NULL, NULL, (unsigned char *) smp_trash->area))
9325 goto err;
9326
9327 dec_size = base64dec(key.data.u.str.area, key.data.u.str.data, smp_trash->area, smp_trash->size);
9328 if (dec_size < 0)
9329 goto err;
9330 smp_trash->data = dec_size;
9331
9332 /* Initialise key */
9333 if (!EVP_DecryptInit_ex(ctx, NULL, NULL, (unsigned char *) smp_trash->area, NULL))
9334 goto err;
9335
9336 if (!EVP_DecryptUpdate(ctx, (unsigned char *) smp_trash->area, (int *) &smp_trash->data,
9337 (unsigned char *) smp->data.u.str.area, (int) smp->data.u.str.data))
9338 goto err;
9339
9340 dec_size = base64dec(aead_tag.data.u.str.area, aead_tag.data.u.str.data, smp_trash_alloc->area, smp_trash_alloc->size);
9341 if (dec_size < 0)
9342 goto err;
9343 smp_trash_alloc->data = dec_size;
9344 dec_size = smp_trash->data;
9345
9346 EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, smp_trash_alloc->data, (void *) smp_trash_alloc->area);
9347 ret = EVP_DecryptFinal_ex(ctx, (unsigned char *) smp_trash->area + smp_trash->data, (int *) &smp_trash->data);
9348
9349 if (ret <= 0)
9350 goto err;
9351
9352 smp->data.u.str.data = dec_size + smp_trash->data;
9353 smp->data.u.str.area = smp_trash->area;
9354 smp->data.type = SMP_T_BIN;
9355 smp->flags &= ~SMP_F_CONST;
9356 free_trash_chunk(smp_trash_alloc);
9357 return 1;
9358
9359err:
9360 free_trash_chunk(smp_trash_alloc);
9361 return 0;
William Lallemand32af2032016-10-29 18:09:35 +02009362}
Nenad Merdanovicc31499d2019-03-23 11:00:32 +01009363# endif
William Lallemand32af2032016-10-29 18:09:35 +02009364
9365/* register cli keywords */
9366static struct cli_kw_list cli_kws = {{ },{
9367#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
9368 { { "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 +02009369 { { "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 +02009370#endif
Emmanuel Hocdetfdec7892017-01-13 17:48:18 +01009371 { { "set", "ssl", "ocsp-response", NULL }, NULL, cli_parse_set_ocspresponse, NULL },
William Lallemand32af2032016-10-29 18:09:35 +02009372 { { NULL }, NULL, NULL, NULL }
9373}};
9374
Willy Tarreau0108d902018-11-25 19:14:37 +01009375INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand32af2032016-10-29 18:09:35 +02009376
Willy Tarreau7875d092012-09-10 08:20:03 +02009377/* Note: must not be declared <const> as its list will be overwritten.
9378 * Please take care of keeping this list alphabetically sorted.
9379 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02009380static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
Emeric Brun645ae792014-04-30 14:21:06 +02009381 { "ssl_bc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009382 { "ssl_bc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV },
Olivier Houchard6b77f492018-11-22 18:18:29 +01009383#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Jérôme Magnine064a802018-12-03 22:21:04 +01009384 { "ssl_bc_alpn", smp_fetch_ssl_fc_alpn, 0, NULL, SMP_T_STR, SMP_USE_L5SRV },
Olivier Houchard6b77f492018-11-22 18:18:29 +01009385#endif
Emeric Brun645ae792014-04-30 14:21:06 +02009386 { "ssl_bc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5SRV },
Olivier Houchard6b77f492018-11-22 18:18:29 +01009387#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
9388 { "ssl_bc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_STR, SMP_USE_L5SRV },
9389#endif
Emeric Brun74f7ffa2018-02-19 16:14:12 +01009390 { "ssl_bc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5SRV },
Emeric Brun645ae792014-04-30 14:21:06 +02009391 { "ssl_bc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5SRV },
Emeric Brunb73a9b02014-04-30 18:49:19 +02009392 { "ssl_bc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009393 { "ssl_bc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5SRV },
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009394#if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL
Emeric Brun645ae792014-04-30 14:21:06 +02009395 { "ssl_bc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV },
Patrick Hemmer41966772018-04-28 19:15:48 -04009396#endif
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009397#if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL)
Patrick Hemmere0275472018-04-28 19:15:51 -04009398 { "ssl_bc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5SRV },
9399#endif
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009400 { "ssl_c_ca_err", smp_fetch_ssl_c_ca_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
9401 { "ssl_c_ca_err_depth", smp_fetch_ssl_c_ca_err_depth, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Emeric Brun43e79582014-10-29 19:03:26 +01009402 { "ssl_c_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009403 { "ssl_c_err", smp_fetch_ssl_c_err, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Emeric Brunba841a12014-04-30 17:05:08 +02009404 { "ssl_c_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI },
9405 { "ssl_c_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9406 { "ssl_c_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9407 { "ssl_c_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9408 { "ssl_c_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9409 { "ssl_c_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI },
9410 { "ssl_c_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
9411 { "ssl_c_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Willy Tarreau80aca902013-01-07 15:42:20 +01009412 { "ssl_c_used", smp_fetch_ssl_c_used, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009413 { "ssl_c_verify", smp_fetch_ssl_c_verify, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
9414 { "ssl_c_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Emeric Brun43e79582014-10-29 19:03:26 +01009415 { "ssl_f_der", smp_fetch_ssl_x_der, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Emeric Brunba841a12014-04-30 17:05:08 +02009416 { "ssl_f_i_dn", smp_fetch_ssl_x_i_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI },
9417 { "ssl_f_key_alg", smp_fetch_ssl_x_key_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9418 { "ssl_f_notafter", smp_fetch_ssl_x_notafter, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9419 { "ssl_f_notbefore", smp_fetch_ssl_x_notbefore, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9420 { "ssl_f_sig_alg", smp_fetch_ssl_x_sig_alg, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9421 { "ssl_f_s_dn", smp_fetch_ssl_x_s_dn, ARG2(0,STR,SINT), NULL, SMP_T_STR, SMP_USE_L5CLI },
9422 { "ssl_f_serial", smp_fetch_ssl_x_serial, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Emeric Brun55f4fa82014-04-30 17:11:25 +02009423 { "ssl_f_sha1", smp_fetch_ssl_x_sha1, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009424 { "ssl_f_version", smp_fetch_ssl_x_version, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Willy Tarreau80aca902013-01-07 15:42:20 +01009425 { "ssl_fc", smp_fetch_ssl_fc, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009426 { "ssl_fc_alg_keysize", smp_fetch_ssl_fc_alg_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009427 { "ssl_fc_cipher", smp_fetch_ssl_fc_cipher, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
Willy Tarreau80aca902013-01-07 15:42:20 +01009428 { "ssl_fc_has_crt", smp_fetch_ssl_fc_has_crt, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI },
Olivier Houchardccaa7de2017-10-02 11:51:03 +02009429 { "ssl_fc_has_early", smp_fetch_ssl_fc_has_early, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI },
Willy Tarreau80aca902013-01-07 15:42:20 +01009430 { "ssl_fc_has_sni", smp_fetch_ssl_fc_has_sni, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI },
Nenad Merdanovic26ea8222015-05-18 02:28:57 +02009431 { "ssl_fc_is_resumed", smp_fetch_ssl_fc_is_resumed, 0, NULL, SMP_T_BOOL, SMP_USE_L5CLI },
Bernard Spil13c53f82018-02-15 13:34:58 +01009432#if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG)
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009433 { "ssl_fc_npn", smp_fetch_ssl_fc_npn, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
Willy Tarreaua33c6542012-10-15 13:19:06 +02009434#endif
Dirkjan Bussink48f1c4e2014-02-13 12:29:42 +01009435#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009436 { "ssl_fc_alpn", smp_fetch_ssl_fc_alpn, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
Willy Tarreauab861d32013-04-02 02:30:41 +02009437#endif
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009438 { "ssl_fc_protocol", smp_fetch_ssl_fc_protocol, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009439#if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL
Emeric Brunb73a9b02014-04-30 18:49:19 +02009440 { "ssl_fc_unique_id", smp_fetch_ssl_fc_unique_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Patrick Hemmer41966772018-04-28 19:15:48 -04009441#endif
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02009442 { "ssl_fc_use_keysize", smp_fetch_ssl_fc_use_keysize, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009443#if HA_OPENSSL_VERSION_NUMBER > 0x0090800fL
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009444 { "ssl_fc_session_id", smp_fetch_ssl_fc_session_id, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
Patrick Hemmer41966772018-04-28 19:15:48 -04009445#endif
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009446#if HA_OPENSSL_VERSION_NUMBER >= 0x10100000L || defined(OPENSSL_IS_BORINGSSL)
Patrick Hemmere0275472018-04-28 19:15:51 -04009447 { "ssl_fc_session_key", smp_fetch_ssl_fc_session_key, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
9448#endif
Patrick Hemmer41966772018-04-28 19:15:48 -04009449#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01009450 { "ssl_fc_sni", smp_fetch_ssl_fc_sni, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
Patrick Hemmer41966772018-04-28 19:15:48 -04009451#endif
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01009452 { "ssl_fc_cipherlist_bin", smp_fetch_ssl_fc_cl_bin, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9453 { "ssl_fc_cipherlist_hex", smp_fetch_ssl_fc_cl_hex, 0, NULL, SMP_T_BIN, SMP_USE_L5CLI },
9454 { "ssl_fc_cipherlist_str", smp_fetch_ssl_fc_cl_str, 0, NULL, SMP_T_STR, SMP_USE_L5CLI },
9455 { "ssl_fc_cipherlist_xxh", smp_fetch_ssl_fc_cl_xxh64, 0, NULL, SMP_T_SINT, SMP_USE_L5CLI },
Willy Tarreau7875d092012-09-10 08:20:03 +02009456 { NULL, NULL, 0, 0, 0 },
9457}};
9458
Willy Tarreau0108d902018-11-25 19:14:37 +01009459INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
9460
Willy Tarreau7875d092012-09-10 08:20:03 +02009461/* Note: must not be declared <const> as its list will be overwritten.
9462 * Please take care of keeping this list alphabetically sorted.
9463 */
Willy Tarreaudc13c112013-06-21 23:16:39 +02009464static struct acl_kw_list acl_kws = {ILH, {
Thierry FOURNIERc5a4e982014-03-05 16:07:08 +01009465 { "ssl_fc_sni_end", "ssl_fc_sni", PAT_MATCH_END },
9466 { "ssl_fc_sni_reg", "ssl_fc_sni", PAT_MATCH_REG },
Willy Tarreau8ed669b2013-01-11 15:49:37 +01009467 { /* END */ },
Willy Tarreau7875d092012-09-10 08:20:03 +02009468}};
9469
Willy Tarreau0108d902018-11-25 19:14:37 +01009470INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws);
9471
Willy Tarreau79eeafa2012-09-14 07:53:05 +02009472/* Note: must not be declared <const> as its list will be overwritten.
9473 * Please take care of keeping this list alphabetically sorted, doing so helps
9474 * all code contributors.
9475 * Optional keywords are also declared with a NULL ->parse() function so that
9476 * the config parser can report an appropriate error when a known keyword was
9477 * not enabled.
9478 */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01009479static struct ssl_bind_kw ssl_bind_kws[] = {
Olivier Houchardc2aae742017-09-22 18:26:28 +02009480 { "allow-0rtt", ssl_bind_parse_allow_0rtt, 0 }, /* allow 0-RTT */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01009481 { "alpn", ssl_bind_parse_alpn, 1 }, /* set ALPN supported protocols */
9482 { "ca-file", ssl_bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */
9483 { "ciphers", ssl_bind_parse_ciphers, 1 }, /* set SSL cipher suite */
Willy Tarreau5db847a2019-05-09 14:13:35 +02009484#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02009485 { "ciphersuites", ssl_bind_parse_ciphersuites, 1 }, /* set TLS 1.3 cipher suite */
9486#endif
Emmanuel Hocdet98263292016-12-29 18:26:15 +01009487 { "crl-file", ssl_bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */
Emmanuel Hocdete7f2b732017-01-09 16:15:54 +01009488 { "curves", ssl_bind_parse_curves, 1 }, /* set SSL curve suite */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01009489 { "ecdhe", ssl_bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02009490 { "no-ca-names", ssl_bind_parse_no_ca_names, 0 }, /* do not send ca names to clients (ca_file related) */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01009491 { "npn", ssl_bind_parse_npn, 1 }, /* set NPN supported protocols */
Emmanuel Hocdetdf701a22017-05-18 12:46:50 +02009492 { "ssl-min-ver", ssl_bind_parse_tls_method_minmax,1 }, /* minimum version */
9493 { "ssl-max-ver", ssl_bind_parse_tls_method_minmax,1 }, /* maximum version */
Emmanuel Hocdet98263292016-12-29 18:26:15 +01009494 { "verify", ssl_bind_parse_verify, 1 }, /* set SSL verify method */
9495 { NULL, NULL, 0 },
9496};
9497
Willy Tarreau0108d902018-11-25 19:14:37 +01009498/* no initcall for ssl_bind_kws, these ones are parsed in the parser loop */
9499
Willy Tarreau51fb7652012-09-18 18:24:39 +02009500static struct bind_kw_list bind_kws = { "SSL", { }, {
Olivier Houchardc2aae742017-09-22 18:26:28 +02009501 { "allow-0rtt", bind_parse_allow_0rtt, 0 }, /* Allow 0RTT */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02009502 { "alpn", bind_parse_alpn, 1 }, /* set ALPN supported protocols */
9503 { "ca-file", bind_parse_ca_file, 1 }, /* set CAfile to process verify on client cert */
9504 { "ca-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ignore on verify depth > 0 */
9505 { "ca-sign-file", bind_parse_ca_sign_file, 1 }, /* set CAFile used to generate and sign server certs */
9506 { "ca-sign-pass", bind_parse_ca_sign_pass, 1 }, /* set CAKey passphrase */
9507 { "ciphers", bind_parse_ciphers, 1 }, /* set SSL cipher suite */
Willy Tarreau5db847a2019-05-09 14:13:35 +02009508#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02009509 { "ciphersuites", bind_parse_ciphersuites, 1 }, /* set TLS 1.3 cipher suite */
9510#endif
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02009511 { "crl-file", bind_parse_crl_file, 1 }, /* set certificat revocation list file use on client cert verify */
9512 { "crt", bind_parse_crt, 1 }, /* load SSL certificates from this location */
9513 { "crt-ignore-err", bind_parse_ignore_err, 1 }, /* set error IDs to ingore on verify depth == 0 */
9514 { "crt-list", bind_parse_crt_list, 1 }, /* load a list of crt from this location */
9515 { "curves", bind_parse_curves, 1 }, /* set SSL curve suite */
9516 { "ecdhe", bind_parse_ecdhe, 1 }, /* defines named curve for elliptic curve Diffie-Hellman */
9517 { "force-sslv3", bind_parse_tls_method_options, 0 }, /* force SSLv3 */
9518 { "force-tlsv10", bind_parse_tls_method_options, 0 }, /* force TLSv10 */
9519 { "force-tlsv11", bind_parse_tls_method_options, 0 }, /* force TLSv11 */
9520 { "force-tlsv12", bind_parse_tls_method_options, 0 }, /* force TLSv12 */
Emmanuel Hocdet42fb9802017-03-30 19:29:39 +02009521 { "force-tlsv13", bind_parse_tls_method_options, 0 }, /* force TLSv13 */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02009522 { "generate-certificates", bind_parse_generate_certs, 0 }, /* enable the server certificates generation */
Emmanuel Hocdet174dfe52017-07-28 15:01:05 +02009523 { "no-ca-names", bind_parse_no_ca_names, 0 }, /* do not send ca names to clients (ca_file related) */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02009524 { "no-sslv3", bind_parse_tls_method_options, 0 }, /* disable SSLv3 */
9525 { "no-tlsv10", bind_parse_tls_method_options, 0 }, /* disable TLSv10 */
9526 { "no-tlsv11", bind_parse_tls_method_options, 0 }, /* disable TLSv11 */
9527 { "no-tlsv12", bind_parse_tls_method_options, 0 }, /* disable TLSv12 */
Emmanuel Hocdet42fb9802017-03-30 19:29:39 +02009528 { "no-tlsv13", bind_parse_tls_method_options, 0 }, /* disable TLSv13 */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02009529 { "no-tls-tickets", bind_parse_no_tls_tickets, 0 }, /* disable session resumption tickets */
9530 { "ssl", bind_parse_ssl, 0 }, /* enable SSL processing */
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02009531 { "ssl-min-ver", bind_parse_tls_method_minmax, 1 }, /* minimum version */
9532 { "ssl-max-ver", bind_parse_tls_method_minmax, 1 }, /* maximum version */
Emmanuel Hocdet5db33cb2017-03-30 19:19:37 +02009533 { "strict-sni", bind_parse_strict_sni, 0 }, /* refuse negotiation if sni doesn't match a certificate */
9534 { "tls-ticket-keys", bind_parse_tls_ticket_keys, 1 }, /* set file to load TLS ticket keys from */
9535 { "verify", bind_parse_verify, 1 }, /* set SSL verify method */
9536 { "npn", bind_parse_npn, 1 }, /* set NPN supported protocols */
9537 { "prefer-client-ciphers", bind_parse_pcc, 0 }, /* prefer client ciphers */
Willy Tarreau79eeafa2012-09-14 07:53:05 +02009538 { NULL, NULL, 0 },
9539}};
Emeric Brun46591952012-05-18 15:47:34 +02009540
Willy Tarreau0108d902018-11-25 19:14:37 +01009541INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
9542
Willy Tarreau92faadf2012-10-10 23:04:25 +02009543/* Note: must not be declared <const> as its list will be overwritten.
9544 * Please take care of keeping this list alphabetically sorted, doing so helps
9545 * all code contributors.
9546 * Optional keywords are also declared with a NULL ->parse() function so that
9547 * the config parser can report an appropriate error when a known keyword was
9548 * not enabled.
9549 */
9550static struct srv_kw_list srv_kws = { "SSL", { }, {
Olivier Houchard522eea72017-11-03 16:27:47 +01009551 { "allow-0rtt", srv_parse_allow_0rtt, 0, 1 }, /* Allow using early data on this server */
Olivier Houchardc7566002018-11-20 23:33:50 +01009552 { "alpn", srv_parse_alpn, 1, 1 }, /* Set ALPN supported protocols */
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02009553 { "ca-file", srv_parse_ca_file, 1, 1 }, /* set CAfile to process verify server cert */
Olivier Houchard92150142018-12-21 19:47:01 +01009554 { "check-alpn", srv_parse_alpn, 1, 1 }, /* Set ALPN used for checks */
Olivier Houchard9130a962017-10-17 17:33:43 +02009555 { "check-sni", srv_parse_check_sni, 1, 1 }, /* set SNI */
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02009556 { "check-ssl", srv_parse_check_ssl, 0, 1 }, /* enable SSL for health checks */
9557 { "ciphers", srv_parse_ciphers, 1, 1 }, /* select the cipher suite */
Willy Tarreau5db847a2019-05-09 14:13:35 +02009558#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02009559 { "ciphersuites", srv_parse_ciphersuites, 1, 1 }, /* select the cipher suite */
9560#endif
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02009561 { "crl-file", srv_parse_crl_file, 1, 1 }, /* set certificate revocation list file use on server cert verify */
9562 { "crt", srv_parse_crt, 1, 1 }, /* set client certificate */
9563 { "force-sslv3", srv_parse_tls_method_options, 0, 1 }, /* force SSLv3 */
9564 { "force-tlsv10", srv_parse_tls_method_options, 0, 1 }, /* force TLSv10 */
9565 { "force-tlsv11", srv_parse_tls_method_options, 0, 1 }, /* force TLSv11 */
9566 { "force-tlsv12", srv_parse_tls_method_options, 0, 1 }, /* force TLSv12 */
9567 { "force-tlsv13", srv_parse_tls_method_options, 0, 1 }, /* force TLSv13 */
9568 { "no-check-ssl", srv_parse_no_check_ssl, 0, 1 }, /* disable SSL for health checks */
9569 { "no-send-proxy-v2-ssl", srv_parse_no_send_proxy_ssl, 0, 1 }, /* do not send PROXY protocol header v2 with SSL info */
9570 { "no-send-proxy-v2-ssl-cn", srv_parse_no_send_proxy_cn, 0, 1 }, /* do not send PROXY protocol header v2 with CN */
9571 { "no-ssl", srv_parse_no_ssl, 0, 1 }, /* disable SSL processing */
9572 { "no-ssl-reuse", srv_parse_no_ssl_reuse, 0, 1 }, /* disable session reuse */
9573 { "no-sslv3", srv_parse_tls_method_options, 0, 0 }, /* disable SSLv3 */
9574 { "no-tlsv10", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv10 */
9575 { "no-tlsv11", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv11 */
9576 { "no-tlsv12", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv12 */
9577 { "no-tlsv13", srv_parse_tls_method_options, 0, 0 }, /* disable TLSv13 */
9578 { "no-tls-tickets", srv_parse_no_tls_tickets, 0, 1 }, /* disable session resumption tickets */
Olivier Houchardc7566002018-11-20 23:33:50 +01009579 { "npn", srv_parse_npn, 1, 1 }, /* Set NPN supported protocols */
Emmanuel Hocdete1c722b2017-03-31 15:02:54 +02009580 { "send-proxy-v2-ssl", srv_parse_send_proxy_ssl, 0, 1 }, /* send PROXY protocol header v2 with SSL info */
9581 { "send-proxy-v2-ssl-cn", srv_parse_send_proxy_cn, 0, 1 }, /* send PROXY protocol header v2 with CN */
9582 { "sni", srv_parse_sni, 1, 1 }, /* send SNI extension */
9583 { "ssl", srv_parse_ssl, 0, 1 }, /* enable SSL processing */
9584 { "ssl-min-ver", srv_parse_tls_method_minmax, 1, 1 }, /* minimum version */
9585 { "ssl-max-ver", srv_parse_tls_method_minmax, 1, 1 }, /* maximum version */
9586 { "ssl-reuse", srv_parse_ssl_reuse, 0, 1 }, /* enable session reuse */
9587 { "tls-tickets", srv_parse_tls_tickets, 0, 1 }, /* enable session resumption tickets */
9588 { "verify", srv_parse_verify, 1, 1 }, /* set SSL verify method */
9589 { "verifyhost", srv_parse_verifyhost, 1, 1 }, /* require that SSL cert verifies for hostname */
Willy Tarreau92faadf2012-10-10 23:04:25 +02009590 { NULL, NULL, 0, 0 },
9591}};
9592
Willy Tarreau0108d902018-11-25 19:14:37 +01009593INITCALL1(STG_REGISTER, srv_register_keywords, &srv_kws);
9594
Emeric Brun2c86cbf2014-10-30 15:56:50 +01009595static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau8c3b0fd2016-12-21 22:44:46 +01009596 { CFG_GLOBAL, "ca-base", ssl_parse_global_ca_crt_base },
9597 { CFG_GLOBAL, "crt-base", ssl_parse_global_ca_crt_base },
Willy Tarreau0bea58d2016-12-21 23:17:25 +01009598 { CFG_GLOBAL, "maxsslconn", ssl_parse_global_int },
Emeric Brun2c86cbf2014-10-30 15:56:50 +01009599 { CFG_GLOBAL, "ssl-default-bind-options", ssl_parse_default_bind_options },
9600 { CFG_GLOBAL, "ssl-default-server-options", ssl_parse_default_server_options },
Willy Tarreau14e36a12016-12-21 23:28:13 +01009601#ifndef OPENSSL_NO_DH
9602 { CFG_GLOBAL, "ssl-dh-param-file", ssl_parse_global_dh_param_file },
9603#endif
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00009604 { CFG_GLOBAL, "ssl-mode-async", ssl_parse_global_ssl_async },
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02009605#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00009606 { CFG_GLOBAL, "ssl-engine", ssl_parse_global_ssl_engine },
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02009607#endif
Willy Tarreau9ceda382016-12-21 23:13:03 +01009608 { CFG_GLOBAL, "tune.ssl.cachesize", ssl_parse_global_int },
9609#ifndef OPENSSL_NO_DH
9610 { CFG_GLOBAL, "tune.ssl.default-dh-param", ssl_parse_global_default_dh },
9611#endif
9612 { CFG_GLOBAL, "tune.ssl.force-private-cache", ssl_parse_global_private_cache },
9613 { CFG_GLOBAL, "tune.ssl.lifetime", ssl_parse_global_lifetime },
9614 { CFG_GLOBAL, "tune.ssl.maxrecord", ssl_parse_global_int },
9615 { CFG_GLOBAL, "tune.ssl.ssl-ctx-cache-size", ssl_parse_global_int },
Thierry FOURNIER5bf77322017-02-25 12:45:22 +01009616 { CFG_GLOBAL, "tune.ssl.capture-cipherlist-size", ssl_parse_global_capture_cipherlist },
Willy Tarreauf22e9682016-12-21 23:23:19 +01009617 { CFG_GLOBAL, "ssl-default-bind-ciphers", ssl_parse_global_ciphers },
9618 { CFG_GLOBAL, "ssl-default-server-ciphers", ssl_parse_global_ciphers },
Willy Tarreau5db847a2019-05-09 14:13:35 +02009619#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02009620 { CFG_GLOBAL, "ssl-default-bind-ciphersuites", ssl_parse_global_ciphersuites },
9621 { CFG_GLOBAL, "ssl-default-server-ciphersuites", ssl_parse_global_ciphersuites },
9622#endif
Emeric Brun2c86cbf2014-10-30 15:56:50 +01009623 { 0, NULL, NULL },
9624}};
9625
Willy Tarreau0108d902018-11-25 19:14:37 +01009626INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
9627
Nenad Merdanovicc31499d2019-03-23 11:00:32 +01009628/* Note: must not be declared <const> as its list will be overwritten */
9629static struct sample_conv_kw_list conv_kws = {ILH, {
Willy Tarreau86a394e2019-05-09 14:15:32 +02009630#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000100fL)
Nenad Merdanovicc31499d2019-03-23 11:00:32 +01009631 { "aes_gcm_dec", sample_conv_aes_gcm_dec, ARG4(4,SINT,STR,STR,STR), check_aes_gcm, SMP_T_BIN, SMP_T_BIN },
9632#endif
9633 { NULL, NULL, 0, 0, 0 },
9634}};
9635
9636INITCALL1(STG_REGISTER, sample_register_convs, &conv_kws);
9637
Willy Tarreauf7bc57c2012-10-03 00:19:48 +02009638/* transport-layer operations for SSL sockets */
Willy Tarreaud9f5cca2016-12-22 21:08:52 +01009639static struct xprt_ops ssl_sock = {
Emeric Brun46591952012-05-18 15:47:34 +02009640 .snd_buf = ssl_sock_from_buf,
9641 .rcv_buf = ssl_sock_to_buf,
Olivier Houcharddf357842019-03-21 16:30:07 +01009642 .subscribe = ssl_subscribe,
9643 .unsubscribe = ssl_unsubscribe,
Emeric Brun46591952012-05-18 15:47:34 +02009644 .rcv_pipe = NULL,
9645 .snd_pipe = NULL,
9646 .shutr = NULL,
9647 .shutw = ssl_sock_shutw,
9648 .close = ssl_sock_close,
9649 .init = ssl_sock_init,
Willy Tarreau55d37912016-12-21 23:38:39 +01009650 .prepare_bind_conf = ssl_sock_prepare_bind_conf,
Willy Tarreau795cdab2016-12-22 17:30:54 +01009651 .destroy_bind_conf = ssl_sock_destroy_bind_conf,
Willy Tarreau17d45382016-12-22 21:16:08 +01009652 .prepare_srv = ssl_sock_prepare_srv_ctx,
9653 .destroy_srv = ssl_sock_free_srv_ctx,
Willy Tarreau8743f7e2016-12-04 18:44:29 +01009654 .get_alpn = ssl_sock_get_alpn,
Willy Tarreau8e0bb0a2016-11-24 16:58:12 +01009655 .name = "SSL",
Emeric Brun46591952012-05-18 15:47:34 +02009656};
9657
Olivier Houchardccaa7de2017-10-02 11:51:03 +02009658enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px,
9659 struct session *sess, struct stream *s, int flags)
9660{
9661 struct connection *conn;
Olivier Houchard6fa63d92017-11-27 18:41:32 +01009662 struct conn_stream *cs;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02009663
9664 conn = objt_conn(sess->origin);
Olivier Houchard6fa63d92017-11-27 18:41:32 +01009665 cs = objt_cs(s->si[0].end);
Olivier Houchardccaa7de2017-10-02 11:51:03 +02009666
Olivier Houchard6fa63d92017-11-27 18:41:32 +01009667 if (conn && cs) {
Olivier Houchardccaa7de2017-10-02 11:51:03 +02009668 if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) {
Olivier Houchard6fa63d92017-11-27 18:41:32 +01009669 cs->flags |= CS_FL_WAIT_FOR_HS;
Olivier Houchardccaa7de2017-10-02 11:51:03 +02009670 s->req.flags |= CF_READ_NULL;
9671 return ACT_RET_YIELD;
9672 }
9673 }
9674 return (ACT_RET_CONT);
9675}
9676
9677static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err)
9678{
9679 rule->action_ptr = ssl_action_wait_for_hs;
9680
9681 return ACT_RET_PRS_OK;
9682}
9683
9684static struct action_kw_list http_req_actions = {ILH, {
9685 { "wait-for-handshake", ssl_parse_wait_for_hs },
9686 { /* END */ }
9687}};
9688
Willy Tarreau0108d902018-11-25 19:14:37 +01009689INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
9690
Willy Tarreau5db847a2019-05-09 14:13:35 +02009691#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01009692
9693static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
9694{
9695 if (ptr) {
9696 chunk_destroy(ptr);
9697 free(ptr);
9698 }
9699}
9700
9701#endif
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01009702static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp)
9703{
Willy Tarreaubafbe012017-11-24 17:34:44 +01009704 pool_free(pool_head_ssl_capture, ptr);
Emmanuel Hocdetaaee7502017-03-07 18:34:58 +01009705}
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01009706
Emeric Brun46591952012-05-18 15:47:34 +02009707__attribute__((constructor))
Willy Tarreau92faadf2012-10-10 23:04:25 +02009708static void __ssl_sock_init(void)
9709{
Ilya Shipitsin0590f442019-05-25 19:30:50 +05009710#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02009711 STACK_OF(SSL_COMP)* cm;
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05009712 int n;
Ilya Shipitsin0590f442019-05-25 19:30:50 +05009713#endif
Emeric Brun46591952012-05-18 15:47:34 +02009714
Willy Tarreauef934602016-12-22 23:12:01 +01009715 if (global_ssl.listen_default_ciphers)
9716 global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers);
9717 if (global_ssl.connect_default_ciphers)
9718 global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers);
Willy Tarreau5db847a2019-05-09 14:13:35 +02009719#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L && !defined OPENSSL_IS_BORINGSSL)
Dirkjan Bussink415150f2018-09-14 11:14:21 +02009720 if (global_ssl.listen_default_ciphersuites)
9721 global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites);
9722 if (global_ssl.connect_default_ciphersuites)
9723 global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites);
9724#endif
Willy Tarreau610f04b2014-02-13 11:36:41 +01009725
Willy Tarreau13e14102016-12-22 20:25:26 +01009726 xprt_register(XPRT_SSL, &ssl_sock);
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009727#if HA_OPENSSL_VERSION_NUMBER < 0x10100000L
Emeric Brun46591952012-05-18 15:47:34 +02009728 SSL_library_init();
Rosen Penev68185952018-12-14 08:47:02 -08009729#endif
Ilya Shipitsin0590f442019-05-25 19:30:50 +05009730#if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION))
Emeric Brun46591952012-05-18 15:47:34 +02009731 cm = SSL_COMP_get_compression_methods();
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05009732 n = sk_SSL_COMP_num(cm);
9733 while (n--) {
9734 (void) sk_SSL_COMP_pop(cm);
9735 }
Ilya Shipitsin0590f442019-05-25 19:30:50 +05009736#endif
Ilya Shipitsine242f3d2019-05-25 03:38:14 +05009737
Willy Tarreau5db847a2019-05-09 14:13:35 +02009738#if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Emeric Brun821bb9b2017-06-15 16:37:39 +02009739 ssl_locking_init();
9740#endif
Willy Tarreau5db847a2019-05-09 14:13:35 +02009741#if (HA_OPENSSL_VERSION_NUMBER >= 0x1000200fL && !defined OPENSSL_NO_TLSEXT && !defined OPENSSL_IS_BORINGSSL)
Janusz Dziemidowicz2c701b52015-03-07 23:03:59 +01009742 sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func);
9743#endif
Thierry FOURNIER28962c92018-06-17 21:37:05 +02009744 ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Thierry FOURNIER16ff0502018-06-17 21:33:01 +02009745 ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func);
Emmanuel Hocdet96b78342017-10-31 15:46:07 +01009746 ssl_pkey_info_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02009747#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00009748 ENGINE_load_builtin_engines();
Grant Zhangfa6c7ee2017-01-14 01:42:15 +00009749 hap_register_post_check(ssl_check_async_engine_count);
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02009750#endif
Willy Tarreaud1c57502016-12-22 22:46:15 +01009751#if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0)
9752 hap_register_post_check(tlskeys_finalize_config);
9753#endif
Willy Tarreau80713382018-11-26 10:19:54 +01009754
9755 global.ssl_session_max_cost = SSL_SESSION_MAX_COST;
9756 global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST;
9757
9758#ifndef OPENSSL_NO_DH
9759 ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL);
9760 hap_register_post_deinit(ssl_free_dh);
9761#endif
9762#ifndef OPENSSL_NO_ENGINE
9763 hap_register_post_deinit(ssl_free_engines);
9764#endif
9765 /* Load SSL string for the verbose & debug mode. */
9766 ERR_load_SSL_strings();
Olivier Houcharda8955d52019-04-07 22:00:38 +02009767 ha_meth = BIO_meth_new(0x666, "ha methods");
9768 BIO_meth_set_write(ha_meth, ha_ssl_write);
9769 BIO_meth_set_read(ha_meth, ha_ssl_read);
9770 BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl);
9771 BIO_meth_set_create(ha_meth, ha_ssl_new);
9772 BIO_meth_set_destroy(ha_meth, ha_ssl_free);
9773 BIO_meth_set_puts(ha_meth, ha_ssl_puts);
9774 BIO_meth_set_gets(ha_meth, ha_ssl_gets);
Willy Tarreau80713382018-11-26 10:19:54 +01009775}
Willy Tarreaud92aa5c2015-01-15 21:34:39 +01009776
Willy Tarreau80713382018-11-26 10:19:54 +01009777/* Compute and register the version string */
9778static void ssl_register_build_options()
9779{
9780 char *ptr = NULL;
9781 int i;
9782
Willy Tarreauc2c0b612016-12-21 19:23:20 +01009783 memprintf(&ptr, "Built with OpenSSL version : "
9784#ifdef OPENSSL_IS_BORINGSSL
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01009785 "BoringSSL");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01009786#else /* OPENSSL_IS_BORINGSSL */
9787 OPENSSL_VERSION_TEXT
9788 "\nRunning on OpenSSL version : %s%s",
Rosen Penev68185952018-12-14 08:47:02 -08009789 OpenSSL_version(OPENSSL_VERSION),
Willy Tarreau1d158ab2019-05-09 13:41:45 +02009790 ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : "");
Willy Tarreauc2c0b612016-12-21 19:23:20 +01009791#endif
9792 memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : "
Willy Tarreau9a1ab082019-05-09 13:26:41 +02009793#if HA_OPENSSL_VERSION_NUMBER < 0x00907000L
Willy Tarreauc2c0b612016-12-21 19:23:20 +01009794 "no (library version too old)"
9795#elif defined(OPENSSL_NO_TLSEXT)
9796 "no (disabled via OPENSSL_NO_TLSEXT)"
9797#else
9798 "yes"
9799#endif
9800 "", ptr);
9801
9802 memprintf(&ptr, "%s\nOpenSSL library supports SNI : "
9803#ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME
9804 "yes"
9805#else
9806#ifdef OPENSSL_NO_TLSEXT
9807 "no (because of OPENSSL_NO_TLSEXT)"
9808#else
9809 "no (version might be too old, 0.9.8f min needed)"
9810#endif
9811#endif
9812 "", ptr);
9813
Emmanuel Hocdetf80bc242017-07-12 14:25:38 +02009814 memprintf(&ptr, "%s\nOpenSSL library supports :", ptr);
9815 for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++)
9816 if (methodVersions[i].option)
9817 memprintf(&ptr, "%s %s", ptr, methodVersions[i].name);
Emmanuel Hocdet50e25e12017-03-24 15:20:03 +01009818
Willy Tarreauc2c0b612016-12-21 19:23:20 +01009819 hap_register_build_opts(ptr, 1);
Willy Tarreau80713382018-11-26 10:19:54 +01009820}
Willy Tarreauc2c0b612016-12-21 19:23:20 +01009821
Willy Tarreau80713382018-11-26 10:19:54 +01009822INITCALL0(STG_REGISTER, ssl_register_build_options);
Remi Gacogne4f902b82015-05-28 16:23:00 +02009823
Emeric Brun46591952012-05-18 15:47:34 +02009824
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02009825#ifndef OPENSSL_NO_ENGINE
Grant Zhang872f9c22017-01-21 01:10:18 +00009826void ssl_free_engines(void) {
9827 struct ssl_engine_list *wl, *wlb;
9828 /* free up engine list */
9829 list_for_each_entry_safe(wl, wlb, &openssl_engines, list) {
9830 ENGINE_finish(wl->e);
9831 ENGINE_free(wl->e);
9832 LIST_DEL(&wl->list);
9833 free(wl);
9834 }
9835}
Emmanuel Hocdet9ac143b2017-05-29 14:36:20 +02009836#endif
Christopher Faulet31af49d2015-06-09 17:29:50 +02009837
Remi Gacogned3a23c32015-05-28 16:39:47 +02009838#ifndef OPENSSL_NO_DH
Grant Zhang872f9c22017-01-21 01:10:18 +00009839void ssl_free_dh(void) {
9840 if (local_dh_1024) {
9841 DH_free(local_dh_1024);
9842 local_dh_1024 = NULL;
9843 }
9844 if (local_dh_2048) {
9845 DH_free(local_dh_2048);
9846 local_dh_2048 = NULL;
9847 }
9848 if (local_dh_4096) {
9849 DH_free(local_dh_4096);
9850 local_dh_4096 = NULL;
9851 }
Remi Gacogne47783ef2015-05-29 15:53:22 +02009852 if (global_dh) {
9853 DH_free(global_dh);
9854 global_dh = NULL;
9855 }
Grant Zhang872f9c22017-01-21 01:10:18 +00009856}
9857#endif
9858
9859__attribute__((destructor))
9860static void __ssl_sock_deinit(void)
9861{
9862#if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES)
Emeric Brun821bb9b2017-06-15 16:37:39 +02009863 if (ssl_ctx_lru_tree) {
9864 lru64_destroy(ssl_ctx_lru_tree);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01009865 HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock);
Emeric Brun821bb9b2017-06-15 16:37:39 +02009866 }
Remi Gacogned3a23c32015-05-28 16:39:47 +02009867#endif
9868
Willy Tarreau5db847a2019-05-09 14:13:35 +02009869#if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02009870 ERR_remove_state(0);
9871 ERR_free_strings();
9872
9873 EVP_cleanup();
Rosen Penev68185952018-12-14 08:47:02 -08009874#endif
Remi Gacogned3a23c32015-05-28 16:39:47 +02009875
Willy Tarreau5db847a2019-05-09 14:13:35 +02009876#if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L)
Remi Gacogned3a23c32015-05-28 16:39:47 +02009877 CRYPTO_cleanup_all_ex_data();
9878#endif
Olivier Houcharda8955d52019-04-07 22:00:38 +02009879 BIO_meth_free(ha_meth);
Remi Gacogned3a23c32015-05-28 16:39:47 +02009880}
9881
9882
Emeric Brun46591952012-05-18 15:47:34 +02009883/*
9884 * Local variables:
9885 * c-indent-level: 8
9886 * c-basic-offset: 8
9887 * End:
9888 */