yanbzhu | 08ce6ab | 2015-12-02 13:01:29 -0500 | [diff] [blame] | 1 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 2 | /* |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 3 | * SSL/TLS transport layer over SOCK_STREAM sockets |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 4 | * |
| 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 Tarreau | 69845df | 2012-09-10 09:43:09 +0200 | [diff] [blame] | 12 | * 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 Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 24 | */ |
| 25 | |
Willy Tarreau | 8d164dc | 2019-05-10 09:35:00 +0200 | [diff] [blame] | 26 | /* Note: do NOT include openssl/xxx.h here, do it in openssl-compat.h */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 27 | #define _GNU_SOURCE |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 28 | #include <ctype.h> |
| 29 | #include <dirent.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 30 | #include <errno.h> |
| 31 | #include <fcntl.h> |
| 32 | #include <stdio.h> |
| 33 | #include <stdlib.h> |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 34 | #include <string.h> |
| 35 | #include <unistd.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 36 | |
| 37 | #include <sys/socket.h> |
| 38 | #include <sys/stat.h> |
| 39 | #include <sys/types.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 40 | #include <netdb.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 41 | #include <netinet/tcp.h> |
| 42 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 43 | #include <import/ebpttree.h> |
| 44 | #include <import/ebsttree.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 45 | #include <import/lru.h> |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 46 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 47 | #include <haproxy/api.h> |
| 48 | #include <haproxy/arg.h> |
| 49 | #include <haproxy/base64.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 50 | #include <haproxy/channel.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 51 | #include <haproxy/chunk.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 52 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 53 | #include <haproxy/connection.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 54 | #include <haproxy/dynbuf.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 55 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 56 | #include <haproxy/fd.h> |
| 57 | #include <haproxy/freq_ctr.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 58 | #include <haproxy/frontend.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 59 | #include <haproxy/global.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 60 | #include <haproxy/http_rules.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 61 | #include <haproxy/log.h> |
Willy Tarreau | 6019fab | 2020-05-27 16:26:00 +0200 | [diff] [blame] | 62 | #include <haproxy/openssl-compat.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 63 | #include <haproxy/pattern-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 64 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 65 | #include <haproxy/proxy.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 66 | #include <haproxy/server.h> |
Willy Tarreau | 334099c | 2020-06-03 18:38:48 +0200 | [diff] [blame] | 67 | #include <haproxy/shctx.h> |
Willy Tarreau | 47d7f90 | 2020-06-04 14:25:47 +0200 | [diff] [blame] | 68 | #include <haproxy/ssl_ckch.h> |
Willy Tarreau | 52d8872 | 2020-06-04 14:29:23 +0200 | [diff] [blame] | 69 | #include <haproxy/ssl_crtlist.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 70 | #include <haproxy/ssl_sock.h> |
Willy Tarreau | b2bd865 | 2020-06-04 14:21:22 +0200 | [diff] [blame] | 71 | #include <haproxy/ssl_utils.h> |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 72 | #include <haproxy/stats.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 73 | #include <haproxy/stream-t.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 74 | #include <haproxy/stream_interface.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 75 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 76 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 77 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 78 | #include <haproxy/tools.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 79 | #include <haproxy/vars.h> |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 80 | #include <haproxy/xprt_quic.h> |
Tim Duesterhus | d5fc8fc | 2021-09-11 17:51:13 +0200 | [diff] [blame] | 81 | #include <haproxy/xxhash.h> |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 82 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 83 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 84 | /* ***** READ THIS before adding code here! ***** |
| 85 | * |
| 86 | * Due to API incompatibilities between multiple OpenSSL versions and their |
| 87 | * derivatives, it's often tempting to add macros to (re-)define certain |
| 88 | * symbols. Please do not do this here, and do it in common/openssl-compat.h |
| 89 | * exclusively so that the whole code consistently uses the same macros. |
| 90 | * |
| 91 | * Whenever possible if a macro is missing in certain versions, it's better |
| 92 | * to conditionally define it in openssl-compat.h than using lots of ifdefs. |
| 93 | */ |
| 94 | |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 95 | int nb_engines = 0; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 96 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 97 | static struct eb_root cert_issuer_tree = EB_ROOT; /* issuers tree from "issuers-chain-path" */ |
| 98 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 99 | struct global_ssl global_ssl = { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 100 | #ifdef LISTEN_DEFAULT_CIPHERS |
| 101 | .listen_default_ciphers = LISTEN_DEFAULT_CIPHERS, |
| 102 | #endif |
| 103 | #ifdef CONNECT_DEFAULT_CIPHERS |
| 104 | .connect_default_ciphers = CONNECT_DEFAULT_CIPHERS, |
| 105 | #endif |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 106 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 107 | .listen_default_ciphersuites = LISTEN_DEFAULT_CIPHERSUITES, |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 108 | .connect_default_ciphersuites = CONNECT_DEFAULT_CIPHERSUITES, |
| 109 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 110 | .listen_default_ssloptions = BC_SSL_O_NONE, |
| 111 | .connect_default_ssloptions = SRV_SSL_O_NONE, |
| 112 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 113 | .listen_default_sslmethods.flags = MC_SSL_O_ALL, |
| 114 | .listen_default_sslmethods.min = CONF_TLSV_NONE, |
| 115 | .listen_default_sslmethods.max = CONF_TLSV_NONE, |
| 116 | .connect_default_sslmethods.flags = MC_SSL_O_ALL, |
| 117 | .connect_default_sslmethods.min = CONF_TLSV_NONE, |
| 118 | .connect_default_sslmethods.max = CONF_TLSV_NONE, |
| 119 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 120 | #ifdef DEFAULT_SSL_MAX_RECORD |
| 121 | .max_record = DEFAULT_SSL_MAX_RECORD, |
| 122 | #endif |
| 123 | .default_dh_param = SSL_DEFAULT_DH_PARAM, |
| 124 | .ctx_cache = DEFAULT_SSL_CTX_CACHE, |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 125 | .capture_buffer_size = 0, |
William Lallemand | 3af48e7 | 2020-02-03 17:15:52 +0100 | [diff] [blame] | 126 | .extra_files = SSL_GF_ALL, |
William Lallemand | 8e8581e | 2020-10-20 17:36:46 +0200 | [diff] [blame] | 127 | .extra_files_noext = 0, |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 128 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 129 | .keylog = 0 |
| 130 | #endif |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 131 | }; |
| 132 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 133 | static BIO_METHOD *ha_meth; |
| 134 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 135 | DECLARE_STATIC_POOL(ssl_sock_ctx_pool, "ssl_sock_ctx_pool", sizeof(struct ssl_sock_ctx)); |
| 136 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 137 | DECLARE_STATIC_POOL(ssl_sock_client_sni_pool, "ssl_sock_client_sni_pool", TLSEXT_MAXLEN_host_name + 1); |
| 138 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 139 | /* ssl stats module */ |
| 140 | enum { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 141 | SSL_ST_SESS, |
| 142 | SSL_ST_REUSED_SESS, |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 143 | SSL_ST_FAILED_HANDSHAKE, |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 144 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 145 | SSL_ST_STATS_COUNT /* must be the last member of the enum */ |
| 146 | }; |
| 147 | |
| 148 | static struct name_desc ssl_stats[] = { |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 149 | [SSL_ST_SESS] = { .name = "ssl_sess", |
| 150 | .desc = "Total number of ssl sessions established" }, |
| 151 | [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess", |
| 152 | .desc = "Total number of ssl sessions reused" }, |
| 153 | [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake", |
| 154 | .desc = "Total number of failed handshake" }, |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | static struct ssl_counters { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 158 | long long sess; |
| 159 | long long reused_sess; |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 160 | long long failed_handshake; |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 161 | } ssl_counters; |
| 162 | |
| 163 | static void ssl_fill_stats(void *data, struct field *stats) |
| 164 | { |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 165 | struct ssl_counters *counters = data; |
| 166 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 167 | stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess); |
| 168 | stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess); |
| 169 | stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake); |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static struct stats_module ssl_stats_module = { |
| 173 | .name = "ssl", |
| 174 | .fill_stats = ssl_fill_stats, |
| 175 | .stats = ssl_stats, |
| 176 | .stats_count = SSL_ST_STATS_COUNT, |
| 177 | .counters = &ssl_counters, |
| 178 | .counters_size = sizeof(ssl_counters), |
| 179 | .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV), |
| 180 | .clearable = 1, |
| 181 | }; |
| 182 | |
| 183 | INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module); |
| 184 | |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 185 | /* ssl_sock_io_cb is exported to see it resolved in "show fd" */ |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 186 | struct task *ssl_sock_io_cb(struct task *, void *, unsigned int); |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 187 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 188 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 189 | /* Methods to implement OpenSSL BIO */ |
| 190 | static int ha_ssl_write(BIO *h, const char *buf, int num) |
| 191 | { |
| 192 | struct buffer tmpbuf; |
| 193 | struct ssl_sock_ctx *ctx; |
| 194 | int ret; |
| 195 | |
| 196 | ctx = BIO_get_data(h); |
| 197 | tmpbuf.size = num; |
| 198 | tmpbuf.area = (void *)(uintptr_t)buf; |
| 199 | tmpbuf.data = num; |
| 200 | tmpbuf.head = 0; |
| 201 | ret = ctx->xprt->snd_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, num, 0); |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 202 | if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_WR_SH))) { |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 203 | BIO_set_retry_write(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 204 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 205 | } else if (ret == 0) |
| 206 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 207 | return ret; |
| 208 | } |
| 209 | |
| 210 | static int ha_ssl_gets(BIO *h, char *buf, int size) |
| 211 | { |
| 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | static int ha_ssl_puts(BIO *h, const char *str) |
| 217 | { |
| 218 | |
| 219 | return ha_ssl_write(h, str, strlen(str)); |
| 220 | } |
| 221 | |
| 222 | static int ha_ssl_read(BIO *h, char *buf, int size) |
| 223 | { |
| 224 | struct buffer tmpbuf; |
| 225 | struct ssl_sock_ctx *ctx; |
| 226 | int ret; |
| 227 | |
| 228 | ctx = BIO_get_data(h); |
| 229 | tmpbuf.size = size; |
| 230 | tmpbuf.area = buf; |
| 231 | tmpbuf.data = 0; |
| 232 | tmpbuf.head = 0; |
| 233 | ret = ctx->xprt->rcv_buf(ctx->conn, ctx->xprt_ctx, &tmpbuf, size, 0); |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 234 | if (ret == 0 && !(ctx->conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH))) { |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 235 | BIO_set_retry_read(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 236 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 237 | } else if (ret == 0) |
| 238 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 239 | |
| 240 | return ret; |
| 241 | } |
| 242 | |
| 243 | static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2) |
| 244 | { |
| 245 | int ret = 0; |
| 246 | switch (cmd) { |
| 247 | case BIO_CTRL_DUP: |
| 248 | case BIO_CTRL_FLUSH: |
| 249 | ret = 1; |
| 250 | break; |
| 251 | } |
| 252 | return ret; |
| 253 | } |
| 254 | |
| 255 | static int ha_ssl_new(BIO *h) |
| 256 | { |
| 257 | BIO_set_init(h, 1); |
| 258 | BIO_set_data(h, NULL); |
| 259 | BIO_clear_flags(h, ~0); |
| 260 | return 1; |
| 261 | } |
| 262 | |
| 263 | static int ha_ssl_free(BIO *data) |
| 264 | { |
| 265 | |
| 266 | return 1; |
| 267 | } |
| 268 | |
| 269 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 270 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 271 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 272 | static HA_RWLOCK_T *ssl_rwlocks; |
| 273 | |
| 274 | |
| 275 | unsigned long ssl_id_function(void) |
| 276 | { |
| 277 | return (unsigned long)tid; |
| 278 | } |
| 279 | |
| 280 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 281 | { |
| 282 | if (mode & CRYPTO_LOCK) { |
| 283 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 284 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 285 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 286 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 287 | } |
| 288 | else { |
| 289 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 290 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 291 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 292 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 293 | } |
| 294 | } |
| 295 | |
| 296 | static int ssl_locking_init(void) |
| 297 | { |
| 298 | int i; |
| 299 | |
| 300 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 301 | if (!ssl_rwlocks) |
| 302 | return -1; |
| 303 | |
| 304 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 305 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 306 | |
| 307 | CRYPTO_set_id_callback(ssl_id_function); |
| 308 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 309 | |
| 310 | return 0; |
| 311 | } |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 312 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 313 | #endif |
| 314 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 315 | __decl_thread(HA_SPINLOCK_T ckch_lock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 316 | |
William Lallemand | bc6ca7c | 2019-10-29 23:48:19 +0100 | [diff] [blame] | 317 | |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 318 | |
| 319 | /* mimic what X509_STORE_load_locations do with store_ctx */ |
| 320 | static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path) |
| 321 | { |
Remi Tricot-Le Breton | d75b99e | 2021-05-17 11:45:55 +0200 | [diff] [blame] | 322 | X509_STORE *store = NULL; |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 323 | struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0); |
| 324 | if (ca_e) |
| 325 | store = ca_e->ca_store; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 326 | if (store_ctx && store) { |
| 327 | int i; |
| 328 | X509_OBJECT *obj; |
| 329 | STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store); |
| 330 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 331 | obj = sk_X509_OBJECT_value(objs, i); |
| 332 | switch (X509_OBJECT_get_type(obj)) { |
| 333 | case X509_LU_X509: |
| 334 | X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj)); |
| 335 | break; |
| 336 | case X509_LU_CRL: |
| 337 | X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj)); |
| 338 | break; |
| 339 | default: |
| 340 | break; |
| 341 | } |
| 342 | } |
| 343 | return 1; |
| 344 | } |
| 345 | return 0; |
| 346 | } |
| 347 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 348 | /* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */ |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 349 | static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path) |
| 350 | { |
| 351 | X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx); |
| 352 | return ssl_set_cert_crl_file(store_ctx, path); |
| 353 | } |
| 354 | |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 355 | /* |
| 356 | Extract CA_list from CA_file already in tree. |
| 357 | Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility. |
| 358 | Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX. |
| 359 | */ |
| 360 | static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path) |
| 361 | { |
| 362 | struct ebmb_node *eb; |
| 363 | struct cafile_entry *ca_e; |
| 364 | |
| 365 | eb = ebst_lookup(&cafile_tree, path); |
| 366 | if (!eb) |
| 367 | return NULL; |
| 368 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 369 | |
| 370 | if (ca_e->ca_list == NULL) { |
| 371 | int i; |
| 372 | unsigned long key; |
| 373 | struct eb_root ca_name_tree = EB_ROOT; |
| 374 | struct eb64_node *node, *back; |
| 375 | struct { |
| 376 | struct eb64_node node; |
| 377 | X509_NAME *xname; |
| 378 | } *ca_name; |
| 379 | STACK_OF(X509_OBJECT) *objs; |
| 380 | STACK_OF(X509_NAME) *skn; |
| 381 | X509 *x; |
| 382 | X509_NAME *xn; |
| 383 | |
| 384 | skn = sk_X509_NAME_new_null(); |
| 385 | /* take x509 from cafile_tree */ |
| 386 | objs = X509_STORE_get0_objects(ca_e->ca_store); |
| 387 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 388 | x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i)); |
| 389 | if (!x) |
| 390 | continue; |
| 391 | xn = X509_get_subject_name(x); |
| 392 | if (!xn) |
| 393 | continue; |
| 394 | /* Check for duplicates. */ |
| 395 | key = X509_NAME_hash(xn); |
| 396 | for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL; |
| 397 | node && ca_name == NULL; |
| 398 | node = eb64_next(node)) { |
| 399 | ca_name = container_of(node, typeof(*ca_name), node); |
| 400 | if (X509_NAME_cmp(xn, ca_name->xname) != 0) |
| 401 | ca_name = NULL; |
| 402 | } |
| 403 | /* find a duplicate */ |
| 404 | if (ca_name) |
| 405 | continue; |
| 406 | ca_name = calloc(1, sizeof *ca_name); |
| 407 | xn = X509_NAME_dup(xn); |
| 408 | if (!ca_name || |
| 409 | !xn || |
| 410 | !sk_X509_NAME_push(skn, xn)) { |
| 411 | free(ca_name); |
| 412 | X509_NAME_free(xn); |
| 413 | sk_X509_NAME_pop_free(skn, X509_NAME_free); |
| 414 | sk_X509_NAME_free(skn); |
| 415 | skn = NULL; |
| 416 | break; |
| 417 | } |
| 418 | ca_name->node.key = key; |
| 419 | ca_name->xname = xn; |
| 420 | eb64_insert(&ca_name_tree, &ca_name->node); |
| 421 | } |
| 422 | ca_e->ca_list = skn; |
| 423 | /* remove temporary ca_name tree */ |
| 424 | node = eb64_first(&ca_name_tree); |
| 425 | while (node) { |
| 426 | ca_name = container_of(node, typeof(*ca_name), node); |
| 427 | back = eb64_next(node); |
| 428 | eb64_delete(node); |
| 429 | free(ca_name); |
| 430 | node = back; |
| 431 | } |
| 432 | } |
| 433 | return ca_e->ca_list; |
| 434 | } |
| 435 | |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 436 | struct pool_head *pool_head_ssl_capture __read_mostly = NULL; |
William Lallemand | 15e1694 | 2020-05-15 00:25:08 +0200 | [diff] [blame] | 437 | int ssl_capture_ptr_index = -1; |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 438 | int ssl_app_data_index = -1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 439 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 440 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 441 | int ssl_keylog_index = -1; |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 442 | struct pool_head *pool_head_ssl_keylog __read_mostly = NULL; |
| 443 | struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL; |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 444 | #endif |
| 445 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 446 | int ssl_client_crt_ref_index = -1; |
| 447 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 448 | /* Used to store the client's SNI in case of ClientHello callback error */ |
| 449 | int ssl_client_sni_index = -1; |
| 450 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 451 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 452 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 453 | #endif |
| 454 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 455 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 456 | unsigned int openssl_engines_initialized; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 457 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 458 | struct ssl_engine_list { |
| 459 | struct list list; |
| 460 | ENGINE *e; |
| 461 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 462 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 463 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 464 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 465 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 466 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 467 | static DH *local_dh_1024 = NULL; |
| 468 | static DH *local_dh_2048 = NULL; |
| 469 | static DH *local_dh_4096 = NULL; |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 470 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 471 | #endif /* OPENSSL_NO_DH */ |
| 472 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 473 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 474 | /* X509V3 Extensions that will be added on generated certificates */ |
| 475 | #define X509V3_EXT_SIZE 5 |
| 476 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 477 | "basicConstraints", |
| 478 | "nsComment", |
| 479 | "subjectKeyIdentifier", |
| 480 | "authorityKeyIdentifier", |
| 481 | "keyUsage", |
| 482 | }; |
| 483 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 484 | "CA:FALSE", |
| 485 | "\"OpenSSL Generated Certificate\"", |
| 486 | "hash", |
| 487 | "keyid,issuer:always", |
| 488 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 489 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 490 | /* LRU cache to store generated certificate */ |
| 491 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 492 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 493 | static unsigned int ssl_ctx_serial; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 494 | __decl_rwlock(ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 495 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 496 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 497 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 498 | /* The order here matters for picking a default context, |
| 499 | * keep the most common keytype at the bottom of the list |
| 500 | */ |
| 501 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 502 | "dsa", |
| 503 | "ecdsa", |
| 504 | "rsa" |
| 505 | }; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 506 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 507 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 508 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 509 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 510 | /* Dedicated callback functions for heartbeat and clienthello. |
| 511 | */ |
| 512 | #ifdef TLS1_RT_HEARTBEAT |
| 513 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 514 | int content_type, const void *buf, size_t len, |
| 515 | SSL *ssl); |
| 516 | #endif |
| 517 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 518 | int content_type, const void *buf, size_t len, |
| 519 | SSL *ssl); |
| 520 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 521 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 522 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 523 | int content_type, const void *buf, size_t len, |
| 524 | SSL *ssl); |
| 525 | #endif |
| 526 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 527 | /* List head of all registered SSL/TLS protocol message callbacks. */ |
| 528 | struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks); |
| 529 | |
| 530 | /* Registers the function <func> in order to be called on SSL/TLS protocol |
| 531 | * message processing. It will return 0 if the function <func> is not set |
| 532 | * or if it fails to allocate memory. |
| 533 | */ |
| 534 | int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func) |
| 535 | { |
| 536 | struct ssl_sock_msg_callback *cbk; |
| 537 | |
| 538 | if (!func) |
| 539 | return 0; |
| 540 | |
| 541 | cbk = calloc(1, sizeof(*cbk)); |
| 542 | if (!cbk) { |
| 543 | ha_alert("out of memory in ssl_sock_register_msg_callback().\n"); |
| 544 | return 0; |
| 545 | } |
| 546 | |
| 547 | cbk->func = func; |
| 548 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 549 | LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 550 | |
| 551 | return 1; |
| 552 | } |
| 553 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 554 | /* Used to register dedicated SSL/TLS protocol message callbacks. |
| 555 | */ |
| 556 | static int ssl_sock_register_msg_callbacks(void) |
| 557 | { |
| 558 | #ifdef TLS1_RT_HEARTBEAT |
| 559 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat)) |
| 560 | return ERR_ABORT; |
| 561 | #endif |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 562 | if (global_ssl.capture_buffer_size > 0) { |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 563 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello)) |
| 564 | return ERR_ABORT; |
| 565 | } |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 566 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 567 | if (global_ssl.keylog > 0) { |
| 568 | if (!ssl_sock_register_msg_callback(ssl_init_keylog)) |
| 569 | return ERR_ABORT; |
| 570 | } |
| 571 | #endif |
| 572 | |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 573 | return ERR_NONE; |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 574 | } |
| 575 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 576 | /* Used to free all SSL/TLS protocol message callbacks that were |
| 577 | * registered by using ssl_sock_register_msg_callback(). |
| 578 | */ |
| 579 | static void ssl_sock_unregister_msg_callbacks(void) |
| 580 | { |
| 581 | struct ssl_sock_msg_callback *cbk, *cbkback; |
| 582 | |
| 583 | list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 584 | LIST_DELETE(&cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 585 | free(cbk); |
| 586 | } |
| 587 | } |
| 588 | |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 589 | SSL *ssl_sock_get_ssl_object(struct connection *conn) |
| 590 | { |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 591 | if (!conn_is_ssl(conn)) |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 592 | return NULL; |
| 593 | |
| 594 | return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl; |
| 595 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 596 | /* |
| 597 | * This function gives the detail of the SSL error. It is used only |
| 598 | * if the debug mode and the verbose mode are activated. It dump all |
| 599 | * the SSL error until the stack was empty. |
| 600 | */ |
| 601 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 602 | { |
| 603 | unsigned long ret; |
| 604 | |
| 605 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 606 | while(1) { |
| 607 | ret = ERR_get_error(); |
| 608 | if (ret == 0) |
| 609 | return; |
Willy Tarreau | 566cebc | 2021-03-02 19:32:39 +0100 | [diff] [blame] | 610 | fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n", |
| 611 | conn->handle.fd, ret, |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 612 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 613 | } |
| 614 | } |
| 615 | } |
| 616 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 617 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 618 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 619 | int ssl_init_single_engine(const char *engine_id, const char *def_algorithms) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 620 | { |
| 621 | int err_code = ERR_ABORT; |
| 622 | ENGINE *engine; |
| 623 | struct ssl_engine_list *el; |
| 624 | |
| 625 | /* grab the structural reference to the engine */ |
| 626 | engine = ENGINE_by_id(engine_id); |
| 627 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 628 | ha_alert("ssl-engine %s: failed to get structural reference\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 629 | goto fail_get; |
| 630 | } |
| 631 | |
| 632 | if (!ENGINE_init(engine)) { |
| 633 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 634 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 635 | goto fail_init; |
| 636 | } |
| 637 | |
| 638 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 639 | ha_alert("ssl-engine %s: failed on ENGINE_set_default_string\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 640 | goto fail_set_method; |
| 641 | } |
| 642 | |
| 643 | el = calloc(1, sizeof(*el)); |
Remi Tricot-Le Breton | 612b2c3 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 644 | if (!el) |
| 645 | goto fail_alloc; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 646 | el->e = engine; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 647 | LIST_INSERT(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 648 | nb_engines++; |
| 649 | if (global_ssl.async) |
| 650 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 651 | return 0; |
| 652 | |
Remi Tricot-Le Breton | 612b2c3 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 653 | fail_alloc: |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 654 | fail_set_method: |
| 655 | /* release the functional reference from ENGINE_init() */ |
| 656 | ENGINE_finish(engine); |
| 657 | |
| 658 | fail_init: |
| 659 | /* release the structural reference from ENGINE_by_id() */ |
| 660 | ENGINE_free(engine); |
| 661 | |
| 662 | fail_get: |
| 663 | return err_code; |
| 664 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 665 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 666 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 667 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 668 | /* |
| 669 | * openssl async fd handler |
| 670 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 671 | void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 672 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 673 | struct ssl_sock_ctx *ctx = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 674 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 675 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 676 | * to poll this fd until it is requested |
| 677 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 678 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 679 | fd_cant_recv(fd); |
| 680 | |
| 681 | /* crypto engine is available, let's notify the associated |
| 682 | * connection that it can pursue its processing. |
| 683 | */ |
Olivier Houchard | a459826 | 2020-09-15 22:16:02 +0200 | [diff] [blame] | 684 | tasklet_wakeup(ctx->wait_event.tasklet); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 687 | /* |
| 688 | * openssl async delayed SSL_free handler |
| 689 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 690 | void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 691 | { |
| 692 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 693 | OSSL_ASYNC_FD all_fd[32]; |
| 694 | size_t num_all_fds = 0; |
| 695 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 696 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 697 | /* We suppose that the async job for a same SSL * |
| 698 | * are serialized. So if we are awake it is |
| 699 | * because the running job has just finished |
| 700 | * and we can remove all async fds safely |
| 701 | */ |
| 702 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 703 | if (num_all_fds > 32) { |
| 704 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 705 | return; |
| 706 | } |
| 707 | |
| 708 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
| 709 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 710 | fd_stop_both(all_fd[i]); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 711 | |
| 712 | /* Now we can safely call SSL_free, no more pending job in engines */ |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 713 | SSL_free(ssl); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 714 | _HA_ATOMIC_DEC(&global.sslconns); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 715 | _HA_ATOMIC_DEC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 716 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 717 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 718 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 719 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 720 | */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 721 | static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 722 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 723 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 724 | OSSL_ASYNC_FD del_fd[32]; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 725 | SSL *ssl = ctx->ssl; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 726 | size_t num_add_fds = 0; |
| 727 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 728 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 729 | |
| 730 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 731 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 732 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 733 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 734 | return; |
| 735 | } |
| 736 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 737 | SSL_get_changed_async_fds(ssl, add_fd, &num_add_fds, del_fd, &num_del_fds); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 738 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 739 | /* We remove unused fds from the fdtab */ |
| 740 | for (i=0 ; i < num_del_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 741 | fd_stop_both(del_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 742 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 743 | /* We add new fds to the fdtab */ |
| 744 | for (i=0 ; i < num_add_fds ; i++) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 745 | fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 748 | num_add_fds = 0; |
| 749 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 750 | if (num_add_fds > 32) { |
| 751 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 752 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 753 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 754 | |
| 755 | /* We activate the polling for all known async fds */ |
| 756 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 757 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 758 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 759 | /* To ensure that the fd cache won't be used |
| 760 | * We'll prefer to catch a real RD event |
| 761 | * because handling an EAGAIN on this fd will |
| 762 | * result in a context switch and also |
| 763 | * some engines uses a fd in blocking mode. |
| 764 | */ |
| 765 | fd_cant_recv(add_fd[i]); |
| 766 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 767 | |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 768 | } |
| 769 | #endif |
| 770 | |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 771 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP && !defined HAVE_ASN1_TIME_TO_TM) |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 772 | /* |
| 773 | * This function returns the number of seconds elapsed |
| 774 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 775 | * date presented un ASN1_GENERALIZEDTIME. |
| 776 | * |
| 777 | * In parsing error case, it returns -1. |
| 778 | */ |
| 779 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 780 | { |
| 781 | long epoch; |
| 782 | char *p, *end; |
| 783 | const unsigned short month_offset[12] = { |
| 784 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 785 | }; |
Remi Tricot-Le Breton | a3a0cce | 2021-06-09 17:16:18 +0200 | [diff] [blame] | 786 | unsigned long year, month; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 787 | |
| 788 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 789 | |
| 790 | p = (char *)d->data; |
| 791 | end = p + d->length; |
| 792 | |
| 793 | if (end - p < 4) return -1; |
| 794 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 795 | p += 4; |
| 796 | if (end - p < 2) return -1; |
| 797 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 798 | if (month < 1 || month > 12) return -1; |
| 799 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 800 | We consider leap years and the current month (<marsh or not) */ |
| 801 | epoch = ( ((year - 1970) * 365) |
| 802 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 803 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 804 | + month_offset[month-1] |
| 805 | ) * 24 * 60 * 60; |
| 806 | p += 2; |
| 807 | if (end - p < 2) return -1; |
| 808 | /* Add the number of seconds of completed days of current month */ |
| 809 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 810 | p += 2; |
| 811 | if (end - p < 2) return -1; |
| 812 | /* Add the completed hours of the current day */ |
| 813 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 814 | p += 2; |
| 815 | if (end - p < 2) return -1; |
| 816 | /* Add the completed minutes of the current hour */ |
| 817 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 818 | p += 2; |
| 819 | if (p == end) return -1; |
| 820 | /* Test if there is available seconds */ |
| 821 | if (p[0] < '0' || p[0] > '9') |
| 822 | goto nosec; |
| 823 | if (end - p < 2) return -1; |
| 824 | /* Add the seconds of the current minute */ |
| 825 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 826 | p += 2; |
| 827 | if (p == end) return -1; |
| 828 | /* Ignore seconds float part if present */ |
| 829 | if (p[0] == '.') { |
| 830 | do { |
| 831 | if (++p == end) return -1; |
| 832 | } while (p[0] >= '0' && p[0] <= '9'); |
| 833 | } |
| 834 | |
| 835 | nosec: |
| 836 | if (p[0] == 'Z') { |
| 837 | if (end - p != 1) return -1; |
| 838 | return epoch; |
| 839 | } |
| 840 | else if (p[0] == '+') { |
| 841 | if (end - p != 5) return -1; |
| 842 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 843 | return epoch - ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 844 | } |
| 845 | else if (p[0] == '-') { |
| 846 | if (end - p != 5) return -1; |
| 847 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 848 | return epoch + ((10 * (p[1] - '0') + p[2] - '0') * 60 * 60 + (10 * (p[3] - '0') + p[4] - '0')) * 60; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 849 | } |
| 850 | |
| 851 | return -1; |
| 852 | } |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 853 | #endif |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 854 | |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 855 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 856 | /* |
| 857 | * struct alignment works here such that the key.key is the same as key_data |
| 858 | * Do not change the placement of key_data |
| 859 | */ |
| 860 | struct certificate_ocsp { |
| 861 | struct ebmb_node key; |
| 862 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
Remi Tricot-Le Breton | 5aa1dce | 2021-06-10 13:51:12 +0200 | [diff] [blame] | 863 | unsigned int key_length; |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 864 | struct buffer response; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 865 | int refcount; |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 866 | long expire; |
| 867 | }; |
| 868 | |
| 869 | struct ocsp_cbk_arg { |
| 870 | int is_single; |
| 871 | int single_kt; |
| 872 | union { |
| 873 | struct certificate_ocsp *s_ocsp; |
| 874 | /* |
| 875 | * m_ocsp will have multiple entries dependent on key type |
| 876 | * Entry 0 - DSA |
| 877 | * Entry 1 - ECDSA |
| 878 | * Entry 2 - RSA |
| 879 | */ |
| 880 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 881 | }; |
| 882 | }; |
| 883 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 884 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 885 | |
| 886 | /* This function starts to check if the OCSP response (in DER format) contained |
| 887 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 888 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 889 | * contained in the OCSP Response and exits on error if no match. |
| 890 | * If it's a valid OCSP Response: |
| 891 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 892 | * pointed by 'ocsp'. |
| 893 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 894 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 895 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 896 | * already present in the container, it will be overwritten. |
| 897 | * |
| 898 | * Note: OCSP response containing more than one OCSP Single response is not |
| 899 | * considered valid. |
| 900 | * |
| 901 | * Returns 0 on success, 1 in error case. |
| 902 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 903 | static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response, |
| 904 | struct certificate_ocsp *ocsp, |
| 905 | OCSP_CERTID *cid, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 906 | { |
| 907 | OCSP_RESPONSE *resp; |
| 908 | OCSP_BASICRESP *bs = NULL; |
| 909 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 910 | OCSP_CERTID *id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 911 | unsigned char *p = (unsigned char *) ocsp_response->area; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 912 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 913 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 914 | int reason; |
| 915 | int ret = 1; |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 916 | #ifdef HAVE_ASN1_TIME_TO_TM |
| 917 | struct tm nextupd_tm = {0}; |
| 918 | #endif |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 919 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 920 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, |
| 921 | ocsp_response->data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 922 | if (!resp) { |
| 923 | memprintf(err, "Unable to parse OCSP response"); |
| 924 | goto out; |
| 925 | } |
| 926 | |
| 927 | rc = OCSP_response_status(resp); |
| 928 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 929 | memprintf(err, "OCSP response status not successful"); |
| 930 | goto out; |
| 931 | } |
| 932 | |
| 933 | bs = OCSP_response_get1_basic(resp); |
| 934 | if (!bs) { |
| 935 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 936 | goto out; |
| 937 | } |
| 938 | |
| 939 | count_sr = OCSP_resp_count(bs); |
| 940 | if (count_sr > 1) { |
| 941 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 942 | goto out; |
| 943 | } |
| 944 | |
| 945 | sr = OCSP_resp_get0(bs, 0); |
| 946 | if (!sr) { |
| 947 | memprintf(err, "Failed to get OCSP single response"); |
| 948 | goto out; |
| 949 | } |
| 950 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 951 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 952 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 953 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
Emmanuel Hocdet | ef60705 | 2017-10-24 14:57:16 +0200 | [diff] [blame] | 954 | if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) { |
Emmanuel Hocdet | 872085c | 2017-10-10 15:18:52 +0200 | [diff] [blame] | 955 | memprintf(err, "OCSP single response: certificate status is unknown"); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 956 | goto out; |
| 957 | } |
| 958 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 959 | if (!nextupd) { |
| 960 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 961 | goto out; |
| 962 | } |
| 963 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 964 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 965 | if (!rc) { |
| 966 | memprintf(err, "OCSP single response: no longer valid."); |
| 967 | goto out; |
| 968 | } |
| 969 | |
| 970 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 971 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 972 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 973 | goto out; |
| 974 | } |
| 975 | } |
| 976 | |
| 977 | if (!ocsp) { |
| 978 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 979 | unsigned char *p; |
| 980 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 981 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 982 | if (!rc) { |
| 983 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 984 | goto out; |
| 985 | } |
| 986 | |
| 987 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 988 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 989 | goto out; |
| 990 | } |
| 991 | |
| 992 | p = key; |
| 993 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 994 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 995 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 996 | if (!ocsp) { |
| 997 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 998 | goto out; |
| 999 | } |
| 1000 | } |
| 1001 | |
| 1002 | /* According to comments on "chunk_dup", the |
| 1003 | previous chunk buffer will be freed */ |
| 1004 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 1005 | memprintf(err, "OCSP response: Memory allocation error"); |
| 1006 | goto out; |
| 1007 | } |
| 1008 | |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 1009 | #ifdef HAVE_ASN1_TIME_TO_TM |
| 1010 | if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) { |
| 1011 | memprintf(err, "OCSP single response: Invalid \"Next Update\" time"); |
| 1012 | goto out; |
| 1013 | } |
| 1014 | ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 1015 | #else |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1016 | ocsp->expire = asn1_generalizedtime_to_epoch(nextupd) - OCSP_MAX_RESPONSE_TIME_SKEW; |
Remi Tricot-Le Breton | a3a0cce | 2021-06-09 17:16:18 +0200 | [diff] [blame] | 1017 | if (ocsp->expire < 0) { |
| 1018 | memprintf(err, "OCSP single response: Invalid \"Next Update\" time"); |
| 1019 | goto out; |
| 1020 | } |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 1021 | #endif |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1022 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1023 | ret = 0; |
| 1024 | out: |
Janusz Dziemidowicz | 8d71049 | 2017-03-08 16:59:41 +0100 | [diff] [blame] | 1025 | ERR_clear_error(); |
| 1026 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1027 | if (bs) |
| 1028 | OCSP_BASICRESP_free(bs); |
| 1029 | |
| 1030 | if (resp) |
| 1031 | OCSP_RESPONSE_free(resp); |
| 1032 | |
| 1033 | return ret; |
| 1034 | } |
| 1035 | /* |
| 1036 | * External function use to update the OCSP response in the OCSP response's |
| 1037 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 1038 | * to update in DER format. |
| 1039 | * |
| 1040 | * Returns 0 on success, 1 in error case. |
| 1041 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1042 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1043 | { |
| 1044 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 1045 | } |
| 1046 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1047 | #endif |
| 1048 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1049 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 1050 | static 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) |
| 1051 | { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1052 | struct tls_keys_ref *ref; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1053 | union tls_sess_key *keys; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1054 | struct connection *conn; |
| 1055 | int head; |
| 1056 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1057 | int ret = -1; /* error by default */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1058 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1059 | conn = SSL_get_ex_data(s, ssl_app_data_index); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1060 | ref = __objt_listener(conn->target)->bind_conf->keys_ref; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1061 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1062 | |
| 1063 | keys = ref->tlskeys; |
| 1064 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1065 | |
| 1066 | if (enc) { |
| 1067 | memcpy(key_name, keys[head].name, 16); |
| 1068 | |
| 1069 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1070 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1071 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1072 | if (ref->key_size_bits == 128) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1073 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1074 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv)) |
| 1075 | goto end; |
| 1076 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1077 | HMAC_Init_ex(hctx, keys[head].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1078 | ret = 1; |
| 1079 | } |
| 1080 | else if (ref->key_size_bits == 256 ) { |
| 1081 | |
| 1082 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv)) |
| 1083 | goto end; |
| 1084 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1085 | HMAC_Init_ex(hctx, keys[head].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1086 | ret = 1; |
| 1087 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1088 | } else { |
| 1089 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 1090 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 1091 | goto found; |
| 1092 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1093 | ret = 0; |
| 1094 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1095 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1096 | found: |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1097 | if (ref->key_size_bits == 128) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1098 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_128.hmac_key, 16, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1099 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv)) |
| 1100 | goto end; |
| 1101 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1102 | ret = i ? 2 : 1; |
| 1103 | } |
| 1104 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1105 | HMAC_Init_ex(hctx, keys[(head + i) % TLS_TICKETS_NO].key_256.hmac_key, 32, TLS_TICKET_HASH_FUNCT(), NULL); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1106 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv)) |
| 1107 | goto end; |
| 1108 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1109 | ret = i ? 2 : 1; |
| 1110 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1111 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1112 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1113 | end: |
| 1114 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1115 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 1119 | { |
| 1120 | struct tls_keys_ref *ref; |
| 1121 | |
| 1122 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1123 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 1124 | return ref; |
| 1125 | return NULL; |
| 1126 | } |
| 1127 | |
| 1128 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 1129 | { |
| 1130 | struct tls_keys_ref *ref; |
| 1131 | |
| 1132 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1133 | if (ref->unique_id == unique_id) |
| 1134 | return ref; |
| 1135 | return NULL; |
| 1136 | } |
| 1137 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1138 | /* Update the key into ref: if keysize doesn't |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1139 | * match existing ones, this function returns -1 |
| 1140 | * else it returns 0 on success. |
| 1141 | */ |
| 1142 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1143 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1144 | { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1145 | if (ref->key_size_bits == 128) { |
| 1146 | if (tlskey->data != sizeof(struct tls_sess_key_128)) |
| 1147 | return -1; |
| 1148 | } |
| 1149 | else if (ref->key_size_bits == 256) { |
| 1150 | if (tlskey->data != sizeof(struct tls_sess_key_256)) |
| 1151 | return -1; |
| 1152 | } |
| 1153 | else |
| 1154 | return -1; |
| 1155 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1156 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1157 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 1158 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1159 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 1160 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1161 | |
| 1162 | return 0; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1163 | } |
| 1164 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1165 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1166 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1167 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 1168 | |
| 1169 | if(!ref) { |
| 1170 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 1171 | return 1; |
| 1172 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1173 | if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) { |
| 1174 | memprintf(err, "Invalid key size"); |
| 1175 | return 1; |
| 1176 | } |
| 1177 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1178 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1179 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1180 | |
| 1181 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1182 | * automatic ids. It's called just after the basic checks. It returns |
| 1183 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1184 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1185 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1186 | { |
| 1187 | int i = 0; |
| 1188 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 1189 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 1190 | |
| 1191 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 1192 | if (ref->unique_id == -1) { |
| 1193 | /* Look for the first free id. */ |
| 1194 | while (1) { |
| 1195 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 1196 | if (ref2->unique_id == i) { |
| 1197 | i++; |
| 1198 | break; |
| 1199 | } |
| 1200 | } |
| 1201 | if (&ref2->list == &tlskeys_reference) |
| 1202 | break; |
| 1203 | } |
| 1204 | |
| 1205 | /* Uses the unique id and increment it for the next entry. */ |
| 1206 | ref->unique_id = i; |
| 1207 | i++; |
| 1208 | } |
| 1209 | } |
| 1210 | |
| 1211 | /* This sort the reference list by id. */ |
| 1212 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1213 | LIST_DELETE(&ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1214 | list_for_each_entry(ref3, &tkr, list) { |
| 1215 | if (ref->unique_id < ref3->unique_id) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1216 | LIST_APPEND(&ref3->list, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1217 | break; |
| 1218 | } |
| 1219 | } |
| 1220 | if (&ref3->list == &tkr) |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1221 | LIST_APPEND(&tkr, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1222 | } |
| 1223 | |
| 1224 | /* swap root */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1225 | LIST_INSERT(&tkr, &tlskeys_reference); |
| 1226 | LIST_DELETE(&tkr); |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1227 | return ERR_NONE; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1228 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1229 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 1230 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1231 | #ifndef OPENSSL_NO_OCSP |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1232 | int ocsp_ex_index = -1; |
| 1233 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1234 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 1235 | { |
| 1236 | switch (evp_keytype) { |
| 1237 | case EVP_PKEY_RSA: |
| 1238 | return 2; |
| 1239 | case EVP_PKEY_DSA: |
| 1240 | return 0; |
| 1241 | case EVP_PKEY_EC: |
| 1242 | return 1; |
| 1243 | } |
| 1244 | |
| 1245 | return -1; |
| 1246 | } |
| 1247 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1248 | /* |
| 1249 | * Callback used to set OCSP status extension content in server hello. |
| 1250 | */ |
| 1251 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 1252 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1253 | struct certificate_ocsp *ocsp; |
| 1254 | struct ocsp_cbk_arg *ocsp_arg; |
| 1255 | char *ssl_buf; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1256 | SSL_CTX *ctx; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1257 | EVP_PKEY *ssl_pkey; |
| 1258 | int key_type; |
| 1259 | int index; |
| 1260 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1261 | ctx = SSL_get_SSL_CTX(ssl); |
| 1262 | if (!ctx) |
| 1263 | return SSL_TLSEXT_ERR_NOACK; |
| 1264 | |
| 1265 | ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
| 1266 | if (!ocsp_arg) |
| 1267 | return SSL_TLSEXT_ERR_NOACK; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1268 | |
| 1269 | ssl_pkey = SSL_get_privatekey(ssl); |
| 1270 | if (!ssl_pkey) |
| 1271 | return SSL_TLSEXT_ERR_NOACK; |
| 1272 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1273 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1274 | |
| 1275 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 1276 | ocsp = ocsp_arg->s_ocsp; |
| 1277 | else { |
| 1278 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 1279 | * the certificate type |
| 1280 | */ |
| 1281 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 1282 | |
| 1283 | if (index < 0) |
| 1284 | return SSL_TLSEXT_ERR_NOACK; |
| 1285 | |
| 1286 | ocsp = ocsp_arg->m_ocsp[index]; |
| 1287 | |
| 1288 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1289 | |
| 1290 | if (!ocsp || |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1291 | !ocsp->response.area || |
| 1292 | !ocsp->response.data || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1293 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1294 | return SSL_TLSEXT_ERR_NOACK; |
| 1295 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1296 | ssl_buf = OPENSSL_malloc(ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1297 | if (!ssl_buf) |
| 1298 | return SSL_TLSEXT_ERR_NOACK; |
| 1299 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1300 | memcpy(ssl_buf, ocsp->response.area, ocsp->response.data); |
| 1301 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1302 | |
| 1303 | return SSL_TLSEXT_ERR_OK; |
| 1304 | } |
| 1305 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1306 | #endif |
| 1307 | |
Ilya Shipitsin | b3201a3 | 2020-10-18 09:11:50 +0500 | [diff] [blame] | 1308 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1309 | |
| 1310 | |
| 1311 | /* |
| 1312 | * Decrease the refcount of the struct ocsp_response and frees it if it's not |
| 1313 | * used anymore. Also removes it from the tree if free'd. |
| 1314 | */ |
| 1315 | static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp) |
| 1316 | { |
| 1317 | if (!ocsp) |
| 1318 | return; |
| 1319 | |
| 1320 | ocsp->refcount--; |
| 1321 | if (ocsp->refcount <= 0) { |
| 1322 | ebmb_delete(&ocsp->key); |
| 1323 | chunk_destroy(&ocsp->response); |
| 1324 | free(ocsp); |
| 1325 | } |
| 1326 | } |
| 1327 | |
| 1328 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1329 | /* |
| 1330 | * This function enables the handling of OCSP status extension on 'ctx' if a |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1331 | * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP |
| 1332 | * status extension, the issuer's certificate is mandatory. It should be |
| 1333 | * present in ckch->ocsp_issuer. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1334 | * |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1335 | * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an |
| 1336 | * OCSP response. If file is empty or content is not a valid OCSP response, |
| 1337 | * OCSP status extension is enabled but OCSP response is ignored (a warning is |
| 1338 | * displayed). |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1339 | * |
| 1340 | * Returns 1 if no ".ocsp" file found, 0 if OCSP status extension is |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1341 | * successfully enabled, or -1 in other error case. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1342 | */ |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1343 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, STACK_OF(X509) *chain) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1344 | { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1345 | X509 *x, *issuer; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1346 | OCSP_CERTID *cid = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1347 | int i, ret = -1; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1348 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1349 | char *warn = NULL; |
| 1350 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1351 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1352 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1353 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1354 | x = ckch->cert; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1355 | if (!x) |
| 1356 | goto out; |
| 1357 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1358 | issuer = ckch->ocsp_issuer; |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1359 | /* take issuer from chain over ocsp_issuer, is what is done historicaly */ |
| 1360 | if (chain) { |
| 1361 | /* check if one of the certificate of the chain is the issuer */ |
| 1362 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1363 | X509 *ti = sk_X509_value(chain, i); |
| 1364 | if (X509_check_issued(ti, x) == X509_V_OK) { |
| 1365 | issuer = ti; |
| 1366 | break; |
| 1367 | } |
| 1368 | } |
| 1369 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1370 | if (!issuer) |
| 1371 | goto out; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1372 | |
| 1373 | cid = OCSP_cert_to_id(0, x, issuer); |
| 1374 | if (!cid) |
| 1375 | goto out; |
| 1376 | |
| 1377 | i = i2d_OCSP_CERTID(cid, NULL); |
| 1378 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1379 | goto out; |
| 1380 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1381 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1382 | if (!ocsp) |
| 1383 | goto out; |
| 1384 | |
| 1385 | p = ocsp->key_data; |
Remi Tricot-Le Breton | 5aa1dce | 2021-06-10 13:51:12 +0200 | [diff] [blame] | 1386 | ocsp->key_length = i2d_OCSP_CERTID(cid, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1387 | |
| 1388 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1389 | if (iocsp == ocsp) |
| 1390 | ocsp = NULL; |
| 1391 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1392 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1393 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1394 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1395 | #endif |
| 1396 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1397 | |
| 1398 | if (!callback) { |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1399 | struct ocsp_cbk_arg *cb_arg; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1400 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1401 | |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1402 | cb_arg = calloc(1, sizeof(*cb_arg)); |
| 1403 | if (!cb_arg) |
| 1404 | goto out; |
| 1405 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1406 | cb_arg->is_single = 1; |
| 1407 | cb_arg->s_ocsp = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1408 | iocsp->refcount++; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1409 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1410 | pkey = X509_get_pubkey(x); |
| 1411 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1412 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1413 | |
| 1414 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1415 | SSL_CTX_set_ex_data(ctx, ocsp_ex_index, cb_arg); /* we use the ex_data instead of the cb_arg function here, so we can use the cleanup callback to free */ |
| 1416 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1417 | } else { |
| 1418 | /* |
| 1419 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1420 | * Update that cb_arg with the new cert's staple |
| 1421 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1422 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1423 | struct certificate_ocsp *tmp_ocsp; |
| 1424 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1425 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1426 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1427 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1428 | cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1429 | |
| 1430 | /* |
| 1431 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1432 | * the order of operations below matter, take care when changing it |
| 1433 | */ |
| 1434 | tmp_ocsp = cb_arg->s_ocsp; |
| 1435 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1436 | cb_arg->s_ocsp = NULL; |
| 1437 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1438 | cb_arg->is_single = 0; |
| 1439 | cb_arg->single_kt = 0; |
| 1440 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1441 | pkey = X509_get_pubkey(x); |
| 1442 | key_type = EVP_PKEY_base_id(pkey); |
| 1443 | EVP_PKEY_free(pkey); |
| 1444 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1445 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1446 | if (index >= 0 && !cb_arg->m_ocsp[index]) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1447 | cb_arg->m_ocsp[index] = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1448 | iocsp->refcount++; |
| 1449 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1450 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1451 | |
| 1452 | ret = 0; |
| 1453 | |
| 1454 | warn = NULL; |
William Lallemand | 86e4d63 | 2020-08-07 00:44:32 +0200 | [diff] [blame] | 1455 | if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) { |
William Lallemand | 3b5f360 | 2019-10-16 18:05:05 +0200 | [diff] [blame] | 1456 | memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1457 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1458 | } |
| 1459 | |
| 1460 | out: |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1461 | if (cid) |
| 1462 | OCSP_CERTID_free(cid); |
| 1463 | |
| 1464 | if (ocsp) |
| 1465 | free(ocsp); |
| 1466 | |
| 1467 | if (warn) |
| 1468 | free(warn); |
| 1469 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1470 | return ret; |
| 1471 | } |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 1472 | #endif |
| 1473 | |
| 1474 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1475 | static int ssl_sock_load_ocsp(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, STACK_OF(X509) *chain) |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1476 | { |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1477 | return SSL_CTX_set_ocsp_response(ctx, (const uint8_t *)ckch->ocsp_response->area, ckch->ocsp_response->data); |
Emmanuel Hocdet | 2c32d8f | 2017-05-22 14:58:00 +0200 | [diff] [blame] | 1478 | } |
| 1479 | #endif |
| 1480 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1481 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 1482 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1483 | |
| 1484 | #define CT_EXTENSION_TYPE 18 |
| 1485 | |
William Lallemand | 03c331c | 2020-05-13 10:10:01 +0200 | [diff] [blame] | 1486 | int sctl_ex_index = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1487 | |
| 1488 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1489 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1490 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1491 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1492 | *out = (unsigned char *) sctl->area; |
| 1493 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1494 | |
| 1495 | return 1; |
| 1496 | } |
| 1497 | |
| 1498 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1499 | { |
| 1500 | return 1; |
| 1501 | } |
| 1502 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1503 | static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1504 | { |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1505 | int ret = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1506 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1507 | if (!SSL_CTX_add_server_custom_ext(ctx, CT_EXTENSION_TYPE, ssl_sock_sctl_add_cbk, NULL, sctl, ssl_sock_sctl_parse_cbk, NULL)) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1508 | goto out; |
| 1509 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1510 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1511 | |
| 1512 | ret = 0; |
| 1513 | |
| 1514 | out: |
| 1515 | return ret; |
| 1516 | } |
| 1517 | |
| 1518 | #endif |
| 1519 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1520 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1521 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1522 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1523 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1524 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1525 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1526 | |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1527 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1528 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1529 | * change this to #if and do not assign a default value to this macro! |
| 1530 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1531 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1532 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1533 | if ((conn->flags & (CO_FL_WAIT_L6_CONN | CO_FL_EARLY_SSL_HS | CO_FL_EARLY_DATA)) == 0) { |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1534 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1535 | conn->err_code = CO_ER_SSL_RENEG; |
| 1536 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1537 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1538 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1539 | |
| 1540 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1541 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1542 | /* Long certificate chains optimz |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1543 | If write and read bios are different, we |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1544 | consider that the buffering was activated, |
| 1545 | so we rise the output buffer size from 4k |
| 1546 | to 16k */ |
| 1547 | write_bio = SSL_get_wbio(ssl); |
| 1548 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1549 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1550 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1551 | } |
| 1552 | } |
| 1553 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1554 | } |
| 1555 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1556 | /* Callback is called for each certificate of the chain during a verify |
| 1557 | ok is set to 1 if preverify detect no error on current certificate. |
| 1558 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1559 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1560 | { |
| 1561 | SSL *ssl; |
| 1562 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1563 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1564 | int err, depth; |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1565 | X509 *client_crt; |
| 1566 | STACK_OF(X509) *certs; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1567 | |
| 1568 | ssl = X509_STORE_CTX_get_ex_data(x_store, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1569 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1570 | client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1571 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1572 | ctx = conn->xprt_ctx; |
| 1573 | |
| 1574 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1575 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1576 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1577 | err = X509_STORE_CTX_get_error(x_store); |
| 1578 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1579 | if (ok) /* no errors */ |
| 1580 | return ok; |
| 1581 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1582 | /* Keep a reference to the client's certificate in order to be able to |
| 1583 | * dump some fetches values in a log even when the verification process |
| 1584 | * fails. */ |
| 1585 | if (depth == 0) { |
| 1586 | X509_free(client_crt); |
| 1587 | client_crt = X509_STORE_CTX_get0_cert(x_store); |
| 1588 | if (client_crt) { |
| 1589 | X509_up_ref(client_crt); |
| 1590 | SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt); |
| 1591 | } |
| 1592 | } |
| 1593 | else { |
| 1594 | /* An error occurred on a CA certificate of the certificate |
| 1595 | * chain, we might never call this verify callback on the client |
| 1596 | * certificate's depth (which is 0) so we try to store the |
| 1597 | * reference right now. */ |
Remi Tricot-Le Breton | f95c295 | 2021-08-20 09:51:23 +0200 | [diff] [blame] | 1598 | certs = X509_STORE_CTX_get1_chain(x_store); |
| 1599 | if (certs) { |
| 1600 | client_crt = sk_X509_value(certs, 0); |
| 1601 | if (client_crt) { |
| 1602 | X509_up_ref(client_crt); |
| 1603 | SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt); |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1604 | } |
| 1605 | sk_X509_pop_free(certs, X509_free); |
| 1606 | } |
| 1607 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1608 | |
| 1609 | /* check if CA error needs to be ignored */ |
| 1610 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1611 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1612 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1613 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1614 | } |
| 1615 | |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1616 | if (err < 64 && __objt_listener(conn->target)->bind_conf->ca_ignerr & (1ULL << err)) { |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 1617 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1618 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1619 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1620 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1621 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1622 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1623 | return 0; |
| 1624 | } |
| 1625 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1626 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1627 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1628 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1629 | /* check if certificate error needs to be ignored */ |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1630 | if (err < 64 && __objt_listener(conn->target)->bind_conf->crt_ignerr & (1ULL << err)) { |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 1631 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1632 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1633 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1634 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1635 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1636 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1637 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1638 | } |
| 1639 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1640 | #ifdef TLS1_RT_HEARTBEAT |
| 1641 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 1642 | int content_type, const void *buf, size_t len, |
| 1643 | SSL *ssl) |
| 1644 | { |
| 1645 | /* test heartbeat received (write_p is set to 0 |
| 1646 | for a received record) */ |
| 1647 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
| 1648 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 1649 | const unsigned char *p = buf; |
| 1650 | unsigned int payload; |
| 1651 | |
| 1652 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
| 1653 | |
| 1654 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1655 | if (*p != TLS1_HB_REQUEST) |
| 1656 | return; |
| 1657 | |
| 1658 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
| 1659 | goto kill_it; |
| 1660 | |
| 1661 | payload = (p[1] * 256) + p[2]; |
| 1662 | if (3 + payload + 16 <= len) |
| 1663 | return; /* OK no problem */ |
| 1664 | kill_it: |
| 1665 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1666 | * advertised payload is larger than the advertised packet |
| 1667 | * length, so we have garbage in the buffer between the |
| 1668 | * payload and the end of the buffer (p+len). We can't know |
| 1669 | * if the SSL stack is patched, and we don't know if we can |
| 1670 | * safely wipe out the area between p+3+len and payload. |
| 1671 | * So instead, we prevent the response from being sent by |
| 1672 | * setting the max_send_fragment to 0 and we report an SSL |
| 1673 | * error, which will kill this connection. It will be reported |
| 1674 | * above as SSL_ERROR_SSL while an other handshake failure with |
| 1675 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1676 | */ |
| 1677 | ssl->max_send_fragment = 0; |
| 1678 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1679 | } |
| 1680 | } |
| 1681 | #endif |
| 1682 | |
| 1683 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 1684 | int content_type, const void *buf, size_t len, |
| 1685 | SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1686 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1687 | struct ssl_capture *capture; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1688 | uchar *msg; |
| 1689 | uchar *end; |
| 1690 | uchar *extensions_end; |
| 1691 | uchar *ec_start = NULL; |
| 1692 | uchar *ec_formats_start = NULL; |
| 1693 | uchar *list_end; |
| 1694 | ushort protocol_version; |
| 1695 | ushort extension_id; |
| 1696 | ushort ec_len = 0; |
| 1697 | uchar ec_formats_len = 0; |
| 1698 | int offset = 0; |
| 1699 | int rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1700 | |
| 1701 | /* This function is called for "from client" and "to server" |
| 1702 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1703 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1704 | */ |
| 1705 | |
| 1706 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1707 | * otherwise it is set to 1. |
| 1708 | */ |
| 1709 | if (write_p != 0) |
| 1710 | return; |
| 1711 | |
| 1712 | /* content_type contains the type of message received or sent |
| 1713 | * according with the SSL/TLS protocol spec. This message is |
| 1714 | * encoded with one byte. The value 256 (two bytes) is used |
| 1715 | * for designing the SSL/TLS record layer. According with the |
| 1716 | * rfc6101, the expected message (other than 256) are: |
| 1717 | * - change_cipher_spec(20) |
| 1718 | * - alert(21) |
| 1719 | * - handshake(22) |
| 1720 | * - application_data(23) |
| 1721 | * - (255) |
| 1722 | * We are interessed by the handshake and specially the client |
| 1723 | * hello. |
| 1724 | */ |
| 1725 | if (content_type != 22) |
| 1726 | return; |
| 1727 | |
| 1728 | /* The message length is at least 4 bytes, containing the |
| 1729 | * message type and the message length. |
| 1730 | */ |
| 1731 | if (len < 4) |
| 1732 | return; |
| 1733 | |
| 1734 | /* First byte of the handshake message id the type of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1735 | * message. The known types are: |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1736 | * - hello_request(0) |
| 1737 | * - client_hello(1) |
| 1738 | * - server_hello(2) |
| 1739 | * - certificate(11) |
| 1740 | * - server_key_exchange (12) |
| 1741 | * - certificate_request(13) |
| 1742 | * - server_hello_done(14) |
| 1743 | * We are interested by the client hello. |
| 1744 | */ |
| 1745 | msg = (unsigned char *)buf; |
| 1746 | if (msg[0] != 1) |
| 1747 | return; |
| 1748 | |
| 1749 | /* Next three bytes are the length of the message. The total length |
| 1750 | * must be this decoded length + 4. If the length given as argument |
| 1751 | * is not the same, we abort the protocol dissector. |
| 1752 | */ |
| 1753 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1754 | if (len < rec_len + 4) |
| 1755 | return; |
| 1756 | msg += 4; |
| 1757 | end = msg + rec_len; |
| 1758 | if (end < msg) |
| 1759 | return; |
| 1760 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1761 | /* Expect 2 bytes for protocol version |
| 1762 | * (1 byte for major and 1 byte for minor) |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1763 | */ |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1764 | if (msg + 2 > end) |
| 1765 | return; |
| 1766 | protocol_version = (msg[0] << 8) + msg[1]; |
| 1767 | msg += 2; |
| 1768 | |
| 1769 | /* Expect the random, composed by 4 bytes for the unix time and |
| 1770 | * 28 bytes for unix payload. So we jump 4 + 28. |
| 1771 | */ |
| 1772 | msg += 4 + 28; |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1773 | if (msg > end) |
| 1774 | return; |
| 1775 | |
| 1776 | /* Next, is session id: |
| 1777 | * if present, we have to jump by length + 1 for the size information |
| 1778 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1779 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1780 | if (msg[0] > 0) |
| 1781 | msg += msg[0]; |
| 1782 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1783 | if (msg > end) |
| 1784 | return; |
| 1785 | |
| 1786 | /* Next two bytes are the ciphersuite length. */ |
| 1787 | if (msg + 2 > end) |
| 1788 | return; |
| 1789 | rec_len = (msg[0] << 8) + msg[1]; |
| 1790 | msg += 2; |
| 1791 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1792 | return; |
| 1793 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1794 | capture = pool_zalloc(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1795 | if (!capture) |
| 1796 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1797 | /* Compute the xxh64 of the ciphersuite. */ |
| 1798 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1799 | |
| 1800 | /* Capture the ciphersuite. */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1801 | capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len); |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1802 | capture->ciphersuite_offset = 0; |
| 1803 | memcpy(capture->data, msg, capture->ciphersuite_len); |
| 1804 | msg += rec_len; |
| 1805 | offset += capture->ciphersuite_len; |
| 1806 | |
| 1807 | /* Initialize other data */ |
| 1808 | capture->protocol_version = protocol_version; |
| 1809 | |
| 1810 | /* Next, compression methods: |
| 1811 | * if present, we have to jump by length + 1 for the size information |
| 1812 | * if not present, we have to jump by 1 only |
| 1813 | */ |
| 1814 | if (msg[0] > 0) |
| 1815 | msg += msg[0]; |
| 1816 | msg += 1; |
| 1817 | if (msg > end) |
| 1818 | goto store_capture; |
| 1819 | |
| 1820 | /* We reached extensions */ |
| 1821 | if (msg + 2 > end) |
| 1822 | goto store_capture; |
| 1823 | rec_len = (msg[0] << 8) + msg[1]; |
| 1824 | msg += 2; |
| 1825 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1826 | goto store_capture; |
| 1827 | extensions_end = msg + rec_len; |
| 1828 | capture->extensions_offset = offset; |
| 1829 | |
| 1830 | /* Parse each extension */ |
| 1831 | while (msg + 4 < extensions_end) { |
| 1832 | /* Add 2 bytes of extension_id */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1833 | if (global_ssl.capture_buffer_size >= offset + 2) { |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1834 | capture->data[offset++] = msg[0]; |
| 1835 | capture->data[offset++] = msg[1]; |
| 1836 | capture->extensions_len += 2; |
| 1837 | } |
| 1838 | else |
| 1839 | break; |
| 1840 | extension_id = (msg[0] << 8) + msg[1]; |
| 1841 | /* Length of the extension */ |
| 1842 | rec_len = (msg[2] << 8) + msg[3]; |
| 1843 | |
| 1844 | /* Expect 2 bytes extension id + 2 bytes extension size */ |
| 1845 | msg += 2 + 2; |
| 1846 | if (msg + rec_len > extensions_end || msg + rec_len < msg) |
| 1847 | goto store_capture; |
| 1848 | /* TLS Extensions |
| 1849 | * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */ |
| 1850 | if (extension_id == 0x000a) { |
| 1851 | /* Elliptic Curves: |
| 1852 | * https://www.rfc-editor.org/rfc/rfc8422.html |
| 1853 | * https://www.rfc-editor.org/rfc/rfc7919.html */ |
| 1854 | list_end = msg + rec_len; |
| 1855 | if (msg + 2 > list_end) |
| 1856 | goto store_capture; |
| 1857 | rec_len = (msg[0] << 8) + msg[1]; |
| 1858 | msg += 2; |
| 1859 | |
| 1860 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1861 | goto store_capture; |
| 1862 | /* Store location/size of the list */ |
| 1863 | ec_start = msg; |
| 1864 | ec_len = rec_len; |
| 1865 | } |
| 1866 | else if (extension_id == 0x000b) { |
| 1867 | /* Elliptic Curves Point Formats: |
| 1868 | * https://www.rfc-editor.org/rfc/rfc8422.html */ |
| 1869 | list_end = msg + rec_len; |
| 1870 | if (msg + 1 > list_end) |
| 1871 | goto store_capture; |
| 1872 | rec_len = msg[0]; |
| 1873 | msg += 1; |
| 1874 | |
| 1875 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1876 | goto store_capture; |
| 1877 | /* Store location/size of the list */ |
| 1878 | ec_formats_start = msg; |
| 1879 | ec_formats_len = rec_len; |
| 1880 | } |
| 1881 | msg += rec_len; |
| 1882 | } |
| 1883 | |
| 1884 | if (ec_start) { |
| 1885 | rec_len = ec_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1886 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1887 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1888 | memcpy(capture->data + offset, ec_start, rec_len); |
| 1889 | capture->ec_offset = offset; |
| 1890 | capture->ec_len = rec_len; |
| 1891 | offset += rec_len; |
| 1892 | } |
| 1893 | if (ec_formats_start) { |
| 1894 | rec_len = ec_formats_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1895 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1896 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1897 | memcpy(capture->data + offset, ec_formats_start, rec_len); |
| 1898 | capture->ec_formats_offset = offset; |
| 1899 | capture->ec_formats_len = rec_len; |
| 1900 | offset += rec_len; |
| 1901 | } |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1902 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1903 | store_capture: |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1904 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1905 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1906 | |
| 1907 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 1908 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1909 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 1910 | int content_type, const void *buf, size_t len, |
| 1911 | SSL *ssl) |
| 1912 | { |
| 1913 | struct ssl_keylog *keylog; |
| 1914 | |
| 1915 | if (SSL_get_ex_data(ssl, ssl_keylog_index)) |
| 1916 | return; |
| 1917 | |
Willy Tarreau | f208ac0 | 2021-03-22 21:10:12 +0100 | [diff] [blame] | 1918 | keylog = pool_zalloc(pool_head_ssl_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1919 | if (!keylog) |
| 1920 | return; |
| 1921 | |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1922 | if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) { |
| 1923 | pool_free(pool_head_ssl_keylog, keylog); |
| 1924 | return; |
| 1925 | } |
| 1926 | } |
| 1927 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1928 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1929 | /* Callback is called for ssl protocol analyse */ |
| 1930 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1931 | { |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1932 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 1933 | struct ssl_sock_msg_callback *cbk; |
| 1934 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1935 | /* Try to call all callback functions that were registered by using |
| 1936 | * ssl_sock_register_msg_callback(). |
| 1937 | */ |
| 1938 | list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) { |
| 1939 | cbk->func(conn, write_p, version, content_type, buf, len, ssl); |
| 1940 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1941 | } |
| 1942 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1943 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1944 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1945 | const unsigned char *in, unsigned int inlen, |
| 1946 | void *arg) |
| 1947 | { |
| 1948 | struct server *srv = arg; |
| 1949 | |
| 1950 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1951 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1952 | return SSL_TLSEXT_ERR_OK; |
| 1953 | return SSL_TLSEXT_ERR_NOACK; |
| 1954 | } |
| 1955 | #endif |
| 1956 | |
| 1957 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1958 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1959 | * negotiable protocols for NPN. |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1960 | */ |
| 1961 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1962 | unsigned int *len, void *arg) |
| 1963 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1964 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1965 | |
| 1966 | *data = (const unsigned char *)conf->npn_str; |
| 1967 | *len = conf->npn_len; |
| 1968 | return SSL_TLSEXT_ERR_OK; |
| 1969 | } |
| 1970 | #endif |
| 1971 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1972 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1973 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1974 | * negotiable protocols for ALPN. |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1975 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1976 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1977 | unsigned char *outlen, |
| 1978 | const unsigned char *server, |
| 1979 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1980 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1981 | struct ssl_bind_conf *conf = arg; |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1982 | #ifdef USE_QUIC |
| 1983 | struct connection *conn = SSL_get_ex_data(s, ssl_app_data_index); |
| 1984 | #endif |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1985 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1986 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1987 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1988 | #ifdef USE_QUIC |
Frédéric Lécaille | 067a82b | 2021-11-19 17:02:20 +0100 | [diff] [blame] | 1989 | if (conn->qc) |
| 1990 | quic_set_tls_alert(conn->qc, SSL_AD_NO_APPLICATION_PROTOCOL); |
| 1991 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1992 | return SSL_TLSEXT_ERR_NOACK; |
| 1993 | } |
Frédéric Lécaille | 1761fdf | 2021-12-14 19:40:04 +0100 | [diff] [blame] | 1994 | |
| 1995 | #ifdef USE_QUIC |
| 1996 | if (conn->qc && !quic_set_app_ops(conn->qc, *out, *outlen)) { |
| 1997 | quic_set_tls_alert(conn->qc, SSL_AD_NO_APPLICATION_PROTOCOL); |
| 1998 | return SSL_TLSEXT_ERR_NOACK; |
| 1999 | } |
| 2000 | #endif |
| 2001 | |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 2002 | return SSL_TLSEXT_ERR_OK; |
| 2003 | } |
| 2004 | #endif |
| 2005 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 2006 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2007 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2008 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 2009 | /* Configure a DNS SAN extenion on a certificate. */ |
| 2010 | int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) { |
| 2011 | int failure = 0; |
| 2012 | X509_EXTENSION *san_ext = NULL; |
| 2013 | CONF *conf = NULL; |
| 2014 | struct buffer *san_name = get_trash_chunk(); |
| 2015 | |
| 2016 | conf = NCONF_new(NULL); |
| 2017 | if (!conf) { |
| 2018 | failure = 1; |
| 2019 | goto cleanup; |
| 2020 | } |
| 2021 | |
| 2022 | /* Build an extension based on the DNS entry above */ |
| 2023 | chunk_appendf(san_name, "DNS:%s", servername); |
| 2024 | san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area); |
| 2025 | if (!san_ext) { |
| 2026 | failure = 1; |
| 2027 | goto cleanup; |
| 2028 | } |
| 2029 | |
| 2030 | /* Add the extension */ |
| 2031 | if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) { |
| 2032 | failure = 1; |
| 2033 | goto cleanup; |
| 2034 | } |
| 2035 | |
| 2036 | /* Success */ |
| 2037 | failure = 0; |
| 2038 | |
| 2039 | cleanup: |
| 2040 | if (NULL != san_ext) X509_EXTENSION_free(san_ext); |
| 2041 | if (NULL != conf) NCONF_free(conf); |
| 2042 | |
| 2043 | return failure; |
| 2044 | } |
| 2045 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2046 | /* Create a X509 certificate with the specified servername and serial. This |
| 2047 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2048 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2049 | ssl_sock_do_create_cert(const char *servername, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2050 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2051 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
| 2052 | EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2053 | SSL_CTX *ssl_ctx = NULL; |
| 2054 | X509 *newcrt = NULL; |
| 2055 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2056 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2057 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2058 | X509_NAME *name; |
| 2059 | const EVP_MD *digest; |
| 2060 | X509V3_CTX ctx; |
| 2061 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2062 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2063 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 2064 | /* Get the private key of the default certificate and use it */ |
Ilya Shipitsin | af20488 | 2020-12-19 03:12:12 +0500 | [diff] [blame] | 2065 | #ifdef HAVE_SSL_CTX_get0_privatekey |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2066 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 2067 | #else |
| 2068 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 2069 | if (tmp_ssl) |
| 2070 | pkey = SSL_get_privatekey(tmp_ssl); |
| 2071 | #endif |
| 2072 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2073 | goto mkcert_error; |
| 2074 | |
| 2075 | /* Create the certificate */ |
| 2076 | if (!(newcrt = X509_new())) |
| 2077 | goto mkcert_error; |
| 2078 | |
| 2079 | /* Set version number for the certificate (X509v3) and the serial |
| 2080 | * number */ |
| 2081 | if (X509_set_version(newcrt, 2L) != 1) |
| 2082 | goto mkcert_error; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 2083 | ASN1_INTEGER_set(X509_get_serialNumber(newcrt), _HA_ATOMIC_ADD_FETCH(&ssl_ctx_serial, 1)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2084 | |
| 2085 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 2086 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 2087 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2088 | goto mkcert_error; |
| 2089 | |
| 2090 | /* set public key in the certificate */ |
| 2091 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 2092 | goto mkcert_error; |
| 2093 | |
| 2094 | /* Set issuer name from the CA */ |
| 2095 | if (!(name = X509_get_subject_name(cacert))) |
| 2096 | goto mkcert_error; |
| 2097 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 2098 | goto mkcert_error; |
| 2099 | |
| 2100 | /* Set the subject name using the same, but the CN */ |
| 2101 | name = X509_NAME_dup(name); |
| 2102 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 2103 | (const unsigned char *)servername, |
| 2104 | -1, -1, 0) != 1) { |
| 2105 | X509_NAME_free(name); |
| 2106 | goto mkcert_error; |
| 2107 | } |
| 2108 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 2109 | X509_NAME_free(name); |
| 2110 | goto mkcert_error; |
| 2111 | } |
| 2112 | X509_NAME_free(name); |
| 2113 | |
| 2114 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2115 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2116 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 2117 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 2118 | X509_EXTENSION *ext; |
| 2119 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2120 | if (!(ext = X509V3_EXT_nconf(ctmp, &ctx, x509v3_ext_names[i], x509v3_ext_values[i]))) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2121 | goto mkcert_error; |
| 2122 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 2123 | X509_EXTENSION_free(ext); |
| 2124 | goto mkcert_error; |
| 2125 | } |
| 2126 | X509_EXTENSION_free(ext); |
| 2127 | } |
| 2128 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 2129 | /* Add SAN extension */ |
| 2130 | if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) { |
| 2131 | goto mkcert_error; |
| 2132 | } |
| 2133 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2134 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2135 | |
| 2136 | key_type = EVP_PKEY_base_id(capkey); |
| 2137 | |
| 2138 | if (key_type == EVP_PKEY_DSA) |
| 2139 | digest = EVP_sha1(); |
| 2140 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2141 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2142 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2143 | digest = EVP_sha256(); |
| 2144 | else { |
Ilya Shipitsin | ec36c91 | 2021-01-07 11:57:42 +0500 | [diff] [blame] | 2145 | #ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2146 | int nid; |
| 2147 | |
| 2148 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 2149 | goto mkcert_error; |
| 2150 | if (!(digest = EVP_get_digestbynid(nid))) |
| 2151 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 2152 | #else |
| 2153 | goto mkcert_error; |
| 2154 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2155 | } |
| 2156 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2157 | if (!(X509_sign(newcrt, capkey, digest))) |
| 2158 | goto mkcert_error; |
| 2159 | |
| 2160 | /* Create and set the new SSL_CTX */ |
| 2161 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 2162 | goto mkcert_error; |
| 2163 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 2164 | goto mkcert_error; |
| 2165 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 2166 | goto mkcert_error; |
| 2167 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 2168 | goto mkcert_error; |
| 2169 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2170 | /* Build chaining the CA cert and the rest of the chain, keep these order */ |
| 2171 | #if defined(SSL_CTX_add1_chain_cert) |
| 2172 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) { |
| 2173 | goto mkcert_error; |
| 2174 | } |
| 2175 | |
| 2176 | if (bind_conf->ca_sign_ckch->chain) { |
| 2177 | for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) { |
| 2178 | X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i); |
| 2179 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) { |
| 2180 | goto mkcert_error; |
| 2181 | } |
| 2182 | } |
| 2183 | } |
| 2184 | #endif |
| 2185 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2186 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2187 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2188 | #ifndef OPENSSL_NO_DH |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2189 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2190 | #endif |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2191 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 2192 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2193 | const char *ecdhe = (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : ECDHE_DEFAULT_CURVE); |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2194 | EC_KEY *ecc; |
| 2195 | int nid; |
| 2196 | |
| 2197 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 2198 | goto end; |
| 2199 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 2200 | goto end; |
| 2201 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 2202 | EC_KEY_free(ecc); |
| 2203 | } |
| 2204 | #endif |
| 2205 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2206 | return ssl_ctx; |
| 2207 | |
| 2208 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2209 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2210 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2211 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 2212 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2213 | return NULL; |
| 2214 | } |
| 2215 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2216 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2217 | ssl_sock_create_cert(struct connection *conn, const char *servername, unsigned int key) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2218 | { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 2219 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2220 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2221 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2222 | return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2223 | } |
| 2224 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2225 | /* Do a lookup for a certificate in the LRU cache used to store generated |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2226 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2227 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2228 | ssl_sock_assign_generated_cert(unsigned int key, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2229 | { |
| 2230 | struct lru64 *lru = NULL; |
| 2231 | |
| 2232 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2233 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2234 | lru = lru64_lookup(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2235 | if (lru && lru->domain) { |
| 2236 | if (ssl) |
| 2237 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2238 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2239 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2240 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2241 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2242 | } |
| 2243 | return NULL; |
| 2244 | } |
| 2245 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2246 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2247 | * function is not thread-safe, it should only be used to check if a certificate |
| 2248 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2249 | * thread). It is kept for backward compatibility. */ |
| 2250 | SSL_CTX * |
| 2251 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2252 | { |
| 2253 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2254 | } |
| 2255 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2256 | /* Set a certificate int the LRU cache used to store generated |
| 2257 | * certificate. Return 0 on success, otherwise -1 */ |
| 2258 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2259 | ssl_sock_set_generated_cert(SSL_CTX *ssl_ctx, unsigned int key, struct bind_conf *bind_conf) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2260 | { |
| 2261 | struct lru64 *lru = NULL; |
| 2262 | |
| 2263 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2264 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2265 | lru = lru64_get(key, ssl_ctx_lru_tree, bind_conf->ca_sign_ckch->cert, 0); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2266 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2267 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2268 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2269 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2270 | if (lru->domain && lru->data) |
| 2271 | lru->free((SSL_CTX *)lru->data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2272 | lru64_commit(lru, ssl_ctx, bind_conf->ca_sign_ckch->cert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2273 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2274 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2275 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2276 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2277 | } |
| 2278 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2279 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2280 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2281 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2282 | { |
| 2283 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2284 | } |
| 2285 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2286 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2287 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2288 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2289 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2290 | ssl_sock_generate_certificate(const char *servername, struct bind_conf *bind_conf, SSL *ssl) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2291 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2292 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2293 | SSL_CTX *ssl_ctx = NULL; |
| 2294 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2295 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2296 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2297 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2298 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2299 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2300 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2301 | if (lru && lru->domain) |
| 2302 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2303 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2304 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2305 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2306 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2307 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2308 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2309 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2310 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2311 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2312 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2313 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2314 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2315 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2316 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2317 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2318 | return 0; |
| 2319 | } |
| 2320 | static int |
| 2321 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2322 | { |
| 2323 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2324 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2325 | |
Willy Tarreau | f5bdb64 | 2019-07-17 11:29:32 +0200 | [diff] [blame] | 2326 | if (conn_get_dst(conn)) { |
Willy Tarreau | 085a151 | 2019-07-17 14:47:35 +0200 | [diff] [blame] | 2327 | key = ssl_sock_generated_cert_key(conn->dst, get_addr_len(conn->dst)); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2328 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2329 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2330 | } |
| 2331 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2332 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2333 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2334 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2335 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2336 | |
| 2337 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2338 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2339 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2340 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2341 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2342 | #endif |
| 2343 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2344 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2345 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2346 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2347 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2348 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2349 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2350 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2351 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2352 | #endif |
| 2353 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2354 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2355 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2356 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_2_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2357 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2358 | #endif |
| 2359 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2360 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2361 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2362 | /* Unusable in this context. */ |
| 2363 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2364 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2365 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2366 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2367 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2368 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2369 | |
| 2370 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2371 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2372 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2373 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2374 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2375 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2376 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2377 | } |
| 2378 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2379 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2380 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2381 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2382 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2383 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2384 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2385 | } |
| 2386 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2387 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2388 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2389 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2390 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2391 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2392 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2393 | } |
| 2394 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2395 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_2_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2396 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2397 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2398 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2399 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2400 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2401 | } |
| 2402 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) { |
William Lallemand | f22b032 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2403 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2404 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2405 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2406 | #endif |
| 2407 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2408 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
William Lallemand | f22b032 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2409 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2410 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2411 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2412 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2413 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2414 | #endif |
| 2415 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2416 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2417 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 2418 | struct methodVersions methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2419 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2420 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2421 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2422 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2423 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2424 | {SSL_OP_NO_TLSv1_3, MC_SSL_O_NO_TLSV13, ctx_set_TLSv13_func, ssl_set_TLSv13_func, "TLSv1.3"}, /* CONF_TLSV13 */ |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2425 | }; |
| 2426 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2427 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2428 | { |
| 2429 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2430 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2431 | SSL_set_SSL_CTX(ssl, ctx); |
| 2432 | } |
| 2433 | |
Ilya Shipitsin | 1fc44d4 | 2021-01-23 00:09:14 +0500 | [diff] [blame] | 2434 | #ifdef HAVE_SSL_CLIENT_HELLO_CB |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2435 | |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2436 | int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2437 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2438 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2439 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2440 | |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2441 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs) |
| 2442 | return SSL_TLSEXT_ERR_OK; |
| 2443 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2444 | } |
| 2445 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2446 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2447 | int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2448 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2449 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2450 | #else |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2451 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2452 | { |
| 2453 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2454 | struct connection *conn; |
| 2455 | struct bind_conf *s; |
| 2456 | const uint8_t *extension_data; |
| 2457 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2458 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2459 | |
| 2460 | char *wildp = NULL; |
| 2461 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2462 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2463 | struct ebmb_node *node, *n, *node_ecdsa = NULL, *node_rsa = NULL, *node_anonymous = NULL; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2464 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2465 | int i; |
| 2466 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2467 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | a882552 | 2018-10-15 13:20:07 +0200 | [diff] [blame] | 2468 | s = __objt_listener(conn->target)->bind_conf; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2469 | |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2470 | #ifdef USE_QUIC |
| 2471 | if (conn->qc) { |
| 2472 | /* Look for the QUIC transport parameters. */ |
| 2473 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | a956d15 | 2021-11-10 09:24:22 +0100 | [diff] [blame] | 2474 | if (!SSL_early_callback_ctx_extension_get(ctx, con->qc->tps_tls_ext, |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2475 | &extension_data, &extension_len)) |
| 2476 | #else |
Frédéric Lécaille | a956d15 | 2021-11-10 09:24:22 +0100 | [diff] [blame] | 2477 | if (!SSL_client_hello_get0_ext(ssl, conn->qc->tps_tls_ext, |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2478 | &extension_data, &extension_len)) |
| 2479 | #endif |
Frédéric Lécaille | b5b5247 | 2021-11-22 15:55:16 +0100 | [diff] [blame] | 2480 | { |
| 2481 | /* This is not redundant. It we only return 0 without setting |
| 2482 | * <*al>, this has as side effect to generate another TLS alert |
| 2483 | * which would be set after calling quic_set_tls_alert(). |
| 2484 | */ |
| 2485 | *al = SSL_AD_MISSING_EXTENSION; |
| 2486 | quic_set_tls_alert(conn->qc, SSL_AD_MISSING_EXTENSION); |
| 2487 | return 0; |
| 2488 | } |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2489 | |
| 2490 | if (!quic_transport_params_store(conn->qc, 0, extension_data, |
| 2491 | extension_data + extension_len)) |
| 2492 | goto abort; |
Frédéric Lécaille | 0faf807 | 2021-03-18 15:05:18 +0100 | [diff] [blame] | 2493 | |
| 2494 | quic_mux_transport_params_update(conn->qc->qcc); |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2495 | } |
| 2496 | #endif |
| 2497 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2498 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2499 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2500 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2501 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2502 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2503 | #else |
| 2504 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2505 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2506 | /* |
| 2507 | * The server_name extension was given too much extensibility when it |
| 2508 | * was written, so parsing the normal case is a bit complex. |
| 2509 | */ |
| 2510 | size_t len; |
| 2511 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2512 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2513 | /* Extract the length of the supplied list of names. */ |
| 2514 | len = (*extension_data++) << 8; |
| 2515 | len |= *extension_data++; |
| 2516 | if (len + 2 != extension_len) |
| 2517 | goto abort; |
| 2518 | /* |
| 2519 | * The list in practice only has a single element, so we only consider |
| 2520 | * the first one. |
| 2521 | */ |
| 2522 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2523 | goto abort; |
| 2524 | extension_len = len - 1; |
| 2525 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2526 | if (extension_len <= 2) |
| 2527 | goto abort; |
| 2528 | len = (*extension_data++) << 8; |
| 2529 | len |= *extension_data++; |
| 2530 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2531 | || memchr(extension_data, 0, len) != NULL) |
| 2532 | goto abort; |
| 2533 | servername = extension_data; |
| 2534 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2535 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2536 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
| 2537 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2538 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2539 | } |
| 2540 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2541 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2542 | if (!s->strict_sni) { |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2543 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2544 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2545 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2546 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2547 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2548 | goto abort; |
| 2549 | } |
| 2550 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2551 | /* extract/check clientHello information */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2552 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2553 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2554 | #else |
| 2555 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2556 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2557 | uint8_t sign; |
| 2558 | size_t len; |
| 2559 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2560 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2561 | len = (*extension_data++) << 8; |
| 2562 | len |= *extension_data++; |
| 2563 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2564 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2565 | if (len % 2 != 0) |
| 2566 | goto abort; |
| 2567 | for (; len > 0; len -= 2) { |
| 2568 | extension_data++; /* hash */ |
| 2569 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2570 | switch (sign) { |
| 2571 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2572 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2573 | break; |
| 2574 | case TLSEXT_signature_ecdsa: |
| 2575 | has_ecdsa_sig = 1; |
| 2576 | break; |
| 2577 | default: |
| 2578 | continue; |
| 2579 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2580 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2581 | break; |
| 2582 | } |
| 2583 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2584 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2585 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2586 | } |
| 2587 | if (has_ecdsa_sig) { /* in very rare case: has ecdsa sign but not a ECDSA cipher */ |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2588 | const SSL_CIPHER *cipher; |
| 2589 | size_t len; |
| 2590 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2591 | has_ecdsa_sig = 0; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2592 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2593 | len = ctx->cipher_suites_len; |
| 2594 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2595 | #else |
| 2596 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2597 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2598 | if (len % 2 != 0) |
| 2599 | goto abort; |
| 2600 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2601 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2602 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2603 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2604 | #else |
| 2605 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2606 | #endif |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 2607 | if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2608 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2609 | break; |
| 2610 | } |
| 2611 | } |
| 2612 | } |
| 2613 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2614 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2615 | trash.area[i] = tolower(servername[i]); |
| 2616 | if (!wildp && (trash.area[i] == '.')) |
| 2617 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2618 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2619 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2620 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2621 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2622 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2623 | /* Look for an ECDSA, RSA and DSA certificate, first in the single |
| 2624 | * name and if not found in the wildcard */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2625 | for (i = 0; i < 2; i++) { |
| 2626 | if (i == 0) /* lookup in full qualified names */ |
| 2627 | node = ebst_lookup(&s->sni_ctx, trash.area); |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2628 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2629 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2630 | else |
| 2631 | break; |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2632 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2633 | for (n = node; n; n = ebmb_next_dup(n)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2634 | |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2635 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2636 | if (!container_of(n, struct sni_ctx, name)->neg) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2637 | struct sni_ctx *sni, *sni_tmp; |
| 2638 | int skip = 0; |
| 2639 | |
| 2640 | if (i == 1 && wildp) { /* wildcard */ |
| 2641 | /* If this is a wildcard, look for an exclusion on the same crt-list line */ |
| 2642 | sni = container_of(n, struct sni_ctx, name); |
| 2643 | list_for_each_entry(sni_tmp, &sni->ckch_inst->sni_ctx, by_ckch_inst) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2644 | if (sni_tmp->neg && (strcmp((const char *)sni_tmp->name.key, trash.area) == 0)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2645 | skip = 1; |
| 2646 | break; |
| 2647 | } |
| 2648 | } |
| 2649 | if (skip) |
| 2650 | continue; |
| 2651 | } |
| 2652 | |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2653 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2654 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2655 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2656 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2657 | break; |
| 2658 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2659 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2660 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2661 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2662 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2663 | if (!node_anonymous) |
| 2664 | node_anonymous = n; |
| 2665 | break; |
| 2666 | } |
| 2667 | } |
| 2668 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2669 | } |
| 2670 | /* Once the certificates are found, select them depending on what is |
| 2671 | * supported in the client and by key_signature priority order: EDSA > |
| 2672 | * RSA > DSA */ |
William Lallemand | 5b1d1f6 | 2020-08-14 15:30:13 +0200 | [diff] [blame] | 2673 | if (has_ecdsa_sig && node_ecdsa) |
| 2674 | node = node_ecdsa; |
| 2675 | else if (has_rsa_sig && node_rsa) |
| 2676 | node = node_rsa; |
| 2677 | else if (node_anonymous) |
| 2678 | node = node_anonymous; |
| 2679 | else if (node_ecdsa) |
| 2680 | node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */ |
| 2681 | else |
| 2682 | node = node_rsa; /* no rsa signature case (far far away) */ |
| 2683 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2684 | if (node) { |
| 2685 | /* switch ctx */ |
| 2686 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2687 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 2688 | if (conf) { |
| 2689 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2690 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2691 | if (conf->early_data) |
| 2692 | allow_early = 1; |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2693 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2694 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
| 2695 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2696 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2697 | |
William Lallemand | 0201047 | 2019-10-18 11:02:19 +0200 | [diff] [blame] | 2698 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2699 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2700 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2701 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2702 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2703 | } |
| 2704 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2705 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2706 | /* no certificate match, is the default_ctx */ |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2707 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2708 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2709 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2710 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2711 | } |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2712 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 2713 | /* We are about to raise an handshake error so the servername extension |
| 2714 | * callback will never be called and the SNI will never be stored in the |
| 2715 | * SSL context. In order for the ssl_fc_sni sample fetch to still work |
| 2716 | * in such a case, we store the SNI ourselves as an ex_data information |
| 2717 | * in the SSL context. |
| 2718 | */ |
| 2719 | { |
| 2720 | char *client_sni = pool_alloc(ssl_sock_client_sni_pool); |
| 2721 | if (client_sni) { |
| 2722 | strncpy(client_sni, trash.area, TLSEXT_MAXLEN_host_name); |
| 2723 | client_sni[TLSEXT_MAXLEN_host_name] = '\0'; |
| 2724 | SSL_set_ex_data(ssl, ssl_client_sni_index, client_sni); |
| 2725 | } |
| 2726 | } |
| 2727 | |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2728 | /* other cases fallback on abort, if strict-sni is set but no node was found */ |
| 2729 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2730 | abort: |
| 2731 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2732 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2733 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2734 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2735 | #else |
| 2736 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2737 | return 0; |
| 2738 | #endif |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2739 | |
| 2740 | allow_early: |
| 2741 | #ifdef OPENSSL_IS_BORINGSSL |
| 2742 | if (allow_early) |
| 2743 | SSL_set_early_data_enabled(ssl, 1); |
| 2744 | #else |
| 2745 | if (!allow_early) |
| 2746 | SSL_set_max_early_data(ssl, 0); |
| 2747 | #endif |
| 2748 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2749 | } |
| 2750 | |
William Lallemand | 002e206 | 2021-11-18 15:25:16 +0100 | [diff] [blame] | 2751 | #else /* ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2752 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2753 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2754 | * warning when no match is found, which implies the default (first) cert |
| 2755 | * will keep being used. |
| 2756 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2757 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2758 | { |
| 2759 | const char *servername; |
| 2760 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2761 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2762 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2763 | int i; |
| 2764 | (void)al; /* shut gcc stupid warning */ |
| 2765 | |
| 2766 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2767 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2768 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2769 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2770 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2771 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2772 | if (s->strict_sni) |
| 2773 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2774 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2775 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2776 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2777 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2778 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2779 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2780 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2781 | if (!servername[i]) |
| 2782 | break; |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2783 | trash.area[i] = tolower((unsigned char)servername[i]); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2784 | if (!wildp && (trash.area[i] == '.')) |
| 2785 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2786 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2787 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2788 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2789 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2790 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2791 | /* lookup in full qualified names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2792 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2793 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2794 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2795 | node = n; |
| 2796 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2797 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2798 | } |
| 2799 | if (!node && wildp) { |
| 2800 | /* lookup in wildcards names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2801 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2802 | /* lookup a not neg filter */ |
| 2803 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2804 | node = n; |
| 2805 | break; |
| 2806 | } |
| 2807 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2808 | } |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2809 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2810 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2811 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2812 | /* switch ctx done in ssl_sock_generate_certificate */ |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2813 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2814 | return SSL_TLSEXT_ERR_OK; |
| 2815 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2816 | #endif |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2817 | if (s->strict_sni) { |
| 2818 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2819 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2820 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2821 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2822 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2823 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2824 | } |
| 2825 | |
| 2826 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2827 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2828 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2829 | return SSL_TLSEXT_ERR_OK; |
| 2830 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2831 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2832 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2833 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2834 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2835 | |
| 2836 | static DH * ssl_get_dh_1024(void) |
| 2837 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2838 | static unsigned char dh1024_p[]={ |
| 2839 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2840 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2841 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2842 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2843 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2844 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2845 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2846 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2847 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2848 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2849 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2850 | }; |
| 2851 | static unsigned char dh1024_g[]={ |
| 2852 | 0x02, |
| 2853 | }; |
| 2854 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2855 | BIGNUM *p; |
| 2856 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2857 | DH *dh = DH_new(); |
| 2858 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2859 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2860 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2861 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2862 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2863 | DH_free(dh); |
| 2864 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2865 | } else { |
| 2866 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2867 | } |
| 2868 | } |
| 2869 | return dh; |
| 2870 | } |
| 2871 | |
| 2872 | static DH *ssl_get_dh_2048(void) |
| 2873 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2874 | static unsigned char dh2048_p[]={ |
| 2875 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2876 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2877 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2878 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2879 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2880 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2881 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2882 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2883 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2884 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2885 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2886 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2887 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2888 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2889 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2890 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2891 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2892 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2893 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2894 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2895 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2896 | 0xB7,0x1F,0x77,0xF3, |
| 2897 | }; |
| 2898 | static unsigned char dh2048_g[]={ |
| 2899 | 0x02, |
| 2900 | }; |
| 2901 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2902 | BIGNUM *p; |
| 2903 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2904 | DH *dh = DH_new(); |
| 2905 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2906 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2907 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2908 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2909 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2910 | DH_free(dh); |
| 2911 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2912 | } else { |
| 2913 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2914 | } |
| 2915 | } |
| 2916 | return dh; |
| 2917 | } |
| 2918 | |
| 2919 | static DH *ssl_get_dh_4096(void) |
| 2920 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2921 | static unsigned char dh4096_p[]={ |
| 2922 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2923 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2924 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2925 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2926 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2927 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2928 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2929 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2930 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2931 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2932 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2933 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2934 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2935 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2936 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2937 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2938 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2939 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2940 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2941 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2942 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2943 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2944 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2945 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2946 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2947 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2948 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2949 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2950 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2951 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2952 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2953 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2954 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2955 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2956 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2957 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2958 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2959 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2960 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2961 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2962 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2963 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2964 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2965 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2966 | static unsigned char dh4096_g[]={ |
| 2967 | 0x02, |
| 2968 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2969 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2970 | BIGNUM *p; |
| 2971 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2972 | DH *dh = DH_new(); |
| 2973 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2974 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2975 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2976 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2977 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2978 | DH_free(dh); |
| 2979 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2980 | } else { |
| 2981 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2982 | } |
| 2983 | } |
| 2984 | return dh; |
| 2985 | } |
| 2986 | |
| 2987 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2988 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2989 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2990 | { |
| 2991 | DH *dh = NULL; |
| 2992 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2993 | int type; |
| 2994 | |
| 2995 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2996 | |
| 2997 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2998 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2999 | */ |
| 3000 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 3001 | keylen = EVP_PKEY_bits(pkey); |
| 3002 | } |
| 3003 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 3004 | if (keylen > global_ssl.default_dh_param) { |
| 3005 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3006 | } |
| 3007 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 3008 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3009 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3010 | } |
| 3011 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3012 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3013 | } |
| 3014 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 3015 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 3016 | } |
| 3017 | |
| 3018 | return dh; |
| 3019 | } |
| 3020 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3021 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3022 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3023 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3024 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3025 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3026 | if (in == NULL) |
| 3027 | goto end; |
| 3028 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3029 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3030 | goto end; |
| 3031 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3032 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 3033 | |
| 3034 | end: |
| 3035 | if (in) |
| 3036 | BIO_free(in); |
| 3037 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 3038 | ERR_clear_error(); |
| 3039 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 3040 | return dh; |
| 3041 | } |
| 3042 | |
| 3043 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 3044 | { |
| 3045 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 3046 | |
| 3047 | if (global_dh) { |
| 3048 | return 0; |
| 3049 | } |
| 3050 | |
| 3051 | return -1; |
| 3052 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3053 | #endif |
| 3054 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3055 | /* This function allocates a sni_ctx and adds it to the ckch_inst */ |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3056 | static int ckch_inst_add_cert_sni(SSL_CTX *ctx, struct ckch_inst *ckch_inst, |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3057 | struct bind_conf *s, struct ssl_bind_conf *conf, |
| 3058 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3059 | { |
| 3060 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3061 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3062 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3063 | if (*name == '!') { |
| 3064 | neg = 1; |
| 3065 | name++; |
| 3066 | } |
| 3067 | if (*name == '*') { |
| 3068 | wild = 1; |
| 3069 | name++; |
| 3070 | } |
| 3071 | /* !* filter is a nop */ |
| 3072 | if (neg && wild) |
| 3073 | return order; |
| 3074 | if (*name) { |
| 3075 | int j, len; |
| 3076 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3077 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 3078 | trash.area[j] = tolower((unsigned char)name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3079 | if (j >= trash.size) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3080 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3081 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3082 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3083 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 3084 | if (!sc) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3085 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3086 | memcpy(sc->name.key, trash.area, len + 1); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3087 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3088 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3089 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3090 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3091 | sc->order = order++; |
| 3092 | sc->neg = neg; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3093 | sc->wild = wild; |
| 3094 | sc->name.node.leaf_p = NULL; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3095 | sc->ckch_inst = ckch_inst; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3096 | LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3097 | } |
| 3098 | return order; |
| 3099 | } |
| 3100 | |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3101 | /* |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3102 | * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree |
| 3103 | * This function can't return an error. |
| 3104 | * |
| 3105 | * *CAUTION*: The caller must lock the sni tree if called in multithreading mode |
| 3106 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3107 | void ssl_sock_load_cert_sni(struct ckch_inst *ckch_inst, struct bind_conf *bind_conf) |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3108 | { |
| 3109 | |
| 3110 | struct sni_ctx *sc0, *sc0b, *sc1; |
| 3111 | struct ebmb_node *node; |
| 3112 | |
| 3113 | list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) { |
| 3114 | |
| 3115 | /* ignore if sc0 was already inserted in a tree */ |
| 3116 | if (sc0->name.node.leaf_p) |
| 3117 | continue; |
| 3118 | |
| 3119 | /* Check for duplicates. */ |
| 3120 | if (sc0->wild) |
| 3121 | node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key); |
| 3122 | else |
| 3123 | node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key); |
| 3124 | |
| 3125 | for (; node; node = ebmb_next_dup(node)) { |
| 3126 | sc1 = ebmb_entry(node, struct sni_ctx, name); |
| 3127 | if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf |
| 3128 | && sc1->neg == sc0->neg && sc1->wild == sc0->wild) { |
| 3129 | /* it's a duplicate, we should remove and free it */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3130 | LIST_DELETE(&sc0->by_ckch_inst); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3131 | SSL_CTX_free(sc0->ctx); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3132 | ha_free(&sc0); |
William Lallemand | e15029b | 2019-10-14 10:46:58 +0200 | [diff] [blame] | 3133 | break; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3134 | } |
| 3135 | } |
| 3136 | |
| 3137 | /* if duplicate, ignore the insertion */ |
| 3138 | if (!sc0) |
| 3139 | continue; |
| 3140 | |
| 3141 | if (sc0->wild) |
| 3142 | ebst_insert(&bind_conf->sni_w_ctx, &sc0->name); |
| 3143 | else |
| 3144 | ebst_insert(&bind_conf->sni_ctx, &sc0->name); |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3145 | } |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3146 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3147 | /* replace the default_ctx if required with the instance's ctx. */ |
| 3148 | if (ckch_inst->is_default) { |
| 3149 | SSL_CTX_free(bind_conf->default_ctx); |
| 3150 | SSL_CTX_up_ref(ckch_inst->ctx); |
| 3151 | bind_conf->default_ctx = ckch_inst->ctx; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3152 | bind_conf->default_inst = ckch_inst; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3153 | } |
| 3154 | } |
| 3155 | |
| 3156 | /* |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3157 | * tree used to store the ckchs ordered by filename/bundle name |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3158 | */ |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3159 | struct eb_root ckchs_tree = EB_ROOT_UNIQUE; |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3160 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3161 | /* tree of crtlist (crt-list/directory) */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3162 | struct eb_root crtlists_tree = EB_ROOT_UNIQUE; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3163 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3164 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 3165 | * If there is no DH parameter available in the ckchs, the global |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3166 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 3167 | * DH parameter available in ckchs nor in global, the default |
| 3168 | * DH parameters are applied on the SSL_CTX. |
| 3169 | * Returns a bitfield containing the flags: |
| 3170 | * ERR_FATAL in any fatal error case |
| 3171 | * ERR_ALERT if a reason of the error is availabine in err |
| 3172 | * ERR_WARN if a warning is available into err |
| 3173 | * The value 0 means there is no error nor warning and |
| 3174 | * the operation succeed. |
| 3175 | */ |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3176 | #ifndef OPENSSL_NO_DH |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3177 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, |
| 3178 | const char *path, char **err) |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3179 | { |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3180 | int ret = 0; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3181 | DH *dh = NULL; |
| 3182 | |
William Lallemand | a8c7374 | 2019-07-31 18:31:34 +0200 | [diff] [blame] | 3183 | if (ckch && ckch->dh) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3184 | dh = ckch->dh; |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3185 | if (!SSL_CTX_set_tmp_dh(ctx, dh)) { |
| 3186 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 3187 | err && *err ? *err : "", path); |
| 3188 | #if defined(SSL_CTX_set_dh_auto) |
| 3189 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3190 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3191 | err && *err ? *err : ""); |
| 3192 | #else |
| 3193 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3194 | err && *err ? *err : ""); |
| 3195 | #endif |
| 3196 | ret |= ERR_WARN; |
| 3197 | goto end; |
| 3198 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3199 | |
| 3200 | if (ssl_dh_ptr_index >= 0) { |
| 3201 | /* store a pointer to the DH params to avoid complaining about |
| 3202 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 3203 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 3204 | } |
| 3205 | } |
| 3206 | else if (global_dh) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3207 | if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) { |
| 3208 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 3209 | err && *err ? *err : "", path); |
| 3210 | #if defined(SSL_CTX_set_dh_auto) |
| 3211 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3212 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3213 | err && *err ? *err : ""); |
| 3214 | #else |
| 3215 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3216 | err && *err ? *err : ""); |
| 3217 | #endif |
| 3218 | ret |= ERR_WARN; |
| 3219 | goto end; |
| 3220 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3221 | } |
| 3222 | else { |
| 3223 | /* Clear openssl global errors stack */ |
| 3224 | ERR_clear_error(); |
| 3225 | |
Willy Tarreau | 6d27a92 | 2020-11-05 19:38:05 +0100 | [diff] [blame] | 3226 | if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3227 | /* we are limited to DH parameter of 1024 bits anyway */ |
| 3228 | if (local_dh_1024 == NULL) |
| 3229 | local_dh_1024 = ssl_get_dh_1024(); |
| 3230 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3231 | if (local_dh_1024 == NULL) { |
| 3232 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3233 | err && *err ? *err : "", path); |
| 3234 | ret |= ERR_ALERT | ERR_FATAL; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3235 | goto end; |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3236 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3237 | |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3238 | if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) { |
| 3239 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3240 | err && *err ? *err : "", path); |
| 3241 | #if defined(SSL_CTX_set_dh_auto) |
| 3242 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3243 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3244 | err && *err ? *err : ""); |
| 3245 | #else |
| 3246 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3247 | err && *err ? *err : ""); |
| 3248 | #endif |
| 3249 | ret |= ERR_WARN; |
| 3250 | goto end; |
| 3251 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3252 | } |
| 3253 | else { |
| 3254 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 3255 | } |
William Lallemand | 8d0f893 | 2019-10-17 18:03:58 +0200 | [diff] [blame] | 3256 | } |
| 3257 | |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3258 | end: |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3259 | ERR_clear_error(); |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3260 | return ret; |
| 3261 | } |
Emmanuel Hocdet | 54227d8 | 2019-07-30 17:04:01 +0200 | [diff] [blame] | 3262 | #endif |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3263 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3264 | |
| 3265 | /* Load a certificate chain into an SSL context. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3266 | * Returns a bitfield containing the flags: |
| 3267 | * ERR_FATAL in any fatal error case |
| 3268 | * ERR_ALERT if the reason of the error is available in err |
| 3269 | * ERR_WARN if a warning is available into err |
| 3270 | * The value 0 means there is no error nor warning and |
| 3271 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3272 | */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3273 | static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch, |
| 3274 | SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3275 | { |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3276 | int errcode = 0; |
| 3277 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3278 | if (find_chain == NULL) { |
| 3279 | errcode |= ERR_FATAL; |
| 3280 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3281 | } |
| 3282 | |
| 3283 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 3284 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 3285 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3286 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3287 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3288 | } |
| 3289 | |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3290 | if (ckch->chain) { |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3291 | *find_chain = ckch->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3292 | } else { |
| 3293 | /* Find Certificate Chain in global */ |
| 3294 | struct issuer_chain *issuer; |
Emmanuel Hocdet | ef87e0a | 2020-03-23 11:29:11 +0100 | [diff] [blame] | 3295 | issuer = ssl_get0_issuer_chain(ckch->cert); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3296 | if (issuer) |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3297 | *find_chain = issuer->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3298 | } |
William Lallemand | 8588857 | 2020-02-27 14:48:35 +0100 | [diff] [blame] | 3299 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3300 | if (!*find_chain) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3301 | /* always put a null chain stack in the SSL_CTX so it does not |
| 3302 | * try to build the chain from the verify store */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3303 | *find_chain = sk_X509_new_null(); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3304 | } |
| 3305 | |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3306 | /* Load all certs in the ckch into the ctx_chain for the ssl_ctx */ |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3307 | #ifdef SSL_CTX_set1_chain |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3308 | if (!SSL_CTX_set1_chain(ctx, *find_chain)) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3309 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 3310 | err && *err ? *err : "", path); |
| 3311 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3312 | goto end; |
| 3313 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3314 | #else |
| 3315 | { /* legacy compat (< openssl 1.0.2) */ |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3316 | X509 *ca; |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3317 | STACK_OF(X509) *chain; |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3318 | chain = X509_chain_up_ref(*find_chain); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3319 | while ((ca = sk_X509_shift(chain))) |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3320 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3321 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3322 | err && *err ? *err : "", path); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3323 | X509_free(ca); |
| 3324 | sk_X509_pop_free(chain, X509_free); |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3325 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3326 | goto end; |
| 3327 | } |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3328 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3329 | #endif |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3330 | |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3331 | #ifdef SSL_CTX_build_cert_chain |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3332 | /* remove the Root CA from the SSL_CTX if the option is activated */ |
| 3333 | if (global_ssl.skip_self_issued_ca) { |
| 3334 | if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) { |
| 3335 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3336 | err && *err ? *err : "", path); |
| 3337 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3338 | goto end; |
| 3339 | } |
| 3340 | } |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3341 | #endif |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3342 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3343 | end: |
| 3344 | return errcode; |
| 3345 | } |
| 3346 | |
| 3347 | |
| 3348 | /* Loads the info in ckch into ctx |
| 3349 | * Returns a bitfield containing the flags: |
| 3350 | * ERR_FATAL in any fatal error case |
| 3351 | * ERR_ALERT if the reason of the error is available in err |
| 3352 | * ERR_WARN if a warning is available into err |
| 3353 | * The value 0 means there is no error nor warning and |
| 3354 | * the operation succeed. |
| 3355 | */ |
| 3356 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 3357 | { |
| 3358 | int errcode = 0; |
| 3359 | STACK_OF(X509) *find_chain = NULL; |
| 3360 | |
| 3361 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3362 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3363 | err && *err ? *err : "", path); |
| 3364 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3365 | return errcode; |
| 3366 | } |
| 3367 | |
| 3368 | /* Load certificate chain */ |
| 3369 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3370 | if (errcode & ERR_CODE) |
| 3371 | goto end; |
| 3372 | |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3373 | #ifndef OPENSSL_NO_DH |
| 3374 | /* store a NULL pointer to indicate we have not yet loaded |
| 3375 | a custom DH param file */ |
| 3376 | if (ssl_dh_ptr_index >= 0) { |
| 3377 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3378 | } |
| 3379 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3380 | errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err); |
| 3381 | if (errcode & ERR_CODE) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3382 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3383 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3384 | goto end; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3385 | } |
| 3386 | #endif |
| 3387 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 3388 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3389 | if (sctl_ex_index >= 0 && ckch->sctl) { |
| 3390 | if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) { |
| 3391 | memprintf(err, "%s '%s.sctl' is present but cannot be read or parsed'.\n", |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3392 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3393 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3394 | goto end; |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3395 | } |
| 3396 | } |
| 3397 | #endif |
| 3398 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 3399 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) || defined OPENSSL_IS_BORINGSSL) |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3400 | /* Load OCSP Info into context */ |
| 3401 | if (ckch->ocsp_response) { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 3402 | if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3403 | 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", |
| 3404 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3405 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3406 | goto end; |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3407 | } |
| 3408 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3409 | #endif |
| 3410 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3411 | end: |
| 3412 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3413 | } |
| 3414 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3415 | |
| 3416 | /* Loads the info of a ckch built out of a backend certificate into an SSL ctx |
| 3417 | * Returns a bitfield containing the flags: |
| 3418 | * ERR_FATAL in any fatal error case |
| 3419 | * ERR_ALERT if the reason of the error is available in err |
| 3420 | * ERR_WARN if a warning is available into err |
| 3421 | * The value 0 means there is no error nor warning and |
| 3422 | * the operation succeed. |
| 3423 | */ |
| 3424 | static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, |
| 3425 | SSL_CTX *ctx, char **err) |
| 3426 | { |
| 3427 | int errcode = 0; |
| 3428 | STACK_OF(X509) *find_chain = NULL; |
| 3429 | |
| 3430 | /* Load the private key */ |
| 3431 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3432 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3433 | err && *err ? *err : "", path); |
| 3434 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3435 | } |
| 3436 | |
| 3437 | /* Load certificate chain */ |
| 3438 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3439 | if (errcode & ERR_CODE) |
| 3440 | goto end; |
| 3441 | |
| 3442 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3443 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3444 | err && *err ? *err : "", path); |
| 3445 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3446 | } |
| 3447 | |
| 3448 | end: |
| 3449 | return errcode; |
| 3450 | } |
| 3451 | |
| 3452 | |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3453 | /* |
| 3454 | * This function allocate a ckch_inst and create its snis |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3455 | * |
| 3456 | * Returns a bitfield containing the flags: |
| 3457 | * ERR_FATAL in any fatal error case |
| 3458 | * ERR_ALERT if the reason of the error is available in err |
| 3459 | * ERR_WARN if a warning is available into err |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3460 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3461 | int ckch_inst_new_load_store(const char *path, struct ckch_store *ckchs, struct bind_conf *bind_conf, |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3462 | struct ssl_bind_conf *ssl_conf, char **sni_filter, int fcount, struct ckch_inst **ckchi, char **err) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3463 | { |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3464 | SSL_CTX *ctx; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3465 | int i; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3466 | int order = 0; |
| 3467 | X509_NAME *xname; |
| 3468 | char *str; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3469 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3470 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3471 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3472 | STACK_OF(GENERAL_NAME) *names; |
| 3473 | #endif |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3474 | struct cert_key_and_chain *ckch; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3475 | struct ckch_inst *ckch_inst = NULL; |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3476 | int errcode = 0; |
| 3477 | |
| 3478 | *ckchi = NULL; |
William Lallemand | a59191b | 2019-05-15 16:08:56 +0200 | [diff] [blame] | 3479 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3480 | if (!ckchs || !ckchs->ckch) |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3481 | return ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3482 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3483 | ckch = ckchs->ckch; |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3484 | |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3485 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 3486 | if (!ctx) { |
| 3487 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3488 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3489 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3490 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3491 | } |
| 3492 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3493 | errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err); |
| 3494 | if (errcode & ERR_CODE) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3495 | goto error; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3496 | |
| 3497 | ckch_inst = ckch_inst_new(); |
| 3498 | if (!ckch_inst) { |
| 3499 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3500 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3501 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3502 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3503 | } |
| 3504 | |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3505 | pkey = X509_get_pubkey(ckch->cert); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3506 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3507 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3508 | switch(EVP_PKEY_base_id(pkey)) { |
| 3509 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3510 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3511 | break; |
| 3512 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3513 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3514 | break; |
| 3515 | case EVP_PKEY_DSA: |
| 3516 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3517 | break; |
| 3518 | } |
| 3519 | EVP_PKEY_free(pkey); |
| 3520 | } |
| 3521 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3522 | if (fcount) { |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3523 | while (fcount--) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3524 | order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, sni_filter[fcount], order); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3525 | if (order < 0) { |
| 3526 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3527 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3528 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3529 | } |
| 3530 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3531 | } |
| 3532 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3533 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3534 | names = X509_get_ext_d2i(ckch->cert, NID_subject_alt_name, NULL, NULL); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3535 | if (names) { |
| 3536 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3537 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3538 | if (name->type == GEN_DNS) { |
| 3539 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3540 | order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3541 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3542 | if (order < 0) { |
| 3543 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3544 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3545 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3546 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3547 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3548 | } |
| 3549 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3550 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3551 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3552 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3553 | xname = X509_get_subject_name(ckch->cert); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3554 | i = -1; |
| 3555 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3556 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3557 | ASN1_STRING *value; |
| 3558 | |
| 3559 | value = X509_NAME_ENTRY_get_data(entry); |
| 3560 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3561 | order = ckch_inst_add_cert_sni(ctx, ckch_inst, bind_conf, ssl_conf, kinfo, str, order); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3562 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3563 | if (order < 0) { |
| 3564 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3565 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3566 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3567 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3568 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3569 | } |
| 3570 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3571 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3572 | * the tree, so it will be discovered and cleaned in time. |
| 3573 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3574 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3575 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3576 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3577 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3578 | err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3579 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3580 | goto error; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3581 | } |
| 3582 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3583 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3584 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3585 | bind_conf->default_ssl_conf = ssl_conf; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3586 | ckch_inst->is_default = 1; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3587 | SSL_CTX_up_ref(ctx); |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3588 | bind_conf->default_inst = ckch_inst; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3589 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3590 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3591 | /* Always keep a reference to the newly constructed SSL_CTX in the |
| 3592 | * instance. This way if the instance has no SNIs, the SSL_CTX will |
| 3593 | * still be linked. */ |
| 3594 | SSL_CTX_up_ref(ctx); |
| 3595 | ckch_inst->ctx = ctx; |
| 3596 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3597 | /* everything succeed, the ckch instance can be used */ |
| 3598 | ckch_inst->bind_conf = bind_conf; |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 3599 | ckch_inst->ssl_conf = ssl_conf; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3600 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3601 | |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3602 | SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */ |
| 3603 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3604 | *ckchi = ckch_inst; |
| 3605 | return errcode; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3606 | |
| 3607 | error: |
| 3608 | /* free the allocated sni_ctxs */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3609 | if (ckch_inst) { |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3610 | if (ckch_inst->is_default) |
| 3611 | SSL_CTX_free(ctx); |
| 3612 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3613 | ckch_inst_free(ckch_inst); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3614 | ckch_inst = NULL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3615 | } |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3616 | SSL_CTX_free(ctx); |
| 3617 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3618 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3619 | } |
| 3620 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3621 | |
| 3622 | /* |
| 3623 | * This function allocate a ckch_inst that will be used on the backend side |
| 3624 | * (server line) |
| 3625 | * |
| 3626 | * Returns a bitfield containing the flags: |
| 3627 | * ERR_FATAL in any fatal error case |
| 3628 | * ERR_ALERT if the reason of the error is available in err |
| 3629 | * ERR_WARN if a warning is available into err |
| 3630 | */ |
| 3631 | int ckch_inst_new_load_srv_store(const char *path, struct ckch_store *ckchs, |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3632 | struct ckch_inst **ckchi, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3633 | { |
| 3634 | SSL_CTX *ctx; |
| 3635 | struct cert_key_and_chain *ckch; |
| 3636 | struct ckch_inst *ckch_inst = NULL; |
| 3637 | int errcode = 0; |
| 3638 | |
| 3639 | *ckchi = NULL; |
| 3640 | |
| 3641 | if (!ckchs || !ckchs->ckch) |
| 3642 | return ERR_FATAL; |
| 3643 | |
| 3644 | ckch = ckchs->ckch; |
| 3645 | |
| 3646 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3647 | if (!ctx) { |
| 3648 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3649 | err && *err ? *err : "", path); |
| 3650 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3651 | goto error; |
| 3652 | } |
| 3653 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3654 | errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err); |
| 3655 | if (errcode & ERR_CODE) |
| 3656 | goto error; |
| 3657 | |
| 3658 | ckch_inst = ckch_inst_new(); |
| 3659 | if (!ckch_inst) { |
| 3660 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3661 | err && *err ? *err : "", path); |
| 3662 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3663 | goto error; |
| 3664 | } |
| 3665 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3666 | /* everything succeed, the ckch instance can be used */ |
| 3667 | ckch_inst->bind_conf = NULL; |
| 3668 | ckch_inst->ssl_conf = NULL; |
| 3669 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3670 | ckch_inst->ctx = ctx; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3671 | ckch_inst->is_server_instance = 1; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3672 | |
| 3673 | *ckchi = ckch_inst; |
| 3674 | return errcode; |
| 3675 | |
| 3676 | error: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3677 | SSL_CTX_free(ctx); |
| 3678 | |
| 3679 | return errcode; |
| 3680 | } |
| 3681 | |
Willy Tarreau | 8c5414a | 2019-10-16 17:06:25 +0200 | [diff] [blame] | 3682 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3683 | static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs, |
| 3684 | struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3685 | char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3686 | { |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3687 | int errcode = 0; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3688 | |
| 3689 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | e7eb1fe | 2020-09-16 16:17:51 +0200 | [diff] [blame] | 3690 | errcode |= ckch_inst_new_load_store(path, ckchs, bind_conf, ssl_conf, sni_filter, fcount, ckch_inst, err); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3691 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3692 | if (errcode & ERR_CODE) |
| 3693 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3694 | |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3695 | ssl_sock_load_cert_sni(*ckch_inst, bind_conf); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3696 | |
| 3697 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3698 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3699 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3700 | } |
| 3701 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3702 | /* This function generates a <struct ckch_inst *> for a <struct server *>, and |
| 3703 | * fill the SSL_CTX of the server. |
| 3704 | * |
| 3705 | * Returns a set of ERR_* flags possibly with an error in <err>. */ |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3706 | static int ssl_sock_load_srv_ckchs(const char *path, struct ckch_store *ckchs, |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3707 | struct server *server, struct ckch_inst **ckch_inst, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3708 | { |
| 3709 | int errcode = 0; |
| 3710 | |
| 3711 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3712 | errcode |= ckch_inst_new_load_srv_store(path, ckchs, ckch_inst, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3713 | |
| 3714 | if (errcode & ERR_CODE) |
| 3715 | return errcode; |
| 3716 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3717 | (*ckch_inst)->server = server; |
| 3718 | /* Keep the reference to the SSL_CTX in the server. */ |
| 3719 | SSL_CTX_up_ref((*ckch_inst)->ctx); |
| 3720 | server->ssl_ctx.ctx = (*ckch_inst)->ctx; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3721 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3722 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3723 | return errcode; |
| 3724 | } |
| 3725 | |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3726 | |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3727 | |
| 3728 | |
| 3729 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3730 | * done once. Zero is returned if the operation fails. No error is returned |
| 3731 | * if the random is said as not implemented, because we expect that openssl |
| 3732 | * will use another method once needed. |
| 3733 | */ |
Amaury Denoyelle | c593bcd | 2021-05-19 15:35:29 +0200 | [diff] [blame] | 3734 | int ssl_initialize_random(void) |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3735 | { |
| 3736 | unsigned char random; |
| 3737 | static int random_initialized = 0; |
| 3738 | |
| 3739 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3740 | random_initialized = 1; |
| 3741 | |
| 3742 | return random_initialized; |
| 3743 | } |
| 3744 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3745 | /* Load a crt-list file, this is done in 2 parts: |
| 3746 | * - store the content of the file in a crtlist structure with crtlist_entry structures |
| 3747 | * - generate the instances by iterating on entries in the crtlist struct |
| 3748 | * |
| 3749 | * Nothing is locked there, this function is used in the configuration parser. |
| 3750 | * |
| 3751 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3752 | */ |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3753 | int ssl_sock_load_cert_list_file(char *file, int dir, struct bind_conf *bind_conf, struct proxy *curproxy, char **err) |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3754 | { |
| 3755 | struct crtlist *crtlist = NULL; |
| 3756 | struct ebmb_node *eb; |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3757 | struct crtlist_entry *entry = NULL; |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3758 | struct bind_conf_list *bind_conf_node = NULL; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3759 | int cfgerr = 0; |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3760 | char *end; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3761 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3762 | bind_conf_node = malloc(sizeof(*bind_conf_node)); |
| 3763 | if (!bind_conf_node) { |
| 3764 | memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : ""); |
| 3765 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3766 | goto error; |
| 3767 | } |
| 3768 | bind_conf_node->next = NULL; |
| 3769 | bind_conf_node->bind_conf = bind_conf; |
| 3770 | |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3771 | /* strip trailing slashes, including first one */ |
| 3772 | for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--) |
| 3773 | *end = 0; |
| 3774 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3775 | /* look for an existing crtlist or create one */ |
| 3776 | eb = ebst_lookup(&crtlists_tree, file); |
| 3777 | if (eb) { |
| 3778 | crtlist = ebmb_entry(eb, struct crtlist, node); |
| 3779 | } else { |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3780 | /* load a crt-list OR a directory */ |
| 3781 | if (dir) |
| 3782 | cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err); |
| 3783 | else |
| 3784 | cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err); |
| 3785 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3786 | if (!(cfgerr & ERR_CODE)) |
| 3787 | ebst_insert(&crtlists_tree, &crtlist->node); |
| 3788 | } |
| 3789 | |
| 3790 | if (cfgerr & ERR_CODE) { |
| 3791 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3792 | goto error; |
| 3793 | } |
| 3794 | |
| 3795 | /* generates ckch instance from the crtlist_entry */ |
| 3796 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3797 | struct ckch_store *store; |
| 3798 | struct ckch_inst *ckch_inst = NULL; |
| 3799 | |
| 3800 | store = entry->node.key; |
| 3801 | cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err); |
| 3802 | if (cfgerr & ERR_CODE) { |
| 3803 | memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err); |
| 3804 | goto error; |
| 3805 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3806 | LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry); |
William Lallemand | caa1619 | 2020-04-08 16:29:15 +0200 | [diff] [blame] | 3807 | ckch_inst->crtlist_entry = entry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3808 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3809 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3810 | /* add the bind_conf to the list */ |
| 3811 | bind_conf_node->next = crtlist->bind_conf; |
| 3812 | crtlist->bind_conf = bind_conf_node; |
| 3813 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3814 | return cfgerr; |
| 3815 | error: |
| 3816 | { |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3817 | struct crtlist_entry *lastentry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3818 | struct ckch_inst *inst, *s_inst; |
| 3819 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3820 | lastentry = entry; /* which entry we tried to generate last */ |
| 3821 | if (lastentry) { |
| 3822 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3823 | if (entry == lastentry) /* last entry we tried to generate, no need to go further */ |
| 3824 | break; |
| 3825 | |
| 3826 | list_for_each_entry_safe(inst, s_inst, &entry->ckch_inst, by_crtlist_entry) { |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3827 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3828 | /* this was not generated for this bind_conf, skip */ |
| 3829 | if (inst->bind_conf != bind_conf) |
| 3830 | continue; |
| 3831 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3832 | /* free the sni_ctx and instance */ |
| 3833 | ckch_inst_free(inst); |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3834 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3835 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3836 | } |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3837 | free(bind_conf_node); |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3838 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3839 | return cfgerr; |
| 3840 | } |
| 3841 | |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3842 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
| 3843 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
| 3844 | { |
| 3845 | struct stat buf; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3846 | int cfgerr = 0; |
| 3847 | struct ckch_store *ckchs; |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3848 | struct ckch_inst *ckch_inst = NULL; |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3849 | int found = 0; /* did we found a file to load ? */ |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3850 | |
| 3851 | if ((ckchs = ckchs_lookup(path))) { |
| 3852 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3853 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3854 | found++; |
| 3855 | } else if (stat(path, &buf) == 0) { |
| 3856 | found++; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3857 | if (S_ISDIR(buf.st_mode) == 0) { |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3858 | ckchs = ckchs_load_cert_file(path, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3859 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3860 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3861 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3862 | } else { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3863 | cfgerr |= ssl_sock_load_cert_list_file(path, 1, bind_conf, bind_conf->frontend, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3864 | } |
| 3865 | } else { |
| 3866 | /* stat failed, could be a bundle */ |
| 3867 | if (global_ssl.extra_files & SSL_GF_BUNDLE) { |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3868 | char fp[MAXPATHLEN+1] = {0}; |
| 3869 | int n = 0; |
| 3870 | |
| 3871 | /* Load all possible certs and keys in separate ckch_store */ |
| 3872 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3873 | struct stat buf; |
| 3874 | int ret; |
| 3875 | |
| 3876 | ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3877 | if (ret > sizeof(fp)) |
| 3878 | continue; |
| 3879 | |
| 3880 | if ((ckchs = ckchs_lookup(fp))) { |
| 3881 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3882 | found++; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3883 | } else { |
| 3884 | if (stat(fp, &buf) == 0) { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3885 | found++; |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3886 | ckchs = ckchs_load_cert_file(fp, err); |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3887 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3888 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3889 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3890 | } |
| 3891 | } |
| 3892 | } |
William Lallemand | b7fdfdf | 2020-12-04 15:45:02 +0100 | [diff] [blame] | 3893 | #if HA_OPENSSL_VERSION_NUMBER < 0x10101000L |
| 3894 | if (found) { |
| 3895 | memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n", |
| 3896 | err && *err ? *err : "", path); |
| 3897 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3898 | } |
| 3899 | #endif |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3900 | } |
| 3901 | } |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3902 | if (!found) { |
| 3903 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3904 | err && *err ? *err : "", path, strerror(errno)); |
| 3905 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3906 | } |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3907 | |
| 3908 | return cfgerr; |
| 3909 | } |
| 3910 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3911 | |
| 3912 | /* Create a full ssl context and ckch instance that will be used for a specific |
| 3913 | * backend server (server configuration line). |
| 3914 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3915 | */ |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 3916 | int ssl_sock_load_srv_cert(char *path, struct server *server, int create_if_none, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3917 | { |
| 3918 | struct stat buf; |
| 3919 | int cfgerr = 0; |
| 3920 | struct ckch_store *ckchs; |
| 3921 | int found = 0; /* did we found a file to load ? */ |
| 3922 | |
| 3923 | if ((ckchs = ckchs_lookup(path))) { |
| 3924 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3925 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3926 | found++; |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 3927 | } else { |
| 3928 | if (!create_if_none) { |
| 3929 | memprintf(err, "%sunable to stat SSL certificate '%s'.\n", |
| 3930 | err && *err ? *err : "", path); |
| 3931 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3932 | goto out; |
| 3933 | } |
| 3934 | |
| 3935 | if (stat(path, &buf) == 0) { |
| 3936 | /* We do not manage directories on backend side. */ |
| 3937 | if (S_ISDIR(buf.st_mode) == 0) { |
| 3938 | ++found; |
| 3939 | ckchs = ckchs_load_cert_file(path, err); |
| 3940 | if (!ckchs) |
| 3941 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3942 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
| 3943 | } |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3944 | } |
| 3945 | } |
| 3946 | if (!found) { |
| 3947 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3948 | err && *err ? *err : "", path, strerror(errno)); |
| 3949 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3950 | } |
| 3951 | |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 3952 | out: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3953 | return cfgerr; |
| 3954 | } |
| 3955 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3956 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3957 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3958 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3959 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3960 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3961 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3962 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3963 | SSL_OP_NO_SSLv2 | |
| 3964 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3965 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3966 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3967 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3968 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3969 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3970 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3971 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3972 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3973 | SSL_MODE_RELEASE_BUFFERS | |
| 3974 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3975 | struct tls_version_filter *conf_ssl_methods = &bind_conf->ssl_conf.ssl_methods; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3976 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3977 | int flags = MC_SSL_O_ALL; |
| 3978 | int cfgerr = 0; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3979 | const int default_min_ver = CONF_TLSV12; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3980 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3981 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3982 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3983 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3984 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3985 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3986 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3987 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3988 | else |
| 3989 | flags = conf_ssl_methods->flags; |
| 3990 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3991 | min = conf_ssl_methods->min; |
| 3992 | max = conf_ssl_methods->max; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3993 | |
| 3994 | /* default minimum is TLSV12, */ |
| 3995 | if (!min) { |
| 3996 | if (!max || (max >= default_min_ver)) { |
| 3997 | min = default_min_ver; |
| 3998 | } else { |
| 3999 | ha_warning("Proxy '%s': Ambiguous configuration for bind '%s' at [%s:%d]: the ssl-min-ver value is not configured and the ssl-max-ver value is lower than the default ssl-min-ver value (%s). " |
| 4000 | "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n", |
| 4001 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name); |
| 4002 | min = max; |
| 4003 | } |
| 4004 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4005 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 4006 | if (min) |
| 4007 | flags |= (methodVersions[min].flag - 1); |
| 4008 | if (max) |
| 4009 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4010 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4011 | min = max = CONF_TLSV_NONE; |
| 4012 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4013 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4014 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4015 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4016 | if (min) { |
| 4017 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4018 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 4019 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4020 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 4021 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4022 | hole = 0; |
| 4023 | } |
| 4024 | max = i; |
| 4025 | } |
| 4026 | else { |
| 4027 | min = max = i; |
| 4028 | } |
| 4029 | } |
| 4030 | else { |
| 4031 | if (min) |
| 4032 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4033 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4034 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4035 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4036 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4037 | cfgerr += 1; |
| 4038 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4039 | /* save real min/max in bind_conf */ |
| 4040 | conf_ssl_methods->min = min; |
| 4041 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4042 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4043 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4044 | /* Keep force-xxx implementation as it is in older haproxy. It's a |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 4045 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4046 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4047 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4048 | else |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4049 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) { |
| 4050 | /* clear every version flags in case SSL_CTX_new() |
| 4051 | * returns an SSL_CTX with disabled versions */ |
| 4052 | SSL_CTX_clear_options(ctx, methodVersions[i].option); |
| 4053 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4054 | if (flags & methodVersions[i].flag) |
| 4055 | options |= methodVersions[i].option; |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4056 | |
| 4057 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4058 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4059 | /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4060 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4061 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 4062 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4063 | |
| 4064 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 4065 | options |= SSL_OP_NO_TICKET; |
| 4066 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 4067 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 4068 | |
| 4069 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 4070 | options |= SSL_OP_NO_RENEGOTIATION; |
| 4071 | #endif |
| 4072 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4073 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4074 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4075 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4076 | if (global_ssl.async) |
| 4077 | mode |= SSL_MODE_ASYNC; |
| 4078 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4079 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4080 | if (global_ssl.life_time) |
| 4081 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4082 | |
| 4083 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 4084 | #ifdef OPENSSL_IS_BORINGSSL |
| 4085 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 4086 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Ilya Shipitsin | e9ff899 | 2020-01-19 12:20:14 +0500 | [diff] [blame] | 4087 | #elif defined(SSL_OP_NO_ANTI_REPLAY) |
Olivier Houchard | 545989f | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 4088 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 4089 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 4090 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 4091 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4092 | #else |
| 4093 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4094 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 4095 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4096 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4097 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4098 | } |
| 4099 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4100 | |
| 4101 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 4102 | { |
| 4103 | if (first == block) { |
| 4104 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4105 | if (first->len > 0) |
| 4106 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 4107 | } |
| 4108 | } |
| 4109 | |
| 4110 | /* return first block from sh_ssl_sess */ |
| 4111 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 4112 | { |
| 4113 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 4114 | |
| 4115 | } |
| 4116 | |
| 4117 | /* store a session into the cache |
| 4118 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 4119 | * data: asn1 encoded session |
| 4120 | * data_len: asn1 encoded session length |
| 4121 | * Returns 1 id session was stored (else 0) |
| 4122 | */ |
| 4123 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 4124 | { |
| 4125 | struct shared_block *first; |
| 4126 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 4127 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4128 | first = shctx_row_reserve_hot(ssl_shctx, NULL, data_len + sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4129 | if (!first) { |
| 4130 | /* Could not retrieve enough free blocks to store that session */ |
| 4131 | return 0; |
| 4132 | } |
| 4133 | |
| 4134 | /* STORE the key in the first elem */ |
| 4135 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4136 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 4137 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4138 | |
| 4139 | /* it returns the already existing node |
| 4140 | or current node if none, never returns null */ |
| 4141 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 4142 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 4143 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 4144 | /* release the reserved row */ |
| 4145 | shctx_row_dec_hot(ssl_shctx, first); |
| 4146 | /* replace the previous session already in the tree */ |
| 4147 | sh_ssl_sess = oldsh_ssl_sess; |
| 4148 | /* ignore the previous session data, only use the header */ |
| 4149 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 4150 | shctx_row_inc_hot(ssl_shctx, first); |
| 4151 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4152 | } |
| 4153 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4154 | if (shctx_row_data_append(ssl_shctx, first, NULL, data, data_len) < 0) { |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4155 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4156 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4157 | } |
| 4158 | |
| 4159 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4160 | |
| 4161 | return 1; |
| 4162 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4163 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4164 | /* SSL callback used when a new session is created while connecting to a server */ |
| 4165 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4166 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4167 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4168 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4169 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4170 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4171 | |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4172 | /* RWLOCK: only read lock the SSL cache even when writing in it because there is |
| 4173 | * one cache per thread, it only prevents to flush it from the CLI in |
| 4174 | * another thread */ |
| 4175 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4176 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4177 | int len; |
| 4178 | unsigned char *ptr; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4179 | const char *sni; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4180 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4181 | len = i2d_SSL_SESSION(sess, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4182 | sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4183 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4184 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4185 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4186 | } else { |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4187 | ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len); |
| 4188 | s->ssl_ctx.reused_sess[tid].ptr = ptr; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4189 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4190 | } |
| 4191 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4192 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4193 | &ptr); |
| 4194 | } |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4195 | |
| 4196 | if (s->ssl_ctx.reused_sess[tid].sni) { |
| 4197 | /* if the new sni is empty or isn' t the same as the old one */ |
| 4198 | if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) { |
| 4199 | ha_free(&s->ssl_ctx.reused_sess[tid].sni); |
| 4200 | if (sni) |
| 4201 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4202 | } |
| 4203 | } else if (sni) { |
| 4204 | /* if there wasn't an old sni but there is a new one */ |
| 4205 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4206 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4207 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4208 | } else { |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4209 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4210 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4211 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4212 | } |
| 4213 | |
| 4214 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4215 | } |
| 4216 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4217 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4218 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4219 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4220 | { |
| 4221 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4222 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4223 | unsigned char *p; |
| 4224 | int data_len; |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4225 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4226 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4227 | |
| 4228 | /* Session id is already stored in to key and session id is known |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 4229 | * so we don't store it to keep size. |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4230 | * note: SSL_SESSION_set1_id is using |
| 4231 | * a memcpy so we need to use a different pointer |
| 4232 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4233 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4234 | */ |
| 4235 | |
| 4236 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4237 | |
| 4238 | /* copy value in an other buffer */ |
| 4239 | memcpy(encid, sid_data, sid_length); |
| 4240 | |
| 4241 | /* pad with 0 */ |
| 4242 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4243 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4244 | |
| 4245 | /* force length to zero to avoid ASN1 encoding */ |
| 4246 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4247 | |
| 4248 | /* force length to zero to avoid ASN1 encoding */ |
| 4249 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4250 | |
| 4251 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4252 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4253 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4254 | goto err; |
| 4255 | |
| 4256 | p = encsess; |
| 4257 | |
| 4258 | /* process ASN1 session encoding before the lock */ |
| 4259 | i2d_SSL_SESSION(sess, &p); |
| 4260 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4261 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4262 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4263 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4264 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4265 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4266 | err: |
| 4267 | /* reset original length values */ |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4268 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4269 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4270 | |
| 4271 | return 0; /* do not increment session reference count */ |
| 4272 | } |
| 4273 | |
| 4274 | /* SSL callback used on lookup an existing session cause none found in internal cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4275 | SSL_SESSION *sh_ssl_sess_get_cb(SSL *ssl, __OPENSSL_110_CONST__ unsigned char *key, int key_len, int *do_copy) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4276 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4277 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4278 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4279 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4280 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4281 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4282 | |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4283 | _HA_ATOMIC_INC(&global.shctx_lookups); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4284 | |
| 4285 | /* allow the session to be freed automatically by openssl */ |
| 4286 | *do_copy = 0; |
| 4287 | |
| 4288 | /* tree key is zeros padded sessionid */ |
| 4289 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4290 | memcpy(tmpkey, key, key_len); |
| 4291 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4292 | key = tmpkey; |
| 4293 | } |
| 4294 | |
| 4295 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4296 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4297 | |
| 4298 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4299 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4300 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4301 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4302 | shctx_unlock(ssl_shctx); |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4303 | _HA_ATOMIC_INC(&global.shctx_misses); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4304 | return NULL; |
| 4305 | } |
| 4306 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4307 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4308 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4309 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4310 | shctx_row_data_get(ssl_shctx, first, data, sizeof(struct sh_ssl_sess_hdr), first->len-sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4311 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4312 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4313 | |
| 4314 | /* decode ASN1 session */ |
| 4315 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4316 | sess = d2i_SSL_SESSION(NULL, (const unsigned char **)&p, first->len-sizeof(struct sh_ssl_sess_hdr)); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4317 | /* Reset session id and session id contenxt */ |
| 4318 | if (sess) { |
| 4319 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4320 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4321 | } |
| 4322 | |
| 4323 | return sess; |
| 4324 | } |
| 4325 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4326 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4327 | /* SSL callback used to signal session is no more used in internal cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4328 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4329 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4330 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4331 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4332 | unsigned int sid_length; |
| 4333 | const unsigned char *sid_data; |
| 4334 | (void)ctx; |
| 4335 | |
| 4336 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4337 | /* tree key is zeros padded sessionid */ |
| 4338 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4339 | memcpy(tmpkey, sid_data, sid_length); |
| 4340 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4341 | sid_data = tmpkey; |
| 4342 | } |
| 4343 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4344 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4345 | |
| 4346 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4347 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4348 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4349 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4350 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4351 | } |
| 4352 | |
| 4353 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4354 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4355 | } |
| 4356 | |
| 4357 | /* Set session cache mode to server and disable openssl internal cache. |
| 4358 | * Set shared cache callbacks on an ssl context. |
| 4359 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4360 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4361 | { |
| 4362 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4363 | |
| 4364 | if (!ssl_shctx) { |
| 4365 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4366 | return; |
| 4367 | } |
| 4368 | |
| 4369 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4370 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4371 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4372 | |
| 4373 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4374 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4375 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4376 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4377 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4378 | |
| 4379 | /* |
| 4380 | * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
| 4381 | * |
| 4382 | * The format is: |
| 4383 | * * <Label> <space> <ClientRandom> <space> <Secret> |
| 4384 | * We only need to copy the secret as there is a sample fetch for the ClientRandom |
| 4385 | */ |
| 4386 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4387 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4388 | void SSL_CTX_keylog(const SSL *ssl, const char *line) |
| 4389 | { |
| 4390 | struct ssl_keylog *keylog; |
| 4391 | char *lastarg = NULL; |
| 4392 | char *dst = NULL; |
| 4393 | |
| 4394 | keylog = SSL_get_ex_data(ssl, ssl_keylog_index); |
| 4395 | if (!keylog) |
| 4396 | return; |
| 4397 | |
| 4398 | lastarg = strrchr(line, ' '); |
| 4399 | if (lastarg == NULL || ++lastarg == NULL) |
| 4400 | return; |
| 4401 | |
| 4402 | dst = pool_alloc(pool_head_ssl_keylog_str); |
| 4403 | if (!dst) |
| 4404 | return; |
| 4405 | |
| 4406 | strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1); |
| 4407 | dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0'; |
| 4408 | |
| 4409 | if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) { |
| 4410 | if (keylog->client_random) |
| 4411 | goto error; |
| 4412 | keylog->client_random = dst; |
| 4413 | |
| 4414 | } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) { |
| 4415 | if (keylog->client_early_traffic_secret) |
| 4416 | goto error; |
| 4417 | keylog->client_early_traffic_secret = dst; |
| 4418 | |
| 4419 | } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4420 | if(keylog->client_handshake_traffic_secret) |
| 4421 | goto error; |
| 4422 | keylog->client_handshake_traffic_secret = dst; |
| 4423 | |
| 4424 | } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4425 | if (keylog->server_handshake_traffic_secret) |
| 4426 | goto error; |
| 4427 | keylog->server_handshake_traffic_secret = dst; |
| 4428 | |
| 4429 | } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) { |
| 4430 | if (keylog->client_traffic_secret_0) |
| 4431 | goto error; |
| 4432 | keylog->client_traffic_secret_0 = dst; |
| 4433 | |
| 4434 | } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) { |
| 4435 | if (keylog->server_traffic_secret_0) |
| 4436 | goto error; |
| 4437 | keylog->server_traffic_secret_0 = dst; |
| 4438 | |
| 4439 | } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) { |
| 4440 | if (keylog->early_exporter_secret) |
| 4441 | goto error; |
| 4442 | keylog->early_exporter_secret = dst; |
| 4443 | |
| 4444 | } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) { |
| 4445 | if (keylog->exporter_secret) |
| 4446 | goto error; |
| 4447 | keylog->exporter_secret = dst; |
| 4448 | } else { |
| 4449 | goto error; |
| 4450 | } |
| 4451 | |
| 4452 | return; |
| 4453 | |
| 4454 | error: |
| 4455 | pool_free(pool_head_ssl_keylog_str, dst); |
| 4456 | |
| 4457 | return; |
| 4458 | } |
| 4459 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4460 | |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4461 | /* |
| 4462 | * This function applies the SSL configuration on a SSL_CTX |
| 4463 | * It returns an error code and fills the <err> buffer |
| 4464 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4465 | static int ssl_sock_prepare_ctx(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, SSL_CTX *ctx, char **err) |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4466 | { |
| 4467 | struct proxy *curproxy = bind_conf->frontend; |
| 4468 | int cfgerr = 0; |
| 4469 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4470 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4471 | const char *conf_ciphers; |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4472 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4473 | const char *conf_ciphersuites; |
| 4474 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4475 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4476 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4477 | if (ssl_conf) { |
| 4478 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4479 | int i, min, max; |
| 4480 | int flags = MC_SSL_O_ALL; |
| 4481 | |
| 4482 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 4483 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4484 | max = conf_ssl_methods->max ? conf_ssl_methods->max : bind_conf->ssl_conf.ssl_methods.max; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4485 | if (min) |
| 4486 | flags |= (methodVersions[min].flag - 1); |
| 4487 | if (max) |
| 4488 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4489 | min = max = CONF_TLSV_NONE; |
| 4490 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4491 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4492 | if (min) |
| 4493 | max = i; |
| 4494 | else |
| 4495 | min = max = i; |
| 4496 | } |
| 4497 | /* save real min/max */ |
| 4498 | conf_ssl_methods->min = min; |
| 4499 | conf_ssl_methods->max = max; |
| 4500 | if (!min) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4501 | memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4502 | err && *err ? *err : "", bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4503 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4504 | } |
| 4505 | } |
| 4506 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4507 | switch ((ssl_conf && ssl_conf->verify) ? ssl_conf->verify : bind_conf->ssl_conf.verify) { |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4508 | case SSL_SOCK_VERIFY_NONE: |
| 4509 | verify = SSL_VERIFY_NONE; |
| 4510 | break; |
| 4511 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4512 | verify = SSL_VERIFY_PEER; |
| 4513 | break; |
| 4514 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4515 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4516 | break; |
| 4517 | } |
| 4518 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4519 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4520 | char *ca_file = (ssl_conf && ssl_conf->ca_file) ? ssl_conf->ca_file : bind_conf->ssl_conf.ca_file; |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4521 | char *ca_verify_file = (ssl_conf && ssl_conf->ca_verify_file) ? ssl_conf->ca_verify_file : bind_conf->ssl_conf.ca_verify_file; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4522 | char *crl_file = (ssl_conf && ssl_conf->crl_file) ? ssl_conf->crl_file : bind_conf->ssl_conf.crl_file; |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4523 | if (ca_file || ca_verify_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4524 | /* set CAfile to verify */ |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4525 | if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4526 | memprintf(err, "%sProxy '%s': unable to set CA file '%s' for bind '%s' at [%s:%d].\n", |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4527 | err && *err ? *err : "", curproxy->id, ca_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4528 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4529 | } |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4530 | if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) { |
| 4531 | memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n", |
| 4532 | err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4533 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4534 | } |
| 4535 | if (ca_file && !((ssl_conf && ssl_conf->no_ca_names) || bind_conf->ssl_conf.no_ca_names)) { |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4536 | /* set CA names for client cert request, function returns void */ |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 4537 | SSL_CTX_set_client_CA_list(ctx, SSL_dup_CA_list(ssl_get_client_ca_file(ca_file))); |
Emmanuel Hocdet | 174dfe5 | 2017-07-28 15:01:05 +0200 | [diff] [blame] | 4538 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4539 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4540 | else { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4541 | memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4542 | err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4543 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4544 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4545 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4546 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4547 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4548 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4549 | if (!ssl_set_cert_crl_file(store, crl_file)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4550 | memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4551 | err && *err ? *err : "", curproxy->id, crl_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4552 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4553 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4554 | else { |
| 4555 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4556 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4557 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4558 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4559 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4560 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4561 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Nenad Merdanovic | 146defa | 2015-05-09 08:46:00 +0200 | [diff] [blame] | 4562 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4563 | if (!SSL_CTX_set_tlsext_ticket_key_cb(ctx, ssl_tlsext_ticket_key_cb)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4564 | memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4565 | err && *err ? *err : "", curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4566 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4567 | } |
| 4568 | } |
| 4569 | #endif |
| 4570 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4571 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4572 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4573 | if (conf_ciphers && |
| 4574 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4575 | memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4576 | err && *err ? *err : "", curproxy->id, conf_ciphers, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4577 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4578 | } |
| 4579 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4580 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4581 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4582 | if (conf_ciphersuites && |
| 4583 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4584 | memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4585 | err && *err ? *err : "", curproxy->id, conf_ciphersuites, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4586 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4587 | } |
| 4588 | #endif |
| 4589 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4590 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4591 | /* If tune.ssl.default-dh-param has not been set, |
| 4592 | neither has ssl-default-dh-file and no static DH |
| 4593 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4594 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4595 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4596 | (ssl_dh_ptr_index == -1 || |
| 4597 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Willy Tarreau | 3ba77d2 | 2020-05-08 09:31:18 +0200 | [diff] [blame] | 4598 | /* default to dh-param 2048 */ |
| 4599 | global_ssl.default_dh_param = 2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4600 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4601 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4602 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4603 | if (local_dh_1024 == NULL) { |
| 4604 | local_dh_1024 = ssl_get_dh_1024(); |
| 4605 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4606 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4607 | if (local_dh_2048 == NULL) { |
| 4608 | local_dh_2048 = ssl_get_dh_2048(); |
| 4609 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4610 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4611 | if (local_dh_4096 == NULL) { |
| 4612 | local_dh_4096 = ssl_get_dh_4096(); |
| 4613 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4614 | } |
| 4615 | } |
| 4616 | } |
| 4617 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4618 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4619 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Ilya Shipitsin | 7ff7747 | 2021-02-08 16:55:06 +0500 | [diff] [blame] | 4620 | #ifdef SSL_CTRL_SET_MSG_CALLBACK |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4621 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4622 | #endif |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4623 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4624 | SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog); |
| 4625 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4626 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4627 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4628 | ssl_conf_cur = NULL; |
| 4629 | if (ssl_conf && ssl_conf->npn_str) |
| 4630 | ssl_conf_cur = ssl_conf; |
| 4631 | else if (bind_conf->ssl_conf.npn_str) |
| 4632 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4633 | if (ssl_conf_cur) |
| 4634 | SSL_CTX_set_next_protos_advertised_cb(ctx, ssl_sock_advertise_npn_protos, ssl_conf_cur); |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 4635 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4636 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4637 | ssl_conf_cur = NULL; |
| 4638 | if (ssl_conf && ssl_conf->alpn_str) |
| 4639 | ssl_conf_cur = ssl_conf; |
| 4640 | else if (bind_conf->ssl_conf.alpn_str) |
| 4641 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4642 | if (ssl_conf_cur) |
| 4643 | SSL_CTX_set_alpn_select_cb(ctx, ssl_sock_advertise_alpn_protos, ssl_conf_cur); |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 4644 | #endif |
Ilya Shipitsin | 0aa8c29 | 2020-11-04 00:39:07 +0500 | [diff] [blame] | 4645 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4646 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4647 | if (conf_curves) { |
| 4648 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4649 | memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4650 | err && *err ? *err : "", curproxy->id, conf_curves, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4651 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4652 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4653 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4654 | } |
| 4655 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4656 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4657 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4658 | int i; |
| 4659 | EC_KEY *ecdh; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4660 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4661 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4662 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4663 | NULL); |
| 4664 | |
| 4665 | if (ecdhe == NULL) { |
Eric Salama | 3c8bde8 | 2019-11-20 11:33:40 +0100 | [diff] [blame] | 4666 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4667 | return cfgerr; |
| 4668 | } |
| 4669 | #else |
| 4670 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4671 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4672 | ECDHE_DEFAULT_CURVE); |
| 4673 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4674 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4675 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4676 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4677 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4678 | err && *err ? *err : "", curproxy->id, ecdhe, bind_conf->arg, bind_conf->file, bind_conf->line); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4679 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4680 | } |
| 4681 | else { |
| 4682 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4683 | EC_KEY_free(ecdh); |
| 4684 | } |
| 4685 | } |
| 4686 | #endif |
| 4687 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4688 | return cfgerr; |
| 4689 | } |
| 4690 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4691 | |
| 4692 | /* |
| 4693 | * Prepare the SSL_CTX based on the bind line configuration. |
| 4694 | * Since the CA file loading is made depending on the verify option of the bind |
| 4695 | * line, the link between the SSL_CTX and the CA file tree entry is made here. |
| 4696 | * If we want to create a link between the CA file entry and the corresponding |
| 4697 | * ckch instance (for CA file hot update), it needs to be done after |
| 4698 | * ssl_sock_prepare_ctx. |
| 4699 | * Returns 0 in case of success. |
| 4700 | */ |
| 4701 | int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 4702 | SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err) |
| 4703 | { |
| 4704 | int errcode = 0; |
| 4705 | |
| 4706 | errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err); |
| 4707 | if (!errcode && ckch_inst) |
| 4708 | ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL); |
| 4709 | |
| 4710 | return errcode; |
| 4711 | } |
| 4712 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4713 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4714 | { |
| 4715 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4716 | size_t prefixlen, suffixlen; |
| 4717 | |
| 4718 | /* Trivial case */ |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4719 | if (strcasecmp(pattern, hostname) == 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4720 | return 1; |
| 4721 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4722 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4723 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4724 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4725 | pattern_wildcard = NULL; |
| 4726 | pattern_left_label_end = pattern; |
| 4727 | while (*pattern_left_label_end != '.') { |
| 4728 | switch (*pattern_left_label_end) { |
| 4729 | case 0: |
| 4730 | /* End of label not found */ |
| 4731 | return 0; |
| 4732 | case '*': |
| 4733 | /* If there is more than one wildcards */ |
| 4734 | if (pattern_wildcard) |
| 4735 | return 0; |
| 4736 | pattern_wildcard = pattern_left_label_end; |
| 4737 | break; |
| 4738 | } |
| 4739 | pattern_left_label_end++; |
| 4740 | } |
| 4741 | |
| 4742 | /* If it's not trivial and there is no wildcard, it can't |
| 4743 | * match */ |
| 4744 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4745 | return 0; |
| 4746 | |
| 4747 | /* Make sure all labels match except the leftmost */ |
| 4748 | hostname_left_label_end = strchr(hostname, '.'); |
| 4749 | if (!hostname_left_label_end |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4750 | || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4751 | return 0; |
| 4752 | |
| 4753 | /* Make sure the leftmost label of the hostname is long enough |
| 4754 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4755 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4756 | return 0; |
| 4757 | |
| 4758 | /* Finally compare the string on either side of the |
| 4759 | * wildcard */ |
| 4760 | prefixlen = pattern_wildcard - pattern; |
| 4761 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4762 | if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0)) |
| 4763 | || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4764 | return 0; |
| 4765 | |
| 4766 | return 1; |
| 4767 | } |
| 4768 | |
| 4769 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4770 | { |
| 4771 | SSL *ssl; |
| 4772 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4773 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4774 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4775 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4776 | |
| 4777 | int depth; |
| 4778 | X509 *cert; |
| 4779 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4780 | int i; |
| 4781 | X509_NAME *cert_subject; |
| 4782 | char *str; |
| 4783 | |
| 4784 | if (ok == 0) |
| 4785 | return ok; |
| 4786 | |
| 4787 | ssl = X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()); |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4788 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4789 | ssl_ctx = conn->xprt_ctx; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4790 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4791 | /* We're checking if the provided hostnames match the desired one. The |
| 4792 | * desired hostname comes from the SNI we presented if any, or if not |
| 4793 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4794 | * directive. If neither is set, we don't care about the name so the |
| 4795 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4796 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4797 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4798 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4799 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4800 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4801 | if (!servername) |
| 4802 | return ok; |
| 4803 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4804 | |
| 4805 | /* We only need to verify the CN on the actual server cert, |
| 4806 | * not the indirect CAs */ |
| 4807 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4808 | if (depth != 0) |
| 4809 | return ok; |
| 4810 | |
| 4811 | /* At this point, the cert is *not* OK unless we can find a |
| 4812 | * hostname match */ |
| 4813 | ok = 0; |
| 4814 | |
| 4815 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4816 | /* It seems like this might happen if verify peer isn't set */ |
| 4817 | if (!cert) |
| 4818 | return ok; |
| 4819 | |
| 4820 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4821 | if (alt_names) { |
| 4822 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4823 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4824 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4825 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4826 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4827 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4828 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4829 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4830 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4831 | OPENSSL_free(str); |
| 4832 | } |
| 4833 | } |
| 4834 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4835 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4836 | } |
| 4837 | |
| 4838 | cert_subject = X509_get_subject_name(cert); |
| 4839 | i = -1; |
| 4840 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4841 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4842 | ASN1_STRING *value; |
| 4843 | value = X509_NAME_ENTRY_get_data(entry); |
| 4844 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4845 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4846 | OPENSSL_free(str); |
| 4847 | } |
| 4848 | } |
| 4849 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4850 | /* report the mismatch and indicate if SNI was used or not */ |
| 4851 | if (!ok && !conn->err_code) |
| 4852 | conn->err_code = sni ? CO_ER_SSL_MISMATCH_SNI : CO_ER_SSL_MISMATCH; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4853 | return ok; |
| 4854 | } |
| 4855 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4856 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4857 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4858 | { |
| 4859 | int cfgerr = 0; |
William Lallemand | 2c776f1 | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 4860 | SSL_CTX *ctx; |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4861 | /* Automatic memory computations need to know we use SSL there */ |
| 4862 | global.ssl_used_backend = 1; |
| 4863 | |
| 4864 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4865 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4866 | if ((srv->ssl_ctx.reused_sess = calloc(1, global.nbthread*sizeof(*srv->ssl_ctx.reused_sess))) == NULL) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4867 | ha_alert("out of memory.\n"); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4868 | cfgerr++; |
| 4869 | return cfgerr; |
| 4870 | } |
| 4871 | } |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 4872 | if (srv->use_ssl == 1) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4873 | srv->xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4874 | |
William Lallemand | 2c776f1 | 2021-12-28 18:47:17 +0100 | [diff] [blame] | 4875 | if (srv->ssl_ctx.client_crt) { |
| 4876 | const int create_if_none = srv->flags & SRV_F_DYNAMIC ? 0 : 1; |
| 4877 | char *err = NULL; |
| 4878 | int err_code = 0; |
| 4879 | |
| 4880 | /* If there is a crt keyword there, the SSL_CTX will be created here. */ |
| 4881 | err_code = ssl_sock_load_srv_cert(srv->ssl_ctx.client_crt, srv, create_if_none, &err); |
| 4882 | if (err_code != ERR_NONE) { |
| 4883 | if ((err_code & ERR_WARN) && !(err_code & ERR_ALERT)) |
| 4884 | ha_warning("%s", err); |
| 4885 | else |
| 4886 | ha_alert("%s", err); |
| 4887 | |
| 4888 | if (err_code & (ERR_FATAL|ERR_ABORT)) |
| 4889 | cfgerr++; |
| 4890 | } |
| 4891 | ha_free(&err); |
| 4892 | } |
| 4893 | |
| 4894 | ctx = srv->ssl_ctx.ctx; |
| 4895 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4896 | /* The context will be uninitialized if there wasn't any "cert" option |
| 4897 | * in the server line. */ |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4898 | if (!ctx) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4899 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 4900 | if (!ctx) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4901 | ha_alert("unable to allocate ssl context.\n"); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4902 | cfgerr++; |
| 4903 | return cfgerr; |
| 4904 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4905 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4906 | srv->ssl_ctx.ctx = ctx; |
| 4907 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4908 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4909 | cfgerr += ssl_sock_prep_srv_ctx_and_inst(srv, srv->ssl_ctx.ctx, srv->ssl_ctx.inst); |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4910 | |
| 4911 | return cfgerr; |
| 4912 | } |
| 4913 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4914 | /* Initialize an SSL context that will be used on the backend side. |
| 4915 | * Returns an error count. |
| 4916 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4917 | static int ssl_sock_prepare_srv_ssl_ctx(const struct server *srv, SSL_CTX *ctx) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4918 | { |
| 4919 | struct proxy *curproxy = srv->proxy; |
| 4920 | int cfgerr = 0; |
| 4921 | long options = |
| 4922 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4923 | SSL_OP_NO_SSLv2 | |
| 4924 | SSL_OP_NO_COMPRESSION; |
| 4925 | long mode = |
| 4926 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4927 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 4928 | SSL_MODE_RELEASE_BUFFERS | |
| 4929 | SSL_MODE_SMALL_BUFFERS; |
| 4930 | int verify = SSL_VERIFY_NONE; |
| 4931 | const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
| 4932 | int i, min, max, hole; |
| 4933 | int flags = MC_SSL_O_ALL; |
| 4934 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4935 | if (conf_ssl_methods->flags && (conf_ssl_methods->min || conf_ssl_methods->max)) |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4936 | ha_warning("no-sslv3/no-tlsv1x are ignored for this server. " |
| 4937 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n"); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4938 | else |
| 4939 | flags = conf_ssl_methods->flags; |
| 4940 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4941 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4942 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4943 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4944 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4945 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4946 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4947 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4948 | min = max = CONF_TLSV_NONE; |
| 4949 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4950 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4951 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4952 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4953 | if (min) { |
| 4954 | if (hole) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 4955 | ha_warning("%s '%s': SSL/TLS versions range not contiguous for server '%s'. " |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4956 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4957 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4958 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4959 | hole = 0; |
| 4960 | } |
| 4961 | max = i; |
| 4962 | } |
| 4963 | else { |
| 4964 | min = max = i; |
| 4965 | } |
| 4966 | } |
| 4967 | else { |
| 4968 | if (min) |
| 4969 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4970 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4971 | if (!min) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 4972 | ha_alert("%s '%s': all SSL/TLS versions are disabled for server '%s'.\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4973 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4974 | cfgerr += 1; |
| 4975 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4976 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4977 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4978 | /* Keep force-xxx implementation as it is in older haproxy. It's a |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 4979 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4980 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4981 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4982 | else |
| 4983 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4984 | if (flags & methodVersions[i].flag) |
| 4985 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4986 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4987 | /* set the max_version is required to cap TLS version or activate new TLS (v1.3) */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4988 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4989 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4990 | #endif |
| 4991 | |
| 4992 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4993 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4994 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4995 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4996 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4997 | if (global_ssl.async) |
| 4998 | mode |= SSL_MODE_ASYNC; |
| 4999 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5000 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 5001 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5002 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 5003 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5004 | switch (srv->ssl_ctx.verify) { |
| 5005 | case SSL_SOCK_VERIFY_NONE: |
| 5006 | verify = SSL_VERIFY_NONE; |
| 5007 | break; |
| 5008 | case SSL_SOCK_VERIFY_REQUIRED: |
| 5009 | verify = SSL_VERIFY_PEER; |
| 5010 | break; |
| 5011 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5012 | SSL_CTX_set_verify(ctx, verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 5013 | (srv->ssl_ctx.verify_host || (verify & SSL_VERIFY_PEER)) ? ssl_sock_srv_verifycbk : NULL); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5014 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5015 | if (srv->ssl_ctx.ca_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 5016 | /* set CAfile to verify */ |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5017 | if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5018 | ha_alert("unable to set CA file '%s'.\n", |
| 5019 | srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5020 | cfgerr++; |
| 5021 | } |
| 5022 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5023 | else { |
| 5024 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5025 | ha_alert("verify is enabled by default but no CA file specified. If you're running on a LAN where you're certain to trust the server's certificate, please set an explicit 'verify none' statement on the 'server' line, or use 'ssl-server-verify none' in the global section to disable server-side verifications by default.\n"); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5026 | else |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5027 | ha_alert("verify is enabled but no CA file specified.\n"); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 5028 | cfgerr++; |
| 5029 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5030 | #ifdef X509_V_FLAG_CRL_CHECK |
| 5031 | if (srv->ssl_ctx.crl_file) { |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5032 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5033 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 5034 | if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5035 | ha_alert("unable to configure CRL file '%s'.\n", |
| 5036 | srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 5037 | cfgerr++; |
| 5038 | } |
| 5039 | else { |
| 5040 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 5041 | } |
| 5042 | } |
| 5043 | #endif |
| 5044 | } |
| 5045 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5046 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 5047 | SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5048 | if (srv->ssl_ctx.ciphers && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5049 | !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5050 | ha_alert("unable to set SSL cipher list to '%s'.\n", |
| 5051 | srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5052 | cfgerr++; |
| 5053 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5054 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 5055 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5056 | if (srv->ssl_ctx.ciphersuites && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5057 | !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 5058 | ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 5059 | srv->ssl_ctx.ciphersuites); |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 5060 | cfgerr++; |
| 5061 | } |
| 5062 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5063 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 5064 | if (srv->ssl_ctx.npn_str) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5065 | SSL_CTX_set_next_proto_select_cb(ctx, ssl_sock_srv_select_protos, (struct server*)srv); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5066 | #endif |
| 5067 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 5068 | if (srv->ssl_ctx.alpn_str) |
| 5069 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 5070 | #endif |
| 5071 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5072 | |
| 5073 | return cfgerr; |
| 5074 | } |
| 5075 | |
| 5076 | /* |
| 5077 | * Prepare the frontend's SSL_CTX based on the server line configuration. |
| 5078 | * Since the CA file loading is made depending on the verify option of the |
| 5079 | * server line, the link between the SSL_CTX and the CA file tree entry is |
| 5080 | * made here. |
| 5081 | * If we want to create a link between the CA file entry and the corresponding |
| 5082 | * ckch instance (for CA file hot update), it needs to be done after |
| 5083 | * ssl_sock_prepare_srv_ssl_ctx. |
| 5084 | * Returns an error count. |
| 5085 | */ |
| 5086 | int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx, |
| 5087 | struct ckch_inst *ckch_inst) |
| 5088 | { |
| 5089 | int cfgerr = 0; |
| 5090 | |
| 5091 | cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx); |
| 5092 | if (!cfgerr && ckch_inst) |
| 5093 | ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5094 | |
| 5095 | return cfgerr; |
| 5096 | } |
| 5097 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5098 | |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5099 | /* |
| 5100 | * Create an initial CTX used to start the SSL connections. |
| 5101 | * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs. |
| 5102 | * Returns 0 if succeeded, or something >0 if not. |
| 5103 | */ |
| 5104 | #ifdef USE_QUIC |
| 5105 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5106 | { |
| 5107 | if (bind_conf->xprt == xprt_get(XPRT_QUIC)) |
| 5108 | return ssl_quic_initial_ctx(bind_conf); |
| 5109 | else |
| 5110 | return ssl_sock_initial_ctx(bind_conf); |
| 5111 | } |
| 5112 | #else |
| 5113 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5114 | { |
| 5115 | return ssl_sock_initial_ctx(bind_conf); |
| 5116 | } |
| 5117 | #endif |
| 5118 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5119 | /* Walks down the two trees in bind_conf and prepares all certs. The pointer may |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5120 | * be NULL, in which case nothing is done. Returns the number of errors |
| 5121 | * encountered. |
| 5122 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5123 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5124 | { |
| 5125 | struct ebmb_node *node; |
| 5126 | struct sni_ctx *sni; |
| 5127 | int err = 0; |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5128 | int errcode = 0; |
| 5129 | char *errmsg = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5130 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 5131 | /* Automatic memory computations need to know we use SSL there */ |
| 5132 | global.ssl_used_frontend = 1; |
| 5133 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5134 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 5135 | if (!bind_conf->initial_ctx) { |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5136 | err += ssl_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5137 | /* It should not be necessary to call this function, but it's |
| 5138 | necessary first to check and move all initialisation related |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5139 | to initial_ctx in ssl_initial_ctx. */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5140 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg); |
| 5141 | } |
| 5142 | if (bind_conf->default_ctx) { |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5143 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, bind_conf->default_ssl_conf, bind_conf->default_ctx, bind_conf->default_inst, &errmsg); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5144 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5145 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5146 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5147 | while (node) { |
| 5148 | sni = ebmb_entry(node, struct sni_ctx, name); |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5149 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5150 | /* only initialize the CTX on its first occurrence and |
| 5151 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5152 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg); |
| 5153 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5154 | node = ebmb_next(node); |
| 5155 | } |
| 5156 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5157 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5158 | while (node) { |
| 5159 | sni = ebmb_entry(node, struct sni_ctx, name); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5160 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5161 | /* only initialize the CTX on its first occurrence and |
| 5162 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5163 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5164 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5165 | node = ebmb_next(node); |
| 5166 | } |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5167 | |
| 5168 | if (errcode & ERR_WARN) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5169 | ha_warning("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5170 | } else if (errcode & ERR_CODE) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5171 | ha_alert("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5172 | err++; |
| 5173 | } |
| 5174 | |
| 5175 | free(errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5176 | return err; |
| 5177 | } |
| 5178 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5179 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 5180 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 5181 | * alerts are directly emitted since the rest of the stack does it below. |
| 5182 | */ |
| 5183 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 5184 | { |
| 5185 | struct proxy *px = bind_conf->frontend; |
| 5186 | int alloc_ctx; |
| 5187 | int err; |
| 5188 | |
| 5189 | if (!bind_conf->is_ssl) { |
| 5190 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5191 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 5192 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5193 | } |
| 5194 | return 0; |
| 5195 | } |
| 5196 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5197 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5198 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 5199 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5200 | } |
| 5201 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5202 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5203 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5204 | return -1; |
| 5205 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5206 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5207 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5208 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5209 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
Willy Tarreau | 9135859 | 2021-06-15 08:08:04 +0200 | [diff] [blame] | 5210 | sizeof(*sh_ssl_sess_tree), (global.nbthread > 1)); |
Frédéric Lécaille | 4c8aa11 | 2018-10-25 20:22:46 +0200 | [diff] [blame] | 5211 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5212 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5213 | 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"); |
| 5214 | else |
| 5215 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5216 | return -1; |
| 5217 | } |
| 5218 | /* free block callback */ |
| 5219 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5220 | /* init the root tree within the extra space */ |
| 5221 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5222 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5223 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5224 | err = 0; |
| 5225 | /* initialize all certificate contexts */ |
| 5226 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5227 | |
| 5228 | /* initialize CA variables if the certificates generation is enabled */ |
| 5229 | err += ssl_sock_load_ca(bind_conf); |
| 5230 | |
| 5231 | return -err; |
| 5232 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5233 | |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5234 | /* release ssl context allocated for servers. Most of the field free here |
| 5235 | * must also be allocated in srv_ssl_settings_cpy() */ |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5236 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5237 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5238 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5239 | ha_free(&srv->ssl_ctx.alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5240 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5241 | #ifdef OPENSSL_NPN_NEGOTIATED |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5242 | ha_free(&srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5243 | #endif |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5244 | if (srv->ssl_ctx.reused_sess) { |
| 5245 | int i; |
| 5246 | |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5247 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5248 | ha_free(&srv->ssl_ctx.reused_sess[i].ptr); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5249 | ha_free(&srv->ssl_ctx.reused_sess[i].sni); |
| 5250 | } |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5251 | ha_free(&srv->ssl_ctx.reused_sess); |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5252 | } |
| 5253 | |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5254 | if (srv->ssl_ctx.ctx) { |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5255 | SSL_CTX_free(srv->ssl_ctx.ctx); |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5256 | srv->ssl_ctx.ctx = NULL; |
| 5257 | } |
William Lallemand | 231610a | 2021-12-30 11:25:43 +0100 | [diff] [blame] | 5258 | |
| 5259 | ha_free(&srv->ssl_ctx.ca_file); |
| 5260 | ha_free(&srv->ssl_ctx.crl_file); |
| 5261 | ha_free(&srv->ssl_ctx.client_crt); |
| 5262 | ha_free(&srv->ssl_ctx.verify_host); |
| 5263 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 5264 | ha_free(&srv->sni_expr); |
| 5265 | #endif |
| 5266 | ha_free(&srv->ssl_ctx.ciphers); |
| 5267 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
| 5268 | ha_free(&srv->ssl_ctx.ciphersuites); |
| 5269 | #endif |
William Lallemand | e69563f | 2021-12-30 14:45:19 +0100 | [diff] [blame] | 5270 | /* If there is a certificate we must unlink the ckch instance */ |
| 5271 | ckch_inst_free(srv->ssl_ctx.inst); |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5272 | } |
| 5273 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5274 | /* Walks down the two trees in bind_conf and frees all the certs. The pointer may |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5275 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5276 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5277 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5278 | { |
| 5279 | struct ebmb_node *node, *back; |
| 5280 | struct sni_ctx *sni; |
| 5281 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5282 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5283 | while (node) { |
| 5284 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5285 | back = ebmb_next(node); |
| 5286 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5287 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5288 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5289 | free(sni); |
| 5290 | node = back; |
| 5291 | } |
| 5292 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5293 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5294 | while (node) { |
| 5295 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5296 | back = ebmb_next(node); |
| 5297 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5298 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5299 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5300 | free(sni); |
| 5301 | node = back; |
| 5302 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5303 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5304 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5305 | bind_conf->initial_ctx = NULL; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5306 | SSL_CTX_free(bind_conf->default_ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5307 | bind_conf->default_ctx = NULL; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5308 | bind_conf->default_inst = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5309 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5310 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5311 | |
| 5312 | |
| 5313 | void ssl_sock_deinit() |
| 5314 | { |
| 5315 | crtlist_deinit(); /* must be free'd before the ckchs */ |
| 5316 | ckch_deinit(); |
| 5317 | } |
| 5318 | REGISTER_POST_DEINIT(ssl_sock_deinit); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5319 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5320 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5321 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5322 | { |
| 5323 | ssl_sock_free_ca(bind_conf); |
| 5324 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5325 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5326 | free(bind_conf->ca_sign_file); |
| 5327 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5328 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5329 | free(bind_conf->keys_ref->filename); |
| 5330 | free(bind_conf->keys_ref->tlskeys); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5331 | LIST_DELETE(&bind_conf->keys_ref->list); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5332 | free(bind_conf->keys_ref); |
| 5333 | } |
| 5334 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5335 | bind_conf->ca_sign_pass = NULL; |
| 5336 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5337 | } |
| 5338 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5339 | /* Load CA cert file and private key used to generate certificates */ |
| 5340 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5341 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5342 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5343 | struct proxy *px = bind_conf->frontend; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5344 | struct cert_key_and_chain *ckch = NULL; |
| 5345 | int ret = 0; |
| 5346 | char *err = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5347 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 5348 | if (!bind_conf->generate_certs) |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5349 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5350 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5351 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5352 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5353 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5354 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5355 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5356 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5357 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5358 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5359 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5360 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5361 | "no CA certificate File configured at [%s:%d].\n", |
| 5362 | px->id, bind_conf->file, bind_conf->line); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5363 | goto failed; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5364 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5365 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5366 | /* Allocate cert structure */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 5367 | ckch = calloc(1, sizeof(*ckch)); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5368 | if (!ckch) { |
| 5369 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n", |
| 5370 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5371 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5372 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5373 | |
| 5374 | /* Try to parse file */ |
| 5375 | if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) { |
| 5376 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n", |
| 5377 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line, err); |
Willy Tarreau | 01acf56 | 2021-02-26 21:12:15 +0100 | [diff] [blame] | 5378 | free(err); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5379 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5380 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5381 | |
| 5382 | /* Fail if missing cert or pkey */ |
| 5383 | if ((!ckch->cert) || (!ckch->key)) { |
| 5384 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n", |
| 5385 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5386 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5387 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5388 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5389 | /* Final assignment to bind */ |
| 5390 | bind_conf->ca_sign_ckch = ckch; |
| 5391 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5392 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5393 | failed: |
| 5394 | if (ckch) { |
| 5395 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 5396 | free(ckch); |
| 5397 | } |
| 5398 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5399 | bind_conf->generate_certs = 0; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5400 | ret++; |
| 5401 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5402 | } |
| 5403 | |
| 5404 | /* Release CA cert and private key used to generate certificated */ |
| 5405 | void |
| 5406 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5407 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5408 | if (bind_conf->ca_sign_ckch) { |
| 5409 | ssl_sock_free_cert_key_and_chain_contents(bind_conf->ca_sign_ckch); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5410 | ha_free(&bind_conf->ca_sign_ckch); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5411 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5412 | } |
| 5413 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5414 | /* |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5415 | * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and |
| 5416 | * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings. |
| 5417 | * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom |
| 5418 | * data for the BIO and store <conn> as user data of the SSL session object. |
Ilya Shipitsin | 1e9a666 | 2021-01-05 22:10:46 +0500 | [diff] [blame] | 5419 | * This is the responsibility of the caller to check the validity of all the pointers passed |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5420 | * as parameters to this function. |
| 5421 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to |
| 5422 | * CO_ER_SSL_NO_MEM. |
| 5423 | */ |
| 5424 | int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx, |
| 5425 | SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx) |
| 5426 | { |
| 5427 | int retry = 1; |
| 5428 | |
| 5429 | retry: |
| 5430 | /* Alloc a new SSL session. */ |
| 5431 | *ssl = SSL_new(ssl_ctx); |
| 5432 | if (!*ssl) { |
| 5433 | if (!retry--) |
| 5434 | goto err; |
| 5435 | |
| 5436 | pool_gc(NULL); |
| 5437 | goto retry; |
| 5438 | } |
| 5439 | |
| 5440 | *bio = BIO_new(bio_meth); |
| 5441 | if (!*bio) { |
| 5442 | SSL_free(*ssl); |
| 5443 | *ssl = NULL; |
| 5444 | if (!retry--) |
| 5445 | goto err; |
| 5446 | |
| 5447 | pool_gc(NULL); |
| 5448 | goto retry; |
| 5449 | } |
| 5450 | |
| 5451 | BIO_set_data(*bio, ctx); |
| 5452 | SSL_set_bio(*ssl, *bio, *bio); |
| 5453 | |
| 5454 | /* set connection pointer. */ |
| 5455 | if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) { |
| 5456 | SSL_free(*ssl); |
| 5457 | *ssl = NULL; |
| 5458 | if (!retry--) |
| 5459 | goto err; |
| 5460 | |
| 5461 | pool_gc(NULL); |
| 5462 | goto retry; |
| 5463 | } |
| 5464 | |
| 5465 | return 0; |
| 5466 | |
| 5467 | err: |
| 5468 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5469 | return -1; |
| 5470 | } |
| 5471 | |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 5472 | /* This function is called when all the XPRT have been initialized. We can |
| 5473 | * now attempt to start the SSL handshake. |
| 5474 | */ |
| 5475 | static int ssl_sock_start(struct connection *conn, void *xprt_ctx) |
| 5476 | { |
| 5477 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5478 | |
| 5479 | if (ctx->xprt->start) { |
| 5480 | int ret; |
| 5481 | |
| 5482 | ret = ctx->xprt->start(conn, ctx->xprt_ctx); |
| 5483 | if (ret < 0) |
| 5484 | return ret; |
| 5485 | } |
| 5486 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 5487 | |
| 5488 | return 0; |
| 5489 | } |
| 5490 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5491 | /* |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5492 | * This function is called if SSL * context is not yet allocated. The function |
| 5493 | * is designed to be called before any other data-layer operation and sets the |
| 5494 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5495 | * It returns 0 on success and -1 in error case. |
| 5496 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5497 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5498 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5499 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5500 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5501 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5502 | return 0; |
| 5503 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5504 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5505 | if (!ctx) { |
| 5506 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5507 | return -1; |
| 5508 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5509 | ctx->wait_event.tasklet = tasklet_new(); |
| 5510 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5511 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5512 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5513 | return -1; |
| 5514 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5515 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5516 | ctx->wait_event.tasklet->context = ctx; |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5517 | ctx->wait_event.tasklet->state |= TASK_HEAVY; // assign it to the bulk queue during handshake |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5518 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5519 | ctx->sent_early_data = 0; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5520 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5521 | ctx->conn = conn; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5522 | ctx->subs = NULL; |
Emeric Brun | 5762a0d | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5523 | ctx->xprt_st = 0; |
| 5524 | ctx->xprt_ctx = NULL; |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 5525 | ctx->error_code = 0; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5526 | |
| 5527 | /* Only work with sockets for now, this should be adapted when we'll |
| 5528 | * add QUIC support. |
| 5529 | */ |
| 5530 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5531 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5532 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5533 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5534 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5535 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5536 | if (global.maxsslconn && global.sslconns >= global.maxsslconn) { |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5537 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5538 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5539 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5540 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5541 | /* If it is in client mode initiate SSL session |
| 5542 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5543 | if (objt_server(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5544 | if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx, |
| 5545 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5546 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5547 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5548 | SSL_set_connect_state(ctx->ssl); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5549 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock)); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 5550 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5551 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5552 | SSL_SESSION *sess = d2i_SSL_SESSION(NULL, &ptr, __objt_server(conn->target)->ssl_ctx.reused_sess[tid].size); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5553 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5554 | SSL_SESSION_free(sess); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5555 | ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5556 | } else if (sess) { |
| 5557 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5558 | } |
| 5559 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5560 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &(__objt_server(conn->target)->ssl_ctx.lock)); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 5561 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5562 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5563 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5564 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5565 | _HA_ATOMIC_INC(&global.sslconns); |
| 5566 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5567 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5568 | return 0; |
| 5569 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5570 | else if (objt_listener(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5571 | struct bind_conf *bc = __objt_listener(conn->target)->bind_conf; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5572 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5573 | if (ssl_bio_and_sess_init(conn, bc->initial_ctx, |
| 5574 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5575 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5576 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5577 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5578 | if (bc->ssl_conf.early_data) { |
Frédéric Lécaille | 3139c1b | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5579 | b_alloc(&ctx->early_buf); |
| 5580 | SSL_set_max_early_data(ctx->ssl, |
| 5581 | /* Only allow early data if we managed to allocate |
| 5582 | * a buffer. |
| 5583 | */ |
| 5584 | (!b_is_null(&ctx->early_buf)) ? |
| 5585 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5586 | } |
| 5587 | #endif |
| 5588 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5589 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5590 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5591 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5592 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5593 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Willy Tarreau | a84986a | 2021-02-03 11:21:38 +0100 | [diff] [blame] | 5594 | if (bc->ssl_conf.early_data) |
| 5595 | conn->flags |= CO_FL_EARLY_SSL_HS; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5596 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5597 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5598 | _HA_ATOMIC_INC(&global.sslconns); |
| 5599 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5600 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5601 | return 0; |
| 5602 | } |
| 5603 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5604 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5605 | err: |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5606 | if (ctx && ctx->wait_event.tasklet) |
| 5607 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5608 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5609 | return -1; |
| 5610 | } |
| 5611 | |
| 5612 | |
| 5613 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5614 | * updates the FD status if it wants some polling before being called again. |
| 5615 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5616 | * otherwise it returns non-zero and removes itself from the connection's |
| 5617 | * flags (the bit is provided in <flag> by the caller). |
| 5618 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5619 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5620 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5621 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5622 | int ret; |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5623 | struct ssl_counters *counters = NULL; |
| 5624 | struct ssl_counters *counters_px = NULL; |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5625 | struct listener *li; |
| 5626 | struct server *srv; |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5627 | socklen_t lskerr; |
| 5628 | int skerr; |
| 5629 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5630 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5631 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5632 | return 0; |
| 5633 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5634 | /* get counters */ |
| 5635 | switch (obj_type(conn->target)) { |
| 5636 | case OBJ_TYPE_LISTENER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5637 | li = __objt_listener(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5638 | counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module); |
| 5639 | counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe, |
| 5640 | &ssl_stats_module); |
| 5641 | break; |
| 5642 | |
| 5643 | case OBJ_TYPE_SERVER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5644 | srv = __objt_server(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5645 | counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module); |
| 5646 | counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be, |
| 5647 | &ssl_stats_module); |
| 5648 | break; |
| 5649 | |
| 5650 | default: |
| 5651 | break; |
| 5652 | } |
| 5653 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5654 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5655 | goto out_error; |
| 5656 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5657 | /* don't start calculating a handshake on a dead connection */ |
| 5658 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) |
| 5659 | goto out_error; |
| 5660 | |
| 5661 | /* FIXME/WT: for now we don't have a clear way to inspect the connection |
| 5662 | * status from the lower layers, so let's check the FD directly. Ideally |
| 5663 | * the xprt layers should provide some status indicating their knowledge |
| 5664 | * of shutdowns or error. |
| 5665 | */ |
| 5666 | skerr = 0; |
| 5667 | lskerr = sizeof(skerr); |
| 5668 | if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) || |
| 5669 | skerr != 0) |
| 5670 | goto out_error; |
| 5671 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5672 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5673 | /* |
| 5674 | * Check if we have early data. If we do, we have to read them |
| 5675 | * before SSL_do_handshake() is called, And there's no way to |
| 5676 | * detect early data, except to try to read them |
| 5677 | */ |
| 5678 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5679 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5680 | |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5681 | while (1) { |
| 5682 | ret = SSL_read_early_data(ctx->ssl, |
| 5683 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5684 | &read_data); |
| 5685 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5686 | goto check_error; |
| 5687 | if (read_data > 0) { |
| 5688 | conn->flags |= CO_FL_EARLY_DATA; |
| 5689 | b_add(&ctx->early_buf, read_data); |
| 5690 | } |
| 5691 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5692 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5693 | if (!b_data(&ctx->early_buf)) |
| 5694 | b_free(&ctx->early_buf); |
| 5695 | break; |
| 5696 | } |
| 5697 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5698 | } |
| 5699 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5700 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5701 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5702 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5703 | * the reneg handshake. |
| 5704 | * Here we use SSL_peek as a workaround for reneg. |
| 5705 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 5706 | if (!(conn->flags & CO_FL_WAIT_L6_CONN) && SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5707 | char c; |
| 5708 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5709 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5710 | if (ret <= 0) { |
| 5711 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5712 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5713 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5714 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5715 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5716 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5717 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5718 | return 0; |
| 5719 | } |
| 5720 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5721 | /* handshake may have been completed but we have |
| 5722 | * no more data to read. |
| 5723 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5724 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5725 | ret = 1; |
| 5726 | goto reneg_ok; |
| 5727 | } |
| 5728 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5729 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5730 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5731 | return 0; |
| 5732 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5733 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5734 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5735 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5736 | return 0; |
| 5737 | } |
| 5738 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5739 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5740 | /* if errno is null, then connection was successfully established */ |
| 5741 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5742 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5743 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5744 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5745 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5746 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5747 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5748 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5749 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5750 | /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5751 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5752 | empty_handshake = state == TLS_ST_BEFORE; |
| 5753 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5754 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5755 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5756 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5757 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5758 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5759 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5760 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5761 | else |
| 5762 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5763 | } |
| 5764 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5765 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5766 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5767 | else |
| 5768 | conn->err_code = CO_ER_SSL_ABORT; |
| 5769 | } |
| 5770 | } |
| 5771 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5772 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5773 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5774 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5775 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5776 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5777 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5778 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5779 | goto out_error; |
| 5780 | } |
| 5781 | else { |
| 5782 | /* Fail on all other handshake errors */ |
| 5783 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5784 | * buffer, causing an RST to be emitted upon close() on |
| 5785 | * TCP sockets. We first try to drain possibly pending |
| 5786 | * data to avoid this as much as possible. |
| 5787 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5788 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5789 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5790 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5791 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5792 | goto out_error; |
| 5793 | } |
| 5794 | } |
| 5795 | /* read some data: consider handshake completed */ |
| 5796 | goto reneg_ok; |
| 5797 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5798 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5799 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5800 | if (ret != 1) { |
| 5801 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5802 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5803 | |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 5804 | if (!ctx->error_code) |
| 5805 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 7c6898e | 2021-07-29 09:45:51 +0200 | [diff] [blame] | 5806 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5807 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5808 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5809 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5810 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5811 | return 0; |
| 5812 | } |
| 5813 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5814 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5815 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5816 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5817 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5818 | return 0; |
| 5819 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5820 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5821 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5822 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5823 | return 0; |
| 5824 | } |
| 5825 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5826 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5827 | /* if errno is null, then connection was successfully established */ |
| 5828 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5829 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5830 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5831 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5832 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5833 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5834 | #else |
| 5835 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5836 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5837 | /* use SSL_get_state() in OpenSSL >= 1.1.0; SSL_state() is broken */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5838 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5839 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5840 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5841 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5842 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5843 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5844 | if (empty_handshake) { |
| 5845 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5846 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5847 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5848 | else |
| 5849 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5850 | } |
| 5851 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5852 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5853 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5854 | else |
| 5855 | conn->err_code = CO_ER_SSL_ABORT; |
| 5856 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5857 | } |
| 5858 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5859 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5860 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5861 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5862 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5863 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5864 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5865 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5866 | goto out_error; |
| 5867 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5868 | else { |
| 5869 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5870 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5871 | * buffer, causing an RST to be emitted upon close() on |
| 5872 | * TCP sockets. We first try to drain possibly pending |
| 5873 | * data to avoid this as much as possible. |
| 5874 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5875 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5876 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5877 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5878 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5879 | goto out_error; |
| 5880 | } |
| 5881 | } |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5882 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5883 | else { |
| 5884 | /* |
| 5885 | * If the server refused the early data, we have to send a |
| 5886 | * 425 to the client, as we no longer have the data to sent |
| 5887 | * them again. |
| 5888 | */ |
| 5889 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5890 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5891 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5892 | goto out_error; |
| 5893 | } |
| 5894 | } |
| 5895 | } |
| 5896 | #endif |
| 5897 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5898 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5899 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5900 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5901 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5902 | /* ASYNC engine API doesn't support moving read/write |
| 5903 | * buffers. So we disable ASYNC mode right after |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 5904 | * the handshake to avoid buffer overflow. |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5905 | */ |
| 5906 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5907 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5908 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5909 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5910 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5911 | if (objt_server(conn->target)) { |
| 5912 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5913 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5914 | global.ssl_be_keys_max = global.ssl_be_keys_per_sec.curr_ctr; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5915 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5916 | else { |
| 5917 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5918 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5919 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5920 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5921 | |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5922 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 5923 | HA_ATOMIC_INC(&counters->sess); |
| 5924 | HA_ATOMIC_INC(&counters_px->sess); |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5925 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5926 | } |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5927 | else if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 5928 | HA_ATOMIC_INC(&counters->reused_sess); |
| 5929 | HA_ATOMIC_INC(&counters_px->reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5930 | } |
| 5931 | |
| 5932 | /* The connection is now established at both layers, it's time to leave */ |
| 5933 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5934 | return 1; |
| 5935 | |
| 5936 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5937 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5938 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5939 | ERR_clear_error(); |
| 5940 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5941 | /* free resumed session if exists */ |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5942 | if (objt_server(conn->target)) { |
| 5943 | struct server *s = __objt_server(conn->target); |
| 5944 | /* RWLOCK: only rdlock the SSL cache even when writing in it because there is |
| 5945 | * one cache per thread, it only prevents to flush it from the CLI in |
| 5946 | * another thread */ |
| 5947 | |
| 5948 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5949 | if (s->ssl_ctx.reused_sess[tid].ptr) |
| 5950 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5951 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5952 | } |
| 5953 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5954 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame] | 5955 | HA_ATOMIC_INC(&counters->failed_handshake); |
| 5956 | HA_ATOMIC_INC(&counters_px->failed_handshake); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5957 | } |
| 5958 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5959 | /* Fail on all other handshake errors */ |
| 5960 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5961 | if (!conn->err_code) |
| 5962 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5963 | return 0; |
| 5964 | } |
| 5965 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5966 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 5967 | * event subscriber <es> is not allowed to change from a previous call as long |
| 5968 | * as at least one event is still subscribed. The <event_type> must only be a |
| 5969 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, |
| 5970 | * unless the transport layer was already released. |
| 5971 | */ |
| 5972 | static int ssl_subscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5973 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5974 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5975 | |
Olivier Houchard | 0ff2865 | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 5976 | if (!ctx) |
| 5977 | return -1; |
| 5978 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5979 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5980 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5981 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5982 | ctx->subs = es; |
| 5983 | es->events |= event_type; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5984 | |
| 5985 | /* we may have to subscribe to lower layers for new events */ |
| 5986 | event_type &= ~ctx->wait_event.events; |
| 5987 | if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5988 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5989 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5990 | } |
| 5991 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5992 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 5993 | * The <es> pointer is not allowed to differ from the one passed to the |
| 5994 | * subscribe() call. It always returns zero. |
| 5995 | */ |
| 5996 | static int ssl_unsubscribe(struct connection *conn, void *xprt_ctx, int event_type, struct wait_event *es) |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5997 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5998 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5999 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6000 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6001 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6002 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 6003 | es->events &= ~event_type; |
| 6004 | if (!es->events) |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6005 | ctx->subs = NULL; |
| 6006 | |
| 6007 | /* If we subscribed, and we're not doing the handshake, |
| 6008 | * then we subscribed because the upper layer asked for it, |
| 6009 | * as the upper layer is no longer interested, we can |
| 6010 | * unsubscribe too. |
| 6011 | */ |
| 6012 | event_type &= ctx->wait_event.events; |
| 6013 | if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) |
| 6014 | conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6015 | |
| 6016 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 6017 | } |
| 6018 | |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6019 | /* The connection has been taken over, so destroy the old tasklet and create |
| 6020 | * a new one. The original thread ID must be passed into orig_tid |
| 6021 | * It should be called with the takeover lock for the old thread held. |
| 6022 | * Returns 0 on success, and -1 on failure |
| 6023 | */ |
| 6024 | static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid) |
| 6025 | { |
| 6026 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6027 | struct tasklet *tl = tasklet_new(); |
| 6028 | |
| 6029 | if (!tl) |
| 6030 | return -1; |
| 6031 | |
| 6032 | ctx->wait_event.tasklet->context = NULL; |
| 6033 | tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid); |
| 6034 | ctx->wait_event.tasklet = tl; |
| 6035 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 6036 | ctx->wait_event.tasklet->context = ctx; |
| 6037 | return 0; |
| 6038 | } |
| 6039 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6040 | /* notify the next xprt that the connection is about to become idle and that it |
| 6041 | * may be stolen at any time after the function returns and that any tasklet in |
| 6042 | * the chain must be careful before dereferencing its context. |
| 6043 | */ |
| 6044 | static void ssl_set_idle(struct connection *conn, void *xprt_ctx) |
| 6045 | { |
| 6046 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6047 | |
| 6048 | if (!ctx || !ctx->wait_event.tasklet) |
| 6049 | return; |
| 6050 | |
| 6051 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 6052 | if (ctx->xprt) |
| 6053 | xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx); |
| 6054 | } |
| 6055 | |
| 6056 | /* notify the next xprt that the connection is not idle anymore and that it may |
| 6057 | * not be stolen before the next xprt_set_idle(). |
| 6058 | */ |
| 6059 | static void ssl_set_used(struct connection *conn, void *xprt_ctx) |
| 6060 | { |
| 6061 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6062 | |
| 6063 | if (!ctx || !ctx->wait_event.tasklet) |
| 6064 | return; |
| 6065 | |
| 6066 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 6067 | if (ctx->xprt) |
| 6068 | xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx); |
| 6069 | } |
| 6070 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 6071 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 6072 | * Returns 0 on success, and non-zero on failure. |
| 6073 | */ |
| 6074 | static int ssl_add_xprt(struct connection *conn, void *xprt_ctx, void *toadd_ctx, const struct xprt_ops *toadd_ops, void **oldxprt_ctx, const struct xprt_ops **oldxprt_ops) |
| 6075 | { |
| 6076 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6077 | |
| 6078 | if (oldxprt_ops != NULL) |
| 6079 | *oldxprt_ops = ctx->xprt; |
| 6080 | if (oldxprt_ctx != NULL) |
| 6081 | *oldxprt_ctx = ctx->xprt_ctx; |
| 6082 | ctx->xprt = toadd_ops; |
| 6083 | ctx->xprt_ctx = toadd_ctx; |
| 6084 | return 0; |
| 6085 | } |
| 6086 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 6087 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 6088 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 6089 | * XPRT. |
| 6090 | */ |
| 6091 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 6092 | { |
| 6093 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6094 | |
| 6095 | if (ctx->xprt_ctx == toremove_ctx) { |
| 6096 | ctx->xprt_ctx = newctx; |
| 6097 | ctx->xprt = newops; |
| 6098 | return 0; |
| 6099 | } |
| 6100 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 6101 | } |
| 6102 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 6103 | struct task *ssl_sock_io_cb(struct task *t, void *context, unsigned int state) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6104 | { |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6105 | struct tasklet *tl = (struct tasklet *)t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6106 | struct ssl_sock_ctx *ctx = context; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6107 | struct connection *conn; |
| 6108 | int conn_in_list; |
| 6109 | int ret = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6110 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6111 | if (state & TASK_F_USR1) { |
| 6112 | /* the tasklet was idling on an idle connection, it might have |
| 6113 | * been stolen, let's be careful! |
| 6114 | */ |
| 6115 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6116 | if (tl->context == NULL) { |
| 6117 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6118 | tasklet_free(tl); |
| 6119 | return NULL; |
| 6120 | } |
| 6121 | conn = ctx->conn; |
| 6122 | conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 6123 | if (conn_in_list) |
| 6124 | conn_delete_from_tree(&conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6125 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6126 | } else { |
| 6127 | conn = ctx->conn; |
| 6128 | conn_in_list = 0; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6129 | } |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6130 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6131 | /* First if we're doing an handshake, try that */ |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6132 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6133 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6134 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 6135 | /* handshake completed, leave the bulk queue */ |
Willy Tarreau | 4c48edb | 2021-03-09 17:58:02 +0100 | [diff] [blame] | 6136 | _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6137 | } |
| 6138 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6139 | /* If we had an error, or the handshake is done and I/O is available, |
| 6140 | * let the upper layer know. |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6141 | * If no mux was set up yet, then call conn_create_mux() |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6142 | * we can't be sure conn_fd_handler() will be called again. |
| 6143 | */ |
| 6144 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 6145 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6146 | int woke = 0; |
| 6147 | |
| 6148 | /* On error, wake any waiter */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6149 | if (ctx->subs) { |
| 6150 | tasklet_wakeup(ctx->subs->tasklet); |
| 6151 | ctx->subs->events = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6152 | woke = 1; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6153 | ctx->subs = NULL; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6154 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6155 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6156 | /* If we're the first xprt for the connection, let the |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6157 | * upper layers know. If we have no mux, create it, |
| 6158 | * and once we have a mux, call its wake method if we didn't |
| 6159 | * woke a tasklet already. |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6160 | */ |
| 6161 | if (ctx->conn->xprt_ctx == ctx) { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6162 | if (!ctx->conn->mux) |
| 6163 | ret = conn_create_mux(ctx->conn); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6164 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6165 | ret = ctx->conn->mux->wake(ctx->conn); |
| 6166 | goto leave; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6167 | } |
| 6168 | } |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6169 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6170 | /* If we have early data and somebody wants to receive, let them */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6171 | else if (b_data(&ctx->early_buf) && ctx->subs && |
| 6172 | ctx->subs->events & SUB_RETRY_RECV) { |
| 6173 | tasklet_wakeup(ctx->subs->tasklet); |
| 6174 | ctx->subs->events &= ~SUB_RETRY_RECV; |
| 6175 | if (!ctx->subs->events) |
| 6176 | ctx->subs = NULL; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6177 | } |
| 6178 | #endif |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6179 | leave: |
| 6180 | if (!ret && conn_in_list) { |
| 6181 | struct server *srv = objt_server(conn->target); |
| 6182 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6183 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6184 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 6185 | ebmb_insert(&srv->per_thr[tid].safe_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6186 | else |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 6187 | ebmb_insert(&srv->per_thr[tid].idle_conns, &conn->hash_node->node, sizeof(conn->hash_node->hash)); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6188 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6189 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 6190 | return t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6191 | } |
| 6192 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6193 | /* Receive up to <count> bytes from connection <conn>'s socket and store them |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 6194 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6195 | * buffer wraps, in which case a second call may be performed. The connection's |
| 6196 | * flags are updated with whatever special event is detected (error, read0, |
| 6197 | * empty). The caller is responsible for taking care of those events and |
| 6198 | * avoiding the call if inappropriate. The function does not call the |
| 6199 | * connection's polling update function, so the caller is responsible for this. |
| 6200 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6201 | static size_t ssl_sock_to_buf(struct connection *conn, void *xprt_ctx, struct buffer *buf, size_t count, int flags) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6202 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6203 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 6204 | ssize_t ret; |
| 6205 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6206 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6207 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6208 | goto out_error; |
| 6209 | |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6210 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6211 | if (b_data(&ctx->early_buf)) { |
| 6212 | try = b_contig_space(buf); |
| 6213 | if (try > b_data(&ctx->early_buf)) |
| 6214 | try = b_data(&ctx->early_buf); |
| 6215 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 6216 | b_add(buf, try); |
| 6217 | b_del(&ctx->early_buf, try); |
| 6218 | if (b_data(&ctx->early_buf) == 0) |
| 6219 | b_free(&ctx->early_buf); |
| 6220 | return try; |
| 6221 | } |
| 6222 | #endif |
| 6223 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6224 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6225 | /* a handshake was requested */ |
| 6226 | return 0; |
| 6227 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6228 | /* read the largest possible block. For this, we perform only one call |
| 6229 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 6230 | * in which case we accept to do it once again. A new attempt is made on |
| 6231 | * EINTR too. |
| 6232 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 6233 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6234 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6235 | try = b_contig_space(buf); |
| 6236 | if (!try) |
| 6237 | break; |
| 6238 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 6239 | if (try > count) |
| 6240 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6241 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6242 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | f967c31 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 6243 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6244 | if (conn->flags & CO_FL_ERROR) { |
| 6245 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6246 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6247 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6248 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 6249 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6250 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6251 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6252 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6253 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6254 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6255 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6256 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6257 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6258 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6259 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6260 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6261 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6262 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6263 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6264 | break; |
| 6265 | } |
| 6266 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6267 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6268 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6269 | SUB_RETRY_RECV, |
| 6270 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6271 | /* handshake is running, and it may need to re-enable read */ |
| 6272 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6273 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6274 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6275 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6276 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6277 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6278 | break; |
| 6279 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6280 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6281 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 6282 | goto read0; |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6283 | else if (ret == SSL_ERROR_SSL) { |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6284 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 6285 | if (!ctx->error_code) |
| 6286 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6287 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6288 | } |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6289 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 6290 | * stack before shutting down the connection for |
| 6291 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6292 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 6293 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6294 | /* otherwise it's a real error */ |
| 6295 | goto out_error; |
| 6296 | } |
| 6297 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6298 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6299 | return done; |
| 6300 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6301 | clear_ssl_error: |
| 6302 | /* Clear openssl global errors stack */ |
| 6303 | ssl_sock_dump_errors(conn); |
| 6304 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6305 | read0: |
| 6306 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6307 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6308 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6309 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6310 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6311 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6312 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6313 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6314 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6315 | } |
| 6316 | |
| 6317 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6318 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 6319 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 6320 | * other pending data for example, but this flag is ignored at the moment. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6321 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 6322 | * a second call may be performed. The connection's flags are updated with |
| 6323 | * whatever special event is detected (error, empty). The caller is responsible |
| 6324 | * for taking care of those events and avoiding the call if inappropriate. The |
| 6325 | * function does not call the connection's polling update function, so the caller |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6326 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 6327 | * caller to take care of this. It's up to the caller to update the buffer's |
| 6328 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6329 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6330 | static size_t ssl_sock_from_buf(struct connection *conn, void *xprt_ctx, const struct buffer *buf, size_t count, int flags) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6331 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6332 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6333 | ssize_t ret; |
| 6334 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6335 | |
| 6336 | done = 0; |
| 6337 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6338 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6339 | goto out_error; |
| 6340 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6341 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS | CO_FL_EARLY_SSL_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6342 | /* a handshake was requested */ |
| 6343 | return 0; |
| 6344 | |
| 6345 | /* send the largest possible block. For this we perform only one call |
| 6346 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 6347 | * in which case we accept to do it once again. |
| 6348 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6349 | while (count) { |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6350 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6351 | size_t written_data; |
| 6352 | #endif |
| 6353 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6354 | try = b_contig_data(buf, done); |
| 6355 | if (try > count) |
| 6356 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6357 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6358 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6359 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6360 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6361 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6362 | } |
| 6363 | else { |
| 6364 | /* we need to keep the information about the fact that |
| 6365 | * we're not limiting the upcoming send(), because if it |
| 6366 | * fails, we'll have to retry with at least as many data. |
| 6367 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6368 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6369 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6370 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6371 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6372 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6373 | unsigned int max_early; |
| 6374 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6375 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6376 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6377 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6378 | if (SSL_get0_session(ctx->ssl)) |
| 6379 | max_early = SSL_SESSION_get_max_early_data(SSL_get0_session(ctx->ssl)); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6380 | else |
| 6381 | max_early = 0; |
| 6382 | } |
| 6383 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6384 | if (try + ctx->sent_early_data > max_early) { |
| 6385 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6386 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6387 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6388 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6389 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6390 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6391 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6392 | ret = SSL_write_early_data(ctx->ssl, b_peek(buf, done), try, &written_data); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6393 | if (ret == 1) { |
| 6394 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6395 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6396 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6397 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN | CO_FL_EARLY_DATA; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6398 | /* Initiate the handshake, now */ |
| 6399 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6400 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6401 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6402 | } |
| 6403 | |
| 6404 | } else |
| 6405 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6406 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6407 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6408 | if (conn->flags & CO_FL_ERROR) { |
| 6409 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6410 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6411 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6412 | if (ret > 0) { |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 6413 | /* A send succeeded, so we can consider ourself connected */ |
| 6414 | conn->flags &= ~CO_FL_WAIT_L4L6; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6415 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6416 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6417 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6418 | } |
| 6419 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6420 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6421 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6422 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6423 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6424 | /* handshake is running, and it may need to re-enable write */ |
| 6425 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6426 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, SUB_RETRY_SEND, &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6427 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6428 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6429 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6430 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6431 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6432 | break; |
| 6433 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6434 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6435 | break; |
| 6436 | } |
| 6437 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6438 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6439 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6440 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6441 | SUB_RETRY_RECV, |
| 6442 | &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6443 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6444 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6445 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6446 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6447 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6448 | break; |
| 6449 | } |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6450 | else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) { |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6451 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 6452 | if (!ctx->error_code) |
| 6453 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6454 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6455 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6456 | goto out_error; |
| 6457 | } |
| 6458 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6459 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6460 | return done; |
| 6461 | |
| 6462 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6463 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6464 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6465 | ERR_clear_error(); |
| 6466 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6467 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6468 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6469 | } |
| 6470 | |
Willy Tarreau | 832e242 | 2021-05-13 10:11:03 +0200 | [diff] [blame] | 6471 | void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6472 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6473 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6474 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6475 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6476 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6477 | if (ctx->wait_event.events != 0) |
| 6478 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6479 | ctx->wait_event.events, |
| 6480 | &ctx->wait_event); |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6481 | if (ctx->subs) { |
| 6482 | ctx->subs->events = 0; |
| 6483 | tasklet_wakeup(ctx->subs->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6484 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6485 | |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6486 | if (ctx->xprt->close) |
| 6487 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6488 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6489 | if (global_ssl.async) { |
| 6490 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6491 | size_t num_all_fds = 0; |
| 6492 | int i; |
| 6493 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6494 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6495 | if (num_all_fds > 32) { |
| 6496 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6497 | return; |
| 6498 | } |
| 6499 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6500 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6501 | |
| 6502 | /* If an async job is pending, we must try to |
| 6503 | to catch the end using polling before calling |
| 6504 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6505 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6506 | for (i=0 ; i < num_all_fds ; i++) { |
| 6507 | /* switch on an handler designed to |
| 6508 | * handle the SSL_free |
| 6509 | */ |
| 6510 | afd = all_fd[i]; |
| 6511 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6512 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6513 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6514 | /* To ensure that the fd cache won't be used |
| 6515 | * and we'll catch a real RD event. |
| 6516 | */ |
| 6517 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6518 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6519 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6520 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6521 | _HA_ATOMIC_INC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6522 | return; |
| 6523 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6524 | /* Else we can remove the fds from the fdtab |
| 6525 | * and call SSL_free. |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6526 | * note: we do a fd_stop_both and not a delete |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6527 | * because the fd is owned by the engine. |
| 6528 | * the engine is responsible to close |
| 6529 | */ |
| 6530 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6531 | fd_stop_both(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6532 | } |
| 6533 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6534 | SSL_free(ctx->ssl); |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6535 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6536 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6537 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 6538 | _HA_ATOMIC_DEC(&global.sslconns); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6539 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6540 | } |
| 6541 | |
| 6542 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6543 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6544 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6545 | static void ssl_sock_shutw(struct connection *conn, void *xprt_ctx, int clean) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6546 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6547 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6548 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6549 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6550 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6551 | if (!clean) |
| 6552 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6553 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6554 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6555 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6556 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6557 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6558 | ERR_clear_error(); |
| 6559 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6560 | } |
| 6561 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6562 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6563 | /* used for ppv2 pkey algo (can be used for logging) */ |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6564 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
| 6565 | { |
| 6566 | struct ssl_sock_ctx *ctx; |
| 6567 | X509 *crt; |
| 6568 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6569 | if (!conn_is_ssl(conn)) |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6570 | return 0; |
| 6571 | |
| 6572 | ctx = conn->xprt_ctx; |
| 6573 | |
| 6574 | crt = SSL_get_certificate(ctx->ssl); |
| 6575 | if (!crt) |
| 6576 | return 0; |
| 6577 | |
| 6578 | return cert_get_pkey_algo(crt, out); |
| 6579 | } |
| 6580 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6581 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6582 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6583 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6584 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6585 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6586 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6587 | X509 *crt; |
| 6588 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6589 | if (!conn_is_ssl(conn)) |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6590 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6591 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6592 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6593 | if (!crt) |
| 6594 | return NULL; |
| 6595 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6596 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6597 | } |
| 6598 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6599 | /* used for ppv2 authority */ |
| 6600 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6601 | { |
| 6602 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6603 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6604 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6605 | if (!conn_is_ssl(conn)) |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6606 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6607 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6608 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6609 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6610 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6611 | #endif |
| 6612 | } |
| 6613 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6614 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6615 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6616 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6617 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6618 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6619 | if (!conn_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6620 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6621 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6622 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6623 | } |
| 6624 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6625 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6626 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6627 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6628 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6629 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6630 | if (!conn_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6631 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6632 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6633 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6634 | } |
| 6635 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6636 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6637 | { |
| 6638 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6639 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6640 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6641 | if (!conn_is_ssl(conn)) |
Olivier Houchard | e488ea8 | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6642 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6643 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6644 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6645 | #endif |
| 6646 | } |
| 6647 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6648 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6649 | * to disable SNI. |
| 6650 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6651 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6652 | { |
| 6653 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6654 | struct ssl_sock_ctx *ctx; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6655 | struct server *s; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6656 | char *prev_name; |
| 6657 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6658 | if (!conn_is_ssl(conn)) |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6659 | return; |
Willy Tarreau | 77bfa66 | 2021-12-23 11:12:13 +0100 | [diff] [blame] | 6660 | |
| 6661 | BUG_ON(!(conn->flags & CO_FL_WAIT_L6_CONN)); |
| 6662 | BUG_ON(!(conn->flags & CO_FL_SSL_WAIT_HS)); |
| 6663 | |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6664 | ctx = conn->xprt_ctx; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6665 | s = __objt_server(conn->target); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6666 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6667 | /* if the SNI changes, we must destroy the reusable context so that a |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6668 | * new connection will present a new SNI. compare with the SNI |
| 6669 | * previously stored in the reused_sess */ |
| 6670 | /* the RWLOCK is used to ensure that we are not trying to flush the |
| 6671 | * cache from the CLI */ |
| 6672 | |
| 6673 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
| 6674 | prev_name = s->ssl_ctx.reused_sess[tid].sni; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6675 | if ((!prev_name && hostname) || |
| 6676 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6677 | SSL_set_session(ctx->ssl, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6678 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6679 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6680 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6681 | #endif |
| 6682 | } |
| 6683 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6684 | /* Extract peer certificate's common name into the chunk dest |
| 6685 | * Returns |
| 6686 | * the len of the extracted common name |
| 6687 | * or 0 if no CN found in DN |
| 6688 | * or -1 on error case (i.e. no peer certificate) |
| 6689 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6690 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6691 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6692 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6693 | struct ssl_sock_ctx *ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6694 | X509 *crt = NULL; |
| 6695 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6696 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6697 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6698 | .area = (char *)&find_cn, |
| 6699 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6700 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6701 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6702 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6703 | if (!conn_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6704 | goto out; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6705 | ctx = conn->xprt_ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6706 | |
| 6707 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6708 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6709 | if (!crt) |
| 6710 | goto out; |
| 6711 | |
| 6712 | name = X509_get_subject_name(crt); |
| 6713 | if (!name) |
| 6714 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6715 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6716 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6717 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6718 | if (crt) |
| 6719 | X509_free(crt); |
| 6720 | |
| 6721 | return result; |
| 6722 | } |
| 6723 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6724 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6725 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6726 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6727 | struct ssl_sock_ctx *ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6728 | X509 *crt = NULL; |
| 6729 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6730 | if (!conn_is_ssl(conn)) |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6731 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6732 | ctx = conn->xprt_ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6733 | |
| 6734 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6735 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6736 | if (!crt) |
| 6737 | return 0; |
| 6738 | |
| 6739 | X509_free(crt); |
| 6740 | return 1; |
| 6741 | } |
| 6742 | |
| 6743 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6744 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6745 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6746 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6747 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6748 | if (!conn_is_ssl(conn)) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6749 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6750 | ctx = conn->xprt_ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6751 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6752 | } |
| 6753 | |
| 6754 | /* returns result from SSL verify */ |
| 6755 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6756 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6757 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6758 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6759 | if (!conn_is_ssl(conn)) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6760 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6761 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6762 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6763 | } |
| 6764 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6765 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6766 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6767 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6768 | * freed by the caller. NPN is also checked if available since older versions |
| 6769 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6770 | */ |
Amaury Denoyelle | 71e588c | 2021-11-12 11:23:29 +0100 | [diff] [blame] | 6771 | int ssl_sock_get_alpn(const struct connection *conn, void *xprt_ctx, const char **str, int *len) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6772 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6773 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6774 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6775 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6776 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6777 | return 0; |
| 6778 | |
| 6779 | *str = NULL; |
| 6780 | |
| 6781 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6782 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6783 | if (*str) |
| 6784 | return 1; |
| 6785 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6786 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6787 | SSL_get0_next_proto_negotiated(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6788 | if (*str) |
| 6789 | return 1; |
| 6790 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6791 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6792 | return 0; |
| 6793 | } |
| 6794 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6795 | /* "issuers-chain-path" load chain certificate in global */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6796 | int ssl_load_global_issuer_from_BIO(BIO *in, char *fp, char **err) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6797 | { |
| 6798 | X509 *ca; |
| 6799 | X509_NAME *name = NULL; |
| 6800 | ASN1_OCTET_STRING *skid = NULL; |
| 6801 | STACK_OF(X509) *chain = NULL; |
| 6802 | struct issuer_chain *issuer; |
| 6803 | struct eb64_node *node; |
| 6804 | char *path; |
| 6805 | u64 key; |
| 6806 | int ret = 0; |
| 6807 | |
| 6808 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 6809 | if (chain == NULL) { |
| 6810 | chain = sk_X509_new_null(); |
| 6811 | skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL); |
| 6812 | name = X509_get_subject_name(ca); |
| 6813 | } |
| 6814 | if (!sk_X509_push(chain, ca)) { |
| 6815 | X509_free(ca); |
| 6816 | goto end; |
| 6817 | } |
| 6818 | } |
| 6819 | if (!chain) { |
| 6820 | memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp); |
| 6821 | goto end; |
| 6822 | } |
| 6823 | if (!skid) { |
| 6824 | memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp); |
| 6825 | goto end; |
| 6826 | } |
| 6827 | if (!name) { |
| 6828 | memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp); |
| 6829 | goto end; |
| 6830 | } |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6831 | key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0); |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6832 | for (node = eb64_lookup(&cert_issuer_tree, key); node; node = eb64_next(node)) { |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6833 | issuer = container_of(node, typeof(*issuer), node); |
| 6834 | if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) { |
| 6835 | memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path); |
| 6836 | goto end; |
| 6837 | } |
| 6838 | } |
| 6839 | issuer = calloc(1, sizeof *issuer); |
| 6840 | path = strdup(fp); |
| 6841 | if (!issuer || !path) { |
| 6842 | free(issuer); |
| 6843 | free(path); |
| 6844 | goto end; |
| 6845 | } |
| 6846 | issuer->node.key = key; |
| 6847 | issuer->path = path; |
| 6848 | issuer->chain = chain; |
| 6849 | chain = NULL; |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6850 | eb64_insert(&cert_issuer_tree, &issuer->node); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6851 | ret = 1; |
| 6852 | end: |
| 6853 | if (skid) |
| 6854 | ASN1_OCTET_STRING_free(skid); |
| 6855 | if (chain) |
| 6856 | sk_X509_pop_free(chain, X509_free); |
| 6857 | return ret; |
| 6858 | } |
| 6859 | |
William Lallemand | da8584c | 2020-05-14 10:14:37 +0200 | [diff] [blame] | 6860 | struct issuer_chain* ssl_get0_issuer_chain(X509 *cert) |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6861 | { |
| 6862 | AUTHORITY_KEYID *akid; |
| 6863 | struct issuer_chain *issuer = NULL; |
| 6864 | |
| 6865 | akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL); |
William Lallemand | f69cd68 | 2020-11-19 16:24:13 +0100 | [diff] [blame] | 6866 | if (akid && akid->keyid) { |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6867 | struct eb64_node *node; |
| 6868 | u64 hk; |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6869 | hk = XXH3(ASN1_STRING_get0_data(akid->keyid), ASN1_STRING_length(akid->keyid), 0); |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6870 | for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) { |
| 6871 | struct issuer_chain *ti = container_of(node, typeof(*issuer), node); |
| 6872 | if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) { |
| 6873 | issuer = ti; |
| 6874 | break; |
| 6875 | } |
| 6876 | } |
| 6877 | AUTHORITY_KEYID_free(akid); |
| 6878 | } |
| 6879 | return issuer; |
| 6880 | } |
| 6881 | |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6882 | void ssl_free_global_issuers(void) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6883 | { |
| 6884 | struct eb64_node *node, *back; |
| 6885 | struct issuer_chain *issuer; |
| 6886 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6887 | node = eb64_first(&cert_issuer_tree); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6888 | while (node) { |
| 6889 | issuer = container_of(node, typeof(*issuer), node); |
| 6890 | back = eb64_next(node); |
| 6891 | eb64_delete(node); |
| 6892 | free(issuer->path); |
| 6893 | sk_X509_pop_free(issuer->chain, X509_free); |
| 6894 | free(issuer); |
| 6895 | node = back; |
| 6896 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6897 | } |
| 6898 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 6899 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6900 | static int ssl_check_async_engine_count(void) { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 6901 | int err_code = ERR_NONE; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6902 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6903 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 6904 | ha_alert("ssl-mode-async only supports a maximum of 32 engines.\n"); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6905 | err_code = ERR_ABORT; |
| 6906 | } |
| 6907 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 6908 | } |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 6909 | #endif |
| 6910 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6911 | /* "show fd" helper to dump ssl internals. Warning: the output buffer is often |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6912 | * the common trash! It returns non-zero if the connection entry looks suspicious. |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6913 | */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 6914 | static int ssl_sock_show_fd(struct buffer *buf, const struct connection *conn, const void *ctx) |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6915 | { |
| 6916 | const struct ssl_sock_ctx *sctx = ctx; |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6917 | int ret = 0; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6918 | |
| 6919 | if (!sctx) |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6920 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6921 | |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6922 | if (sctx->conn != conn) { |
| 6923 | chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn); |
| 6924 | ret = 1; |
| 6925 | } |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6926 | chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st); |
| 6927 | |
| 6928 | if (sctx->xprt) { |
| 6929 | chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name); |
| 6930 | if (sctx->xprt_ctx) |
| 6931 | chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx); |
| 6932 | } |
| 6933 | |
| 6934 | chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6935 | |
| 6936 | /* as soon as a shutdown is reported the lower layer unregisters its |
| 6937 | * subscriber, so the situations below are transient and rare enough to |
| 6938 | * be reported as suspicious. In any case they shouldn't last. |
| 6939 | */ |
| 6940 | if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR))) |
| 6941 | ret = 1; |
| 6942 | if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR))) |
| 6943 | ret = 1; |
| 6944 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6945 | chunk_appendf(&trash, " .subs=%p", sctx->subs); |
| 6946 | if (sctx->subs) { |
| 6947 | chunk_appendf(&trash, "(ev=%d tl=%p", sctx->subs->events, sctx->subs->tasklet); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6948 | if (sctx->subs->tasklet->calls >= 1000000) |
| 6949 | ret = 1; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6950 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 6951 | sctx->subs->tasklet->calls, |
| 6952 | sctx->subs->tasklet->context); |
| 6953 | resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process); |
| 6954 | chunk_appendf(&trash, ")"); |
| 6955 | } |
| 6956 | chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data); |
| 6957 | chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6958 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6959 | } |
| 6960 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6961 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6962 | /* This function is used with TLS ticket keys management. It permits to browse |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6963 | * each reference. The variable <ref> must point to the current node's list |
| 6964 | * element (which starts by the root), and <end> must point to the root node. |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6965 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6966 | static inline |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6967 | struct tls_keys_ref *tlskeys_list_get_next(struct list *ref, struct list *end) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6968 | { |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6969 | /* Get next list entry. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6970 | ref = ref->n; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6971 | |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6972 | /* If the entry is the last of the list, return NULL. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6973 | if (ref == end) |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6974 | return NULL; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6975 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6976 | return LIST_ELEM(ref, struct tls_keys_ref *, list); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6977 | } |
| 6978 | |
| 6979 | static inline |
| 6980 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 6981 | { |
| 6982 | int id; |
| 6983 | char *error; |
| 6984 | |
| 6985 | /* If the reference starts by a '#', this is numeric id. */ |
| 6986 | if (reference[0] == '#') { |
| 6987 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 6988 | id = strtol(reference + 1, &error, 10); |
| 6989 | if (*error != '\0') |
| 6990 | return NULL; |
| 6991 | |
| 6992 | /* Perform the unique id lookup. */ |
| 6993 | return tlskeys_ref_lookupid(id); |
| 6994 | } |
| 6995 | |
| 6996 | /* Perform the string lookup. */ |
| 6997 | return tlskeys_ref_lookup(reference); |
| 6998 | } |
| 6999 | #endif |
| 7000 | |
| 7001 | |
| 7002 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7003 | |
| 7004 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 7005 | |
| 7006 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 7007 | return cli_io_handler_tlskeys_files(appctx); |
| 7008 | } |
| 7009 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7010 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 7011 | * (next index to be dumped), and cli.p0 (next key reference). |
| 7012 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7013 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 7014 | |
| 7015 | struct stream_interface *si = appctx->owner; |
| 7016 | |
| 7017 | switch (appctx->st2) { |
| 7018 | case STAT_ST_INIT: |
| 7019 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 7020 | * quit the function with returning 0. The function is called |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7021 | * later and restart at the state "STAT_ST_INIT". |
| 7022 | */ |
| 7023 | chunk_reset(&trash); |
| 7024 | |
| 7025 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 7026 | chunk_appendf(&trash, "# id secret\n"); |
| 7027 | else |
| 7028 | chunk_appendf(&trash, "# id (file)\n"); |
| 7029 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 7030 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7031 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7032 | return 0; |
| 7033 | } |
| 7034 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7035 | /* Now, we start the browsing of the references lists. |
| 7036 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 7037 | * available field of this pointer is <list>. It is used with the function |
| 7038 | * tlskeys_list_get_next() for retruning the first available entry |
| 7039 | */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7040 | if (appctx->ctx.cli.p0 == NULL) |
| 7041 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7042 | |
| 7043 | appctx->st2 = STAT_ST_LIST; |
| 7044 | /* fall through */ |
| 7045 | |
| 7046 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7047 | while (appctx->ctx.cli.p0) { |
| 7048 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7049 | |
| 7050 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7051 | if (appctx->io_handler == cli_io_handler_tlskeys_entries && appctx->ctx.cli.i1 == 0) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7052 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7053 | |
| 7054 | if (appctx->ctx.cli.i1 == 0) |
| 7055 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 7056 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7057 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7058 | int head; |
| 7059 | |
| 7060 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 7061 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7062 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 7063 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7064 | |
| 7065 | chunk_reset(t2); |
| 7066 | /* should never fail here because we dump only a key in the t2 buffer */ |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7067 | if (ref->key_size_bits == 128) { |
| 7068 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 7069 | sizeof(struct tls_sess_key_128), |
| 7070 | t2->area, t2->size); |
| 7071 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 7072 | t2->area); |
| 7073 | } |
| 7074 | else if (ref->key_size_bits == 256) { |
| 7075 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 7076 | sizeof(struct tls_sess_key_256), |
| 7077 | t2->area, t2->size); |
| 7078 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 7079 | t2->area); |
| 7080 | } |
| 7081 | else { |
| 7082 | /* This case should never happen */ |
| 7083 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1); |
| 7084 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7085 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 7086 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7087 | /* let's try again later from this stream. We add ourselves into |
| 7088 | * this stream's users so that it can remove us upon termination. |
| 7089 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7090 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7091 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7092 | return 0; |
| 7093 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7094 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7095 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7096 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7097 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7098 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 7099 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7100 | /* let's try again later from this stream. We add ourselves into |
| 7101 | * this stream's users so that it can remove us upon termination. |
| 7102 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7103 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7104 | return 0; |
| 7105 | } |
| 7106 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7107 | if (appctx->ctx.cli.i0 == 0) /* don't display everything if not necessary */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7108 | break; |
| 7109 | |
| 7110 | /* get next list entry and check the end of the list */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7111 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7112 | } |
| 7113 | |
| 7114 | appctx->st2 = STAT_ST_FIN; |
| 7115 | /* fall through */ |
| 7116 | |
| 7117 | default: |
| 7118 | appctx->st2 = STAT_ST_FIN; |
| 7119 | return 1; |
| 7120 | } |
| 7121 | return 0; |
| 7122 | } |
| 7123 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7124 | /* sets cli.i0 to non-zero if only file lists should be dumped */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7125 | static int cli_parse_show_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7126 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7127 | /* no parameter, shows only file list */ |
| 7128 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7129 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7130 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 7131 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7132 | } |
| 7133 | |
| 7134 | if (args[2][0] == '*') { |
| 7135 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7136 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7137 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7138 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7139 | if (!appctx->ctx.cli.p0) |
| 7140 | return cli_err(appctx, "'show tls-keys' unable to locate referenced filename\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7141 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7142 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 7143 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7144 | } |
| 7145 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7146 | static int cli_parse_set_tlskeys(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7147 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7148 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7149 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7150 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7151 | /* Expect two parameters: the filename and the new new TLS key in encoding */ |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7152 | if (!*args[3] || !*args[4]) |
| 7153 | return cli_err(appctx, "'set ssl tls-key' expects a filename and the new TLS key in base64 encoding.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7154 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7155 | ref = tlskeys_ref_lookup_ref(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7156 | if (!ref) |
| 7157 | return cli_err(appctx, "'set ssl tls-key' unable to locate referenced filename\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7158 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7159 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7160 | if (ret < 0) |
| 7161 | return cli_err(appctx, "'set ssl tls-key' received invalid base64 encoded TLS key.\n"); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 7162 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7163 | trash.data = ret; |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7164 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) |
| 7165 | return cli_err(appctx, "'set ssl tls-key' received a key of wrong size.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7166 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7167 | return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7168 | } |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 7169 | #endif |
William Lallemand | 419e634 | 2020-04-08 12:05:39 +0200 | [diff] [blame] | 7170 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7171 | static int cli_parse_set_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7172 | { |
| 7173 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 7174 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7175 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 7176 | |
| 7177 | if (!payload) |
| 7178 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7179 | |
| 7180 | /* Expect one parameter: the new response in base64 encoding */ |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7181 | if (!*payload) |
| 7182 | return cli_err(appctx, "'set ssl ocsp-response' expects response in base64 encoding.\n"); |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 7183 | |
| 7184 | /* remove \r and \n from the payload */ |
| 7185 | for (i = 0, j = 0; payload[i]; i++) { |
| 7186 | if (payload[i] == '\r' || payload[i] == '\n') |
| 7187 | continue; |
| 7188 | payload[j++] = payload[i]; |
| 7189 | } |
| 7190 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7191 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7192 | ret = base64dec(payload, j, trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7193 | if (ret < 0) |
| 7194 | return cli_err(appctx, "'set ssl ocsp-response' received invalid base64 encoded response.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7195 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7196 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7197 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7198 | if (err) |
| 7199 | return cli_dynerr(appctx, memprintf(&err, "%s.\n", err)); |
| 7200 | else |
| 7201 | return cli_err(appctx, "Failed to update OCSP response.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7202 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7203 | |
| 7204 | return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7205 | #else |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7206 | return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7207 | #endif |
| 7208 | |
Elliot Otchet | 71f8297 | 2020-01-15 08:12:14 -0500 | [diff] [blame] | 7209 | } |
| 7210 | |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7211 | |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7212 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7213 | static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx); |
| 7214 | #endif |
| 7215 | |
| 7216 | /* parsing function for 'show ssl ocsp-response [id]' */ |
| 7217 | static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private) |
| 7218 | { |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7219 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7220 | if (*args[3]) { |
| 7221 | struct certificate_ocsp *ocsp = NULL; |
| 7222 | char *key = NULL; |
| 7223 | int key_length = 0; |
| 7224 | |
| 7225 | if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) { |
| 7226 | return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n"); |
| 7227 | } |
| 7228 | |
| 7229 | if (parse_binary(args[3], &key, &key_length, NULL)) { |
| 7230 | |
| 7231 | char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {}; |
| 7232 | memcpy(full_key, key, key_length); |
| 7233 | |
| 7234 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 7235 | } |
| 7236 | if (key) |
| 7237 | ha_free(&key); |
| 7238 | |
| 7239 | if (!ocsp) { |
| 7240 | return cli_err(appctx, "Certificate ID does not match any certificate.\n"); |
| 7241 | } |
| 7242 | |
| 7243 | appctx->ctx.cli.p0 = ocsp; |
| 7244 | appctx->io_handler = cli_io_handler_show_ocspresponse_detail; |
| 7245 | } |
| 7246 | |
| 7247 | return 0; |
| 7248 | |
| 7249 | #else |
| 7250 | return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"); |
| 7251 | #endif |
| 7252 | } |
| 7253 | |
| 7254 | |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7255 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7256 | /* |
| 7257 | * This function dumps the details of an OCSP_CERTID. It is based on |
| 7258 | * ocsp_certid_print in OpenSSL. |
| 7259 | */ |
| 7260 | static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent) |
| 7261 | { |
| 7262 | ASN1_OCTET_STRING *piNameHash = NULL; |
| 7263 | ASN1_OCTET_STRING *piKeyHash = NULL; |
| 7264 | ASN1_INTEGER *pSerial = NULL; |
| 7265 | |
| 7266 | if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) { |
| 7267 | |
| 7268 | BIO_printf(bp, "%*sCertificate ID:\n", indent, ""); |
| 7269 | indent += 2; |
Remi Tricot-Le Breton | cc750ef | 2021-12-17 18:53:23 +0100 | [diff] [blame] | 7270 | BIO_printf(bp, "%*sIssuer Name Hash: ", indent, ""); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7271 | i2a_ASN1_STRING(bp, piNameHash, 0); |
| 7272 | BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, ""); |
| 7273 | i2a_ASN1_STRING(bp, piKeyHash, 0); |
| 7274 | BIO_printf(bp, "\n%*sSerial Number: ", indent, ""); |
| 7275 | i2a_ASN1_INTEGER(bp, pSerial); |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7276 | } |
| 7277 | return 1; |
| 7278 | } |
| 7279 | #endif |
| 7280 | |
| 7281 | /* |
| 7282 | * IO handler of "show ssl ocsp-response". The command taking a specific ID |
| 7283 | * is managed in cli_io_handler_show_ocspresponse_detail. |
| 7284 | */ |
| 7285 | static int cli_io_handler_show_ocspresponse(struct appctx *appctx) |
| 7286 | { |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7287 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7288 | struct buffer *trash = alloc_trash_chunk(); |
| 7289 | struct buffer *tmp = NULL; |
| 7290 | struct ebmb_node *node; |
| 7291 | struct stream_interface *si = appctx->owner; |
| 7292 | struct certificate_ocsp *ocsp = NULL; |
| 7293 | BIO *bio = NULL; |
| 7294 | int write = -1; |
| 7295 | |
| 7296 | if (trash == NULL) |
| 7297 | return 1; |
| 7298 | |
| 7299 | tmp = alloc_trash_chunk(); |
| 7300 | if (!tmp) |
| 7301 | goto end; |
| 7302 | |
| 7303 | if ((bio = BIO_new(BIO_s_mem())) == NULL) |
| 7304 | goto end; |
| 7305 | |
| 7306 | if (!appctx->ctx.cli.p0) { |
| 7307 | chunk_appendf(trash, "# Certificate IDs\n"); |
| 7308 | node = ebmb_first(&cert_ocsp_tree); |
| 7309 | } else { |
| 7310 | node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key; |
| 7311 | } |
| 7312 | |
| 7313 | while (node) { |
| 7314 | OCSP_CERTID *certid = NULL; |
| 7315 | const unsigned char *p = NULL; |
| 7316 | int i; |
| 7317 | |
| 7318 | ocsp = ebmb_entry(node, struct certificate_ocsp, key); |
| 7319 | |
| 7320 | /* Dump the key in hexadecimal */ |
| 7321 | chunk_appendf(trash, "Certificate ID key : "); |
| 7322 | for (i = 0; i < ocsp->key_length; ++i) { |
| 7323 | chunk_appendf(trash, "%02x", ocsp->key_data[i]); |
| 7324 | } |
| 7325 | chunk_appendf(trash, "\n"); |
| 7326 | |
| 7327 | p = ocsp->key_data; |
| 7328 | |
| 7329 | /* Decode the certificate ID (serialized into the key). */ |
| 7330 | d2i_OCSP_CERTID(&certid, &p, ocsp->key_length); |
| 7331 | |
| 7332 | /* Dump the CERTID info */ |
| 7333 | ocsp_certid_print(bio, certid, 1); |
| 7334 | write = BIO_read(bio, tmp->area, tmp->size-1); |
Remi Tricot-Le Breton | cc750ef | 2021-12-17 18:53:23 +0100 | [diff] [blame] | 7335 | /* strip trailing LFs */ |
| 7336 | while (write > 0 && tmp->area[write-1] == '\n') |
| 7337 | write--; |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7338 | tmp->area[write] = '\0'; |
| 7339 | |
| 7340 | chunk_appendf(trash, "%s\n", tmp->area); |
| 7341 | |
| 7342 | node = ebmb_next(node); |
| 7343 | if (ci_putchk(si_ic(si), trash) == -1) { |
| 7344 | si_rx_room_blk(si); |
| 7345 | goto yield; |
| 7346 | } |
| 7347 | } |
| 7348 | |
| 7349 | end: |
| 7350 | appctx->ctx.cli.p0 = NULL; |
| 7351 | if (trash) |
| 7352 | free_trash_chunk(trash); |
| 7353 | if (tmp) |
| 7354 | free_trash_chunk(tmp); |
| 7355 | if (bio) |
| 7356 | BIO_free(bio); |
| 7357 | return 1; |
| 7358 | |
| 7359 | yield: |
| 7360 | |
| 7361 | if (trash) |
| 7362 | free_trash_chunk(trash); |
| 7363 | if (tmp) |
| 7364 | free_trash_chunk(tmp); |
| 7365 | if (bio) |
| 7366 | BIO_free(bio); |
| 7367 | appctx->ctx.cli.p0 = ocsp; |
| 7368 | return 0; |
| 7369 | #else |
| 7370 | return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"); |
| 7371 | #endif |
| 7372 | } |
| 7373 | |
| 7374 | |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7375 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7376 | /* |
| 7377 | * Dump the details about an OCSP response in DER format stored in |
| 7378 | * <ocsp_response> into buffer <out>. |
| 7379 | * Returns 0 in case of success. |
| 7380 | */ |
| 7381 | int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out) |
| 7382 | { |
| 7383 | BIO *bio = NULL; |
| 7384 | int write = -1; |
| 7385 | OCSP_RESPONSE *resp; |
| 7386 | const unsigned char *p; |
| 7387 | |
| 7388 | if (!ocsp_response) |
| 7389 | return -1; |
| 7390 | |
| 7391 | if ((bio = BIO_new(BIO_s_mem())) == NULL) |
| 7392 | return -1; |
| 7393 | |
| 7394 | p = (const unsigned char*)ocsp_response->area; |
| 7395 | |
| 7396 | resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data); |
| 7397 | if (!resp) { |
| 7398 | chunk_appendf(out, "Unable to parse OCSP response"); |
| 7399 | return -1; |
| 7400 | } |
| 7401 | |
| 7402 | if (OCSP_RESPONSE_print(bio, resp, 0) != 0) { |
| 7403 | write = BIO_read(bio, out->area, out->size - 1); |
| 7404 | out->area[write] = '\0'; |
| 7405 | out->data = write; |
| 7406 | } |
| 7407 | |
| 7408 | if (bio) |
| 7409 | BIO_free(bio); |
| 7410 | |
| 7411 | return 0; |
| 7412 | } |
| 7413 | |
| 7414 | /* |
| 7415 | * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>. |
| 7416 | * Returns 0 in case of success. |
| 7417 | */ |
| 7418 | int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out) |
| 7419 | { |
| 7420 | struct certificate_ocsp *ocsp; |
| 7421 | |
| 7422 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 7423 | if (!ocsp) |
| 7424 | return -1; |
| 7425 | |
| 7426 | return ssl_ocsp_response_print(&ocsp->response, out); |
| 7427 | } |
| 7428 | |
| 7429 | |
| 7430 | /* IO handler of details "show ssl ocsp-response <id>". */ |
| 7431 | static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx) |
| 7432 | { |
| 7433 | struct buffer *trash = alloc_trash_chunk(); |
| 7434 | struct certificate_ocsp *ocsp = NULL; |
| 7435 | struct stream_interface *si = appctx->owner; |
| 7436 | |
| 7437 | ocsp = appctx->ctx.cli.p0; |
| 7438 | |
| 7439 | if (trash == NULL) |
| 7440 | return 1; |
| 7441 | |
| 7442 | ssl_ocsp_response_print(&ocsp->response, trash); |
| 7443 | |
| 7444 | if (ci_putchk(si_ic(si), trash) == -1) { |
| 7445 | si_rx_room_blk(si); |
| 7446 | goto yield; |
| 7447 | } |
| 7448 | appctx->ctx.cli.p0 = NULL; |
| 7449 | if (trash) |
| 7450 | free_trash_chunk(trash); |
| 7451 | return 1; |
| 7452 | |
| 7453 | yield: |
| 7454 | if (trash) |
| 7455 | free_trash_chunk(trash); |
| 7456 | |
| 7457 | return 0; |
| 7458 | } |
| 7459 | #endif |
| 7460 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7461 | /* register cli keywords */ |
| 7462 | static struct cli_kw_list cli_kws = {{ },{ |
| 7463 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 7464 | { { "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 }, |
| 7465 | { { "set", "ssl", "tls-key", NULL }, "set ssl tls-key [id|file] <key> : set the next TLS key for the <id> or <file> listener to <key>", cli_parse_set_tlskeys, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7466 | #endif |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 7467 | { { "set", "ssl", "ocsp-response", NULL }, "set ssl ocsp-response <resp|payload> : update a certificate's OCSP Response from a base64-encode DER", cli_parse_set_ocspresponse, NULL }, |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7468 | |
| 7469 | { { "show", "ssl", "ocsp-response", NULL },"show ssl ocsp-response [id] : display the IDs of the OCSP responses used in memory, or the details of a single OCSP response", cli_parse_show_ocspresponse, cli_io_handler_show_ocspresponse, NULL }, |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7470 | { { NULL }, NULL, NULL, NULL } |
| 7471 | }}; |
| 7472 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7473 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7474 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 7475 | /* transport-layer operations for SSL sockets */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7476 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7477 | .snd_buf = ssl_sock_from_buf, |
| 7478 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 7479 | .subscribe = ssl_subscribe, |
| 7480 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 7481 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 7482 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7483 | .rcv_pipe = NULL, |
| 7484 | .snd_pipe = NULL, |
| 7485 | .shutr = NULL, |
| 7486 | .shutw = ssl_sock_shutw, |
| 7487 | .close = ssl_sock_close, |
| 7488 | .init = ssl_sock_init, |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 7489 | .start = ssl_sock_start, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 7490 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 7491 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 7492 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 7493 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 7494 | .get_alpn = ssl_sock_get_alpn, |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 7495 | .takeover = ssl_takeover, |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 7496 | .set_idle = ssl_set_idle, |
| 7497 | .set_used = ssl_set_used, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 7498 | .name = "SSL", |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7499 | .show_fd = ssl_sock_show_fd, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7500 | }; |
| 7501 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7502 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 7503 | struct session *sess, struct stream *s, int flags) |
| 7504 | { |
| 7505 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7506 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7507 | |
| 7508 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7509 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7510 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7511 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7512 | if (conn->flags & (CO_FL_EARLY_SSL_HS | CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7513 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7514 | s->req.flags |= CF_READ_NULL; |
| 7515 | return ACT_RET_YIELD; |
| 7516 | } |
| 7517 | } |
| 7518 | return (ACT_RET_CONT); |
| 7519 | } |
| 7520 | |
| 7521 | static enum act_parse_ret ssl_parse_wait_for_hs(const char **args, int *orig_arg, struct proxy *px, struct act_rule *rule, char **err) |
| 7522 | { |
| 7523 | rule->action_ptr = ssl_action_wait_for_hs; |
| 7524 | |
| 7525 | return ACT_RET_PRS_OK; |
| 7526 | } |
| 7527 | |
| 7528 | static struct action_kw_list http_req_actions = {ILH, { |
| 7529 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 7530 | { /* END */ } |
| 7531 | }}; |
| 7532 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7533 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 7534 | |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7535 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7536 | |
| 7537 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7538 | { |
| 7539 | if (ptr) { |
| 7540 | chunk_destroy(ptr); |
| 7541 | free(ptr); |
| 7542 | } |
| 7543 | } |
| 7544 | |
| 7545 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7546 | |
| 7547 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7548 | static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7549 | { |
| 7550 | struct ocsp_cbk_arg *ocsp_arg; |
| 7551 | |
| 7552 | if (ptr) { |
| 7553 | ocsp_arg = ptr; |
| 7554 | |
| 7555 | if (ocsp_arg->is_single) { |
| 7556 | ssl_sock_free_ocsp(ocsp_arg->s_ocsp); |
| 7557 | ocsp_arg->s_ocsp = NULL; |
| 7558 | } else { |
| 7559 | int i; |
| 7560 | |
| 7561 | for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) { |
| 7562 | ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]); |
| 7563 | ocsp_arg->m_ocsp[i] = NULL; |
| 7564 | } |
| 7565 | } |
| 7566 | free(ocsp_arg); |
| 7567 | } |
| 7568 | } |
| 7569 | #endif |
| 7570 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7571 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7572 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7573 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7574 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7575 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7576 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7577 | static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7578 | { |
| 7579 | struct ssl_keylog *keylog; |
| 7580 | |
| 7581 | if (!ptr) |
| 7582 | return; |
| 7583 | |
| 7584 | keylog = ptr; |
| 7585 | |
| 7586 | pool_free(pool_head_ssl_keylog_str, keylog->client_random); |
| 7587 | pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret); |
| 7588 | pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret); |
| 7589 | pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret); |
| 7590 | pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0); |
| 7591 | pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0); |
| 7592 | pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret); |
| 7593 | pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret); |
| 7594 | |
| 7595 | pool_free(pool_head_ssl_keylog, ptr); |
| 7596 | } |
| 7597 | #endif |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7598 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7599 | static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7600 | { |
| 7601 | if (!ptr) |
| 7602 | return; |
| 7603 | |
| 7604 | X509_free((X509*)ptr); |
| 7605 | } |
| 7606 | |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 7607 | static void ssl_sock_clt_sni_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7608 | { |
| 7609 | pool_free(ssl_sock_client_sni_pool, ptr); |
| 7610 | } |
| 7611 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7612 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7613 | static void __ssl_sock_init(void) |
| 7614 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7615 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7616 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7617 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7618 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7619 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7620 | if (global_ssl.listen_default_ciphers) |
| 7621 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 7622 | if (global_ssl.connect_default_ciphers) |
| 7623 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 7624 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7625 | if (global_ssl.listen_default_ciphersuites) |
| 7626 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 7627 | if (global_ssl.connect_default_ciphersuites) |
| 7628 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 7629 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 7630 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 7631 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7632 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7633 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7634 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7635 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7636 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7637 | n = sk_SSL_COMP_num(cm); |
| 7638 | while (n--) { |
| 7639 | (void) sk_SSL_COMP_pop(cm); |
| 7640 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7641 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7642 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7643 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7644 | ssl_locking_init(); |
| 7645 | #endif |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7646 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7647 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 7648 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7649 | |
| 7650 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7651 | ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func); |
| 7652 | #endif |
| 7653 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 7654 | ssl_app_data_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
Thierry FOURNIER | 16ff050 | 2018-06-17 21:33:01 +0200 | [diff] [blame] | 7655 | ssl_capture_ptr_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_capture_free_func); |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7656 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7657 | ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func); |
| 7658 | #endif |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7659 | ssl_client_crt_ref_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_crt_free_func); |
Remi Tricot-Le Breton | a996763 | 2022-01-07 17:12:01 +0100 | [diff] [blame] | 7660 | ssl_client_sni_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_sni_free_func); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7661 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7662 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7663 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7664 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 7665 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7666 | hap_register_post_check(tlskeys_finalize_config); |
| 7667 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7668 | |
| 7669 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 7670 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 7671 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7672 | hap_register_post_deinit(ssl_free_global_issuers); |
| 7673 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7674 | #ifndef OPENSSL_NO_DH |
| 7675 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7676 | hap_register_post_deinit(ssl_free_dh); |
| 7677 | #endif |
| 7678 | #ifndef OPENSSL_NO_ENGINE |
| 7679 | hap_register_post_deinit(ssl_free_engines); |
| 7680 | #endif |
| 7681 | /* Load SSL string for the verbose & debug mode. */ |
| 7682 | ERR_load_SSL_strings(); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7683 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
| 7684 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 7685 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 7686 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 7687 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 7688 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 7689 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 7690 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 7691 | |
| 7692 | HA_SPIN_INIT(&ckch_lock); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7693 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 7694 | /* Try to register dedicated SSL/TLS protocol message callbacks for |
| 7695 | * heartbleed attack (CVE-2014-0160) and clienthello. |
| 7696 | */ |
| 7697 | hap_register_post_check(ssl_sock_register_msg_callbacks); |
| 7698 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7699 | /* Try to free all callbacks that were registered by using |
| 7700 | * ssl_sock_register_msg_callback(). |
| 7701 | */ |
| 7702 | hap_register_post_deinit(ssl_sock_unregister_msg_callbacks); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7703 | } |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 7704 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7705 | /* Compute and register the version string */ |
| 7706 | static void ssl_register_build_options() |
| 7707 | { |
| 7708 | char *ptr = NULL; |
| 7709 | int i; |
| 7710 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7711 | memprintf(&ptr, "Built with OpenSSL version : " |
| 7712 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7713 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7714 | #else /* OPENSSL_IS_BORINGSSL */ |
| 7715 | OPENSSL_VERSION_TEXT |
| 7716 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7717 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 7718 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7719 | #endif |
| 7720 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7721 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7722 | "no (library version too old)" |
| 7723 | #elif defined(OPENSSL_NO_TLSEXT) |
| 7724 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 7725 | #else |
| 7726 | "yes" |
| 7727 | #endif |
| 7728 | "", ptr); |
| 7729 | |
| 7730 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 7731 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7732 | "yes" |
| 7733 | #else |
| 7734 | #ifdef OPENSSL_NO_TLSEXT |
| 7735 | "no (because of OPENSSL_NO_TLSEXT)" |
| 7736 | #else |
| 7737 | "no (version might be too old, 0.9.8f min needed)" |
| 7738 | #endif |
| 7739 | #endif |
| 7740 | "", ptr); |
| 7741 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 7742 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 7743 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7744 | if (methodVersions[i].option) |
| 7745 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7746 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7747 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7748 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7749 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7750 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 7751 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7752 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7753 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7754 | void ssl_free_engines(void) { |
| 7755 | struct ssl_engine_list *wl, *wlb; |
| 7756 | /* free up engine list */ |
| 7757 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 7758 | ENGINE_finish(wl->e); |
| 7759 | ENGINE_free(wl->e); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 7760 | LIST_DELETE(&wl->list); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7761 | free(wl); |
| 7762 | } |
| 7763 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7764 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7765 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7766 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7767 | void ssl_free_dh(void) { |
| 7768 | if (local_dh_1024) { |
| 7769 | DH_free(local_dh_1024); |
| 7770 | local_dh_1024 = NULL; |
| 7771 | } |
| 7772 | if (local_dh_2048) { |
| 7773 | DH_free(local_dh_2048); |
| 7774 | local_dh_2048 = NULL; |
| 7775 | } |
| 7776 | if (local_dh_4096) { |
| 7777 | DH_free(local_dh_4096); |
| 7778 | local_dh_4096 = NULL; |
| 7779 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7780 | if (global_dh) { |
| 7781 | DH_free(global_dh); |
| 7782 | global_dh = NULL; |
| 7783 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7784 | } |
| 7785 | #endif |
| 7786 | |
| 7787 | __attribute__((destructor)) |
| 7788 | static void __ssl_sock_deinit(void) |
| 7789 | { |
| 7790 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7791 | if (ssl_ctx_lru_tree) { |
| 7792 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 7793 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7794 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7795 | #endif |
| 7796 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7797 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7798 | ERR_remove_state(0); |
| 7799 | ERR_free_strings(); |
| 7800 | |
| 7801 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7802 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7803 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7804 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7805 | CRYPTO_cleanup_all_ex_data(); |
| 7806 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7807 | BIO_meth_free(ha_meth); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7808 | } |
| 7809 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7810 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7811 | /* |
| 7812 | * Local variables: |
| 7813 | * c-indent-level: 8 |
| 7814 | * c-basic-offset: 8 |
| 7815 | * End: |
| 7816 | */ |