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 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 137 | /* ssl stats module */ |
| 138 | enum { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 139 | SSL_ST_SESS, |
| 140 | SSL_ST_REUSED_SESS, |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 141 | SSL_ST_FAILED_HANDSHAKE, |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 142 | |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 143 | SSL_ST_STATS_COUNT /* must be the last member of the enum */ |
| 144 | }; |
| 145 | |
| 146 | static struct name_desc ssl_stats[] = { |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 147 | [SSL_ST_SESS] = { .name = "ssl_sess", |
| 148 | .desc = "Total number of ssl sessions established" }, |
| 149 | [SSL_ST_REUSED_SESS] = { .name = "ssl_reused_sess", |
| 150 | .desc = "Total number of ssl sessions reused" }, |
| 151 | [SSL_ST_FAILED_HANDSHAKE] = { .name = "ssl_failed_handshake", |
| 152 | .desc = "Total number of failed handshake" }, |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 153 | }; |
| 154 | |
| 155 | static struct ssl_counters { |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 156 | long long sess; |
| 157 | long long reused_sess; |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 158 | long long failed_handshake; |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 159 | } ssl_counters; |
| 160 | |
| 161 | static void ssl_fill_stats(void *data, struct field *stats) |
| 162 | { |
Amaury Denoyelle | fbc3377 | 2020-11-03 17:10:01 +0100 | [diff] [blame] | 163 | struct ssl_counters *counters = data; |
| 164 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 165 | stats[SSL_ST_SESS] = mkf_u64(FN_COUNTER, counters->sess); |
| 166 | stats[SSL_ST_REUSED_SESS] = mkf_u64(FN_COUNTER, counters->reused_sess); |
| 167 | stats[SSL_ST_FAILED_HANDSHAKE] = mkf_u64(FN_COUNTER, counters->failed_handshake); |
Amaury Denoyelle | 9963fa7 | 2020-11-03 17:10:00 +0100 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | static struct stats_module ssl_stats_module = { |
| 171 | .name = "ssl", |
| 172 | .fill_stats = ssl_fill_stats, |
| 173 | .stats = ssl_stats, |
| 174 | .stats_count = SSL_ST_STATS_COUNT, |
| 175 | .counters = &ssl_counters, |
| 176 | .counters_size = sizeof(ssl_counters), |
| 177 | .domain_flags = MK_STATS_PROXY_DOMAIN(STATS_PX_CAP_FE|STATS_PX_CAP_LI|STATS_PX_CAP_BE|STATS_PX_CAP_SRV), |
| 178 | .clearable = 1, |
| 179 | }; |
| 180 | |
| 181 | INITCALL1(STG_REGISTER, stats_register_module, &ssl_stats_module); |
| 182 | |
Willy Tarreau | 691d503 | 2021-01-20 14:55:01 +0100 | [diff] [blame] | 183 | /* 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] | 184 | struct task *ssl_sock_io_cb(struct task *, void *, unsigned int); |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 185 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 186 | |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 187 | /* Methods to implement OpenSSL BIO */ |
| 188 | static int ha_ssl_write(BIO *h, const char *buf, int num) |
| 189 | { |
| 190 | struct buffer tmpbuf; |
| 191 | struct ssl_sock_ctx *ctx; |
| 192 | int ret; |
| 193 | |
| 194 | ctx = BIO_get_data(h); |
| 195 | tmpbuf.size = num; |
| 196 | tmpbuf.area = (void *)(uintptr_t)buf; |
| 197 | tmpbuf.data = num; |
| 198 | tmpbuf.head = 0; |
| 199 | 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] | 200 | 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] | 201 | BIO_set_retry_write(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 202 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 203 | } else if (ret == 0) |
| 204 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 205 | return ret; |
| 206 | } |
| 207 | |
| 208 | static int ha_ssl_gets(BIO *h, char *buf, int size) |
| 209 | { |
| 210 | |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | static int ha_ssl_puts(BIO *h, const char *str) |
| 215 | { |
| 216 | |
| 217 | return ha_ssl_write(h, str, strlen(str)); |
| 218 | } |
| 219 | |
| 220 | static int ha_ssl_read(BIO *h, char *buf, int size) |
| 221 | { |
| 222 | struct buffer tmpbuf; |
| 223 | struct ssl_sock_ctx *ctx; |
| 224 | int ret; |
| 225 | |
| 226 | ctx = BIO_get_data(h); |
| 227 | tmpbuf.size = size; |
| 228 | tmpbuf.area = buf; |
| 229 | tmpbuf.data = 0; |
| 230 | tmpbuf.head = 0; |
| 231 | 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] | 232 | 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] | 233 | BIO_set_retry_read(h); |
Olivier Houchard | a28454e | 2019-04-24 12:04:36 +0200 | [diff] [blame] | 234 | ret = -1; |
Olivier Houchard | b51937e | 2019-05-01 17:24:36 +0200 | [diff] [blame] | 235 | } else if (ret == 0) |
| 236 | BIO_clear_retry_flags(h); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 237 | |
| 238 | return ret; |
| 239 | } |
| 240 | |
| 241 | static long ha_ssl_ctrl(BIO *h, int cmd, long arg1, void *arg2) |
| 242 | { |
| 243 | int ret = 0; |
| 244 | switch (cmd) { |
| 245 | case BIO_CTRL_DUP: |
| 246 | case BIO_CTRL_FLUSH: |
| 247 | ret = 1; |
| 248 | break; |
| 249 | } |
| 250 | return ret; |
| 251 | } |
| 252 | |
| 253 | static int ha_ssl_new(BIO *h) |
| 254 | { |
| 255 | BIO_set_init(h, 1); |
| 256 | BIO_set_data(h, NULL); |
| 257 | BIO_clear_flags(h, ~0); |
| 258 | return 1; |
| 259 | } |
| 260 | |
| 261 | static int ha_ssl_free(BIO *data) |
| 262 | { |
| 263 | |
| 264 | return 1; |
| 265 | } |
| 266 | |
| 267 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 268 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 269 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 270 | static HA_RWLOCK_T *ssl_rwlocks; |
| 271 | |
| 272 | |
| 273 | unsigned long ssl_id_function(void) |
| 274 | { |
| 275 | return (unsigned long)tid; |
| 276 | } |
| 277 | |
| 278 | void ssl_locking_function(int mode, int n, const char * file, int line) |
| 279 | { |
| 280 | if (mode & CRYPTO_LOCK) { |
| 281 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 282 | HA_RWLOCK_RDLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 283 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 284 | HA_RWLOCK_WRLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 285 | } |
| 286 | else { |
| 287 | if (mode & CRYPTO_READ) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 288 | HA_RWLOCK_RDUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 289 | else |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 290 | HA_RWLOCK_WRUNLOCK(SSL_LOCK, &ssl_rwlocks[n]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
| 294 | static int ssl_locking_init(void) |
| 295 | { |
| 296 | int i; |
| 297 | |
| 298 | ssl_rwlocks = malloc(sizeof(HA_RWLOCK_T)*CRYPTO_num_locks()); |
| 299 | if (!ssl_rwlocks) |
| 300 | return -1; |
| 301 | |
| 302 | for (i = 0 ; i < CRYPTO_num_locks() ; i++) |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 303 | HA_RWLOCK_INIT(&ssl_rwlocks[i]); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 304 | |
| 305 | CRYPTO_set_id_callback(ssl_id_function); |
| 306 | CRYPTO_set_locking_callback(ssl_locking_function); |
| 307 | |
| 308 | return 0; |
| 309 | } |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 310 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 311 | #endif |
| 312 | |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 313 | __decl_thread(HA_SPINLOCK_T ckch_lock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 314 | |
William Lallemand | bc6ca7c | 2019-10-29 23:48:19 +0100 | [diff] [blame] | 315 | |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 316 | |
| 317 | /* mimic what X509_STORE_load_locations do with store_ctx */ |
| 318 | static int ssl_set_cert_crl_file(X509_STORE *store_ctx, char *path) |
| 319 | { |
Remi Tricot-Le Breton | d75b99e | 2021-05-17 11:45:55 +0200 | [diff] [blame] | 320 | X509_STORE *store = NULL; |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 321 | struct cafile_entry *ca_e = ssl_store_get_cafile_entry(path, 0); |
| 322 | if (ca_e) |
| 323 | store = ca_e->ca_store; |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 324 | if (store_ctx && store) { |
| 325 | int i; |
| 326 | X509_OBJECT *obj; |
| 327 | STACK_OF(X509_OBJECT) *objs = X509_STORE_get0_objects(store); |
| 328 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 329 | obj = sk_X509_OBJECT_value(objs, i); |
| 330 | switch (X509_OBJECT_get_type(obj)) { |
| 331 | case X509_LU_X509: |
| 332 | X509_STORE_add_cert(store_ctx, X509_OBJECT_get0_X509(obj)); |
| 333 | break; |
| 334 | case X509_LU_CRL: |
| 335 | X509_STORE_add_crl(store_ctx, X509_OBJECT_get0_X509_CRL(obj)); |
| 336 | break; |
| 337 | default: |
| 338 | break; |
| 339 | } |
| 340 | } |
| 341 | return 1; |
| 342 | } |
| 343 | return 0; |
| 344 | } |
| 345 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 346 | /* SSL_CTX_load_verify_locations substitute, internally call X509_STORE_load_locations */ |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 347 | static int ssl_set_verify_locations_file(SSL_CTX *ctx, char *path) |
| 348 | { |
| 349 | X509_STORE *store_ctx = SSL_CTX_get_cert_store(ctx); |
| 350 | return ssl_set_cert_crl_file(store_ctx, path); |
| 351 | } |
| 352 | |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 353 | /* |
| 354 | Extract CA_list from CA_file already in tree. |
| 355 | Duplicate ca_name is tracking with ebtree. It's simplify openssl compatibility. |
| 356 | Return a shared ca_list: SSL_dup_CA_list must be used before set it on SSL_CTX. |
| 357 | */ |
| 358 | static STACK_OF(X509_NAME)* ssl_get_client_ca_file(char *path) |
| 359 | { |
| 360 | struct ebmb_node *eb; |
| 361 | struct cafile_entry *ca_e; |
| 362 | |
| 363 | eb = ebst_lookup(&cafile_tree, path); |
| 364 | if (!eb) |
| 365 | return NULL; |
| 366 | ca_e = ebmb_entry(eb, struct cafile_entry, node); |
| 367 | |
| 368 | if (ca_e->ca_list == NULL) { |
| 369 | int i; |
| 370 | unsigned long key; |
| 371 | struct eb_root ca_name_tree = EB_ROOT; |
| 372 | struct eb64_node *node, *back; |
| 373 | struct { |
| 374 | struct eb64_node node; |
| 375 | X509_NAME *xname; |
| 376 | } *ca_name; |
| 377 | STACK_OF(X509_OBJECT) *objs; |
| 378 | STACK_OF(X509_NAME) *skn; |
| 379 | X509 *x; |
| 380 | X509_NAME *xn; |
| 381 | |
| 382 | skn = sk_X509_NAME_new_null(); |
| 383 | /* take x509 from cafile_tree */ |
| 384 | objs = X509_STORE_get0_objects(ca_e->ca_store); |
| 385 | for (i = 0; i < sk_X509_OBJECT_num(objs); i++) { |
| 386 | x = X509_OBJECT_get0_X509(sk_X509_OBJECT_value(objs, i)); |
| 387 | if (!x) |
| 388 | continue; |
| 389 | xn = X509_get_subject_name(x); |
| 390 | if (!xn) |
| 391 | continue; |
| 392 | /* Check for duplicates. */ |
| 393 | key = X509_NAME_hash(xn); |
| 394 | for (node = eb64_lookup(&ca_name_tree, key), ca_name = NULL; |
| 395 | node && ca_name == NULL; |
| 396 | node = eb64_next(node)) { |
| 397 | ca_name = container_of(node, typeof(*ca_name), node); |
| 398 | if (X509_NAME_cmp(xn, ca_name->xname) != 0) |
| 399 | ca_name = NULL; |
| 400 | } |
| 401 | /* find a duplicate */ |
| 402 | if (ca_name) |
| 403 | continue; |
| 404 | ca_name = calloc(1, sizeof *ca_name); |
| 405 | xn = X509_NAME_dup(xn); |
| 406 | if (!ca_name || |
| 407 | !xn || |
| 408 | !sk_X509_NAME_push(skn, xn)) { |
| 409 | free(ca_name); |
| 410 | X509_NAME_free(xn); |
| 411 | sk_X509_NAME_pop_free(skn, X509_NAME_free); |
| 412 | sk_X509_NAME_free(skn); |
| 413 | skn = NULL; |
| 414 | break; |
| 415 | } |
| 416 | ca_name->node.key = key; |
| 417 | ca_name->xname = xn; |
| 418 | eb64_insert(&ca_name_tree, &ca_name->node); |
| 419 | } |
| 420 | ca_e->ca_list = skn; |
| 421 | /* remove temporary ca_name tree */ |
| 422 | node = eb64_first(&ca_name_tree); |
| 423 | while (node) { |
| 424 | ca_name = container_of(node, typeof(*ca_name), node); |
| 425 | back = eb64_next(node); |
| 426 | eb64_delete(node); |
| 427 | free(ca_name); |
| 428 | node = back; |
| 429 | } |
| 430 | } |
| 431 | return ca_e->ca_list; |
| 432 | } |
| 433 | |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 434 | struct pool_head *pool_head_ssl_capture __read_mostly = NULL; |
William Lallemand | 15e1694 | 2020-05-15 00:25:08 +0200 | [diff] [blame] | 435 | int ssl_capture_ptr_index = -1; |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 436 | int ssl_app_data_index = -1; |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 437 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 438 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 439 | int ssl_keylog_index = -1; |
Willy Tarreau | ff88270 | 2021-04-10 17:23:00 +0200 | [diff] [blame] | 440 | struct pool_head *pool_head_ssl_keylog __read_mostly = NULL; |
| 441 | struct pool_head *pool_head_ssl_keylog_str __read_mostly = NULL; |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 442 | #endif |
| 443 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 444 | int ssl_client_crt_ref_index = -1; |
| 445 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 446 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 447 | struct list tlskeys_reference = LIST_HEAD_INIT(tlskeys_reference); |
| 448 | #endif |
| 449 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 450 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 451 | unsigned int openssl_engines_initialized; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 452 | struct list openssl_engines = LIST_HEAD_INIT(openssl_engines); |
| 453 | struct ssl_engine_list { |
| 454 | struct list list; |
| 455 | ENGINE *e; |
| 456 | }; |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 457 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 458 | |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 459 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 460 | static int ssl_dh_ptr_index = -1; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 461 | static DH *global_dh = NULL; |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 462 | static DH *local_dh_1024 = NULL; |
| 463 | static DH *local_dh_2048 = NULL; |
| 464 | static DH *local_dh_4096 = NULL; |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 465 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen); |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 466 | #endif /* OPENSSL_NO_DH */ |
| 467 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 468 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 469 | /* X509V3 Extensions that will be added on generated certificates */ |
| 470 | #define X509V3_EXT_SIZE 5 |
| 471 | static char *x509v3_ext_names[X509V3_EXT_SIZE] = { |
| 472 | "basicConstraints", |
| 473 | "nsComment", |
| 474 | "subjectKeyIdentifier", |
| 475 | "authorityKeyIdentifier", |
| 476 | "keyUsage", |
| 477 | }; |
| 478 | static char *x509v3_ext_values[X509V3_EXT_SIZE] = { |
| 479 | "CA:FALSE", |
| 480 | "\"OpenSSL Generated Certificate\"", |
| 481 | "hash", |
| 482 | "keyid,issuer:always", |
| 483 | "nonRepudiation,digitalSignature,keyEncipherment" |
| 484 | }; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 485 | /* LRU cache to store generated certificate */ |
| 486 | static struct lru64_head *ssl_ctx_lru_tree = NULL; |
| 487 | static unsigned int ssl_ctx_lru_seed = 0; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 488 | static unsigned int ssl_ctx_serial; |
Willy Tarreau | 86abe44 | 2018-11-25 20:12:18 +0100 | [diff] [blame] | 489 | __decl_rwlock(ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 490 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 491 | #endif // SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 492 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 493 | /* The order here matters for picking a default context, |
| 494 | * keep the most common keytype at the bottom of the list |
| 495 | */ |
| 496 | const char *SSL_SOCK_KEYTYPE_NAMES[] = { |
| 497 | "dsa", |
| 498 | "ecdsa", |
| 499 | "rsa" |
| 500 | }; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 501 | |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 502 | static struct shared_context *ssl_shctx = NULL; /* ssl shared session cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 503 | static struct eb_root *sh_ssl_sess_tree; /* ssl shared session tree */ |
| 504 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 505 | /* Dedicated callback functions for heartbeat and clienthello. |
| 506 | */ |
| 507 | #ifdef TLS1_RT_HEARTBEAT |
| 508 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 509 | int content_type, const void *buf, size_t len, |
| 510 | SSL *ssl); |
| 511 | #endif |
| 512 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 513 | int content_type, const void *buf, size_t len, |
| 514 | SSL *ssl); |
| 515 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 516 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 517 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 518 | int content_type, const void *buf, size_t len, |
| 519 | SSL *ssl); |
| 520 | #endif |
| 521 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 522 | /* List head of all registered SSL/TLS protocol message callbacks. */ |
| 523 | struct list ssl_sock_msg_callbacks = LIST_HEAD_INIT(ssl_sock_msg_callbacks); |
| 524 | |
| 525 | /* Registers the function <func> in order to be called on SSL/TLS protocol |
| 526 | * message processing. It will return 0 if the function <func> is not set |
| 527 | * or if it fails to allocate memory. |
| 528 | */ |
| 529 | int ssl_sock_register_msg_callback(ssl_sock_msg_callback_func func) |
| 530 | { |
| 531 | struct ssl_sock_msg_callback *cbk; |
| 532 | |
| 533 | if (!func) |
| 534 | return 0; |
| 535 | |
| 536 | cbk = calloc(1, sizeof(*cbk)); |
| 537 | if (!cbk) { |
| 538 | ha_alert("out of memory in ssl_sock_register_msg_callback().\n"); |
| 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | cbk->func = func; |
| 543 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 544 | LIST_APPEND(&ssl_sock_msg_callbacks, &cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 545 | |
| 546 | return 1; |
| 547 | } |
| 548 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 549 | /* Used to register dedicated SSL/TLS protocol message callbacks. |
| 550 | */ |
| 551 | static int ssl_sock_register_msg_callbacks(void) |
| 552 | { |
| 553 | #ifdef TLS1_RT_HEARTBEAT |
| 554 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_heartbeat)) |
| 555 | return ERR_ABORT; |
| 556 | #endif |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 557 | if (global_ssl.capture_buffer_size > 0) { |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 558 | if (!ssl_sock_register_msg_callback(ssl_sock_parse_clienthello)) |
| 559 | return ERR_ABORT; |
| 560 | } |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 561 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 562 | if (global_ssl.keylog > 0) { |
| 563 | if (!ssl_sock_register_msg_callback(ssl_init_keylog)) |
| 564 | return ERR_ABORT; |
| 565 | } |
| 566 | #endif |
| 567 | |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 568 | return ERR_NONE; |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 569 | } |
| 570 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 571 | /* Used to free all SSL/TLS protocol message callbacks that were |
| 572 | * registered by using ssl_sock_register_msg_callback(). |
| 573 | */ |
| 574 | static void ssl_sock_unregister_msg_callbacks(void) |
| 575 | { |
| 576 | struct ssl_sock_msg_callback *cbk, *cbkback; |
| 577 | |
| 578 | list_for_each_entry_safe(cbk, cbkback, &ssl_sock_msg_callbacks, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 579 | LIST_DELETE(&cbk->list); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 580 | free(cbk); |
| 581 | } |
| 582 | } |
| 583 | |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 584 | SSL *ssl_sock_get_ssl_object(struct connection *conn) |
| 585 | { |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 586 | if (!conn_is_ssl(conn)) |
Dragan Dosen | eb607fe | 2020-05-11 17:17:06 +0200 | [diff] [blame] | 587 | return NULL; |
| 588 | |
| 589 | return ((struct ssl_sock_ctx *)(conn->xprt_ctx))->ssl; |
| 590 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 591 | /* |
| 592 | * This function gives the detail of the SSL error. It is used only |
| 593 | * if the debug mode and the verbose mode are activated. It dump all |
| 594 | * the SSL error until the stack was empty. |
| 595 | */ |
| 596 | static forceinline void ssl_sock_dump_errors(struct connection *conn) |
| 597 | { |
| 598 | unsigned long ret; |
| 599 | |
| 600 | if (unlikely(global.mode & MODE_DEBUG)) { |
| 601 | while(1) { |
| 602 | ret = ERR_get_error(); |
| 603 | if (ret == 0) |
| 604 | return; |
Willy Tarreau | 566cebc | 2021-03-02 19:32:39 +0100 | [diff] [blame] | 605 | fprintf(stderr, "fd[%#x] OpenSSL error[0x%lx] %s: %s\n", |
| 606 | conn->handle.fd, ret, |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 607 | ERR_func_error_string(ret), ERR_reason_error_string(ret)); |
| 608 | } |
| 609 | } |
| 610 | } |
| 611 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 612 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 613 | #ifndef OPENSSL_NO_ENGINE |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 614 | 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] | 615 | { |
| 616 | int err_code = ERR_ABORT; |
| 617 | ENGINE *engine; |
| 618 | struct ssl_engine_list *el; |
| 619 | |
| 620 | /* grab the structural reference to the engine */ |
| 621 | engine = ENGINE_by_id(engine_id); |
| 622 | if (engine == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 623 | 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] | 624 | goto fail_get; |
| 625 | } |
| 626 | |
| 627 | if (!ENGINE_init(engine)) { |
| 628 | /* the engine couldn't initialise, release it */ |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 629 | ha_alert("ssl-engine %s: failed to initialize\n", engine_id); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 630 | goto fail_init; |
| 631 | } |
| 632 | |
| 633 | if (ENGINE_set_default_string(engine, def_algorithms) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 634 | 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] | 635 | goto fail_set_method; |
| 636 | } |
| 637 | |
| 638 | el = calloc(1, sizeof(*el)); |
Remi Tricot-Le Breton | 612b2c3 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 639 | if (!el) |
| 640 | goto fail_alloc; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 641 | el->e = engine; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 642 | LIST_INSERT(&openssl_engines, &el->list); |
Emeric Brun | ece0c33 | 2017-12-06 13:51:49 +0100 | [diff] [blame] | 643 | nb_engines++; |
| 644 | if (global_ssl.async) |
| 645 | global.ssl_used_async_engines = nb_engines; |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 646 | return 0; |
| 647 | |
Remi Tricot-Le Breton | 612b2c3 | 2021-05-12 17:45:21 +0200 | [diff] [blame] | 648 | fail_alloc: |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 649 | fail_set_method: |
| 650 | /* release the functional reference from ENGINE_init() */ |
| 651 | ENGINE_finish(engine); |
| 652 | |
| 653 | fail_init: |
| 654 | /* release the structural reference from ENGINE_by_id() */ |
| 655 | ENGINE_free(engine); |
| 656 | |
| 657 | fail_get: |
| 658 | return err_code; |
| 659 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 660 | #endif |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 661 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 662 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 663 | /* |
| 664 | * openssl async fd handler |
| 665 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 666 | void ssl_async_fd_handler(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 667 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 668 | struct ssl_sock_ctx *ctx = fdtab[fd].owner; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 669 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 670 | /* fd is an async enfine fd, we must stop |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 671 | * to poll this fd until it is requested |
| 672 | */ |
Emeric Brun | bbc1654 | 2017-06-02 15:54:06 +0000 | [diff] [blame] | 673 | fd_stop_recv(fd); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 674 | fd_cant_recv(fd); |
| 675 | |
| 676 | /* crypto engine is available, let's notify the associated |
| 677 | * connection that it can pursue its processing. |
| 678 | */ |
Olivier Houchard | a459826 | 2020-09-15 22:16:02 +0200 | [diff] [blame] | 679 | tasklet_wakeup(ctx->wait_event.tasklet); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 682 | /* |
| 683 | * openssl async delayed SSL_free handler |
| 684 | */ |
Emeric Brun | d0e095c | 2019-04-19 17:15:28 +0200 | [diff] [blame] | 685 | void ssl_async_fd_free(int fd) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 686 | { |
| 687 | SSL *ssl = fdtab[fd].owner; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 688 | OSSL_ASYNC_FD all_fd[32]; |
| 689 | size_t num_all_fds = 0; |
| 690 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 691 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 692 | /* We suppose that the async job for a same SSL * |
| 693 | * are serialized. So if we are awake it is |
| 694 | * because the running job has just finished |
| 695 | * and we can remove all async fds safely |
| 696 | */ |
| 697 | SSL_get_all_async_fds(ssl, NULL, &num_all_fds); |
| 698 | if (num_all_fds > 32) { |
| 699 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 700 | return; |
| 701 | } |
| 702 | |
| 703 | SSL_get_all_async_fds(ssl, all_fd, &num_all_fds); |
| 704 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 705 | fd_stop_both(all_fd[i]); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 706 | |
| 707 | /* 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] | 708 | SSL_free(ssl); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 709 | _HA_ATOMIC_DEC(&global.sslconns); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 710 | _HA_ATOMIC_DEC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 711 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 712 | /* |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 713 | * function used to manage a returned SSL_ERROR_WANT_ASYNC |
| 714 | * and enable/disable polling for async fds |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 715 | */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 716 | static inline void ssl_async_process_fds(struct ssl_sock_ctx *ctx) |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 717 | { |
Willy Tarreau | a9786b6 | 2018-01-25 07:22:13 +0100 | [diff] [blame] | 718 | OSSL_ASYNC_FD add_fd[32]; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 719 | OSSL_ASYNC_FD del_fd[32]; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 720 | SSL *ssl = ctx->ssl; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 721 | size_t num_add_fds = 0; |
| 722 | size_t num_del_fds = 0; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 723 | int i; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 724 | |
| 725 | SSL_get_changed_async_fds(ssl, NULL, &num_add_fds, NULL, |
| 726 | &num_del_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 727 | if (num_add_fds > 32 || num_del_fds > 32) { |
| 728 | 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] | 729 | return; |
| 730 | } |
| 731 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 732 | 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] | 733 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 734 | /* We remove unused fds from the fdtab */ |
| 735 | for (i=0 ; i < num_del_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 736 | fd_stop_both(del_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 737 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 738 | /* We add new fds to the fdtab */ |
| 739 | for (i=0 ; i < num_add_fds ; i++) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 740 | fd_insert(add_fd[i], ctx, ssl_async_fd_handler, tid_bit); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 741 | } |
| 742 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 743 | num_add_fds = 0; |
| 744 | SSL_get_all_async_fds(ssl, NULL, &num_add_fds); |
| 745 | if (num_add_fds > 32) { |
| 746 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 747 | return; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 748 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 749 | |
| 750 | /* We activate the polling for all known async fds */ |
| 751 | SSL_get_all_async_fds(ssl, add_fd, &num_add_fds); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 752 | for (i=0 ; i < num_add_fds ; i++) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 753 | fd_want_recv(add_fd[i]); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 754 | /* To ensure that the fd cache won't be used |
| 755 | * We'll prefer to catch a real RD event |
| 756 | * because handling an EAGAIN on this fd will |
| 757 | * result in a context switch and also |
| 758 | * some engines uses a fd in blocking mode. |
| 759 | */ |
| 760 | fd_cant_recv(add_fd[i]); |
| 761 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 762 | |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 763 | } |
| 764 | #endif |
| 765 | |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 766 | #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] | 767 | /* |
| 768 | * This function returns the number of seconds elapsed |
| 769 | * since the Epoch, 1970-01-01 00:00:00 +0000 (UTC) and the |
| 770 | * date presented un ASN1_GENERALIZEDTIME. |
| 771 | * |
| 772 | * In parsing error case, it returns -1. |
| 773 | */ |
| 774 | static long asn1_generalizedtime_to_epoch(ASN1_GENERALIZEDTIME *d) |
| 775 | { |
| 776 | long epoch; |
| 777 | char *p, *end; |
| 778 | const unsigned short month_offset[12] = { |
| 779 | 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334 |
| 780 | }; |
Remi Tricot-Le Breton | a3a0cce | 2021-06-09 17:16:18 +0200 | [diff] [blame] | 781 | unsigned long year, month; |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 782 | |
| 783 | if (!d || (d->type != V_ASN1_GENERALIZEDTIME)) return -1; |
| 784 | |
| 785 | p = (char *)d->data; |
| 786 | end = p + d->length; |
| 787 | |
| 788 | if (end - p < 4) return -1; |
| 789 | year = 1000 * (p[0] - '0') + 100 * (p[1] - '0') + 10 * (p[2] - '0') + p[3] - '0'; |
| 790 | p += 4; |
| 791 | if (end - p < 2) return -1; |
| 792 | month = 10 * (p[0] - '0') + p[1] - '0'; |
| 793 | if (month < 1 || month > 12) return -1; |
| 794 | /* Compute the number of seconds since 1 jan 1970 and the beginning of current month |
| 795 | We consider leap years and the current month (<marsh or not) */ |
| 796 | epoch = ( ((year - 1970) * 365) |
| 797 | + ((year - (month < 3)) / 4 - (year - (month < 3)) / 100 + (year - (month < 3)) / 400) |
| 798 | - ((1970 - 1) / 4 - (1970 - 1) / 100 + (1970 - 1) / 400) |
| 799 | + month_offset[month-1] |
| 800 | ) * 24 * 60 * 60; |
| 801 | p += 2; |
| 802 | if (end - p < 2) return -1; |
| 803 | /* Add the number of seconds of completed days of current month */ |
| 804 | epoch += (10 * (p[0] - '0') + p[1] - '0' - 1) * 24 * 60 * 60; |
| 805 | p += 2; |
| 806 | if (end - p < 2) return -1; |
| 807 | /* Add the completed hours of the current day */ |
| 808 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60 * 60; |
| 809 | p += 2; |
| 810 | if (end - p < 2) return -1; |
| 811 | /* Add the completed minutes of the current hour */ |
| 812 | epoch += (10 * (p[0] - '0') + p[1] - '0') * 60; |
| 813 | p += 2; |
| 814 | if (p == end) return -1; |
| 815 | /* Test if there is available seconds */ |
| 816 | if (p[0] < '0' || p[0] > '9') |
| 817 | goto nosec; |
| 818 | if (end - p < 2) return -1; |
| 819 | /* Add the seconds of the current minute */ |
| 820 | epoch += 10 * (p[0] - '0') + p[1] - '0'; |
| 821 | p += 2; |
| 822 | if (p == end) return -1; |
| 823 | /* Ignore seconds float part if present */ |
| 824 | if (p[0] == '.') { |
| 825 | do { |
| 826 | if (++p == end) return -1; |
| 827 | } while (p[0] >= '0' && p[0] <= '9'); |
| 828 | } |
| 829 | |
| 830 | nosec: |
| 831 | if (p[0] == 'Z') { |
| 832 | if (end - p != 1) return -1; |
| 833 | return epoch; |
| 834 | } |
| 835 | else if (p[0] == '+') { |
| 836 | if (end - p != 5) return -1; |
| 837 | /* Apply timezone offset */ |
Frederik Deweerdt | 953917a | 2017-10-16 07:37:31 -0700 | [diff] [blame] | 838 | 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] | 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 | |
| 846 | return -1; |
| 847 | } |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 848 | #endif |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 849 | |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 850 | #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] | 851 | /* |
| 852 | * struct alignment works here such that the key.key is the same as key_data |
| 853 | * Do not change the placement of key_data |
| 854 | */ |
| 855 | struct certificate_ocsp { |
| 856 | struct ebmb_node key; |
| 857 | unsigned char key_data[OCSP_MAX_CERTID_ASN1_LENGTH]; |
Remi Tricot-Le Breton | 5aa1dce | 2021-06-10 13:51:12 +0200 | [diff] [blame] | 858 | unsigned int key_length; |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 859 | struct buffer response; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 860 | int refcount; |
William Lallemand | 104a7a6 | 2019-10-14 14:14:59 +0200 | [diff] [blame] | 861 | long expire; |
| 862 | }; |
| 863 | |
| 864 | struct ocsp_cbk_arg { |
| 865 | int is_single; |
| 866 | int single_kt; |
| 867 | union { |
| 868 | struct certificate_ocsp *s_ocsp; |
| 869 | /* |
| 870 | * m_ocsp will have multiple entries dependent on key type |
| 871 | * Entry 0 - DSA |
| 872 | * Entry 1 - ECDSA |
| 873 | * Entry 2 - RSA |
| 874 | */ |
| 875 | struct certificate_ocsp *m_ocsp[SSL_SOCK_NUM_KEYTYPES]; |
| 876 | }; |
| 877 | }; |
| 878 | |
Emeric Brun | 1d3865b | 2014-06-20 15:37:32 +0200 | [diff] [blame] | 879 | static struct eb_root cert_ocsp_tree = EB_ROOT_UNIQUE; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 880 | |
| 881 | /* This function starts to check if the OCSP response (in DER format) contained |
| 882 | * in chunk 'ocsp_response' is valid (else exits on error). |
| 883 | * If 'cid' is not NULL, it will be compared to the OCSP certificate ID |
| 884 | * contained in the OCSP Response and exits on error if no match. |
| 885 | * If it's a valid OCSP Response: |
| 886 | * If 'ocsp' is not NULL, the chunk is copied in the OCSP response's container |
| 887 | * pointed by 'ocsp'. |
| 888 | * If 'ocsp' is NULL, the function looks up into the OCSP response's |
| 889 | * containers tree (using as index the ASN1 form of the OCSP Certificate ID extracted |
| 890 | * from the response) and exits on error if not found. Finally, If an OCSP response is |
| 891 | * already present in the container, it will be overwritten. |
| 892 | * |
| 893 | * Note: OCSP response containing more than one OCSP Single response is not |
| 894 | * considered valid. |
| 895 | * |
| 896 | * Returns 0 on success, 1 in error case. |
| 897 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 898 | static int ssl_sock_load_ocsp_response(struct buffer *ocsp_response, |
| 899 | struct certificate_ocsp *ocsp, |
| 900 | OCSP_CERTID *cid, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 901 | { |
| 902 | OCSP_RESPONSE *resp; |
| 903 | OCSP_BASICRESP *bs = NULL; |
| 904 | OCSP_SINGLERESP *sr; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 905 | OCSP_CERTID *id; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 906 | unsigned char *p = (unsigned char *) ocsp_response->area; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 907 | int rc , count_sr; |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 908 | ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 909 | int reason; |
| 910 | int ret = 1; |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 911 | #ifdef HAVE_ASN1_TIME_TO_TM |
| 912 | struct tm nextupd_tm = {0}; |
| 913 | #endif |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 914 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 915 | resp = d2i_OCSP_RESPONSE(NULL, (const unsigned char **)&p, |
| 916 | ocsp_response->data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 917 | if (!resp) { |
| 918 | memprintf(err, "Unable to parse OCSP response"); |
| 919 | goto out; |
| 920 | } |
| 921 | |
| 922 | rc = OCSP_response_status(resp); |
| 923 | if (rc != OCSP_RESPONSE_STATUS_SUCCESSFUL) { |
| 924 | memprintf(err, "OCSP response status not successful"); |
| 925 | goto out; |
| 926 | } |
| 927 | |
| 928 | bs = OCSP_response_get1_basic(resp); |
| 929 | if (!bs) { |
| 930 | memprintf(err, "Failed to get basic response from OCSP Response"); |
| 931 | goto out; |
| 932 | } |
| 933 | |
| 934 | count_sr = OCSP_resp_count(bs); |
| 935 | if (count_sr > 1) { |
| 936 | memprintf(err, "OCSP response ignored because contains multiple single responses (%d)", count_sr); |
| 937 | goto out; |
| 938 | } |
| 939 | |
| 940 | sr = OCSP_resp_get0(bs, 0); |
| 941 | if (!sr) { |
| 942 | memprintf(err, "Failed to get OCSP single response"); |
| 943 | goto out; |
| 944 | } |
| 945 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 946 | id = (OCSP_CERTID*)OCSP_SINGLERESP_get0_id(sr); |
| 947 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 948 | rc = OCSP_single_get0_status(sr, &reason, &revtime, &thisupd, &nextupd); |
Emmanuel Hocdet | ef60705 | 2017-10-24 14:57:16 +0200 | [diff] [blame] | 949 | if (rc != V_OCSP_CERTSTATUS_GOOD && rc != V_OCSP_CERTSTATUS_REVOKED) { |
Emmanuel Hocdet | 872085c | 2017-10-10 15:18:52 +0200 | [diff] [blame] | 950 | memprintf(err, "OCSP single response: certificate status is unknown"); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 951 | goto out; |
| 952 | } |
| 953 | |
Emeric Brun | 13a6b48 | 2014-06-20 15:44:34 +0200 | [diff] [blame] | 954 | if (!nextupd) { |
| 955 | memprintf(err, "OCSP single response: missing nextupdate"); |
| 956 | goto out; |
| 957 | } |
| 958 | |
Emeric Brun | c8b27b6 | 2014-06-19 14:16:17 +0200 | [diff] [blame] | 959 | rc = OCSP_check_validity(thisupd, nextupd, OCSP_MAX_RESPONSE_TIME_SKEW, -1); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 960 | if (!rc) { |
| 961 | memprintf(err, "OCSP single response: no longer valid."); |
| 962 | goto out; |
| 963 | } |
| 964 | |
| 965 | if (cid) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 966 | if (OCSP_id_cmp(id, cid)) { |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 967 | memprintf(err, "OCSP single response: Certificate ID does not match certificate and issuer"); |
| 968 | goto out; |
| 969 | } |
| 970 | } |
| 971 | |
| 972 | if (!ocsp) { |
| 973 | unsigned char key[OCSP_MAX_CERTID_ASN1_LENGTH]; |
| 974 | unsigned char *p; |
| 975 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 976 | rc = i2d_OCSP_CERTID(id, NULL); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 977 | if (!rc) { |
| 978 | memprintf(err, "OCSP single response: Unable to encode Certificate ID"); |
| 979 | goto out; |
| 980 | } |
| 981 | |
| 982 | if (rc > OCSP_MAX_CERTID_ASN1_LENGTH) { |
| 983 | memprintf(err, "OCSP single response: Certificate ID too long"); |
| 984 | goto out; |
| 985 | } |
| 986 | |
| 987 | p = key; |
| 988 | memset(key, 0, OCSP_MAX_CERTID_ASN1_LENGTH); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 989 | i2d_OCSP_CERTID(id, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 990 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 991 | if (!ocsp) { |
| 992 | memprintf(err, "OCSP single response: Certificate ID does not match any certificate or issuer"); |
| 993 | goto out; |
| 994 | } |
| 995 | } |
| 996 | |
| 997 | /* According to comments on "chunk_dup", the |
| 998 | previous chunk buffer will be freed */ |
| 999 | if (!chunk_dup(&ocsp->response, ocsp_response)) { |
| 1000 | memprintf(err, "OCSP response: Memory allocation error"); |
| 1001 | goto out; |
| 1002 | } |
| 1003 | |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 1004 | #ifdef HAVE_ASN1_TIME_TO_TM |
| 1005 | if (ASN1_TIME_to_tm(nextupd, &nextupd_tm) == 0) { |
| 1006 | memprintf(err, "OCSP single response: Invalid \"Next Update\" time"); |
| 1007 | goto out; |
| 1008 | } |
| 1009 | ocsp->expire = my_timegm(&nextupd_tm) - OCSP_MAX_RESPONSE_TIME_SKEW; |
| 1010 | #else |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1011 | 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] | 1012 | if (ocsp->expire < 0) { |
| 1013 | memprintf(err, "OCSP single response: Invalid \"Next Update\" time"); |
| 1014 | goto out; |
| 1015 | } |
Remi Tricot-Le Breton | 6916493 | 2021-06-11 10:28:09 +0200 | [diff] [blame] | 1016 | #endif |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1017 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1018 | ret = 0; |
| 1019 | out: |
Janusz Dziemidowicz | 8d71049 | 2017-03-08 16:59:41 +0100 | [diff] [blame] | 1020 | ERR_clear_error(); |
| 1021 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1022 | if (bs) |
| 1023 | OCSP_BASICRESP_free(bs); |
| 1024 | |
| 1025 | if (resp) |
| 1026 | OCSP_RESPONSE_free(resp); |
| 1027 | |
| 1028 | return ret; |
| 1029 | } |
| 1030 | /* |
| 1031 | * External function use to update the OCSP response in the OCSP response's |
| 1032 | * containers tree. The chunk 'ocsp_response' must contain the OCSP response |
| 1033 | * to update in DER format. |
| 1034 | * |
| 1035 | * Returns 0 on success, 1 in error case. |
| 1036 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1037 | int ssl_sock_update_ocsp_response(struct buffer *ocsp_response, char **err) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1038 | { |
| 1039 | return ssl_sock_load_ocsp_response(ocsp_response, NULL, NULL, err); |
| 1040 | } |
| 1041 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1042 | #endif |
| 1043 | |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1044 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 1045 | 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) |
| 1046 | { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1047 | struct tls_keys_ref *ref; |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1048 | union tls_sess_key *keys; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1049 | struct connection *conn; |
| 1050 | int head; |
| 1051 | int i; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1052 | int ret = -1; /* error by default */ |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1053 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1054 | conn = SSL_get_ex_data(s, ssl_app_data_index); |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 1055 | ref = __objt_listener(conn->target)->bind_conf->keys_ref; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1056 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1057 | |
| 1058 | keys = ref->tlskeys; |
| 1059 | head = ref->tls_ticket_enc_index; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1060 | |
| 1061 | if (enc) { |
| 1062 | memcpy(key_name, keys[head].name, 16); |
| 1063 | |
| 1064 | if(!RAND_pseudo_bytes(iv, EVP_MAX_IV_LENGTH)) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1065 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1066 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1067 | if (ref->key_size_bits == 128) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1068 | |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1069 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[head].key_128.aes_key, iv)) |
| 1070 | goto end; |
| 1071 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1072 | 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] | 1073 | ret = 1; |
| 1074 | } |
| 1075 | else if (ref->key_size_bits == 256 ) { |
| 1076 | |
| 1077 | if(!EVP_EncryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[head].key_256.aes_key, iv)) |
| 1078 | goto end; |
| 1079 | |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1080 | 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] | 1081 | ret = 1; |
| 1082 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1083 | } else { |
| 1084 | for (i = 0; i < TLS_TICKETS_NO; i++) { |
| 1085 | if (!memcmp(key_name, keys[(head + i) % TLS_TICKETS_NO].name, 16)) |
| 1086 | goto found; |
| 1087 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1088 | ret = 0; |
| 1089 | goto end; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1090 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1091 | found: |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1092 | if (ref->key_size_bits == 128) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1093 | 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] | 1094 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_128_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_128.aes_key, iv)) |
| 1095 | goto end; |
| 1096 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1097 | ret = i ? 2 : 1; |
| 1098 | } |
| 1099 | else if (ref->key_size_bits == 256) { |
Willy Tarreau | 9356dac | 2019-05-10 09:22:53 +0200 | [diff] [blame] | 1100 | 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] | 1101 | if(!EVP_DecryptInit_ex(ectx, EVP_aes_256_cbc(), NULL, keys[(head + i) % TLS_TICKETS_NO].key_256.aes_key, iv)) |
| 1102 | goto end; |
| 1103 | /* 2 for key renewal, 1 if current key is still valid */ |
| 1104 | ret = i ? 2 : 1; |
| 1105 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1106 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1107 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1108 | end: |
| 1109 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 1110 | return ret; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1111 | } |
| 1112 | |
| 1113 | struct tls_keys_ref *tlskeys_ref_lookup(const char *filename) |
| 1114 | { |
| 1115 | struct tls_keys_ref *ref; |
| 1116 | |
| 1117 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1118 | if (ref->filename && strcmp(filename, ref->filename) == 0) |
| 1119 | return ref; |
| 1120 | return NULL; |
| 1121 | } |
| 1122 | |
| 1123 | struct tls_keys_ref *tlskeys_ref_lookupid(int unique_id) |
| 1124 | { |
| 1125 | struct tls_keys_ref *ref; |
| 1126 | |
| 1127 | list_for_each_entry(ref, &tlskeys_reference, list) |
| 1128 | if (ref->unique_id == unique_id) |
| 1129 | return ref; |
| 1130 | return NULL; |
| 1131 | } |
| 1132 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1133 | /* Update the key into ref: if keysize doesn't |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1134 | * match existing ones, this function returns -1 |
| 1135 | * else it returns 0 on success. |
| 1136 | */ |
| 1137 | int ssl_sock_update_tlskey_ref(struct tls_keys_ref *ref, |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1138 | struct buffer *tlskey) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1139 | { |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1140 | if (ref->key_size_bits == 128) { |
| 1141 | if (tlskey->data != sizeof(struct tls_sess_key_128)) |
| 1142 | return -1; |
| 1143 | } |
| 1144 | else if (ref->key_size_bits == 256) { |
| 1145 | if (tlskey->data != sizeof(struct tls_sess_key_256)) |
| 1146 | return -1; |
| 1147 | } |
| 1148 | else |
| 1149 | return -1; |
| 1150 | |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1151 | HA_RWLOCK_WRLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1152 | memcpy((char *) (ref->tlskeys + ((ref->tls_ticket_enc_index + 2) % TLS_TICKETS_NO)), |
| 1153 | tlskey->area, tlskey->data); |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1154 | ref->tls_ticket_enc_index = (ref->tls_ticket_enc_index + 1) % TLS_TICKETS_NO; |
| 1155 | HA_RWLOCK_WRUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1156 | |
| 1157 | return 0; |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1158 | } |
| 1159 | |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1160 | int ssl_sock_update_tlskey(char *filename, struct buffer *tlskey, char **err) |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 1161 | { |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1162 | struct tls_keys_ref *ref = tlskeys_ref_lookup(filename); |
| 1163 | |
| 1164 | if(!ref) { |
| 1165 | memprintf(err, "Unable to locate the referenced filename: %s", filename); |
| 1166 | return 1; |
| 1167 | } |
Emeric Brun | 9e75477 | 2019-01-10 17:51:55 +0100 | [diff] [blame] | 1168 | if (ssl_sock_update_tlskey_ref(ref, tlskey) < 0) { |
| 1169 | memprintf(err, "Invalid key size"); |
| 1170 | return 1; |
| 1171 | } |
| 1172 | |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1173 | return 0; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1174 | } |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1175 | |
| 1176 | /* This function finalize the configuration parsing. Its set all the |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1177 | * automatic ids. It's called just after the basic checks. It returns |
| 1178 | * 0 on success otherwise ERR_*. |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1179 | */ |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 1180 | static int tlskeys_finalize_config(void) |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1181 | { |
| 1182 | int i = 0; |
| 1183 | struct tls_keys_ref *ref, *ref2, *ref3; |
| 1184 | struct list tkr = LIST_HEAD_INIT(tkr); |
| 1185 | |
| 1186 | list_for_each_entry(ref, &tlskeys_reference, list) { |
| 1187 | if (ref->unique_id == -1) { |
| 1188 | /* Look for the first free id. */ |
| 1189 | while (1) { |
| 1190 | list_for_each_entry(ref2, &tlskeys_reference, list) { |
| 1191 | if (ref2->unique_id == i) { |
| 1192 | i++; |
| 1193 | break; |
| 1194 | } |
| 1195 | } |
| 1196 | if (&ref2->list == &tlskeys_reference) |
| 1197 | break; |
| 1198 | } |
| 1199 | |
| 1200 | /* Uses the unique id and increment it for the next entry. */ |
| 1201 | ref->unique_id = i; |
| 1202 | i++; |
| 1203 | } |
| 1204 | } |
| 1205 | |
| 1206 | /* This sort the reference list by id. */ |
| 1207 | list_for_each_entry_safe(ref, ref2, &tlskeys_reference, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1208 | LIST_DELETE(&ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1209 | list_for_each_entry(ref3, &tkr, list) { |
| 1210 | if (ref->unique_id < ref3->unique_id) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1211 | LIST_APPEND(&ref3->list, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1212 | break; |
| 1213 | } |
| 1214 | } |
| 1215 | if (&ref3->list == &tkr) |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1216 | LIST_APPEND(&tkr, &ref->list); |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1217 | } |
| 1218 | |
| 1219 | /* swap root */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1220 | LIST_INSERT(&tkr, &tlskeys_reference); |
| 1221 | LIST_DELETE(&tkr); |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 1222 | return ERR_NONE; |
Nenad Merdanovic | 200b0fa | 2015-05-09 08:46:01 +0200 | [diff] [blame] | 1223 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 1224 | #endif /* SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB */ |
| 1225 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1226 | #ifndef OPENSSL_NO_OCSP |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1227 | int ocsp_ex_index = -1; |
| 1228 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1229 | int ssl_sock_get_ocsp_arg_kt_index(int evp_keytype) |
| 1230 | { |
| 1231 | switch (evp_keytype) { |
| 1232 | case EVP_PKEY_RSA: |
| 1233 | return 2; |
| 1234 | case EVP_PKEY_DSA: |
| 1235 | return 0; |
| 1236 | case EVP_PKEY_EC: |
| 1237 | return 1; |
| 1238 | } |
| 1239 | |
| 1240 | return -1; |
| 1241 | } |
| 1242 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1243 | /* |
| 1244 | * Callback used to set OCSP status extension content in server hello. |
| 1245 | */ |
| 1246 | int ssl_sock_ocsp_stapling_cbk(SSL *ssl, void *arg) |
| 1247 | { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1248 | struct certificate_ocsp *ocsp; |
| 1249 | struct ocsp_cbk_arg *ocsp_arg; |
| 1250 | char *ssl_buf; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1251 | SSL_CTX *ctx; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1252 | EVP_PKEY *ssl_pkey; |
| 1253 | int key_type; |
| 1254 | int index; |
| 1255 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1256 | ctx = SSL_get_SSL_CTX(ssl); |
| 1257 | if (!ctx) |
| 1258 | return SSL_TLSEXT_ERR_NOACK; |
| 1259 | |
| 1260 | ocsp_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
| 1261 | if (!ocsp_arg) |
| 1262 | return SSL_TLSEXT_ERR_NOACK; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1263 | |
| 1264 | ssl_pkey = SSL_get_privatekey(ssl); |
| 1265 | if (!ssl_pkey) |
| 1266 | return SSL_TLSEXT_ERR_NOACK; |
| 1267 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1268 | key_type = EVP_PKEY_base_id(ssl_pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1269 | |
| 1270 | if (ocsp_arg->is_single && ocsp_arg->single_kt == key_type) |
| 1271 | ocsp = ocsp_arg->s_ocsp; |
| 1272 | else { |
| 1273 | /* For multiple certs per context, we have to find the correct OCSP response based on |
| 1274 | * the certificate type |
| 1275 | */ |
| 1276 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
| 1277 | |
| 1278 | if (index < 0) |
| 1279 | return SSL_TLSEXT_ERR_NOACK; |
| 1280 | |
| 1281 | ocsp = ocsp_arg->m_ocsp[index]; |
| 1282 | |
| 1283 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1284 | |
| 1285 | if (!ocsp || |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1286 | !ocsp->response.area || |
| 1287 | !ocsp->response.data || |
Emeric Brun | 4f3c87a | 2014-06-20 15:46:13 +0200 | [diff] [blame] | 1288 | (ocsp->expire < now.tv_sec)) |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1289 | return SSL_TLSEXT_ERR_NOACK; |
| 1290 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1291 | ssl_buf = OPENSSL_malloc(ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1292 | if (!ssl_buf) |
| 1293 | return SSL_TLSEXT_ERR_NOACK; |
| 1294 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1295 | memcpy(ssl_buf, ocsp->response.area, ocsp->response.data); |
| 1296 | SSL_set_tlsext_status_ocsp_resp(ssl, ssl_buf, ocsp->response.data); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1297 | |
| 1298 | return SSL_TLSEXT_ERR_OK; |
| 1299 | } |
| 1300 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1301 | #endif |
| 1302 | |
Ilya Shipitsin | b3201a3 | 2020-10-18 09:11:50 +0500 | [diff] [blame] | 1303 | #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] | 1304 | |
| 1305 | |
| 1306 | /* |
| 1307 | * Decrease the refcount of the struct ocsp_response and frees it if it's not |
| 1308 | * used anymore. Also removes it from the tree if free'd. |
| 1309 | */ |
| 1310 | static void ssl_sock_free_ocsp(struct certificate_ocsp *ocsp) |
| 1311 | { |
| 1312 | if (!ocsp) |
| 1313 | return; |
| 1314 | |
| 1315 | ocsp->refcount--; |
| 1316 | if (ocsp->refcount <= 0) { |
| 1317 | ebmb_delete(&ocsp->key); |
| 1318 | chunk_destroy(&ocsp->response); |
| 1319 | free(ocsp); |
| 1320 | } |
| 1321 | } |
| 1322 | |
| 1323 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1324 | /* |
| 1325 | * 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] | 1326 | * ocsp_response buffer was found in the cert_key_and_chain. To enable OCSP |
| 1327 | * status extension, the issuer's certificate is mandatory. It should be |
| 1328 | * present in ckch->ocsp_issuer. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1329 | * |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1330 | * In addition, the ckch->ocsp_reponse buffer is loaded as a DER format of an |
| 1331 | * OCSP response. If file is empty or content is not a valid OCSP response, |
| 1332 | * OCSP status extension is enabled but OCSP response is ignored (a warning is |
| 1333 | * displayed). |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1334 | * |
| 1335 | * 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] | 1336 | * successfully enabled, or -1 in other error case. |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1337 | */ |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1338 | 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] | 1339 | { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1340 | X509 *x, *issuer; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1341 | OCSP_CERTID *cid = NULL; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1342 | int i, ret = -1; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1343 | struct certificate_ocsp *ocsp = NULL, *iocsp; |
| 1344 | char *warn = NULL; |
| 1345 | unsigned char *p; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1346 | void (*callback) (void); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1347 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1348 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1349 | x = ckch->cert; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1350 | if (!x) |
| 1351 | goto out; |
| 1352 | |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1353 | issuer = ckch->ocsp_issuer; |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1354 | /* take issuer from chain over ocsp_issuer, is what is done historicaly */ |
| 1355 | if (chain) { |
| 1356 | /* check if one of the certificate of the chain is the issuer */ |
| 1357 | for (i = 0; i < sk_X509_num(chain); i++) { |
| 1358 | X509 *ti = sk_X509_value(chain, i); |
| 1359 | if (X509_check_issued(ti, x) == X509_V_OK) { |
| 1360 | issuer = ti; |
| 1361 | break; |
| 1362 | } |
| 1363 | } |
| 1364 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 1365 | if (!issuer) |
| 1366 | goto out; |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1367 | |
| 1368 | cid = OCSP_cert_to_id(0, x, issuer); |
| 1369 | if (!cid) |
| 1370 | goto out; |
| 1371 | |
| 1372 | i = i2d_OCSP_CERTID(cid, NULL); |
| 1373 | if (!i || (i > OCSP_MAX_CERTID_ASN1_LENGTH)) |
| 1374 | goto out; |
| 1375 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1376 | ocsp = calloc(1, sizeof(*ocsp)); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1377 | if (!ocsp) |
| 1378 | goto out; |
| 1379 | |
| 1380 | p = ocsp->key_data; |
Remi Tricot-Le Breton | 5aa1dce | 2021-06-10 13:51:12 +0200 | [diff] [blame] | 1381 | ocsp->key_length = i2d_OCSP_CERTID(cid, &p); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1382 | |
| 1383 | iocsp = (struct certificate_ocsp *)ebmb_insert(&cert_ocsp_tree, &ocsp->key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 1384 | if (iocsp == ocsp) |
| 1385 | ocsp = NULL; |
| 1386 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1387 | #ifndef SSL_CTX_get_tlsext_status_cb |
| 1388 | # define SSL_CTX_get_tlsext_status_cb(ctx, cb) \ |
| 1389 | *cb = (void (*) (void))ctx->tlsext_status_cb; |
| 1390 | #endif |
| 1391 | SSL_CTX_get_tlsext_status_cb(ctx, &callback); |
| 1392 | |
| 1393 | if (!callback) { |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1394 | struct ocsp_cbk_arg *cb_arg; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1395 | EVP_PKEY *pkey; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1396 | |
William Lallemand | a560c06 | 2020-07-31 11:43:20 +0200 | [diff] [blame] | 1397 | cb_arg = calloc(1, sizeof(*cb_arg)); |
| 1398 | if (!cb_arg) |
| 1399 | goto out; |
| 1400 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1401 | cb_arg->is_single = 1; |
| 1402 | cb_arg->s_ocsp = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1403 | iocsp->refcount++; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1404 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1405 | pkey = X509_get_pubkey(x); |
| 1406 | cb_arg->single_kt = EVP_PKEY_base_id(pkey); |
| 1407 | EVP_PKEY_free(pkey); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1408 | |
| 1409 | SSL_CTX_set_tlsext_status_cb(ctx, ssl_sock_ocsp_stapling_cbk); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1410 | 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 */ |
| 1411 | |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1412 | } else { |
| 1413 | /* |
| 1414 | * If the ctx has a status CB, then we have previously set an OCSP staple for this ctx |
| 1415 | * Update that cb_arg with the new cert's staple |
| 1416 | */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1417 | struct ocsp_cbk_arg *cb_arg; |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1418 | struct certificate_ocsp *tmp_ocsp; |
| 1419 | int index; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1420 | int key_type; |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1421 | EVP_PKEY *pkey; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1422 | |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1423 | cb_arg = SSL_CTX_get_ex_data(ctx, ocsp_ex_index); |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1424 | |
| 1425 | /* |
| 1426 | * The following few lines will convert cb_arg from a single ocsp to multi ocsp |
| 1427 | * the order of operations below matter, take care when changing it |
| 1428 | */ |
| 1429 | tmp_ocsp = cb_arg->s_ocsp; |
| 1430 | index = ssl_sock_get_ocsp_arg_kt_index(cb_arg->single_kt); |
| 1431 | cb_arg->s_ocsp = NULL; |
| 1432 | cb_arg->m_ocsp[index] = tmp_ocsp; |
| 1433 | cb_arg->is_single = 0; |
| 1434 | cb_arg->single_kt = 0; |
| 1435 | |
Emmanuel Hocdet | b7a4c34 | 2017-01-06 12:57:46 +0100 | [diff] [blame] | 1436 | pkey = X509_get_pubkey(x); |
| 1437 | key_type = EVP_PKEY_base_id(pkey); |
| 1438 | EVP_PKEY_free(pkey); |
| 1439 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 1440 | index = ssl_sock_get_ocsp_arg_kt_index(key_type); |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1441 | if (index >= 0 && !cb_arg->m_ocsp[index]) { |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1442 | cb_arg->m_ocsp[index] = iocsp; |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 1443 | iocsp->refcount++; |
| 1444 | } |
yanbzhu | be2774d | 2015-12-10 15:07:30 -0500 | [diff] [blame] | 1445 | } |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1446 | |
| 1447 | ret = 0; |
| 1448 | |
| 1449 | warn = NULL; |
William Lallemand | 86e4d63 | 2020-08-07 00:44:32 +0200 | [diff] [blame] | 1450 | if (ssl_sock_load_ocsp_response(ckch->ocsp_response, iocsp, cid, &warn)) { |
William Lallemand | 3b5f360 | 2019-10-16 18:05:05 +0200 | [diff] [blame] | 1451 | memprintf(&warn, "Loading: %s. Content will be ignored", warn ? warn : "failure"); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1452 | ha_warning("%s.\n", warn); |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1453 | } |
| 1454 | |
| 1455 | out: |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1456 | if (cid) |
| 1457 | OCSP_CERTID_free(cid); |
| 1458 | |
| 1459 | if (ocsp) |
| 1460 | free(ocsp); |
| 1461 | |
| 1462 | if (warn) |
| 1463 | free(warn); |
| 1464 | |
Emeric Brun | 4147b2e | 2014-06-16 18:36:30 +0200 | [diff] [blame] | 1465 | return ret; |
| 1466 | } |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 1467 | #endif |
| 1468 | |
| 1469 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 1470 | 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] | 1471 | { |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1472 | 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] | 1473 | } |
| 1474 | #endif |
| 1475 | |
William Lallemand | 4a66013 | 2019-10-14 14:51:41 +0200 | [diff] [blame] | 1476 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 1477 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1478 | |
| 1479 | #define CT_EXTENSION_TYPE 18 |
| 1480 | |
William Lallemand | 03c331c | 2020-05-13 10:10:01 +0200 | [diff] [blame] | 1481 | int sctl_ex_index = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1482 | |
| 1483 | int ssl_sock_sctl_add_cbk(SSL *ssl, unsigned ext_type, const unsigned char **out, size_t *outlen, int *al, void *add_arg) |
| 1484 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1485 | struct buffer *sctl = add_arg; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1486 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1487 | *out = (unsigned char *) sctl->area; |
| 1488 | *outlen = sctl->data; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1489 | |
| 1490 | return 1; |
| 1491 | } |
| 1492 | |
| 1493 | int ssl_sock_sctl_parse_cbk(SSL *s, unsigned int ext_type, const unsigned char *in, size_t inlen, int *al, void *parse_arg) |
| 1494 | { |
| 1495 | return 1; |
| 1496 | } |
| 1497 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1498 | static int ssl_sock_load_sctl(SSL_CTX *ctx, struct buffer *sctl) |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1499 | { |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1500 | int ret = -1; |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1501 | |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 1502 | 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] | 1503 | goto out; |
| 1504 | |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 1505 | SSL_CTX_set_ex_data(ctx, sctl_ex_index, sctl); |
| 1506 | |
| 1507 | ret = 0; |
| 1508 | |
| 1509 | out: |
| 1510 | return ret; |
| 1511 | } |
| 1512 | |
| 1513 | #endif |
| 1514 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1515 | void ssl_sock_infocbk(const SSL *ssl, int where, int ret) |
| 1516 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 1517 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1518 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1519 | BIO *write_bio; |
Willy Tarreau | 622317d | 2015-02-27 16:36:16 +0100 | [diff] [blame] | 1520 | (void)ret; /* shut gcc stupid warning */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1521 | |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1522 | #ifndef SSL_OP_NO_RENEGOTIATION |
| 1523 | /* Please note that BoringSSL defines this macro to zero so don't |
| 1524 | * change this to #if and do not assign a default value to this macro! |
| 1525 | */ |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1526 | if (where & SSL_CB_HANDSHAKE_START) { |
| 1527 | /* Disable renegotiation (CVE-2009-3555) */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 1528 | 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] | 1529 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1530 | conn->err_code = CO_ER_SSL_RENEG; |
| 1531 | } |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 1532 | } |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 1533 | #endif |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1534 | |
| 1535 | if ((where & SSL_CB_ACCEPT_LOOP) == SSL_CB_ACCEPT_LOOP) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1536 | if (!(ctx->xprt_st & SSL_SOCK_ST_FL_16K_WBFSIZE)) { |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1537 | /* Long certificate chains optimz |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1538 | If write and read bios are different, we |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1539 | consider that the buffering was activated, |
| 1540 | so we rise the output buffer size from 4k |
| 1541 | to 16k */ |
| 1542 | write_bio = SSL_get_wbio(ssl); |
| 1543 | if (write_bio != SSL_get_rbio(ssl)) { |
| 1544 | BIO_set_write_buffer_size(write_bio, 16384); |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1545 | ctx->xprt_st |= SSL_SOCK_ST_FL_16K_WBFSIZE; |
Emeric Brun | d8b2bb5 | 2014-01-28 15:43:53 +0100 | [diff] [blame] | 1546 | } |
| 1547 | } |
| 1548 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 1549 | } |
| 1550 | |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1551 | /* Callback is called for each certificate of the chain during a verify |
| 1552 | ok is set to 1 if preverify detect no error on current certificate. |
| 1553 | Returns 0 to break the handshake, 1 otherwise. */ |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 1554 | int ssl_sock_bind_verifycbk(int ok, X509_STORE_CTX *x_store) |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1555 | { |
| 1556 | SSL *ssl; |
| 1557 | struct connection *conn; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1558 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1559 | int err, depth; |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1560 | X509 *client_crt; |
| 1561 | STACK_OF(X509) *certs; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1562 | |
| 1563 | 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] | 1564 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1565 | client_crt = SSL_get_ex_data(ssl, ssl_client_crt_ref_index); |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1566 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1567 | ctx = conn->xprt_ctx; |
| 1568 | |
| 1569 | ctx->xprt_st |= SSL_SOCK_ST_FL_VERIFY_DONE; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1570 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1571 | depth = X509_STORE_CTX_get_error_depth(x_store); |
| 1572 | err = X509_STORE_CTX_get_error(x_store); |
| 1573 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1574 | if (ok) /* no errors */ |
| 1575 | return ok; |
| 1576 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 1577 | /* Keep a reference to the client's certificate in order to be able to |
| 1578 | * dump some fetches values in a log even when the verification process |
| 1579 | * fails. */ |
| 1580 | if (depth == 0) { |
| 1581 | X509_free(client_crt); |
| 1582 | client_crt = X509_STORE_CTX_get0_cert(x_store); |
| 1583 | if (client_crt) { |
| 1584 | X509_up_ref(client_crt); |
| 1585 | SSL_set_ex_data(ssl, ssl_client_crt_ref_index, client_crt); |
| 1586 | } |
| 1587 | } |
| 1588 | else { |
| 1589 | /* An error occurred on a CA certificate of the certificate |
| 1590 | * chain, we might never call this verify callback on the client |
| 1591 | * certificate's depth (which is 0) so we try to store the |
| 1592 | * reference right now. */ |
Remi Tricot-Le Breton | f95c295 | 2021-08-20 09:51:23 +0200 | [diff] [blame] | 1593 | certs = X509_STORE_CTX_get1_chain(x_store); |
| 1594 | if (certs) { |
| 1595 | client_crt = sk_X509_value(certs, 0); |
| 1596 | if (client_crt) { |
| 1597 | X509_up_ref(client_crt); |
| 1598 | 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] | 1599 | } |
| 1600 | sk_X509_pop_free(certs, X509_free); |
| 1601 | } |
| 1602 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1603 | |
| 1604 | /* check if CA error needs to be ignored */ |
| 1605 | if (depth > 0) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1606 | if (!SSL_SOCK_ST_TO_CA_ERROR(ctx->xprt_st)) { |
| 1607 | ctx->xprt_st |= SSL_SOCK_CA_ERROR_TO_ST(err); |
| 1608 | ctx->xprt_st |= SSL_SOCK_CAEDEPTH_TO_ST(depth); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1609 | } |
| 1610 | |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1611 | 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] | 1612 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1613 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1614 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1615 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1616 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1617 | conn->err_code = CO_ER_SSL_CA_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1618 | return 0; |
| 1619 | } |
| 1620 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 1621 | if (!SSL_SOCK_ST_TO_CRTERROR(ctx->xprt_st)) |
| 1622 | ctx->xprt_st |= SSL_SOCK_CRTERROR_TO_ST(err); |
Emeric Brun | f282a81 | 2012-09-21 15:27:54 +0200 | [diff] [blame] | 1623 | |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1624 | /* check if certificate error needs to be ignored */ |
Willy Tarreau | 731248f | 2020-02-04 14:02:02 +0100 | [diff] [blame] | 1625 | 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] | 1626 | ssl_sock_dump_errors(conn); |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1627 | ERR_clear_error(); |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1628 | return 1; |
Emeric Brun | 1eb20ef | 2012-12-03 13:24:29 +0100 | [diff] [blame] | 1629 | } |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1630 | |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 1631 | conn->err_code = CO_ER_SSL_CRT_FAIL; |
Emeric Brun | 81c00f0 | 2012-09-21 14:31:21 +0200 | [diff] [blame] | 1632 | return 0; |
Emeric Brun | e64aef1 | 2012-09-21 13:15:06 +0200 | [diff] [blame] | 1633 | } |
| 1634 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 1635 | #ifdef TLS1_RT_HEARTBEAT |
| 1636 | static void ssl_sock_parse_heartbeat(struct connection *conn, int write_p, int version, |
| 1637 | int content_type, const void *buf, size_t len, |
| 1638 | SSL *ssl) |
| 1639 | { |
| 1640 | /* test heartbeat received (write_p is set to 0 |
| 1641 | for a received record) */ |
| 1642 | if ((content_type == TLS1_RT_HEARTBEAT) && (write_p == 0)) { |
| 1643 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 1644 | const unsigned char *p = buf; |
| 1645 | unsigned int payload; |
| 1646 | |
| 1647 | ctx->xprt_st |= SSL_SOCK_RECV_HEARTBEAT; |
| 1648 | |
| 1649 | /* Check if this is a CVE-2014-0160 exploitation attempt. */ |
| 1650 | if (*p != TLS1_HB_REQUEST) |
| 1651 | return; |
| 1652 | |
| 1653 | if (len < 1 + 2 + 16) /* 1 type + 2 size + 0 payload + 16 padding */ |
| 1654 | goto kill_it; |
| 1655 | |
| 1656 | payload = (p[1] * 256) + p[2]; |
| 1657 | if (3 + payload + 16 <= len) |
| 1658 | return; /* OK no problem */ |
| 1659 | kill_it: |
| 1660 | /* We have a clear heartbleed attack (CVE-2014-0160), the |
| 1661 | * advertised payload is larger than the advertised packet |
| 1662 | * length, so we have garbage in the buffer between the |
| 1663 | * payload and the end of the buffer (p+len). We can't know |
| 1664 | * if the SSL stack is patched, and we don't know if we can |
| 1665 | * safely wipe out the area between p+3+len and payload. |
| 1666 | * So instead, we prevent the response from being sent by |
| 1667 | * setting the max_send_fragment to 0 and we report an SSL |
| 1668 | * error, which will kill this connection. It will be reported |
| 1669 | * above as SSL_ERROR_SSL while an other handshake failure with |
| 1670 | * a heartbeat message will be reported as SSL_ERROR_SYSCALL. |
| 1671 | */ |
| 1672 | ssl->max_send_fragment = 0; |
| 1673 | SSLerr(SSL_F_TLS1_HEARTBEAT, SSL_R_SSL_HANDSHAKE_FAILURE); |
| 1674 | } |
| 1675 | } |
| 1676 | #endif |
| 1677 | |
| 1678 | static void ssl_sock_parse_clienthello(struct connection *conn, int write_p, int version, |
| 1679 | int content_type, const void *buf, size_t len, |
| 1680 | SSL *ssl) |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1681 | { |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1682 | struct ssl_capture *capture; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1683 | uchar *msg; |
| 1684 | uchar *end; |
| 1685 | uchar *extensions_end; |
| 1686 | uchar *ec_start = NULL; |
| 1687 | uchar *ec_formats_start = NULL; |
| 1688 | uchar *list_end; |
| 1689 | ushort protocol_version; |
| 1690 | ushort extension_id; |
| 1691 | ushort ec_len = 0; |
| 1692 | uchar ec_formats_len = 0; |
| 1693 | int offset = 0; |
| 1694 | int rec_len; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1695 | |
| 1696 | /* This function is called for "from client" and "to server" |
| 1697 | * connections. The combination of write_p == 0 and content_type == 22 |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 1698 | * is only available during "from client" connection. |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1699 | */ |
| 1700 | |
| 1701 | /* "write_p" is set to 0 is the bytes are received messages, |
| 1702 | * otherwise it is set to 1. |
| 1703 | */ |
| 1704 | if (write_p != 0) |
| 1705 | return; |
| 1706 | |
| 1707 | /* content_type contains the type of message received or sent |
| 1708 | * according with the SSL/TLS protocol spec. This message is |
| 1709 | * encoded with one byte. The value 256 (two bytes) is used |
| 1710 | * for designing the SSL/TLS record layer. According with the |
| 1711 | * rfc6101, the expected message (other than 256) are: |
| 1712 | * - change_cipher_spec(20) |
| 1713 | * - alert(21) |
| 1714 | * - handshake(22) |
| 1715 | * - application_data(23) |
| 1716 | * - (255) |
| 1717 | * We are interessed by the handshake and specially the client |
| 1718 | * hello. |
| 1719 | */ |
| 1720 | if (content_type != 22) |
| 1721 | return; |
| 1722 | |
| 1723 | /* The message length is at least 4 bytes, containing the |
| 1724 | * message type and the message length. |
| 1725 | */ |
| 1726 | if (len < 4) |
| 1727 | return; |
| 1728 | |
| 1729 | /* First byte of the handshake message id the type of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1730 | * message. The known types are: |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1731 | * - hello_request(0) |
| 1732 | * - client_hello(1) |
| 1733 | * - server_hello(2) |
| 1734 | * - certificate(11) |
| 1735 | * - server_key_exchange (12) |
| 1736 | * - certificate_request(13) |
| 1737 | * - server_hello_done(14) |
| 1738 | * We are interested by the client hello. |
| 1739 | */ |
| 1740 | msg = (unsigned char *)buf; |
| 1741 | if (msg[0] != 1) |
| 1742 | return; |
| 1743 | |
| 1744 | /* Next three bytes are the length of the message. The total length |
| 1745 | * must be this decoded length + 4. If the length given as argument |
| 1746 | * is not the same, we abort the protocol dissector. |
| 1747 | */ |
| 1748 | rec_len = (msg[1] << 16) + (msg[2] << 8) + msg[3]; |
| 1749 | if (len < rec_len + 4) |
| 1750 | return; |
| 1751 | msg += 4; |
| 1752 | end = msg + rec_len; |
| 1753 | if (end < msg) |
| 1754 | return; |
| 1755 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1756 | /* Expect 2 bytes for protocol version |
| 1757 | * (1 byte for major and 1 byte for minor) |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1758 | */ |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1759 | if (msg + 2 > end) |
| 1760 | return; |
| 1761 | protocol_version = (msg[0] << 8) + msg[1]; |
| 1762 | msg += 2; |
| 1763 | |
| 1764 | /* Expect the random, composed by 4 bytes for the unix time and |
| 1765 | * 28 bytes for unix payload. So we jump 4 + 28. |
| 1766 | */ |
| 1767 | msg += 4 + 28; |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1768 | if (msg > end) |
| 1769 | return; |
| 1770 | |
| 1771 | /* Next, is session id: |
| 1772 | * if present, we have to jump by length + 1 for the size information |
| 1773 | * if not present, we have to jump by 1 only |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1774 | */ |
Baptiste Assmann | 6be139f | 2018-11-28 15:20:25 +0100 | [diff] [blame] | 1775 | if (msg[0] > 0) |
| 1776 | msg += msg[0]; |
| 1777 | msg += 1; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1778 | if (msg > end) |
| 1779 | return; |
| 1780 | |
| 1781 | /* Next two bytes are the ciphersuite length. */ |
| 1782 | if (msg + 2 > end) |
| 1783 | return; |
| 1784 | rec_len = (msg[0] << 8) + msg[1]; |
| 1785 | msg += 2; |
| 1786 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1787 | return; |
| 1788 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1789 | capture = pool_zalloc(pool_head_ssl_capture); |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1790 | if (!capture) |
| 1791 | return; |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1792 | /* Compute the xxh64 of the ciphersuite. */ |
| 1793 | capture->xxh64 = XXH64(msg, rec_len, 0); |
| 1794 | |
| 1795 | /* Capture the ciphersuite. */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1796 | capture->ciphersuite_len = MIN(global_ssl.capture_buffer_size, rec_len); |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1797 | capture->ciphersuite_offset = 0; |
| 1798 | memcpy(capture->data, msg, capture->ciphersuite_len); |
| 1799 | msg += rec_len; |
| 1800 | offset += capture->ciphersuite_len; |
| 1801 | |
| 1802 | /* Initialize other data */ |
| 1803 | capture->protocol_version = protocol_version; |
| 1804 | |
| 1805 | /* Next, compression methods: |
| 1806 | * if present, we have to jump by length + 1 for the size information |
| 1807 | * if not present, we have to jump by 1 only |
| 1808 | */ |
| 1809 | if (msg[0] > 0) |
| 1810 | msg += msg[0]; |
| 1811 | msg += 1; |
| 1812 | if (msg > end) |
| 1813 | goto store_capture; |
| 1814 | |
| 1815 | /* We reached extensions */ |
| 1816 | if (msg + 2 > end) |
| 1817 | goto store_capture; |
| 1818 | rec_len = (msg[0] << 8) + msg[1]; |
| 1819 | msg += 2; |
| 1820 | if (msg + rec_len > end || msg + rec_len < msg) |
| 1821 | goto store_capture; |
| 1822 | extensions_end = msg + rec_len; |
| 1823 | capture->extensions_offset = offset; |
| 1824 | |
| 1825 | /* Parse each extension */ |
| 1826 | while (msg + 4 < extensions_end) { |
| 1827 | /* Add 2 bytes of extension_id */ |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1828 | if (global_ssl.capture_buffer_size >= offset + 2) { |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1829 | capture->data[offset++] = msg[0]; |
| 1830 | capture->data[offset++] = msg[1]; |
| 1831 | capture->extensions_len += 2; |
| 1832 | } |
| 1833 | else |
| 1834 | break; |
| 1835 | extension_id = (msg[0] << 8) + msg[1]; |
| 1836 | /* Length of the extension */ |
| 1837 | rec_len = (msg[2] << 8) + msg[3]; |
| 1838 | |
| 1839 | /* Expect 2 bytes extension id + 2 bytes extension size */ |
| 1840 | msg += 2 + 2; |
| 1841 | if (msg + rec_len > extensions_end || msg + rec_len < msg) |
| 1842 | goto store_capture; |
| 1843 | /* TLS Extensions |
| 1844 | * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml */ |
| 1845 | if (extension_id == 0x000a) { |
| 1846 | /* Elliptic Curves: |
| 1847 | * https://www.rfc-editor.org/rfc/rfc8422.html |
| 1848 | * https://www.rfc-editor.org/rfc/rfc7919.html */ |
| 1849 | list_end = msg + rec_len; |
| 1850 | if (msg + 2 > list_end) |
| 1851 | goto store_capture; |
| 1852 | rec_len = (msg[0] << 8) + msg[1]; |
| 1853 | msg += 2; |
| 1854 | |
| 1855 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1856 | goto store_capture; |
| 1857 | /* Store location/size of the list */ |
| 1858 | ec_start = msg; |
| 1859 | ec_len = rec_len; |
| 1860 | } |
| 1861 | else if (extension_id == 0x000b) { |
| 1862 | /* Elliptic Curves Point Formats: |
| 1863 | * https://www.rfc-editor.org/rfc/rfc8422.html */ |
| 1864 | list_end = msg + rec_len; |
| 1865 | if (msg + 1 > list_end) |
| 1866 | goto store_capture; |
| 1867 | rec_len = msg[0]; |
| 1868 | msg += 1; |
| 1869 | |
| 1870 | if (msg + rec_len > list_end || msg + rec_len < msg) |
| 1871 | goto store_capture; |
| 1872 | /* Store location/size of the list */ |
| 1873 | ec_formats_start = msg; |
| 1874 | ec_formats_len = rec_len; |
| 1875 | } |
| 1876 | msg += rec_len; |
| 1877 | } |
| 1878 | |
| 1879 | if (ec_start) { |
| 1880 | rec_len = ec_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1881 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1882 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1883 | memcpy(capture->data + offset, ec_start, rec_len); |
| 1884 | capture->ec_offset = offset; |
| 1885 | capture->ec_len = rec_len; |
| 1886 | offset += rec_len; |
| 1887 | } |
| 1888 | if (ec_formats_start) { |
| 1889 | rec_len = ec_formats_len; |
Marcin Deranek | 310a260 | 2021-07-13 19:04:24 +0200 | [diff] [blame] | 1890 | if (offset + rec_len > global_ssl.capture_buffer_size) |
| 1891 | rec_len = global_ssl.capture_buffer_size - offset; |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1892 | memcpy(capture->data + offset, ec_formats_start, rec_len); |
| 1893 | capture->ec_formats_offset = offset; |
| 1894 | capture->ec_formats_len = rec_len; |
| 1895 | offset += rec_len; |
| 1896 | } |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1897 | |
Marcin Deranek | 769fd2e | 2021-07-12 14:16:55 +0200 | [diff] [blame] | 1898 | store_capture: |
Emmanuel Hocdet | e380474 | 2017-03-08 11:07:10 +0100 | [diff] [blame] | 1899 | SSL_set_ex_data(ssl, ssl_capture_ptr_index, capture); |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1900 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1901 | |
| 1902 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 1903 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1904 | static void ssl_init_keylog(struct connection *conn, int write_p, int version, |
| 1905 | int content_type, const void *buf, size_t len, |
| 1906 | SSL *ssl) |
| 1907 | { |
| 1908 | struct ssl_keylog *keylog; |
| 1909 | |
| 1910 | if (SSL_get_ex_data(ssl, ssl_keylog_index)) |
| 1911 | return; |
| 1912 | |
Willy Tarreau | f208ac0 | 2021-03-22 21:10:12 +0100 | [diff] [blame] | 1913 | keylog = pool_zalloc(pool_head_ssl_keylog); |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1914 | if (!keylog) |
| 1915 | return; |
| 1916 | |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 1917 | if (!SSL_set_ex_data(ssl, ssl_keylog_index, keylog)) { |
| 1918 | pool_free(pool_head_ssl_keylog, keylog); |
| 1919 | return; |
| 1920 | } |
| 1921 | } |
| 1922 | #endif |
Thierry FOURNIER | 5bf7732 | 2017-02-25 12:45:22 +0100 | [diff] [blame] | 1923 | |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1924 | /* Callback is called for ssl protocol analyse */ |
| 1925 | void ssl_sock_msgcbk(int write_p, int version, int content_type, const void *buf, size_t len, SSL *ssl, void *arg) |
| 1926 | { |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1927 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
| 1928 | struct ssl_sock_msg_callback *cbk; |
| 1929 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 1930 | /* Try to call all callback functions that were registered by using |
| 1931 | * ssl_sock_register_msg_callback(). |
| 1932 | */ |
| 1933 | list_for_each_entry(cbk, &ssl_sock_msg_callbacks, list) { |
| 1934 | cbk->func(conn, write_p, version, content_type, buf, len, ssl); |
| 1935 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 1936 | } |
| 1937 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 1938 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 1939 | static int ssl_sock_srv_select_protos(SSL *s, unsigned char **out, unsigned char *outlen, |
| 1940 | const unsigned char *in, unsigned int inlen, |
| 1941 | void *arg) |
| 1942 | { |
| 1943 | struct server *srv = arg; |
| 1944 | |
| 1945 | if (SSL_select_next_proto(out, outlen, in, inlen, (unsigned char *)srv->ssl_ctx.npn_str, |
| 1946 | srv->ssl_ctx.npn_len) == OPENSSL_NPN_NEGOTIATED) |
| 1947 | return SSL_TLSEXT_ERR_OK; |
| 1948 | return SSL_TLSEXT_ERR_NOACK; |
| 1949 | } |
| 1950 | #endif |
| 1951 | |
| 1952 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1953 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1954 | * negotiable protocols for NPN. |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1955 | */ |
| 1956 | static int ssl_sock_advertise_npn_protos(SSL *s, const unsigned char **data, |
| 1957 | unsigned int *len, void *arg) |
| 1958 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1959 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | 6c9a3d5 | 2012-10-18 18:57:14 +0200 | [diff] [blame] | 1960 | |
| 1961 | *data = (const unsigned char *)conf->npn_str; |
| 1962 | *len = conf->npn_len; |
| 1963 | return SSL_TLSEXT_ERR_OK; |
| 1964 | } |
| 1965 | #endif |
| 1966 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1967 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1968 | /* This callback is used so that the server advertises the list of |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 1969 | * negotiable protocols for ALPN. |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1970 | */ |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1971 | static int ssl_sock_advertise_alpn_protos(SSL *s, const unsigned char **out, |
| 1972 | unsigned char *outlen, |
| 1973 | const unsigned char *server, |
| 1974 | unsigned int server_len, void *arg) |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1975 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 1976 | struct ssl_bind_conf *conf = arg; |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1977 | |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 1978 | if (SSL_select_next_proto((unsigned char**) out, outlen, (const unsigned char *)conf->alpn_str, |
| 1979 | conf->alpn_len, server, server_len) != OPENSSL_NPN_NEGOTIATED) { |
| 1980 | return SSL_TLSEXT_ERR_NOACK; |
| 1981 | } |
Willy Tarreau | ab861d3 | 2013-04-02 02:30:41 +0200 | [diff] [blame] | 1982 | return SSL_TLSEXT_ERR_OK; |
| 1983 | } |
| 1984 | #endif |
| 1985 | |
Willy Tarreau | c8ad3be | 2015-06-17 15:48:26 +0200 | [diff] [blame] | 1986 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 1987 | #ifndef SSL_NO_GENERATE_CERTIFICATES |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 1988 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 1989 | /* Configure a DNS SAN extenion on a certificate. */ |
| 1990 | int ssl_sock_add_san_ext(X509V3_CTX* ctx, X509* cert, const char *servername) { |
| 1991 | int failure = 0; |
| 1992 | X509_EXTENSION *san_ext = NULL; |
| 1993 | CONF *conf = NULL; |
| 1994 | struct buffer *san_name = get_trash_chunk(); |
| 1995 | |
| 1996 | conf = NCONF_new(NULL); |
| 1997 | if (!conf) { |
| 1998 | failure = 1; |
| 1999 | goto cleanup; |
| 2000 | } |
| 2001 | |
| 2002 | /* Build an extension based on the DNS entry above */ |
| 2003 | chunk_appendf(san_name, "DNS:%s", servername); |
| 2004 | san_ext = X509V3_EXT_nconf_nid(conf, ctx, NID_subject_alt_name, san_name->area); |
| 2005 | if (!san_ext) { |
| 2006 | failure = 1; |
| 2007 | goto cleanup; |
| 2008 | } |
| 2009 | |
| 2010 | /* Add the extension */ |
| 2011 | if (!X509_add_ext(cert, san_ext, -1 /* Add to end */)) { |
| 2012 | failure = 1; |
| 2013 | goto cleanup; |
| 2014 | } |
| 2015 | |
| 2016 | /* Success */ |
| 2017 | failure = 0; |
| 2018 | |
| 2019 | cleanup: |
| 2020 | if (NULL != san_ext) X509_EXTENSION_free(san_ext); |
| 2021 | if (NULL != conf) NCONF_free(conf); |
| 2022 | |
| 2023 | return failure; |
| 2024 | } |
| 2025 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2026 | /* Create a X509 certificate with the specified servername and serial. This |
| 2027 | * function returns a SSL_CTX object or NULL if an error occurs. */ |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2028 | static SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2029 | 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] | 2030 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2031 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
| 2032 | EVP_PKEY *capkey = bind_conf->ca_sign_ckch->key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2033 | SSL_CTX *ssl_ctx = NULL; |
| 2034 | X509 *newcrt = NULL; |
| 2035 | EVP_PKEY *pkey = NULL; |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2036 | SSL *tmp_ssl = NULL; |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2037 | CONF *ctmp = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2038 | X509_NAME *name; |
| 2039 | const EVP_MD *digest; |
| 2040 | X509V3_CTX ctx; |
| 2041 | unsigned int i; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2042 | int key_type; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2043 | |
Christopher Faulet | 48a8332 | 2017-07-28 16:56:09 +0200 | [diff] [blame] | 2044 | /* Get the private key of the default certificate and use it */ |
Ilya Shipitsin | af20488 | 2020-12-19 03:12:12 +0500 | [diff] [blame] | 2045 | #ifdef HAVE_SSL_CTX_get0_privatekey |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2046 | pkey = SSL_CTX_get0_privatekey(bind_conf->default_ctx); |
| 2047 | #else |
| 2048 | tmp_ssl = SSL_new(bind_conf->default_ctx); |
| 2049 | if (tmp_ssl) |
| 2050 | pkey = SSL_get_privatekey(tmp_ssl); |
| 2051 | #endif |
| 2052 | if (!pkey) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2053 | goto mkcert_error; |
| 2054 | |
| 2055 | /* Create the certificate */ |
| 2056 | if (!(newcrt = X509_new())) |
| 2057 | goto mkcert_error; |
| 2058 | |
| 2059 | /* Set version number for the certificate (X509v3) and the serial |
| 2060 | * number */ |
| 2061 | if (X509_set_version(newcrt, 2L) != 1) |
| 2062 | goto mkcert_error; |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 2063 | 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] | 2064 | |
| 2065 | /* Set duration for the certificate */ |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 2066 | if (!X509_gmtime_adj(X509_getm_notBefore(newcrt), (long)-60*60*24) || |
| 2067 | !X509_gmtime_adj(X509_getm_notAfter(newcrt),(long)60*60*24*365)) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2068 | goto mkcert_error; |
| 2069 | |
| 2070 | /* set public key in the certificate */ |
| 2071 | if (X509_set_pubkey(newcrt, pkey) != 1) |
| 2072 | goto mkcert_error; |
| 2073 | |
| 2074 | /* Set issuer name from the CA */ |
| 2075 | if (!(name = X509_get_subject_name(cacert))) |
| 2076 | goto mkcert_error; |
| 2077 | if (X509_set_issuer_name(newcrt, name) != 1) |
| 2078 | goto mkcert_error; |
| 2079 | |
| 2080 | /* Set the subject name using the same, but the CN */ |
| 2081 | name = X509_NAME_dup(name); |
| 2082 | if (X509_NAME_add_entry_by_txt(name, "CN", MBSTRING_ASC, |
| 2083 | (const unsigned char *)servername, |
| 2084 | -1, -1, 0) != 1) { |
| 2085 | X509_NAME_free(name); |
| 2086 | goto mkcert_error; |
| 2087 | } |
| 2088 | if (X509_set_subject_name(newcrt, name) != 1) { |
| 2089 | X509_NAME_free(name); |
| 2090 | goto mkcert_error; |
| 2091 | } |
| 2092 | X509_NAME_free(name); |
| 2093 | |
| 2094 | /* Add x509v3 extensions as specified */ |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2095 | ctmp = NCONF_new(NULL); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2096 | X509V3_set_ctx(&ctx, cacert, newcrt, NULL, NULL, 0); |
| 2097 | for (i = 0; i < X509V3_EXT_SIZE; i++) { |
| 2098 | X509_EXTENSION *ext; |
| 2099 | |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2100 | 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] | 2101 | goto mkcert_error; |
| 2102 | if (!X509_add_ext(newcrt, ext, -1)) { |
| 2103 | X509_EXTENSION_free(ext); |
| 2104 | goto mkcert_error; |
| 2105 | } |
| 2106 | X509_EXTENSION_free(ext); |
| 2107 | } |
| 2108 | |
Shimi Gersner | adabbfe | 2020-08-23 13:58:13 +0300 | [diff] [blame] | 2109 | /* Add SAN extension */ |
| 2110 | if (ssl_sock_add_san_ext(&ctx, newcrt, servername)) { |
| 2111 | goto mkcert_error; |
| 2112 | } |
| 2113 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2114 | /* Sign the certificate with the CA private key */ |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2115 | |
| 2116 | key_type = EVP_PKEY_base_id(capkey); |
| 2117 | |
| 2118 | if (key_type == EVP_PKEY_DSA) |
| 2119 | digest = EVP_sha1(); |
| 2120 | else if (key_type == EVP_PKEY_RSA) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2121 | digest = EVP_sha256(); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2122 | else if (key_type == EVP_PKEY_EC) |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2123 | digest = EVP_sha256(); |
| 2124 | else { |
Ilya Shipitsin | ec36c91 | 2021-01-07 11:57:42 +0500 | [diff] [blame] | 2125 | #ifdef ASN1_PKEY_CTRL_DEFAULT_MD_NID |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2126 | int nid; |
| 2127 | |
| 2128 | if (EVP_PKEY_get_default_digest_nid(capkey, &nid) <= 0) |
| 2129 | goto mkcert_error; |
| 2130 | if (!(digest = EVP_get_digestbynid(nid))) |
| 2131 | goto mkcert_error; |
Christopher Faulet | e7db216 | 2015-10-19 13:59:24 +0200 | [diff] [blame] | 2132 | #else |
| 2133 | goto mkcert_error; |
| 2134 | #endif |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2135 | } |
| 2136 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2137 | if (!(X509_sign(newcrt, capkey, digest))) |
| 2138 | goto mkcert_error; |
| 2139 | |
| 2140 | /* Create and set the new SSL_CTX */ |
| 2141 | if (!(ssl_ctx = SSL_CTX_new(SSLv23_server_method()))) |
| 2142 | goto mkcert_error; |
| 2143 | if (!SSL_CTX_use_PrivateKey(ssl_ctx, pkey)) |
| 2144 | goto mkcert_error; |
| 2145 | if (!SSL_CTX_use_certificate(ssl_ctx, newcrt)) |
| 2146 | goto mkcert_error; |
| 2147 | if (!SSL_CTX_check_private_key(ssl_ctx)) |
| 2148 | goto mkcert_error; |
| 2149 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2150 | /* Build chaining the CA cert and the rest of the chain, keep these order */ |
| 2151 | #if defined(SSL_CTX_add1_chain_cert) |
| 2152 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, bind_conf->ca_sign_ckch->cert)) { |
| 2153 | goto mkcert_error; |
| 2154 | } |
| 2155 | |
| 2156 | if (bind_conf->ca_sign_ckch->chain) { |
| 2157 | for (i = 0; i < sk_X509_num(bind_conf->ca_sign_ckch->chain); i++) { |
| 2158 | X509 *chain_cert = sk_X509_value(bind_conf->ca_sign_ckch->chain, i); |
| 2159 | if (!SSL_CTX_add1_chain_cert(ssl_ctx, chain_cert)) { |
| 2160 | goto mkcert_error; |
| 2161 | } |
| 2162 | } |
| 2163 | } |
| 2164 | #endif |
| 2165 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2166 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2167 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2168 | #ifndef OPENSSL_NO_DH |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2169 | SSL_CTX_set_tmp_dh_callback(ssl_ctx, ssl_get_tmp_dh); |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 2170 | #endif |
Christopher Faulet | 85b5a1a | 2015-10-09 11:46:32 +0200 | [diff] [blame] | 2171 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
| 2172 | { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 2173 | 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] | 2174 | EC_KEY *ecc; |
| 2175 | int nid; |
| 2176 | |
| 2177 | if ((nid = OBJ_sn2nid(ecdhe)) == NID_undef) |
| 2178 | goto end; |
| 2179 | if (!(ecc = EC_KEY_new_by_curve_name(nid))) |
| 2180 | goto end; |
| 2181 | SSL_CTX_set_tmp_ecdh(ssl_ctx, ecc); |
| 2182 | EC_KEY_free(ecc); |
| 2183 | } |
| 2184 | #endif |
| 2185 | end: |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2186 | return ssl_ctx; |
| 2187 | |
| 2188 | mkcert_error: |
Emmanuel Hocdet | a9b8402 | 2018-10-01 18:41:36 +0200 | [diff] [blame] | 2189 | if (ctmp) NCONF_free(ctmp); |
Emmanuel Hocdet | 1596929 | 2017-08-11 10:56:00 +0200 | [diff] [blame] | 2190 | if (tmp_ssl) SSL_free(tmp_ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2191 | if (ssl_ctx) SSL_CTX_free(ssl_ctx); |
| 2192 | if (newcrt) X509_free(newcrt); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2193 | return NULL; |
| 2194 | } |
| 2195 | |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2196 | SSL_CTX * |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2197 | 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] | 2198 | { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 2199 | struct bind_conf *bind_conf = __objt_listener(conn->target)->bind_conf; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2200 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2201 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 2202 | return ssl_sock_do_create_cert(servername, bind_conf, ctx->ssl); |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2203 | } |
| 2204 | |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2205 | /* 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] | 2206 | * certificates and immediately assign it to the SSL session if not null. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2207 | SSL_CTX * |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2208 | 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] | 2209 | { |
| 2210 | struct lru64 *lru = NULL; |
| 2211 | |
| 2212 | if (ssl_ctx_lru_tree) { |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2213 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2214 | 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] | 2215 | if (lru && lru->domain) { |
| 2216 | if (ssl) |
| 2217 | SSL_set_SSL_CTX(ssl, (SSL_CTX *)lru->data); |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2218 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2219 | return (SSL_CTX *)lru->data; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2220 | } |
Willy Tarreau | 03f4ec4 | 2018-05-17 10:56:47 +0200 | [diff] [blame] | 2221 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2222 | } |
| 2223 | return NULL; |
| 2224 | } |
| 2225 | |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2226 | /* Same as <ssl_sock_assign_generated_cert> but without SSL session. This |
| 2227 | * function is not thread-safe, it should only be used to check if a certificate |
| 2228 | * exists in the lru cache (with no warranty it will not be removed by another |
| 2229 | * thread). It is kept for backward compatibility. */ |
| 2230 | SSL_CTX * |
| 2231 | ssl_sock_get_generated_cert(unsigned int key, struct bind_conf *bind_conf) |
| 2232 | { |
| 2233 | return ssl_sock_assign_generated_cert(key, bind_conf, NULL); |
| 2234 | } |
| 2235 | |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2236 | /* Set a certificate int the LRU cache used to store generated |
| 2237 | * certificate. Return 0 on success, otherwise -1 */ |
| 2238 | int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2239 | 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] | 2240 | { |
| 2241 | struct lru64 *lru = NULL; |
| 2242 | |
| 2243 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2244 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2245 | 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] | 2246 | if (!lru) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2247 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2248 | return -1; |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 2249 | } |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2250 | if (lru->domain && lru->data) |
| 2251 | lru->free((SSL_CTX *)lru->data); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2252 | 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] | 2253 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2254 | return 0; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2255 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2256 | return -1; |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2257 | } |
| 2258 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2259 | /* Compute the key of the certificate. */ |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2260 | unsigned int |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2261 | ssl_sock_generated_cert_key(const void *data, size_t len) |
Christopher Faulet | 3054880 | 2015-06-11 13:39:32 +0200 | [diff] [blame] | 2262 | { |
| 2263 | return XXH32(data, len, ssl_ctx_lru_seed); |
| 2264 | } |
| 2265 | |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2266 | /* Generate a cert and immediately assign it to the SSL session so that the cert's |
| 2267 | * refcount is maintained regardless of the cert's presence in the LRU cache. |
| 2268 | */ |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2269 | static int |
Christopher Faulet | 7969a33 | 2015-10-09 11:15:03 +0200 | [diff] [blame] | 2270 | 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] | 2271 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 2272 | X509 *cacert = bind_conf->ca_sign_ckch->cert; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2273 | SSL_CTX *ssl_ctx = NULL; |
| 2274 | struct lru64 *lru = NULL; |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2275 | unsigned int key; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2276 | |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2277 | key = ssl_sock_generated_cert_key(servername, strlen(servername)); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2278 | if (ssl_ctx_lru_tree) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2279 | HA_RWLOCK_WRLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2280 | lru = lru64_get(key, ssl_ctx_lru_tree, cacert, 0); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2281 | if (lru && lru->domain) |
| 2282 | ssl_ctx = (SSL_CTX *)lru->data; |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2283 | if (!ssl_ctx && lru) { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2284 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2285 | lru64_commit(lru, ssl_ctx, cacert, 0, (void (*)(void *))SSL_CTX_free); |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 2286 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2287 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 2288 | HA_RWLOCK_WRUNLOCK(SSL_GEN_CERTS_LOCK, &ssl_ctx_lru_rwlock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2289 | return 1; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2290 | } |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2291 | else { |
Christopher Faulet | 635c0ad | 2015-11-12 11:35:51 +0100 | [diff] [blame] | 2292 | ssl_ctx = ssl_sock_do_create_cert(servername, bind_conf, ssl); |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2293 | SSL_set_SSL_CTX(ssl, ssl_ctx); |
| 2294 | /* No LRU cache, this CTX will be released as soon as the session dies */ |
| 2295 | SSL_CTX_free(ssl_ctx); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2296 | return 1; |
Willy Tarreau | 2f63ef4 | 2015-10-20 15:16:01 +0200 | [diff] [blame] | 2297 | } |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2298 | return 0; |
| 2299 | } |
| 2300 | static int |
| 2301 | ssl_sock_generate_certificate_from_conn(struct bind_conf *bind_conf, SSL *ssl) |
| 2302 | { |
| 2303 | unsigned int key; |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2304 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2305 | |
Willy Tarreau | f5bdb64 | 2019-07-17 11:29:32 +0200 | [diff] [blame] | 2306 | if (conn_get_dst(conn)) { |
Willy Tarreau | 085a151 | 2019-07-17 14:47:35 +0200 | [diff] [blame] | 2307 | 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] | 2308 | if (ssl_sock_assign_generated_cert(key, bind_conf, ssl)) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2309 | return 1; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2310 | } |
| 2311 | return 0; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2312 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2313 | #endif /* !defined SSL_NO_GENERATE_CERTIFICATES */ |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2314 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 2315 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2316 | |
| 2317 | 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] | 2318 | { |
Emmanuel Hocdet | 23877ab | 2017-07-12 12:53:02 +0200 | [diff] [blame] | 2319 | #if SSL_OP_NO_SSLv3 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2320 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, SSLv3_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2321 | : SSL_CTX_set_ssl_version(ctx, SSLv3_client_method()); |
| 2322 | #endif |
| 2323 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2324 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2325 | c == SET_SERVER ? SSL_CTX_set_ssl_version(ctx, TLSv1_server_method()) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2326 | : SSL_CTX_set_ssl_version(ctx, TLSv1_client_method()); |
| 2327 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2328 | 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] | 2329 | #if SSL_OP_NO_TLSv1_1 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2330 | 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] | 2331 | : SSL_CTX_set_ssl_version(ctx, TLSv1_1_client_method()); |
| 2332 | #endif |
| 2333 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2334 | 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] | 2335 | #if SSL_OP_NO_TLSv1_2 |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2336 | 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] | 2337 | : SSL_CTX_set_ssl_version(ctx, TLSv1_2_client_method()); |
| 2338 | #endif |
| 2339 | } |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2340 | /* TLSv1.2 is the last supported version in this context. */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2341 | static void ctx_set_TLSv13_func(SSL_CTX *ctx, set_context_func c) {} |
| 2342 | /* Unusable in this context. */ |
| 2343 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) {} |
| 2344 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) {} |
| 2345 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) {} |
| 2346 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) {} |
| 2347 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) {} |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2348 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2349 | |
| 2350 | static void ctx_set_SSLv3_func(SSL_CTX *ctx, set_context_func c) { |
| 2351 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, SSL3_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2352 | : SSL_CTX_set_min_proto_version(ctx, SSL3_VERSION); |
| 2353 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2354 | static void ssl_set_SSLv3_func(SSL *ssl, set_context_func c) { |
| 2355 | c == SET_MAX ? SSL_set_max_proto_version(ssl, SSL3_VERSION) |
| 2356 | : SSL_set_min_proto_version(ssl, SSL3_VERSION); |
| 2357 | } |
| 2358 | static void ctx_set_TLSv10_func(SSL_CTX *ctx, set_context_func c) { |
| 2359 | c == SET_MAX ? SSL_CTX_set_max_proto_version(ctx, TLS1_VERSION) |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2360 | : SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION); |
| 2361 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2362 | static void ssl_set_TLSv10_func(SSL *ssl, set_context_func c) { |
| 2363 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_VERSION) |
| 2364 | : SSL_set_min_proto_version(ssl, TLS1_VERSION); |
| 2365 | } |
| 2366 | static void ctx_set_TLSv11_func(SSL_CTX *ctx, set_context_func c) { |
| 2367 | 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] | 2368 | : SSL_CTX_set_min_proto_version(ctx, TLS1_1_VERSION); |
| 2369 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2370 | static void ssl_set_TLSv11_func(SSL *ssl, set_context_func c) { |
| 2371 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_1_VERSION) |
| 2372 | : SSL_set_min_proto_version(ssl, TLS1_1_VERSION); |
| 2373 | } |
| 2374 | static void ctx_set_TLSv12_func(SSL_CTX *ctx, set_context_func c) { |
| 2375 | 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] | 2376 | : SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION); |
| 2377 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2378 | static void ssl_set_TLSv12_func(SSL *ssl, set_context_func c) { |
| 2379 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_2_VERSION) |
| 2380 | : SSL_set_min_proto_version(ssl, TLS1_2_VERSION); |
| 2381 | } |
| 2382 | 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] | 2383 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2384 | 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] | 2385 | : SSL_CTX_set_min_proto_version(ctx, TLS1_3_VERSION); |
| 2386 | #endif |
| 2387 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2388 | static void ssl_set_TLSv13_func(SSL *ssl, set_context_func c) { |
William Lallemand | f22b032 | 2021-06-02 16:09:11 +0200 | [diff] [blame] | 2389 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2390 | c == SET_MAX ? SSL_set_max_proto_version(ssl, TLS1_3_VERSION) |
| 2391 | : SSL_set_min_proto_version(ssl, TLS1_3_VERSION); |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2392 | #endif |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2393 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2394 | #endif |
| 2395 | static void ctx_set_None_func(SSL_CTX *ctx, set_context_func c) { } |
| 2396 | static void ssl_set_None_func(SSL *ssl, set_context_func c) { } |
Emmanuel Hocdet | ecb0e23 | 2017-05-18 11:56:58 +0200 | [diff] [blame] | 2397 | |
William Lallemand | 7fd8b45 | 2020-05-07 15:20:43 +0200 | [diff] [blame] | 2398 | struct methodVersions methodVersions[] = { |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 2399 | {0, 0, ctx_set_None_func, ssl_set_None_func, "NONE"}, /* CONF_TLSV_NONE */ |
| 2400 | {SSL_OP_NO_SSLv3, MC_SSL_O_NO_SSLV3, ctx_set_SSLv3_func, ssl_set_SSLv3_func, "SSLv3"}, /* CONF_SSLV3 */ |
| 2401 | {SSL_OP_NO_TLSv1, MC_SSL_O_NO_TLSV10, ctx_set_TLSv10_func, ssl_set_TLSv10_func, "TLSv1.0"}, /* CONF_TLSV10 */ |
| 2402 | {SSL_OP_NO_TLSv1_1, MC_SSL_O_NO_TLSV11, ctx_set_TLSv11_func, ssl_set_TLSv11_func, "TLSv1.1"}, /* CONF_TLSV11 */ |
| 2403 | {SSL_OP_NO_TLSv1_2, MC_SSL_O_NO_TLSV12, ctx_set_TLSv12_func, ssl_set_TLSv12_func, "TLSv1.2"}, /* CONF_TLSV12 */ |
| 2404 | {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] | 2405 | }; |
| 2406 | |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2407 | static void ssl_sock_switchctx_set(SSL *ssl, SSL_CTX *ctx) |
| 2408 | { |
| 2409 | SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ctx), ssl_sock_bind_verifycbk); |
| 2410 | SSL_set_client_CA_list(ssl, SSL_dup_CA_list(SSL_CTX_get_client_CA_list(ctx))); |
| 2411 | SSL_set_SSL_CTX(ssl, ctx); |
| 2412 | } |
| 2413 | |
Ilya Shipitsin | 1fc44d4 | 2021-01-23 00:09:14 +0500 | [diff] [blame] | 2414 | #ifdef HAVE_SSL_CLIENT_HELLO_CB |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2415 | |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2416 | int ssl_sock_switchctx_err_cbk(SSL *ssl, int *al, void *priv) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2417 | { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2418 | struct bind_conf *s = priv; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2419 | (void)al; /* shut gcc stupid warning */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2420 | |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2421 | if (SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name) || s->generate_certs) |
| 2422 | return SSL_TLSEXT_ERR_OK; |
| 2423 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2424 | } |
| 2425 | |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2426 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2427 | int ssl_sock_switchctx_cbk(const struct ssl_early_callback_ctx *ctx) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2428 | { |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2429 | SSL *ssl = ctx->ssl; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2430 | #else |
Frédéric Lécaille | 901ee2f | 2020-11-23 11:19:04 +0100 | [diff] [blame] | 2431 | int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *arg) |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2432 | { |
| 2433 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2434 | struct connection *conn; |
| 2435 | struct bind_conf *s; |
| 2436 | const uint8_t *extension_data; |
| 2437 | size_t extension_len; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2438 | int has_rsa_sig = 0, has_ecdsa_sig = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2439 | |
| 2440 | char *wildp = NULL; |
| 2441 | const uint8_t *servername; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2442 | size_t servername_len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2443 | 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] | 2444 | int allow_early = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2445 | int i; |
| 2446 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 2447 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Willy Tarreau | a882552 | 2018-10-15 13:20:07 +0200 | [diff] [blame] | 2448 | s = __objt_listener(conn->target)->bind_conf; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2449 | |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2450 | #ifdef USE_QUIC |
| 2451 | if (conn->qc) { |
| 2452 | /* Look for the QUIC transport parameters. */ |
| 2453 | #ifdef OPENSSL_IS_BORINGSSL |
Frédéric Lécaille | a956d15 | 2021-11-10 09:24:22 +0100 | [diff] [blame] | 2454 | 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] | 2455 | &extension_data, &extension_len)) |
| 2456 | #else |
Frédéric Lécaille | a956d15 | 2021-11-10 09:24:22 +0100 | [diff] [blame] | 2457 | 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] | 2458 | &extension_data, &extension_len)) |
| 2459 | #endif |
| 2460 | goto abort; |
| 2461 | |
| 2462 | if (!quic_transport_params_store(conn->qc, 0, extension_data, |
| 2463 | extension_data + extension_len)) |
| 2464 | goto abort; |
Frédéric Lécaille | 0faf807 | 2021-03-18 15:05:18 +0100 | [diff] [blame] | 2465 | |
| 2466 | quic_mux_transport_params_update(conn->qc->qcc); |
Frédéric Lécaille | e9473c7 | 2020-11-23 15:37:11 +0100 | [diff] [blame] | 2467 | } |
| 2468 | #endif |
| 2469 | |
Olivier Houchard | 9679ac9 | 2017-10-27 14:58:08 +0200 | [diff] [blame] | 2470 | if (s->ssl_conf.early_data) |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2471 | allow_early = 1; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2472 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2473 | if (SSL_early_callback_ctx_extension_get(ctx, TLSEXT_TYPE_server_name, |
| 2474 | &extension_data, &extension_len)) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2475 | #else |
| 2476 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_server_name, &extension_data, &extension_len)) { |
| 2477 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2478 | /* |
| 2479 | * The server_name extension was given too much extensibility when it |
| 2480 | * was written, so parsing the normal case is a bit complex. |
| 2481 | */ |
| 2482 | size_t len; |
| 2483 | if (extension_len <= 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2484 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2485 | /* Extract the length of the supplied list of names. */ |
| 2486 | len = (*extension_data++) << 8; |
| 2487 | len |= *extension_data++; |
| 2488 | if (len + 2 != extension_len) |
| 2489 | goto abort; |
| 2490 | /* |
| 2491 | * The list in practice only has a single element, so we only consider |
| 2492 | * the first one. |
| 2493 | */ |
| 2494 | if (len == 0 || *extension_data++ != TLSEXT_NAMETYPE_host_name) |
| 2495 | goto abort; |
| 2496 | extension_len = len - 1; |
| 2497 | /* Now we can finally pull out the byte array with the actual hostname. */ |
| 2498 | if (extension_len <= 2) |
| 2499 | goto abort; |
| 2500 | len = (*extension_data++) << 8; |
| 2501 | len |= *extension_data++; |
| 2502 | if (len == 0 || len + 2 > extension_len || len > TLSEXT_MAXLEN_host_name |
| 2503 | || memchr(extension_data, 0, len) != NULL) |
| 2504 | goto abort; |
| 2505 | servername = extension_data; |
| 2506 | servername_len = len; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2507 | } else { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2508 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
| 2509 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2510 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2511 | } |
| 2512 | #endif |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2513 | /* without SNI extension, is the default_ctx (need SSL_TLSEXT_ERR_NOACK) */ |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2514 | if (!s->strict_sni) { |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2515 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2516 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2517 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2518 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2519 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2520 | goto abort; |
| 2521 | } |
| 2522 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 2523 | /* extract/check clientHello information */ |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2524 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2525 | 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] | 2526 | #else |
| 2527 | if (SSL_client_hello_get0_ext(ssl, TLSEXT_TYPE_signature_algorithms, &extension_data, &extension_len)) { |
| 2528 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2529 | uint8_t sign; |
| 2530 | size_t len; |
| 2531 | if (extension_len < 2) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2532 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2533 | len = (*extension_data++) << 8; |
| 2534 | len |= *extension_data++; |
| 2535 | if (len + 2 != extension_len) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2536 | goto abort; |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2537 | if (len % 2 != 0) |
| 2538 | goto abort; |
| 2539 | for (; len > 0; len -= 2) { |
| 2540 | extension_data++; /* hash */ |
| 2541 | sign = *extension_data++; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2542 | switch (sign) { |
| 2543 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2544 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2545 | break; |
| 2546 | case TLSEXT_signature_ecdsa: |
| 2547 | has_ecdsa_sig = 1; |
| 2548 | break; |
| 2549 | default: |
| 2550 | continue; |
| 2551 | } |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2552 | if (has_ecdsa_sig && has_rsa_sig) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2553 | break; |
| 2554 | } |
| 2555 | } else { |
Bertrand Jacquin | a25282b | 2018-08-14 00:56:13 +0100 | [diff] [blame] | 2556 | /* without TLSEXT_TYPE_signature_algorithms extension (< TLSv1.2) */ |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2557 | has_rsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2558 | } |
| 2559 | 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] | 2560 | const SSL_CIPHER *cipher; |
| 2561 | size_t len; |
| 2562 | const uint8_t *cipher_suites; |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2563 | has_ecdsa_sig = 0; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2564 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2565 | len = ctx->cipher_suites_len; |
| 2566 | cipher_suites = ctx->cipher_suites; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2567 | #else |
| 2568 | len = SSL_client_hello_get0_ciphers(ssl, &cipher_suites); |
| 2569 | #endif |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2570 | if (len % 2 != 0) |
| 2571 | goto abort; |
| 2572 | for (; len != 0; len -= 2, cipher_suites += 2) { |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2573 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2574 | uint16_t cipher_suite = (cipher_suites[0] << 8) | cipher_suites[1]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2575 | cipher = SSL_get_cipher_by_value(cipher_suite); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2576 | #else |
| 2577 | cipher = SSL_CIPHER_find(ssl, cipher_suites); |
| 2578 | #endif |
Emmanuel Hocdet | 019f9b1 | 2017-10-02 17:12:06 +0200 | [diff] [blame] | 2579 | if (cipher && SSL_CIPHER_get_auth_nid(cipher) == NID_auth_ecdsa) { |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2580 | has_ecdsa_sig = 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2581 | break; |
| 2582 | } |
| 2583 | } |
| 2584 | } |
| 2585 | |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2586 | for (i = 0; i < trash.size && i < servername_len; i++) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2587 | trash.area[i] = tolower(servername[i]); |
| 2588 | if (!wildp && (trash.area[i] == '.')) |
| 2589 | wildp = &trash.area[i]; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2590 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2591 | trash.area[i] = 0; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2592 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2593 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2594 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2595 | /* Look for an ECDSA, RSA and DSA certificate, first in the single |
| 2596 | * name and if not found in the wildcard */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2597 | for (i = 0; i < 2; i++) { |
| 2598 | if (i == 0) /* lookup in full qualified names */ |
| 2599 | node = ebst_lookup(&s->sni_ctx, trash.area); |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2600 | else if (i == 1 && wildp) /* lookup in wildcards names */ |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2601 | node = ebst_lookup(&s->sni_w_ctx, wildp); |
| 2602 | else |
| 2603 | break; |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2604 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2605 | for (n = node; n; n = ebmb_next_dup(n)) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2606 | |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2607 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2608 | if (!container_of(n, struct sni_ctx, name)->neg) { |
William Lallemand | 30f9e09 | 2020-08-17 14:31:19 +0200 | [diff] [blame] | 2609 | struct sni_ctx *sni, *sni_tmp; |
| 2610 | int skip = 0; |
| 2611 | |
| 2612 | if (i == 1 && wildp) { /* wildcard */ |
| 2613 | /* If this is a wildcard, look for an exclusion on the same crt-list line */ |
| 2614 | sni = container_of(n, struct sni_ctx, name); |
| 2615 | 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] | 2616 | 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] | 2617 | skip = 1; |
| 2618 | break; |
| 2619 | } |
| 2620 | } |
| 2621 | if (skip) |
| 2622 | continue; |
| 2623 | } |
| 2624 | |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2625 | switch(container_of(n, struct sni_ctx, name)->kinfo.sig) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2626 | case TLSEXT_signature_ecdsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2627 | if (!node_ecdsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2628 | node_ecdsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2629 | break; |
| 2630 | case TLSEXT_signature_rsa: |
Emmanuel Hocdet | 9f9b0c6 | 2018-09-03 16:29:16 +0200 | [diff] [blame] | 2631 | if (!node_rsa) |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2632 | node_rsa = n; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2633 | break; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 2634 | default: /* TLSEXT_signature_anonymous|dsa */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2635 | if (!node_anonymous) |
| 2636 | node_anonymous = n; |
| 2637 | break; |
| 2638 | } |
| 2639 | } |
| 2640 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2641 | } |
| 2642 | /* Once the certificates are found, select them depending on what is |
| 2643 | * supported in the client and by key_signature priority order: EDSA > |
| 2644 | * RSA > DSA */ |
William Lallemand | 5b1d1f6 | 2020-08-14 15:30:13 +0200 | [diff] [blame] | 2645 | if (has_ecdsa_sig && node_ecdsa) |
| 2646 | node = node_ecdsa; |
| 2647 | else if (has_rsa_sig && node_rsa) |
| 2648 | node = node_rsa; |
| 2649 | else if (node_anonymous) |
| 2650 | node = node_anonymous; |
| 2651 | else if (node_ecdsa) |
| 2652 | node = node_ecdsa; /* no ecdsa signature case (< TLSv1.2) */ |
| 2653 | else |
| 2654 | node = node_rsa; /* no rsa signature case (far far away) */ |
| 2655 | |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2656 | if (node) { |
| 2657 | /* switch ctx */ |
| 2658 | struct ssl_bind_conf *conf = container_of(node, struct sni_ctx, name)->conf; |
| 2659 | ssl_sock_switchctx_set(ssl, container_of(node, struct sni_ctx, name)->ctx); |
| 2660 | if (conf) { |
| 2661 | methodVersions[conf->ssl_methods.min].ssl_set_version(ssl, SET_MIN); |
| 2662 | methodVersions[conf->ssl_methods.max].ssl_set_version(ssl, SET_MAX); |
| 2663 | if (conf->early_data) |
| 2664 | allow_early = 1; |
Emmanuel Hocdet | 3777e3a | 2019-11-06 16:05:34 +0100 | [diff] [blame] | 2665 | } |
William Lallemand | 94bd319 | 2020-08-14 14:43:35 +0200 | [diff] [blame] | 2666 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
| 2667 | goto allow_early; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2668 | } |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2669 | |
William Lallemand | 0201047 | 2019-10-18 11:02:19 +0200 | [diff] [blame] | 2670 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2671 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2672 | if (s->generate_certs && ssl_sock_generate_certificate(trash.area, s, ssl)) { |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2673 | /* switch ctx done in ssl_sock_generate_certificate */ |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 2674 | goto allow_early; |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2675 | } |
| 2676 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2677 | if (!s->strict_sni) { |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2678 | /* no certificate match, is the default_ctx */ |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2679 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2680 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2681 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2682 | goto allow_early; |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2683 | } |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2684 | |
| 2685 | /* other cases fallback on abort, if strict-sni is set but no node was found */ |
| 2686 | |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2687 | abort: |
| 2688 | /* abort handshake (was SSL_TLSEXT_ERR_ALERT_FATAL) */ |
| 2689 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2690 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 48e8755 | 2017-08-16 11:28:44 +0200 | [diff] [blame] | 2691 | return ssl_select_cert_error; |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 2692 | #else |
| 2693 | *al = SSL_AD_UNRECOGNIZED_NAME; |
| 2694 | return 0; |
| 2695 | #endif |
William Lallemand | 7980dff | 2021-11-18 17:46:26 +0100 | [diff] [blame] | 2696 | |
| 2697 | allow_early: |
| 2698 | #ifdef OPENSSL_IS_BORINGSSL |
| 2699 | if (allow_early) |
| 2700 | SSL_set_early_data_enabled(ssl, 1); |
| 2701 | #else |
| 2702 | if (!allow_early) |
| 2703 | SSL_set_max_early_data(ssl, 0); |
| 2704 | #endif |
| 2705 | return 1; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2706 | } |
| 2707 | |
William Lallemand | 002e206 | 2021-11-18 15:25:16 +0100 | [diff] [blame] | 2708 | #else /* ! HAVE_SSL_CLIENT_HELLO_CB */ |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2709 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2710 | /* Sets the SSL ctx of <ssl> to match the advertised server name. Returns a |
| 2711 | * warning when no match is found, which implies the default (first) cert |
| 2712 | * will keep being used. |
| 2713 | */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2714 | static int ssl_sock_switchctx_cbk(SSL *ssl, int *al, void *priv) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2715 | { |
| 2716 | const char *servername; |
| 2717 | const char *wildp = NULL; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2718 | struct ebmb_node *node, *n; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2719 | struct bind_conf *s = priv; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2720 | int i; |
| 2721 | (void)al; /* shut gcc stupid warning */ |
| 2722 | |
| 2723 | servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2724 | if (!servername) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2725 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2726 | if (s->generate_certs && ssl_sock_generate_certificate_from_conn(s, ssl)) |
| 2727 | return SSL_TLSEXT_ERR_OK; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2728 | #endif |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2729 | if (s->strict_sni) |
| 2730 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2731 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2732 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2733 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2734 | return SSL_TLSEXT_ERR_NOACK; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2735 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2736 | |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 2737 | for (i = 0; i < trash.size; i++) { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2738 | if (!servername[i]) |
| 2739 | break; |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 2740 | trash.area[i] = tolower((unsigned char)servername[i]); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2741 | if (!wildp && (trash.area[i] == '.')) |
| 2742 | wildp = &trash.area[i]; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2743 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 2744 | trash.area[i] = 0; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2745 | |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2746 | HA_RWLOCK_RDLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2747 | node = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2748 | /* lookup in full qualified names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2749 | for (n = ebst_lookup(&s->sni_ctx, trash.area); n; n = ebmb_next_dup(n)) { |
| 2750 | /* lookup a not neg filter */ |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2751 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2752 | node = n; |
| 2753 | break; |
Emmanuel Hocdet | 6562337 | 2013-01-24 17:17:15 +0100 | [diff] [blame] | 2754 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2755 | } |
| 2756 | if (!node && wildp) { |
| 2757 | /* lookup in wildcards names */ |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2758 | for (n = ebst_lookup(&s->sni_w_ctx, wildp); n; n = ebmb_next_dup(n)) { |
| 2759 | /* lookup a not neg filter */ |
| 2760 | if (!container_of(n, struct sni_ctx, name)->neg) { |
| 2761 | node = n; |
| 2762 | break; |
| 2763 | } |
| 2764 | } |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 2765 | } |
Emmanuel Hocdet | c5fdf0f | 2019-11-04 15:49:46 +0100 | [diff] [blame] | 2766 | if (!node) { |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2767 | #if (!defined SSL_NO_GENERATE_CERTIFICATES) |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 2768 | if (s->generate_certs && ssl_sock_generate_certificate(servername, s, ssl)) { |
| 2769 | /* switch ctx done in ssl_sock_generate_certificate */ |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 2770 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 2771 | return SSL_TLSEXT_ERR_OK; |
| 2772 | } |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 2773 | #endif |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2774 | if (s->strict_sni) { |
| 2775 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2776 | return SSL_TLSEXT_ERR_ALERT_FATAL; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2777 | } |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2778 | ssl_sock_switchctx_set(ssl, s->default_ctx); |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 2779 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 2780 | return SSL_TLSEXT_ERR_OK; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2781 | } |
| 2782 | |
| 2783 | /* switch ctx */ |
Emmanuel Hocdet | 530141f | 2017-03-01 18:54:56 +0100 | [diff] [blame] | 2784 | 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] | 2785 | HA_RWLOCK_RDUNLOCK(SNI_LOCK, &s->sni_lock); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2786 | return SSL_TLSEXT_ERR_OK; |
| 2787 | } |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 2788 | #endif /* (!) OPENSSL_IS_BORINGSSL */ |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 2789 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
| 2790 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2791 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2792 | |
| 2793 | static DH * ssl_get_dh_1024(void) |
| 2794 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2795 | static unsigned char dh1024_p[]={ |
| 2796 | 0xFA,0xF9,0x2A,0x22,0x2A,0xA7,0x7F,0xE1,0x67,0x4E,0x53,0xF7, |
| 2797 | 0x56,0x13,0xC3,0xB1,0xE3,0x29,0x6B,0x66,0x31,0x6A,0x7F,0xB3, |
| 2798 | 0xC2,0x68,0x6B,0xCB,0x1D,0x57,0x39,0x1D,0x1F,0xFF,0x1C,0xC9, |
| 2799 | 0xA6,0xA4,0x98,0x82,0x31,0x5D,0x25,0xFF,0x8A,0xE0,0x73,0x96, |
| 2800 | 0x81,0xC8,0x83,0x79,0xC1,0x5A,0x04,0xF8,0x37,0x0D,0xA8,0x3D, |
| 2801 | 0xAE,0x74,0xBC,0xDB,0xB6,0xA4,0x75,0xD9,0x71,0x8A,0xA0,0x17, |
| 2802 | 0x9E,0x2D,0xC8,0xA8,0xDF,0x2C,0x5F,0x82,0x95,0xF8,0x92,0x9B, |
| 2803 | 0xA7,0x33,0x5F,0x89,0x71,0xC8,0x2D,0x6B,0x18,0x86,0xC4,0x94, |
| 2804 | 0x22,0xA5,0x52,0x8D,0xF6,0xF6,0xD2,0x37,0x92,0x0F,0xA5,0xCC, |
| 2805 | 0xDB,0x7B,0x1D,0x3D,0xA1,0x31,0xB7,0x80,0x8F,0x0B,0x67,0x5E, |
| 2806 | 0x36,0xA5,0x60,0x0C,0xF1,0x95,0x33,0x8B, |
| 2807 | }; |
| 2808 | static unsigned char dh1024_g[]={ |
| 2809 | 0x02, |
| 2810 | }; |
| 2811 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2812 | BIGNUM *p; |
| 2813 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2814 | DH *dh = DH_new(); |
| 2815 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2816 | p = BN_bin2bn(dh1024_p, sizeof dh1024_p, NULL); |
| 2817 | g = BN_bin2bn(dh1024_g, sizeof dh1024_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2818 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2819 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2820 | DH_free(dh); |
| 2821 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2822 | } else { |
| 2823 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2824 | } |
| 2825 | } |
| 2826 | return dh; |
| 2827 | } |
| 2828 | |
| 2829 | static DH *ssl_get_dh_2048(void) |
| 2830 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2831 | static unsigned char dh2048_p[]={ |
| 2832 | 0xEC,0x86,0xF8,0x70,0xA0,0x33,0x16,0xEC,0x05,0x1A,0x73,0x59, |
| 2833 | 0xCD,0x1F,0x8B,0xF8,0x29,0xE4,0xD2,0xCF,0x52,0xDD,0xC2,0x24, |
| 2834 | 0x8D,0xB5,0x38,0x9A,0xFB,0x5C,0xA4,0xE4,0xB2,0xDA,0xCE,0x66, |
| 2835 | 0x50,0x74,0xA6,0x85,0x4D,0x4B,0x1D,0x30,0xB8,0x2B,0xF3,0x10, |
| 2836 | 0xE9,0xA7,0x2D,0x05,0x71,0xE7,0x81,0xDF,0x8B,0x59,0x52,0x3B, |
| 2837 | 0x5F,0x43,0x0B,0x68,0xF1,0xDB,0x07,0xBE,0x08,0x6B,0x1B,0x23, |
| 2838 | 0xEE,0x4D,0xCC,0x9E,0x0E,0x43,0xA0,0x1E,0xDF,0x43,0x8C,0xEC, |
| 2839 | 0xBE,0xBE,0x90,0xB4,0x51,0x54,0xB9,0x2F,0x7B,0x64,0x76,0x4E, |
| 2840 | 0x5D,0xD4,0x2E,0xAE,0xC2,0x9E,0xAE,0x51,0x43,0x59,0xC7,0x77, |
| 2841 | 0x9C,0x50,0x3C,0x0E,0xED,0x73,0x04,0x5F,0xF1,0x4C,0x76,0x2A, |
| 2842 | 0xD8,0xF8,0xCF,0xFC,0x34,0x40,0xD1,0xB4,0x42,0x61,0x84,0x66, |
| 2843 | 0x42,0x39,0x04,0xF8,0x68,0xB2,0x62,0xD7,0x55,0xED,0x1B,0x74, |
| 2844 | 0x75,0x91,0xE0,0xC5,0x69,0xC1,0x31,0x5C,0xDB,0x7B,0x44,0x2E, |
| 2845 | 0xCE,0x84,0x58,0x0D,0x1E,0x66,0x0C,0xC8,0x44,0x9E,0xFD,0x40, |
| 2846 | 0x08,0x67,0x5D,0xFB,0xA7,0x76,0x8F,0x00,0x11,0x87,0xE9,0x93, |
| 2847 | 0xF9,0x7D,0xC4,0xBC,0x74,0x55,0x20,0xD4,0x4A,0x41,0x2F,0x43, |
| 2848 | 0x42,0x1A,0xC1,0xF2,0x97,0x17,0x49,0x27,0x37,0x6B,0x2F,0x88, |
| 2849 | 0x7E,0x1C,0xA0,0xA1,0x89,0x92,0x27,0xD9,0x56,0x5A,0x71,0xC1, |
| 2850 | 0x56,0x37,0x7E,0x3A,0x9D,0x05,0xE7,0xEE,0x5D,0x8F,0x82,0x17, |
| 2851 | 0xBC,0xE9,0xC2,0x93,0x30,0x82,0xF9,0xF4,0xC9,0xAE,0x49,0xDB, |
| 2852 | 0xD0,0x54,0xB4,0xD9,0x75,0x4D,0xFA,0x06,0xB8,0xD6,0x38,0x41, |
| 2853 | 0xB7,0x1F,0x77,0xF3, |
| 2854 | }; |
| 2855 | static unsigned char dh2048_g[]={ |
| 2856 | 0x02, |
| 2857 | }; |
| 2858 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2859 | BIGNUM *p; |
| 2860 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2861 | DH *dh = DH_new(); |
| 2862 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2863 | p = BN_bin2bn(dh2048_p, sizeof dh2048_p, NULL); |
| 2864 | g = BN_bin2bn(dh2048_g, sizeof dh2048_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2865 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2866 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2867 | DH_free(dh); |
| 2868 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2869 | } else { |
| 2870 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2871 | } |
| 2872 | } |
| 2873 | return dh; |
| 2874 | } |
| 2875 | |
| 2876 | static DH *ssl_get_dh_4096(void) |
| 2877 | { |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2878 | static unsigned char dh4096_p[]={ |
| 2879 | 0xDE,0x16,0x94,0xCD,0x99,0x58,0x07,0xF1,0xF7,0x32,0x96,0x11, |
| 2880 | 0x04,0x82,0xD4,0x84,0x72,0x80,0x99,0x06,0xCA,0xF0,0xA3,0x68, |
| 2881 | 0x07,0xCE,0x64,0x50,0xE7,0x74,0x45,0x20,0x80,0x5E,0x4D,0xAD, |
| 2882 | 0xA5,0xB6,0xED,0xFA,0x80,0x6C,0x3B,0x35,0xC4,0x9A,0x14,0x6B, |
| 2883 | 0x32,0xBB,0xFD,0x1F,0x17,0x8E,0xB7,0x1F,0xD6,0xFA,0x3F,0x7B, |
| 2884 | 0xEE,0x16,0xA5,0x62,0x33,0x0D,0xED,0xBC,0x4E,0x58,0xE5,0x47, |
| 2885 | 0x4D,0xE9,0xAB,0x8E,0x38,0xD3,0x6E,0x90,0x57,0xE3,0x22,0x15, |
| 2886 | 0x33,0xBD,0xF6,0x43,0x45,0xB5,0x10,0x0A,0xBE,0x2C,0xB4,0x35, |
| 2887 | 0xB8,0x53,0x8D,0xAD,0xFB,0xA7,0x1F,0x85,0x58,0x41,0x7A,0x79, |
| 2888 | 0x20,0x68,0xB3,0xE1,0x3D,0x08,0x76,0xBF,0x86,0x0D,0x49,0xE3, |
| 2889 | 0x82,0x71,0x8C,0xB4,0x8D,0x81,0x84,0xD4,0xE7,0xBE,0x91,0xDC, |
| 2890 | 0x26,0x39,0x48,0x0F,0x35,0xC4,0xCA,0x65,0xE3,0x40,0x93,0x52, |
| 2891 | 0x76,0x58,0x7D,0xDD,0x51,0x75,0xDC,0x69,0x61,0xBF,0x47,0x2C, |
| 2892 | 0x16,0x68,0x2D,0xC9,0x29,0xD3,0xE6,0xC0,0x99,0x48,0xA0,0x9A, |
| 2893 | 0xC8,0x78,0xC0,0x6D,0x81,0x67,0x12,0x61,0x3F,0x71,0xBA,0x41, |
| 2894 | 0x1F,0x6C,0x89,0x44,0x03,0xBA,0x3B,0x39,0x60,0xAA,0x28,0x55, |
| 2895 | 0x59,0xAE,0xB8,0xFA,0xCB,0x6F,0xA5,0x1A,0xF7,0x2B,0xDD,0x52, |
| 2896 | 0x8A,0x8B,0xE2,0x71,0xA6,0x5E,0x7E,0xD8,0x2E,0x18,0xE0,0x66, |
| 2897 | 0xDF,0xDD,0x22,0x21,0x99,0x52,0x73,0xA6,0x33,0x20,0x65,0x0E, |
| 2898 | 0x53,0xE7,0x6B,0x9B,0xC5,0xA3,0x2F,0x97,0x65,0x76,0xD3,0x47, |
| 2899 | 0x23,0x77,0x12,0xB6,0x11,0x7B,0x24,0xED,0xF1,0xEF,0xC0,0xE2, |
| 2900 | 0xA3,0x7E,0x67,0x05,0x3E,0x96,0x4D,0x45,0xC2,0x18,0xD1,0x73, |
| 2901 | 0x9E,0x07,0xF3,0x81,0x6E,0x52,0x63,0xF6,0x20,0x76,0xB9,0x13, |
| 2902 | 0xD2,0x65,0x30,0x18,0x16,0x09,0x16,0x9E,0x8F,0xF1,0xD2,0x10, |
| 2903 | 0x5A,0xD3,0xD4,0xAF,0x16,0x61,0xDA,0x55,0x2E,0x18,0x5E,0x14, |
| 2904 | 0x08,0x54,0x2E,0x2A,0x25,0xA2,0x1A,0x9B,0x8B,0x32,0xA9,0xFD, |
| 2905 | 0xC2,0x48,0x96,0xE1,0x80,0xCA,0xE9,0x22,0x17,0xBB,0xCE,0x3E, |
| 2906 | 0x9E,0xED,0xC7,0xF1,0x1F,0xEC,0x17,0x21,0xDC,0x7B,0x82,0x48, |
| 2907 | 0x8E,0xBB,0x4B,0x9D,0x5B,0x04,0x04,0xDA,0xDB,0x39,0xDF,0x01, |
| 2908 | 0x40,0xC3,0xAA,0x26,0x23,0x89,0x75,0xC6,0x0B,0xD0,0xA2,0x60, |
| 2909 | 0x6A,0xF1,0xCC,0x65,0x18,0x98,0x1B,0x52,0xD2,0x74,0x61,0xCC, |
| 2910 | 0xBD,0x60,0xAE,0xA3,0xA0,0x66,0x6A,0x16,0x34,0x92,0x3F,0x41, |
| 2911 | 0x40,0x31,0x29,0xC0,0x2C,0x63,0xB2,0x07,0x8D,0xEB,0x94,0xB8, |
| 2912 | 0xE8,0x47,0x92,0x52,0x93,0x6A,0x1B,0x7E,0x1A,0x61,0xB3,0x1B, |
| 2913 | 0xF0,0xD6,0x72,0x9B,0xF1,0xB0,0xAF,0xBF,0x3E,0x65,0xEF,0x23, |
| 2914 | 0x1D,0x6F,0xFF,0x70,0xCD,0x8A,0x4C,0x8A,0xA0,0x72,0x9D,0xBE, |
| 2915 | 0xD4,0xBB,0x24,0x47,0x4A,0x68,0xB5,0xF5,0xC6,0xD5,0x7A,0xCD, |
| 2916 | 0xCA,0x06,0x41,0x07,0xAD,0xC2,0x1E,0xE6,0x54,0xA7,0xAD,0x03, |
| 2917 | 0xD9,0x12,0xC1,0x9C,0x13,0xB1,0xC9,0x0A,0x43,0x8E,0x1E,0x08, |
| 2918 | 0xCE,0x50,0x82,0x73,0x5F,0xA7,0x55,0x1D,0xD9,0x59,0xAC,0xB5, |
| 2919 | 0xEA,0x02,0x7F,0x6C,0x5B,0x74,0x96,0x98,0x67,0x24,0xA3,0x0F, |
| 2920 | 0x15,0xFC,0xA9,0x7D,0x3E,0x67,0xD1,0x70,0xF8,0x97,0xF3,0x67, |
| 2921 | 0xC5,0x8C,0x88,0x44,0x08,0x02,0xC7,0x2B, |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2922 | }; |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2923 | static unsigned char dh4096_g[]={ |
| 2924 | 0x02, |
| 2925 | }; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2926 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2927 | BIGNUM *p; |
| 2928 | BIGNUM *g; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2929 | DH *dh = DH_new(); |
| 2930 | if (dh) { |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2931 | p = BN_bin2bn(dh4096_p, sizeof dh4096_p, NULL); |
| 2932 | g = BN_bin2bn(dh4096_g, sizeof dh4096_g, NULL); |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2933 | |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2934 | if (!p || !g) { |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2935 | DH_free(dh); |
| 2936 | dh = NULL; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2937 | } else { |
| 2938 | DH_set0_pqg(dh, p, NULL, g); |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2939 | } |
| 2940 | } |
| 2941 | return dh; |
| 2942 | } |
| 2943 | |
| 2944 | /* Returns Diffie-Hellman parameters matching the private key length |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2945 | but not exceeding global_ssl.default_dh_param */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2946 | static DH *ssl_get_tmp_dh(SSL *ssl, int export, int keylen) |
| 2947 | { |
| 2948 | DH *dh = NULL; |
| 2949 | EVP_PKEY *pkey = SSL_get_privatekey(ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 2950 | int type; |
| 2951 | |
| 2952 | type = pkey ? EVP_PKEY_base_id(pkey) : EVP_PKEY_NONE; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2953 | |
| 2954 | /* The keylen supplied by OpenSSL can only be 512 or 1024. |
| 2955 | See ssl3_send_server_key_exchange() in ssl/s3_srvr.c |
| 2956 | */ |
| 2957 | if (type == EVP_PKEY_RSA || type == EVP_PKEY_DSA) { |
| 2958 | keylen = EVP_PKEY_bits(pkey); |
| 2959 | } |
| 2960 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 2961 | if (keylen > global_ssl.default_dh_param) { |
| 2962 | keylen = global_ssl.default_dh_param; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2963 | } |
| 2964 | |
Remi Gacogne | d3a341a | 2015-05-29 16:26:17 +0200 | [diff] [blame] | 2965 | if (keylen >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2966 | dh = local_dh_4096; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2967 | } |
| 2968 | else if (keylen >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2969 | dh = local_dh_2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2970 | } |
| 2971 | else { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 2972 | dh = local_dh_1024; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 2973 | } |
| 2974 | |
| 2975 | return dh; |
| 2976 | } |
| 2977 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2978 | static DH * ssl_sock_get_dh_from_file(const char *filename) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2979 | { |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2980 | DH *dh = NULL; |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2981 | BIO *in = BIO_new(BIO_s_file()); |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2982 | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2983 | if (in == NULL) |
| 2984 | goto end; |
| 2985 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2986 | if (BIO_read_filename(in, filename) <= 0) |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 2987 | goto end; |
| 2988 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2989 | dh = PEM_read_bio_DHparams(in, NULL, NULL, NULL); |
| 2990 | |
| 2991 | end: |
| 2992 | if (in) |
| 2993 | BIO_free(in); |
| 2994 | |
Emeric Brun | e1b4ed4 | 2018-08-16 15:14:12 +0200 | [diff] [blame] | 2995 | ERR_clear_error(); |
| 2996 | |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 2997 | return dh; |
| 2998 | } |
| 2999 | |
| 3000 | int ssl_sock_load_global_dh_param_from_file(const char *filename) |
| 3001 | { |
| 3002 | global_dh = ssl_sock_get_dh_from_file(filename); |
| 3003 | |
| 3004 | if (global_dh) { |
| 3005 | return 0; |
| 3006 | } |
| 3007 | |
| 3008 | return -1; |
| 3009 | } |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3010 | #endif |
| 3011 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3012 | /* 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] | 3013 | 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] | 3014 | struct bind_conf *s, struct ssl_bind_conf *conf, |
| 3015 | struct pkey_info kinfo, char *name, int order) |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3016 | { |
| 3017 | struct sni_ctx *sc; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3018 | int wild = 0, neg = 0; |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3019 | |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3020 | if (*name == '!') { |
| 3021 | neg = 1; |
| 3022 | name++; |
| 3023 | } |
| 3024 | if (*name == '*') { |
| 3025 | wild = 1; |
| 3026 | name++; |
| 3027 | } |
| 3028 | /* !* filter is a nop */ |
| 3029 | if (neg && wild) |
| 3030 | return order; |
| 3031 | if (*name) { |
| 3032 | int j, len; |
| 3033 | len = strlen(name); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3034 | for (j = 0; j < len && j < trash.size; j++) |
Willy Tarreau | f278eec | 2020-07-05 21:46:32 +0200 | [diff] [blame] | 3035 | trash.area[j] = tolower((unsigned char)name[j]); |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3036 | if (j >= trash.size) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3037 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3038 | trash.area[j] = 0; |
Thierry FOURNIER / OZON.IO | 07c3d78 | 2016-10-06 10:56:48 +0200 | [diff] [blame] | 3039 | |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3040 | sc = malloc(sizeof(struct sni_ctx) + len + 1); |
Thierry FOURNIER / OZON.IO | 7a3bd3b | 2016-10-06 10:35:29 +0200 | [diff] [blame] | 3041 | if (!sc) |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3042 | return -1; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 3043 | memcpy(sc->name.key, trash.area, len + 1); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3044 | SSL_CTX_up_ref(ctx); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3045 | sc->ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3046 | sc->conf = conf; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3047 | sc->kinfo = kinfo; |
Emmanuel Hocdet | 7c41a1b | 2013-05-07 20:20:06 +0200 | [diff] [blame] | 3048 | sc->order = order++; |
| 3049 | sc->neg = neg; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3050 | sc->wild = wild; |
| 3051 | sc->name.node.leaf_p = NULL; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3052 | sc->ckch_inst = ckch_inst; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3053 | LIST_APPEND(&ckch_inst->sni_ctx, &sc->by_ckch_inst); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3054 | } |
| 3055 | return order; |
| 3056 | } |
| 3057 | |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3058 | /* |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3059 | * Insert the sni_ctxs that are listed in the ckch_inst, in the bind_conf's sni_ctx tree |
| 3060 | * This function can't return an error. |
| 3061 | * |
| 3062 | * *CAUTION*: The caller must lock the sni tree if called in multithreading mode |
| 3063 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3064 | 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] | 3065 | { |
| 3066 | |
| 3067 | struct sni_ctx *sc0, *sc0b, *sc1; |
| 3068 | struct ebmb_node *node; |
| 3069 | |
| 3070 | list_for_each_entry_safe(sc0, sc0b, &ckch_inst->sni_ctx, by_ckch_inst) { |
| 3071 | |
| 3072 | /* ignore if sc0 was already inserted in a tree */ |
| 3073 | if (sc0->name.node.leaf_p) |
| 3074 | continue; |
| 3075 | |
| 3076 | /* Check for duplicates. */ |
| 3077 | if (sc0->wild) |
| 3078 | node = ebst_lookup(&bind_conf->sni_w_ctx, (char *)sc0->name.key); |
| 3079 | else |
| 3080 | node = ebst_lookup(&bind_conf->sni_ctx, (char *)sc0->name.key); |
| 3081 | |
| 3082 | for (; node; node = ebmb_next_dup(node)) { |
| 3083 | sc1 = ebmb_entry(node, struct sni_ctx, name); |
| 3084 | if (sc1->ctx == sc0->ctx && sc1->conf == sc0->conf |
| 3085 | && sc1->neg == sc0->neg && sc1->wild == sc0->wild) { |
| 3086 | /* it's a duplicate, we should remove and free it */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3087 | LIST_DELETE(&sc0->by_ckch_inst); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3088 | SSL_CTX_free(sc0->ctx); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3089 | ha_free(&sc0); |
William Lallemand | e15029b | 2019-10-14 10:46:58 +0200 | [diff] [blame] | 3090 | break; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3091 | } |
| 3092 | } |
| 3093 | |
| 3094 | /* if duplicate, ignore the insertion */ |
| 3095 | if (!sc0) |
| 3096 | continue; |
| 3097 | |
| 3098 | if (sc0->wild) |
| 3099 | ebst_insert(&bind_conf->sni_w_ctx, &sc0->name); |
| 3100 | else |
| 3101 | ebst_insert(&bind_conf->sni_ctx, &sc0->name); |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3102 | } |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3103 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3104 | /* replace the default_ctx if required with the instance's ctx. */ |
| 3105 | if (ckch_inst->is_default) { |
| 3106 | SSL_CTX_free(bind_conf->default_ctx); |
| 3107 | SSL_CTX_up_ref(ckch_inst->ctx); |
| 3108 | bind_conf->default_ctx = ckch_inst->ctx; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3109 | bind_conf->default_inst = ckch_inst; |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3110 | } |
| 3111 | } |
| 3112 | |
| 3113 | /* |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3114 | * tree used to store the ckchs ordered by filename/bundle name |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3115 | */ |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3116 | struct eb_root ckchs_tree = EB_ROOT_UNIQUE; |
William Lallemand | 6af0399 | 2019-07-23 15:00:54 +0200 | [diff] [blame] | 3117 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3118 | /* tree of crtlist (crt-list/directory) */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3119 | struct eb_root crtlists_tree = EB_ROOT_UNIQUE; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3120 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3121 | /* Loads Diffie-Hellman parameter from a ckchs to an SSL_CTX. |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 3122 | * If there is no DH parameter available in the ckchs, the global |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3123 | * DH parameter is loaded into the SSL_CTX and if there is no |
| 3124 | * DH parameter available in ckchs nor in global, the default |
| 3125 | * DH parameters are applied on the SSL_CTX. |
| 3126 | * Returns a bitfield containing the flags: |
| 3127 | * ERR_FATAL in any fatal error case |
| 3128 | * ERR_ALERT if a reason of the error is availabine in err |
| 3129 | * ERR_WARN if a warning is available into err |
| 3130 | * The value 0 means there is no error nor warning and |
| 3131 | * the operation succeed. |
| 3132 | */ |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3133 | #ifndef OPENSSL_NO_DH |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3134 | static int ssl_sock_load_dh_params(SSL_CTX *ctx, const struct cert_key_and_chain *ckch, |
| 3135 | const char *path, char **err) |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3136 | { |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3137 | int ret = 0; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3138 | DH *dh = NULL; |
| 3139 | |
William Lallemand | a8c7374 | 2019-07-31 18:31:34 +0200 | [diff] [blame] | 3140 | if (ckch && ckch->dh) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3141 | dh = ckch->dh; |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3142 | if (!SSL_CTX_set_tmp_dh(ctx, dh)) { |
| 3143 | memprintf(err, "%sunable to load the DH parameter specified in '%s'", |
| 3144 | err && *err ? *err : "", path); |
| 3145 | #if defined(SSL_CTX_set_dh_auto) |
| 3146 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3147 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3148 | err && *err ? *err : ""); |
| 3149 | #else |
| 3150 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3151 | err && *err ? *err : ""); |
| 3152 | #endif |
| 3153 | ret |= ERR_WARN; |
| 3154 | goto end; |
| 3155 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3156 | |
| 3157 | if (ssl_dh_ptr_index >= 0) { |
| 3158 | /* store a pointer to the DH params to avoid complaining about |
| 3159 | ssl-default-dh-param not being set for this SSL_CTX */ |
| 3160 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, dh); |
| 3161 | } |
| 3162 | } |
| 3163 | else if (global_dh) { |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3164 | if (!SSL_CTX_set_tmp_dh(ctx, global_dh)) { |
| 3165 | memprintf(err, "%sunable to use the global DH parameter for certificate '%s'", |
| 3166 | err && *err ? *err : "", path); |
| 3167 | #if defined(SSL_CTX_set_dh_auto) |
| 3168 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3169 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3170 | err && *err ? *err : ""); |
| 3171 | #else |
| 3172 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3173 | err && *err ? *err : ""); |
| 3174 | #endif |
| 3175 | ret |= ERR_WARN; |
| 3176 | goto end; |
| 3177 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3178 | } |
| 3179 | else { |
| 3180 | /* Clear openssl global errors stack */ |
| 3181 | ERR_clear_error(); |
| 3182 | |
Willy Tarreau | 6d27a92 | 2020-11-05 19:38:05 +0100 | [diff] [blame] | 3183 | if (global_ssl.default_dh_param && global_ssl.default_dh_param <= 1024) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3184 | /* we are limited to DH parameter of 1024 bits anyway */ |
| 3185 | if (local_dh_1024 == NULL) |
| 3186 | local_dh_1024 = ssl_get_dh_1024(); |
| 3187 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3188 | if (local_dh_1024 == NULL) { |
| 3189 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3190 | err && *err ? *err : "", path); |
| 3191 | ret |= ERR_ALERT | ERR_FATAL; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3192 | goto end; |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3193 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3194 | |
Emeric Brun | a9363eb | 2019-10-17 14:53:03 +0200 | [diff] [blame] | 3195 | if (!SSL_CTX_set_tmp_dh(ctx, local_dh_1024)) { |
| 3196 | memprintf(err, "%sunable to load default 1024 bits DH parameter for certificate '%s'.\n", |
| 3197 | err && *err ? *err : "", path); |
| 3198 | #if defined(SSL_CTX_set_dh_auto) |
| 3199 | SSL_CTX_set_dh_auto(ctx, 1); |
| 3200 | memprintf(err, "%s, SSL library will use an automatically generated DH parameter.\n", |
| 3201 | err && *err ? *err : ""); |
| 3202 | #else |
| 3203 | memprintf(err, "%s, DH ciphers won't be available.\n", |
| 3204 | err && *err ? *err : ""); |
| 3205 | #endif |
| 3206 | ret |= ERR_WARN; |
| 3207 | goto end; |
| 3208 | } |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3209 | } |
| 3210 | else { |
| 3211 | SSL_CTX_set_tmp_dh_callback(ctx, ssl_get_tmp_dh); |
| 3212 | } |
William Lallemand | 8d0f893 | 2019-10-17 18:03:58 +0200 | [diff] [blame] | 3213 | } |
| 3214 | |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3215 | end: |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3216 | ERR_clear_error(); |
William Lallemand | f9568fc | 2019-10-16 18:27:58 +0200 | [diff] [blame] | 3217 | return ret; |
| 3218 | } |
Emmanuel Hocdet | 54227d8 | 2019-07-30 17:04:01 +0200 | [diff] [blame] | 3219 | #endif |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3220 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3221 | |
| 3222 | /* Load a certificate chain into an SSL context. |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3223 | * Returns a bitfield containing the flags: |
| 3224 | * ERR_FATAL in any fatal error case |
| 3225 | * ERR_ALERT if the reason of the error is available in err |
| 3226 | * ERR_WARN if a warning is available into err |
| 3227 | * The value 0 means there is no error nor warning and |
| 3228 | * the operation succeed. |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3229 | */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3230 | static int ssl_sock_load_cert_chain(const char *path, const struct cert_key_and_chain *ckch, |
| 3231 | SSL_CTX *ctx, STACK_OF(X509) **find_chain, char **err) |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3232 | { |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3233 | int errcode = 0; |
| 3234 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3235 | if (find_chain == NULL) { |
| 3236 | errcode |= ERR_FATAL; |
| 3237 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3238 | } |
| 3239 | |
| 3240 | if (!SSL_CTX_use_certificate(ctx, ckch->cert)) { |
| 3241 | memprintf(err, "%sunable to load SSL certificate into SSL Context '%s'.\n", |
| 3242 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3243 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3244 | goto end; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3245 | } |
| 3246 | |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3247 | if (ckch->chain) { |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3248 | *find_chain = ckch->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3249 | } else { |
| 3250 | /* Find Certificate Chain in global */ |
| 3251 | struct issuer_chain *issuer; |
Emmanuel Hocdet | ef87e0a | 2020-03-23 11:29:11 +0100 | [diff] [blame] | 3252 | issuer = ssl_get0_issuer_chain(ckch->cert); |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3253 | if (issuer) |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3254 | *find_chain = issuer->chain; |
Emmanuel Hocdet | b90d2cb | 2020-02-18 15:27:32 +0100 | [diff] [blame] | 3255 | } |
William Lallemand | 8588857 | 2020-02-27 14:48:35 +0100 | [diff] [blame] | 3256 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3257 | if (!*find_chain) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3258 | /* always put a null chain stack in the SSL_CTX so it does not |
| 3259 | * try to build the chain from the verify store */ |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3260 | *find_chain = sk_X509_new_null(); |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3261 | } |
| 3262 | |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3263 | /* 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] | 3264 | #ifdef SSL_CTX_set1_chain |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3265 | if (!SSL_CTX_set1_chain(ctx, *find_chain)) { |
William Lallemand | 935d829 | 2020-08-12 20:02:10 +0200 | [diff] [blame] | 3266 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'. Make sure you are linking against Openssl >= 1.0.2.\n", |
| 3267 | err && *err ? *err : "", path); |
| 3268 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3269 | goto end; |
| 3270 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3271 | #else |
| 3272 | { /* legacy compat (< openssl 1.0.2) */ |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3273 | X509 *ca; |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3274 | STACK_OF(X509) *chain; |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3275 | chain = X509_chain_up_ref(*find_chain); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3276 | while ((ca = sk_X509_shift(chain))) |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3277 | if (!SSL_CTX_add_extra_chain_cert(ctx, ca)) { |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3278 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3279 | err && *err ? *err : "", path); |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3280 | X509_free(ca); |
| 3281 | sk_X509_pop_free(chain, X509_free); |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3282 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3283 | goto end; |
| 3284 | } |
Emmanuel Hocdet | 4fed93e | 2020-02-28 16:00:34 +0100 | [diff] [blame] | 3285 | } |
William Lallemand | f187ce6 | 2020-06-02 18:27:20 +0200 | [diff] [blame] | 3286 | #endif |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3287 | |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3288 | #ifdef SSL_CTX_build_cert_chain |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3289 | /* remove the Root CA from the SSL_CTX if the option is activated */ |
| 3290 | if (global_ssl.skip_self_issued_ca) { |
| 3291 | if (!SSL_CTX_build_cert_chain(ctx, SSL_BUILD_CHAIN_FLAG_NO_ROOT|SSL_BUILD_CHAIN_FLAG_UNTRUSTED|SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR)) { |
| 3292 | memprintf(err, "%sunable to load chain certificate into SSL Context '%s'.\n", |
| 3293 | err && *err ? *err : "", path); |
| 3294 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3295 | goto end; |
| 3296 | } |
| 3297 | } |
William Lallemand | 9a1d839 | 2020-08-10 17:28:23 +0200 | [diff] [blame] | 3298 | #endif |
William Lallemand | bf298af | 2020-08-10 16:18:45 +0200 | [diff] [blame] | 3299 | |
Remi Tricot-Le Breton | ec805a3 | 2021-01-25 17:19:42 +0100 | [diff] [blame] | 3300 | end: |
| 3301 | return errcode; |
| 3302 | } |
| 3303 | |
| 3304 | |
| 3305 | /* Loads the info in ckch into ctx |
| 3306 | * Returns a bitfield containing the flags: |
| 3307 | * ERR_FATAL in any fatal error case |
| 3308 | * ERR_ALERT if the reason of the error is available in err |
| 3309 | * ERR_WARN if a warning is available into err |
| 3310 | * The value 0 means there is no error nor warning and |
| 3311 | * the operation succeed. |
| 3312 | */ |
| 3313 | static int ssl_sock_put_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, SSL_CTX *ctx, char **err) |
| 3314 | { |
| 3315 | int errcode = 0; |
| 3316 | STACK_OF(X509) *find_chain = NULL; |
| 3317 | |
| 3318 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3319 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3320 | err && *err ? *err : "", path); |
| 3321 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3322 | return errcode; |
| 3323 | } |
| 3324 | |
| 3325 | /* Load certificate chain */ |
| 3326 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3327 | if (errcode & ERR_CODE) |
| 3328 | goto end; |
| 3329 | |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3330 | #ifndef OPENSSL_NO_DH |
| 3331 | /* store a NULL pointer to indicate we have not yet loaded |
| 3332 | a custom DH param file */ |
| 3333 | if (ssl_dh_ptr_index >= 0) { |
| 3334 | SSL_CTX_set_ex_data(ctx, ssl_dh_ptr_index, NULL); |
| 3335 | } |
| 3336 | |
Emeric Brun | 7a88336 | 2019-10-17 13:27:40 +0200 | [diff] [blame] | 3337 | errcode |= ssl_sock_load_dh_params(ctx, ckch, path, err); |
| 3338 | if (errcode & ERR_CODE) { |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3339 | memprintf(err, "%sunable to load DH parameters from file '%s'.\n", |
| 3340 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3341 | goto end; |
William Lallemand | fa89222 | 2019-07-23 16:06:08 +0200 | [diff] [blame] | 3342 | } |
| 3343 | #endif |
| 3344 | |
Ilya Shipitsin | 7bbf586 | 2021-02-06 18:55:27 +0500 | [diff] [blame] | 3345 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3346 | if (sctl_ex_index >= 0 && ckch->sctl) { |
| 3347 | if (ssl_sock_load_sctl(ctx, ckch->sctl) < 0) { |
| 3348 | 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] | 3349 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3350 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3351 | goto end; |
William Lallemand | a17f411 | 2019-10-10 15:16:44 +0200 | [diff] [blame] | 3352 | } |
| 3353 | } |
| 3354 | #endif |
| 3355 | |
Emmanuel Hocdet | a73a222 | 2020-10-26 13:55:30 +0100 | [diff] [blame] | 3356 | #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] | 3357 | /* Load OCSP Info into context */ |
| 3358 | if (ckch->ocsp_response) { |
Emmanuel Hocdet | 6f507c7 | 2020-02-18 15:56:39 +0100 | [diff] [blame] | 3359 | if (ssl_sock_load_ocsp(ctx, ckch, find_chain) < 0) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 3360 | 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", |
| 3361 | err && *err ? *err : "", path); |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3362 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3363 | goto end; |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3364 | } |
| 3365 | } |
William Lallemand | 246c024 | 2019-10-11 08:59:13 +0200 | [diff] [blame] | 3366 | #endif |
| 3367 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3368 | end: |
| 3369 | return errcode; |
yanbzhu | 488a4d2 | 2015-12-01 15:16:07 -0500 | [diff] [blame] | 3370 | } |
| 3371 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3372 | |
| 3373 | /* Loads the info of a ckch built out of a backend certificate into an SSL ctx |
| 3374 | * Returns a bitfield containing the flags: |
| 3375 | * ERR_FATAL in any fatal error case |
| 3376 | * ERR_ALERT if the reason of the error is available in err |
| 3377 | * ERR_WARN if a warning is available into err |
| 3378 | * The value 0 means there is no error nor warning and |
| 3379 | * the operation succeed. |
| 3380 | */ |
| 3381 | static int ssl_sock_put_srv_ckch_into_ctx(const char *path, const struct cert_key_and_chain *ckch, |
| 3382 | SSL_CTX *ctx, char **err) |
| 3383 | { |
| 3384 | int errcode = 0; |
| 3385 | STACK_OF(X509) *find_chain = NULL; |
| 3386 | |
| 3387 | /* Load the private key */ |
| 3388 | if (SSL_CTX_use_PrivateKey(ctx, ckch->key) <= 0) { |
| 3389 | memprintf(err, "%sunable to load SSL private key into SSL Context '%s'.\n", |
| 3390 | err && *err ? *err : "", path); |
| 3391 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3392 | } |
| 3393 | |
| 3394 | /* Load certificate chain */ |
| 3395 | errcode |= ssl_sock_load_cert_chain(path, ckch, ctx, &find_chain, err); |
| 3396 | if (errcode & ERR_CODE) |
| 3397 | goto end; |
| 3398 | |
| 3399 | if (SSL_CTX_check_private_key(ctx) <= 0) { |
| 3400 | memprintf(err, "%sinconsistencies between private key and certificate loaded from PEM file '%s'.\n", |
| 3401 | err && *err ? *err : "", path); |
| 3402 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3403 | } |
| 3404 | |
| 3405 | end: |
| 3406 | return errcode; |
| 3407 | } |
| 3408 | |
| 3409 | |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3410 | /* |
| 3411 | * This function allocate a ckch_inst and create its snis |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3412 | * |
| 3413 | * Returns a bitfield containing the flags: |
| 3414 | * ERR_FATAL in any fatal error case |
| 3415 | * ERR_ALERT if the reason of the error is available in err |
| 3416 | * ERR_WARN if a warning is available into err |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3417 | */ |
William Lallemand | c756bbd | 2020-05-13 17:23:59 +0200 | [diff] [blame] | 3418 | 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] | 3419 | 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] | 3420 | { |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3421 | SSL_CTX *ctx; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3422 | int i; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3423 | int order = 0; |
| 3424 | X509_NAME *xname; |
| 3425 | char *str; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3426 | EVP_PKEY *pkey; |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3427 | struct pkey_info kinfo = { .sig = TLSEXT_signature_anonymous, .bits = 0 }; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3428 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 3429 | STACK_OF(GENERAL_NAME) *names; |
| 3430 | #endif |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3431 | struct cert_key_and_chain *ckch; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3432 | struct ckch_inst *ckch_inst = NULL; |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3433 | int errcode = 0; |
| 3434 | |
| 3435 | *ckchi = NULL; |
William Lallemand | a59191b | 2019-05-15 16:08:56 +0200 | [diff] [blame] | 3436 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3437 | if (!ckchs || !ckchs->ckch) |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3438 | return ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3439 | |
William Lallemand | e3af8fb | 2019-10-08 11:36:53 +0200 | [diff] [blame] | 3440 | ckch = ckchs->ckch; |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3441 | |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3442 | ctx = SSL_CTX_new(SSLv23_server_method()); |
| 3443 | if (!ctx) { |
| 3444 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3445 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3446 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3447 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3448 | } |
| 3449 | |
Emeric Brun | a96b582 | 2019-10-17 13:25:14 +0200 | [diff] [blame] | 3450 | errcode |= ssl_sock_put_ckch_into_ctx(path, ckch, ctx, err); |
| 3451 | if (errcode & ERR_CODE) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3452 | goto error; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3453 | |
| 3454 | ckch_inst = ckch_inst_new(); |
| 3455 | if (!ckch_inst) { |
| 3456 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3457 | err && *err ? *err : "", path); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3458 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3459 | goto error; |
William Lallemand | c940207 | 2019-05-15 15:33:54 +0200 | [diff] [blame] | 3460 | } |
| 3461 | |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3462 | pkey = X509_get_pubkey(ckch->cert); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3463 | if (pkey) { |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3464 | kinfo.bits = EVP_PKEY_bits(pkey); |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3465 | switch(EVP_PKEY_base_id(pkey)) { |
| 3466 | case EVP_PKEY_RSA: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3467 | kinfo.sig = TLSEXT_signature_rsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3468 | break; |
| 3469 | case EVP_PKEY_EC: |
Emmanuel Hocdet | ddc090b | 2017-10-27 18:43:29 +0200 | [diff] [blame] | 3470 | kinfo.sig = TLSEXT_signature_ecdsa; |
| 3471 | break; |
| 3472 | case EVP_PKEY_DSA: |
| 3473 | kinfo.sig = TLSEXT_signature_dsa; |
Emmanuel Hocdet | 0594211 | 2017-02-20 16:11:50 +0100 | [diff] [blame] | 3474 | break; |
| 3475 | } |
| 3476 | EVP_PKEY_free(pkey); |
| 3477 | } |
| 3478 | |
Emeric Brun | 50bcecc | 2013-04-22 13:05:23 +0200 | [diff] [blame] | 3479 | if (fcount) { |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3480 | while (fcount--) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3481 | 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] | 3482 | if (order < 0) { |
| 3483 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3484 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3485 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3486 | } |
| 3487 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3488 | } |
| 3489 | else { |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3490 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3491 | 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] | 3492 | if (names) { |
| 3493 | for (i = 0; i < sk_GENERAL_NAME_num(names); i++) { |
| 3494 | GENERAL_NAME *name = sk_GENERAL_NAME_value(names, i); |
| 3495 | if (name->type == GEN_DNS) { |
| 3496 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3497 | 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] | 3498 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3499 | if (order < 0) { |
| 3500 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
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 | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3503 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3504 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3505 | } |
| 3506 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3507 | sk_GENERAL_NAME_pop_free(names, GENERAL_NAME_free); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3508 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3509 | #endif /* SSL_CTRL_SET_TLSEXT_HOSTNAME */ |
William Lallemand | 36b8463 | 2019-07-18 19:28:17 +0200 | [diff] [blame] | 3510 | xname = X509_get_subject_name(ckch->cert); |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3511 | i = -1; |
| 3512 | while ((i = X509_NAME_get_index_by_NID(xname, NID_commonName, i)) != -1) { |
| 3513 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(xname, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 3514 | ASN1_STRING *value; |
| 3515 | |
| 3516 | value = X509_NAME_ENTRY_get_data(entry); |
| 3517 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
William Lallemand | 1d29c74 | 2019-10-04 00:53:29 +0200 | [diff] [blame] | 3518 | 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] | 3519 | OPENSSL_free(str); |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3520 | if (order < 0) { |
| 3521 | memprintf(err, "%sunable to create a sni context.\n", err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3522 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3523 | goto error; |
William Lallemand | fe49bb3 | 2019-10-03 23:46:33 +0200 | [diff] [blame] | 3524 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3525 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3526 | } |
| 3527 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3528 | /* we must not free the SSL_CTX anymore below, since it's already in |
| 3529 | * the tree, so it will be discovered and cleaned in time. |
| 3530 | */ |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3531 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3532 | #ifndef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3533 | if (bind_conf->default_ctx) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 3534 | memprintf(err, "%sthis version of openssl cannot load multiple SSL certificates.\n", |
| 3535 | err && *err ? *err : ""); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3536 | errcode |= ERR_ALERT | ERR_FATAL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3537 | goto error; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3538 | } |
| 3539 | #endif |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3540 | if (!bind_conf->default_ctx) { |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 3541 | bind_conf->default_ctx = ctx; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3542 | bind_conf->default_ssl_conf = ssl_conf; |
William Lallemand | 21724f0 | 2019-11-04 17:56:13 +0100 | [diff] [blame] | 3543 | ckch_inst->is_default = 1; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3544 | SSL_CTX_up_ref(ctx); |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 3545 | bind_conf->default_inst = ckch_inst; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 3546 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3547 | |
Remi Tricot-Le Breton | 8218aed | 2021-03-17 14:56:54 +0100 | [diff] [blame] | 3548 | /* Always keep a reference to the newly constructed SSL_CTX in the |
| 3549 | * instance. This way if the instance has no SNIs, the SSL_CTX will |
| 3550 | * still be linked. */ |
| 3551 | SSL_CTX_up_ref(ctx); |
| 3552 | ckch_inst->ctx = ctx; |
| 3553 | |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3554 | /* everything succeed, the ckch instance can be used */ |
| 3555 | ckch_inst->bind_conf = bind_conf; |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 3556 | ckch_inst->ssl_conf = ssl_conf; |
William Lallemand | cfca142 | 2020-03-05 10:17:47 +0100 | [diff] [blame] | 3557 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 9117de9 | 2019-10-04 00:29:42 +0200 | [diff] [blame] | 3558 | |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3559 | SSL_CTX_free(ctx); /* we need to free the ctx since we incremented the refcount where it's used */ |
| 3560 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3561 | *ckchi = ckch_inst; |
| 3562 | return errcode; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3563 | |
| 3564 | error: |
| 3565 | /* free the allocated sni_ctxs */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3566 | if (ckch_inst) { |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 3567 | if (ckch_inst->is_default) |
| 3568 | SSL_CTX_free(ctx); |
| 3569 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3570 | ckch_inst_free(ckch_inst); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3571 | ckch_inst = NULL; |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3572 | } |
William Lallemand | d919937 | 2019-10-04 15:37:05 +0200 | [diff] [blame] | 3573 | SSL_CTX_free(ctx); |
| 3574 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3575 | return errcode; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3576 | } |
| 3577 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3578 | |
| 3579 | /* |
| 3580 | * This function allocate a ckch_inst that will be used on the backend side |
| 3581 | * (server line) |
| 3582 | * |
| 3583 | * Returns a bitfield containing the flags: |
| 3584 | * ERR_FATAL in any fatal error case |
| 3585 | * ERR_ALERT if the reason of the error is available in err |
| 3586 | * ERR_WARN if a warning is available into err |
| 3587 | */ |
| 3588 | 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] | 3589 | struct ckch_inst **ckchi, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3590 | { |
| 3591 | SSL_CTX *ctx; |
| 3592 | struct cert_key_and_chain *ckch; |
| 3593 | struct ckch_inst *ckch_inst = NULL; |
| 3594 | int errcode = 0; |
| 3595 | |
| 3596 | *ckchi = NULL; |
| 3597 | |
| 3598 | if (!ckchs || !ckchs->ckch) |
| 3599 | return ERR_FATAL; |
| 3600 | |
| 3601 | ckch = ckchs->ckch; |
| 3602 | |
| 3603 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 3604 | if (!ctx) { |
| 3605 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3606 | err && *err ? *err : "", path); |
| 3607 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3608 | goto error; |
| 3609 | } |
| 3610 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3611 | errcode |= ssl_sock_put_srv_ckch_into_ctx(path, ckch, ctx, err); |
| 3612 | if (errcode & ERR_CODE) |
| 3613 | goto error; |
| 3614 | |
| 3615 | ckch_inst = ckch_inst_new(); |
| 3616 | if (!ckch_inst) { |
| 3617 | memprintf(err, "%sunable to allocate SSL context for cert '%s'.\n", |
| 3618 | err && *err ? *err : "", path); |
| 3619 | errcode |= ERR_ALERT | ERR_FATAL; |
| 3620 | goto error; |
| 3621 | } |
| 3622 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3623 | /* everything succeed, the ckch instance can be used */ |
| 3624 | ckch_inst->bind_conf = NULL; |
| 3625 | ckch_inst->ssl_conf = NULL; |
| 3626 | ckch_inst->ckch_store = ckchs; |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3627 | ckch_inst->ctx = ctx; |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3628 | ckch_inst->is_server_instance = 1; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3629 | |
| 3630 | *ckchi = ckch_inst; |
| 3631 | return errcode; |
| 3632 | |
| 3633 | error: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3634 | SSL_CTX_free(ctx); |
| 3635 | |
| 3636 | return errcode; |
| 3637 | } |
| 3638 | |
Willy Tarreau | 8c5414a | 2019-10-16 17:06:25 +0200 | [diff] [blame] | 3639 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3640 | static int ssl_sock_load_ckchs(const char *path, struct ckch_store *ckchs, |
| 3641 | struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3642 | char **sni_filter, int fcount, struct ckch_inst **ckch_inst, char **err) |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3643 | { |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3644 | int errcode = 0; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3645 | |
| 3646 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | e7eb1fe | 2020-09-16 16:17:51 +0200 | [diff] [blame] | 3647 | 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] | 3648 | |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3649 | if (errcode & ERR_CODE) |
| 3650 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3651 | |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3652 | ssl_sock_load_cert_sni(*ckch_inst, bind_conf); |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3653 | |
| 3654 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3655 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Emeric Brun | 054563d | 2019-10-17 13:16:58 +0200 | [diff] [blame] | 3656 | return errcode; |
William Lallemand | 614ca0d | 2019-10-07 13:52:11 +0200 | [diff] [blame] | 3657 | } |
| 3658 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3659 | /* This function generates a <struct ckch_inst *> for a <struct server *>, and |
| 3660 | * fill the SSL_CTX of the server. |
| 3661 | * |
| 3662 | * 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] | 3663 | 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] | 3664 | struct server *server, struct ckch_inst **ckch_inst, char **err) |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3665 | { |
| 3666 | int errcode = 0; |
| 3667 | |
| 3668 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 795bd9b | 2021-01-26 11:27:42 +0100 | [diff] [blame] | 3669 | 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] | 3670 | |
| 3671 | if (errcode & ERR_CODE) |
| 3672 | return errcode; |
| 3673 | |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3674 | (*ckch_inst)->server = server; |
| 3675 | /* Keep the reference to the SSL_CTX in the server. */ |
| 3676 | SSL_CTX_up_ref((*ckch_inst)->ctx); |
| 3677 | server->ssl_ctx.ctx = (*ckch_inst)->ctx; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3678 | /* succeed, add the instance to the ckch_store's list of instance */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3679 | LIST_APPEND(&ckchs->ckch_inst, &((*ckch_inst)->by_ckchs)); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3680 | return errcode; |
| 3681 | } |
| 3682 | |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3683 | |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3684 | |
| 3685 | |
| 3686 | /* Make sure openssl opens /dev/urandom before the chroot. The work is only |
| 3687 | * done once. Zero is returned if the operation fails. No error is returned |
| 3688 | * if the random is said as not implemented, because we expect that openssl |
| 3689 | * will use another method once needed. |
| 3690 | */ |
Amaury Denoyelle | c593bcd | 2021-05-19 15:35:29 +0200 | [diff] [blame] | 3691 | int ssl_initialize_random(void) |
William Lallemand | 4c68bba | 2020-03-30 18:45:10 +0200 | [diff] [blame] | 3692 | { |
| 3693 | unsigned char random; |
| 3694 | static int random_initialized = 0; |
| 3695 | |
| 3696 | if (!random_initialized && RAND_bytes(&random, 1) != 0) |
| 3697 | random_initialized = 1; |
| 3698 | |
| 3699 | return random_initialized; |
| 3700 | } |
| 3701 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3702 | /* Load a crt-list file, this is done in 2 parts: |
| 3703 | * - store the content of the file in a crtlist structure with crtlist_entry structures |
| 3704 | * - generate the instances by iterating on entries in the crtlist struct |
| 3705 | * |
| 3706 | * Nothing is locked there, this function is used in the configuration parser. |
| 3707 | * |
| 3708 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3709 | */ |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3710 | 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] | 3711 | { |
| 3712 | struct crtlist *crtlist = NULL; |
| 3713 | struct ebmb_node *eb; |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3714 | struct crtlist_entry *entry = NULL; |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3715 | struct bind_conf_list *bind_conf_node = NULL; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3716 | int cfgerr = 0; |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3717 | char *end; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3718 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3719 | bind_conf_node = malloc(sizeof(*bind_conf_node)); |
| 3720 | if (!bind_conf_node) { |
| 3721 | memprintf(err, "%sCan't alloc memory!\n", err && *err ? *err : ""); |
| 3722 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3723 | goto error; |
| 3724 | } |
| 3725 | bind_conf_node->next = NULL; |
| 3726 | bind_conf_node->bind_conf = bind_conf; |
| 3727 | |
William Lallemand | 41ca930 | 2020-04-08 13:15:18 +0200 | [diff] [blame] | 3728 | /* strip trailing slashes, including first one */ |
| 3729 | for (end = file + strlen(file) - 1; end >= file && *end == '/'; end--) |
| 3730 | *end = 0; |
| 3731 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3732 | /* look for an existing crtlist or create one */ |
| 3733 | eb = ebst_lookup(&crtlists_tree, file); |
| 3734 | if (eb) { |
| 3735 | crtlist = ebmb_entry(eb, struct crtlist, node); |
| 3736 | } else { |
William Lallemand | 6be66ec | 2020-03-06 22:26:32 +0100 | [diff] [blame] | 3737 | /* load a crt-list OR a directory */ |
| 3738 | if (dir) |
| 3739 | cfgerr |= crtlist_load_cert_dir(file, bind_conf, &crtlist, err); |
| 3740 | else |
| 3741 | cfgerr |= crtlist_parse_file(file, bind_conf, curproxy, &crtlist, err); |
| 3742 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3743 | if (!(cfgerr & ERR_CODE)) |
| 3744 | ebst_insert(&crtlists_tree, &crtlist->node); |
| 3745 | } |
| 3746 | |
| 3747 | if (cfgerr & ERR_CODE) { |
| 3748 | cfgerr |= ERR_FATAL | ERR_ALERT; |
| 3749 | goto error; |
| 3750 | } |
| 3751 | |
| 3752 | /* generates ckch instance from the crtlist_entry */ |
| 3753 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3754 | struct ckch_store *store; |
| 3755 | struct ckch_inst *ckch_inst = NULL; |
| 3756 | |
| 3757 | store = entry->node.key; |
| 3758 | cfgerr |= ssl_sock_load_ckchs(store->path, store, bind_conf, entry->ssl_conf, entry->filters, entry->fcount, &ckch_inst, err); |
| 3759 | if (cfgerr & ERR_CODE) { |
| 3760 | memprintf(err, "error processing line %d in file '%s' : %s", entry->linenum, file, *err); |
| 3761 | goto error; |
| 3762 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3763 | LIST_APPEND(&entry->ckch_inst, &ckch_inst->by_crtlist_entry); |
William Lallemand | caa1619 | 2020-04-08 16:29:15 +0200 | [diff] [blame] | 3764 | ckch_inst->crtlist_entry = entry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3765 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3766 | |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3767 | /* add the bind_conf to the list */ |
| 3768 | bind_conf_node->next = crtlist->bind_conf; |
| 3769 | crtlist->bind_conf = bind_conf_node; |
| 3770 | |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3771 | return cfgerr; |
| 3772 | error: |
| 3773 | { |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3774 | struct crtlist_entry *lastentry; |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3775 | struct ckch_inst *inst, *s_inst; |
| 3776 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3777 | lastentry = entry; /* which entry we tried to generate last */ |
| 3778 | if (lastentry) { |
| 3779 | list_for_each_entry(entry, &crtlist->ord_entries, by_crtlist) { |
| 3780 | if (entry == lastentry) /* last entry we tried to generate, no need to go further */ |
| 3781 | break; |
| 3782 | |
| 3783 | 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] | 3784 | |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3785 | /* this was not generated for this bind_conf, skip */ |
| 3786 | if (inst->bind_conf != bind_conf) |
| 3787 | continue; |
| 3788 | |
William Lallemand | d9d5d1b | 2020-04-09 16:31:05 +0200 | [diff] [blame] | 3789 | /* free the sni_ctx and instance */ |
| 3790 | ckch_inst_free(inst); |
William Lallemand | 4939831 | 2020-03-30 17:01:33 +0200 | [diff] [blame] | 3791 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3792 | } |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3793 | } |
William Lallemand | 79d31ec | 2020-03-25 15:10:49 +0100 | [diff] [blame] | 3794 | free(bind_conf_node); |
William Lallemand | 2954c47 | 2020-03-06 21:54:13 +0100 | [diff] [blame] | 3795 | } |
Emmanuel Hocdet | fe61656 | 2013-01-22 15:31:15 +0100 | [diff] [blame] | 3796 | return cfgerr; |
| 3797 | } |
| 3798 | |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3799 | /* Returns a set of ERR_* flags possibly with an error in <err>. */ |
| 3800 | int ssl_sock_load_cert(char *path, struct bind_conf *bind_conf, char **err) |
| 3801 | { |
| 3802 | struct stat buf; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3803 | int cfgerr = 0; |
| 3804 | struct ckch_store *ckchs; |
William Lallemand | 24bde43 | 2020-03-09 16:48:43 +0100 | [diff] [blame] | 3805 | struct ckch_inst *ckch_inst = NULL; |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3806 | int found = 0; /* did we found a file to load ? */ |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3807 | |
| 3808 | if ((ckchs = ckchs_lookup(path))) { |
| 3809 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3810 | cfgerr |= ssl_sock_load_ckchs(path, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3811 | found++; |
| 3812 | } else if (stat(path, &buf) == 0) { |
| 3813 | found++; |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3814 | if (S_ISDIR(buf.st_mode) == 0) { |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3815 | ckchs = ckchs_load_cert_file(path, err); |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3816 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3817 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3818 | 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] | 3819 | } else { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3820 | 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] | 3821 | } |
| 3822 | } else { |
| 3823 | /* stat failed, could be a bundle */ |
| 3824 | if (global_ssl.extra_files & SSL_GF_BUNDLE) { |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3825 | char fp[MAXPATHLEN+1] = {0}; |
| 3826 | int n = 0; |
| 3827 | |
| 3828 | /* Load all possible certs and keys in separate ckch_store */ |
| 3829 | for (n = 0; n < SSL_SOCK_NUM_KEYTYPES; n++) { |
| 3830 | struct stat buf; |
| 3831 | int ret; |
| 3832 | |
| 3833 | ret = snprintf(fp, sizeof(fp), "%s.%s", path, SSL_SOCK_KEYTYPE_NAMES[n]); |
| 3834 | if (ret > sizeof(fp)) |
| 3835 | continue; |
| 3836 | |
| 3837 | if ((ckchs = ckchs_lookup(fp))) { |
| 3838 | 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] | 3839 | found++; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3840 | } else { |
| 3841 | if (stat(fp, &buf) == 0) { |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3842 | found++; |
William Lallemand | bd8e6ed | 2020-09-16 16:08:08 +0200 | [diff] [blame] | 3843 | ckchs = ckchs_load_cert_file(fp, err); |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3844 | if (!ckchs) |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3845 | cfgerr |= ERR_ALERT | ERR_FATAL; |
William Lallemand | dfa93be | 2020-09-16 14:48:52 +0200 | [diff] [blame] | 3846 | cfgerr |= ssl_sock_load_ckchs(fp, ckchs, bind_conf, NULL, NULL, 0, &ckch_inst, err); |
| 3847 | } |
| 3848 | } |
| 3849 | } |
William Lallemand | b7fdfdf | 2020-12-04 15:45:02 +0100 | [diff] [blame] | 3850 | #if HA_OPENSSL_VERSION_NUMBER < 0x10101000L |
| 3851 | if (found) { |
| 3852 | memprintf(err, "%sCan't load '%s'. Loading a multi certificates bundle requires OpenSSL >= 1.1.1\n", |
| 3853 | err && *err ? *err : "", path); |
| 3854 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3855 | } |
| 3856 | #endif |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3857 | } |
| 3858 | } |
William Lallemand | 06ce84a | 2020-11-20 15:36:13 +0100 | [diff] [blame] | 3859 | if (!found) { |
| 3860 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3861 | err && *err ? *err : "", path, strerror(errno)); |
| 3862 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3863 | } |
William Lallemand | 06b22a8 | 2020-03-16 14:45:55 +0100 | [diff] [blame] | 3864 | |
| 3865 | return cfgerr; |
| 3866 | } |
| 3867 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3868 | |
| 3869 | /* Create a full ssl context and ckch instance that will be used for a specific |
| 3870 | * backend server (server configuration line). |
| 3871 | * Returns a set of ERR_* flags possibly with an error in <err>. |
| 3872 | */ |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 3873 | 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] | 3874 | { |
| 3875 | struct stat buf; |
| 3876 | int cfgerr = 0; |
| 3877 | struct ckch_store *ckchs; |
| 3878 | int found = 0; /* did we found a file to load ? */ |
| 3879 | |
| 3880 | if ((ckchs = ckchs_lookup(path))) { |
| 3881 | /* we found the ckchs in the tree, we can use it directly */ |
William Lallemand | db26e2b | 2021-01-26 12:01:46 +0100 | [diff] [blame] | 3882 | 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] | 3883 | found++; |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 3884 | } else { |
| 3885 | if (!create_if_none) { |
| 3886 | memprintf(err, "%sunable to stat SSL certificate '%s'.\n", |
| 3887 | err && *err ? *err : "", path); |
| 3888 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3889 | goto out; |
| 3890 | } |
| 3891 | |
| 3892 | if (stat(path, &buf) == 0) { |
| 3893 | /* We do not manage directories on backend side. */ |
| 3894 | if (S_ISDIR(buf.st_mode) == 0) { |
| 3895 | ++found; |
| 3896 | ckchs = ckchs_load_cert_file(path, err); |
| 3897 | if (!ckchs) |
| 3898 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3899 | cfgerr |= ssl_sock_load_srv_ckchs(path, ckchs, server, &server->ssl_ctx.inst, err); |
| 3900 | } |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3901 | } |
| 3902 | } |
| 3903 | if (!found) { |
| 3904 | memprintf(err, "%sunable to stat SSL certificate from file '%s' : %s.\n", |
| 3905 | err && *err ? *err : "", path, strerror(errno)); |
| 3906 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 3907 | } |
| 3908 | |
Amaury Denoyelle | 36aa451 | 2021-05-21 16:22:11 +0200 | [diff] [blame] | 3909 | out: |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 3910 | return cfgerr; |
| 3911 | } |
| 3912 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3913 | /* Create an initial CTX used to start the SSL connection before switchctx */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3914 | static int |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 3915 | ssl_sock_initial_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3916 | { |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3917 | SSL_CTX *ctx = NULL; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3918 | long options = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3919 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 3920 | SSL_OP_NO_SSLv2 | |
| 3921 | SSL_OP_NO_COMPRESSION | |
Emeric Brun | a4bcd9a | 2012-09-20 16:19:02 +0200 | [diff] [blame] | 3922 | SSL_OP_SINGLE_DH_USE | |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 3923 | SSL_OP_SINGLE_ECDH_USE | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3924 | SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION | |
Lukas Tribus | 926594f | 2018-05-18 17:55:57 +0200 | [diff] [blame] | 3925 | SSL_OP_PRIORITIZE_CHACHA | |
Emeric Brun | 3c4bc6e | 2012-10-04 18:44:19 +0200 | [diff] [blame] | 3926 | SSL_OP_CIPHER_SERVER_PREFERENCE; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3927 | long mode = |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 3928 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 3929 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
Willy Tarreau | 396a186 | 2014-11-13 14:06:52 +0100 | [diff] [blame] | 3930 | SSL_MODE_RELEASE_BUFFERS | |
| 3931 | SSL_MODE_SMALL_BUFFERS; |
Emmanuel Hocdet | 4366476 | 2017-08-09 18:26:20 +0200 | [diff] [blame] | 3932 | 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] | 3933 | int i, min, max, hole; |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3934 | int flags = MC_SSL_O_ALL; |
| 3935 | int cfgerr = 0; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3936 | const int default_min_ver = CONF_TLSV12; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 3937 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3938 | ctx = SSL_CTX_new(SSLv23_server_method()); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3939 | bind_conf->initial_ctx = ctx; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3940 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3941 | 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] | 3942 | ha_warning("Proxy '%s': no-sslv3/no-tlsv1x are ignored for bind '%s' at [%s:%d]. " |
| 3943 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3944 | 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] | 3945 | else |
| 3946 | flags = conf_ssl_methods->flags; |
| 3947 | |
Emmanuel Hocdet | bd695fe | 2017-05-15 15:53:41 +0200 | [diff] [blame] | 3948 | min = conf_ssl_methods->min; |
| 3949 | max = conf_ssl_methods->max; |
William Lallemand | 50df1cb | 2020-06-02 10:52:24 +0200 | [diff] [blame] | 3950 | |
| 3951 | /* default minimum is TLSV12, */ |
| 3952 | if (!min) { |
| 3953 | if (!max || (max >= default_min_ver)) { |
| 3954 | min = default_min_ver; |
| 3955 | } else { |
| 3956 | 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). " |
| 3957 | "Setting the ssl-min-ver to %s. Use 'ssl-min-ver' to fix this.\n", |
| 3958 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, methodVersions[default_min_ver].name, methodVersions[max].name); |
| 3959 | min = max; |
| 3960 | } |
| 3961 | } |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3962 | /* 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] | 3963 | if (min) |
| 3964 | flags |= (methodVersions[min].flag - 1); |
| 3965 | if (max) |
| 3966 | flags |= ~((methodVersions[max].flag << 1) - 1); |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 3967 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3968 | min = max = CONF_TLSV_NONE; |
| 3969 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3970 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3971 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3972 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3973 | if (min) { |
| 3974 | if (hole) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3975 | ha_warning("Proxy '%s': SSL/TLS versions range not contiguous for bind '%s' at [%s:%d]. " |
| 3976 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 3977 | bind_conf->frontend->id, bind_conf->arg, bind_conf->file, bind_conf->line, |
| 3978 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3979 | hole = 0; |
| 3980 | } |
| 3981 | max = i; |
| 3982 | } |
| 3983 | else { |
| 3984 | min = max = i; |
| 3985 | } |
| 3986 | } |
| 3987 | else { |
| 3988 | if (min) |
| 3989 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 3990 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 3991 | if (!min) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3992 | ha_alert("Proxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 3993 | 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] | 3994 | cfgerr += 1; |
| 3995 | } |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 3996 | /* save real min/max in bind_conf */ |
| 3997 | conf_ssl_methods->min = min; |
| 3998 | conf_ssl_methods->max = max; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 3999 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4000 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4001 | /* 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] | 4002 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4003 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4004 | methodVersions[min].ctx_set_version(ctx, SET_SERVER); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4005 | else |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4006 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) { |
| 4007 | /* clear every version flags in case SSL_CTX_new() |
| 4008 | * returns an SSL_CTX with disabled versions */ |
| 4009 | SSL_CTX_clear_options(ctx, methodVersions[i].option); |
| 4010 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4011 | if (flags & methodVersions[i].flag) |
| 4012 | options |= methodVersions[i].option; |
William Lallemand | d0712f3 | 2020-06-11 17:34:00 +0200 | [diff] [blame] | 4013 | |
| 4014 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4015 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4016 | /* 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] | 4017 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4018 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emeric Brun | fa5c5c8 | 2017-04-28 16:19:51 +0200 | [diff] [blame] | 4019 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4020 | |
| 4021 | if (bind_conf->ssl_options & BC_SSL_O_NO_TLS_TICKETS) |
| 4022 | options |= SSL_OP_NO_TICKET; |
| 4023 | if (bind_conf->ssl_options & BC_SSL_O_PREF_CLIE_CIPH) |
| 4024 | options &= ~SSL_OP_CIPHER_SERVER_PREFERENCE; |
Dirkjan Bussink | 526894f | 2019-01-21 09:35:03 -0800 | [diff] [blame] | 4025 | |
| 4026 | #ifdef SSL_OP_NO_RENEGOTIATION |
| 4027 | options |= SSL_OP_NO_RENEGOTIATION; |
| 4028 | #endif |
| 4029 | |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4030 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4031 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4032 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4033 | if (global_ssl.async) |
| 4034 | mode |= SSL_MODE_ASYNC; |
| 4035 | #endif |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4036 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4037 | if (global_ssl.life_time) |
| 4038 | SSL_CTX_set_timeout(ctx, global_ssl.life_time); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4039 | |
| 4040 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 4041 | #ifdef OPENSSL_IS_BORINGSSL |
| 4042 | SSL_CTX_set_select_certificate_cb(ctx, ssl_sock_switchctx_cbk); |
| 4043 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Ilya Shipitsin | e9ff899 | 2020-01-19 12:20:14 +0500 | [diff] [blame] | 4044 | #elif defined(SSL_OP_NO_ANTI_REPLAY) |
Olivier Houchard | 545989f | 2019-12-17 15:39:54 +0100 | [diff] [blame] | 4045 | if (bind_conf->ssl_conf.early_data) |
Olivier Houchard | 51088ce | 2019-01-02 18:46:41 +0100 | [diff] [blame] | 4046 | SSL_CTX_set_options(ctx, SSL_OP_NO_ANTI_REPLAY); |
Emmanuel Hocdet | 84e417d | 2017-08-16 11:33:17 +0200 | [diff] [blame] | 4047 | SSL_CTX_set_client_hello_cb(ctx, ssl_sock_switchctx_cbk, NULL); |
| 4048 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_err_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4049 | #else |
| 4050 | SSL_CTX_set_tlsext_servername_callback(ctx, ssl_sock_switchctx_cbk); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4051 | #endif |
Emmanuel Hocdet | 253c62b | 2017-08-14 11:01:25 +0200 | [diff] [blame] | 4052 | SSL_CTX_set_tlsext_servername_arg(ctx, bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 4053 | #endif |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4054 | return cfgerr; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4055 | } |
| 4056 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4057 | |
| 4058 | static inline void sh_ssl_sess_free_blocks(struct shared_block *first, struct shared_block *block) |
| 4059 | { |
| 4060 | if (first == block) { |
| 4061 | struct sh_ssl_sess_hdr *sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4062 | if (first->len > 0) |
| 4063 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
| 4064 | } |
| 4065 | } |
| 4066 | |
| 4067 | /* return first block from sh_ssl_sess */ |
| 4068 | static inline struct shared_block *sh_ssl_sess_first_block(struct sh_ssl_sess_hdr *sh_ssl_sess) |
| 4069 | { |
| 4070 | return (struct shared_block *)((unsigned char *)sh_ssl_sess - ((struct shared_block *)NULL)->data); |
| 4071 | |
| 4072 | } |
| 4073 | |
| 4074 | /* store a session into the cache |
| 4075 | * s_id : session id padded with zero to SSL_MAX_SSL_SESSION_ID_LENGTH |
| 4076 | * data: asn1 encoded session |
| 4077 | * data_len: asn1 encoded session length |
| 4078 | * Returns 1 id session was stored (else 0) |
| 4079 | */ |
| 4080 | static int sh_ssl_sess_store(unsigned char *s_id, unsigned char *data, int data_len) |
| 4081 | { |
| 4082 | struct shared_block *first; |
| 4083 | struct sh_ssl_sess_hdr *sh_ssl_sess, *oldsh_ssl_sess; |
| 4084 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4085 | 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] | 4086 | if (!first) { |
| 4087 | /* Could not retrieve enough free blocks to store that session */ |
| 4088 | return 0; |
| 4089 | } |
| 4090 | |
| 4091 | /* STORE the key in the first elem */ |
| 4092 | sh_ssl_sess = (struct sh_ssl_sess_hdr *)first->data; |
| 4093 | memcpy(sh_ssl_sess->key_data, s_id, SSL_MAX_SSL_SESSION_ID_LENGTH); |
| 4094 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4095 | |
| 4096 | /* it returns the already existing node |
| 4097 | or current node if none, never returns null */ |
| 4098 | oldsh_ssl_sess = sh_ssl_sess_tree_insert(sh_ssl_sess); |
| 4099 | if (oldsh_ssl_sess != sh_ssl_sess) { |
| 4100 | /* NOTE: Row couldn't be in use because we lock read & write function */ |
| 4101 | /* release the reserved row */ |
| 4102 | shctx_row_dec_hot(ssl_shctx, first); |
| 4103 | /* replace the previous session already in the tree */ |
| 4104 | sh_ssl_sess = oldsh_ssl_sess; |
| 4105 | /* ignore the previous session data, only use the header */ |
| 4106 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
| 4107 | shctx_row_inc_hot(ssl_shctx, first); |
| 4108 | first->len = sizeof(struct sh_ssl_sess_hdr); |
| 4109 | } |
| 4110 | |
Frédéric Lécaille | 0bec807 | 2018-10-22 17:55:57 +0200 | [diff] [blame] | 4111 | 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] | 4112 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4113 | return 0; |
William Lallemand | 99b90af | 2018-01-03 19:15:51 +0100 | [diff] [blame] | 4114 | } |
| 4115 | |
| 4116 | shctx_row_dec_hot(ssl_shctx, first); |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4117 | |
| 4118 | return 1; |
| 4119 | } |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4120 | |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4121 | /* SSL callback used when a new session is created while connecting to a server */ |
| 4122 | static int ssl_sess_new_srv_cb(SSL *ssl, SSL_SESSION *sess) |
| 4123 | { |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 4124 | struct connection *conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4125 | struct server *s; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4126 | |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4127 | s = __objt_server(conn->target); |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4128 | |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4129 | /* RWLOCK: only read lock the SSL cache even when writing in it because there is |
| 4130 | * one cache per thread, it only prevents to flush it from the CLI in |
| 4131 | * another thread */ |
| 4132 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4133 | if (!(s->ssl_ctx.options & SRV_SSL_O_NO_REUSE)) { |
| 4134 | int len; |
| 4135 | unsigned char *ptr; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4136 | const char *sni; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4137 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4138 | len = i2d_SSL_SESSION(sess, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4139 | sni = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4140 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4141 | if (s->ssl_ctx.reused_sess[tid].ptr && s->ssl_ctx.reused_sess[tid].allocated_size >= len) { |
| 4142 | ptr = s->ssl_ctx.reused_sess[tid].ptr; |
| 4143 | } else { |
Willy Tarreau | 3bda3f4 | 2021-02-26 21:05:08 +0100 | [diff] [blame] | 4144 | ptr = realloc(s->ssl_ctx.reused_sess[tid].ptr, len); |
| 4145 | s->ssl_ctx.reused_sess[tid].ptr = ptr; |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4146 | s->ssl_ctx.reused_sess[tid].allocated_size = len; |
| 4147 | } |
| 4148 | if (s->ssl_ctx.reused_sess[tid].ptr) { |
| 4149 | s->ssl_ctx.reused_sess[tid].size = i2d_SSL_SESSION(sess, |
| 4150 | &ptr); |
| 4151 | } |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 4152 | |
| 4153 | if (s->ssl_ctx.reused_sess[tid].sni) { |
| 4154 | /* if the new sni is empty or isn' t the same as the old one */ |
| 4155 | if ((!sni) || strcmp(s->ssl_ctx.reused_sess[tid].sni, sni) != 0) { |
| 4156 | ha_free(&s->ssl_ctx.reused_sess[tid].sni); |
| 4157 | if (sni) |
| 4158 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4159 | } |
| 4160 | } else if (sni) { |
| 4161 | /* if there wasn't an old sni but there is a new one */ |
| 4162 | s->ssl_ctx.reused_sess[tid].sni = strdup(sni); |
| 4163 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4164 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4165 | } else { |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4166 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 4167 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 4168 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4169 | } |
| 4170 | |
| 4171 | return 0; |
Olivier Houchard | bd84ac8 | 2017-11-03 13:43:35 +0100 | [diff] [blame] | 4172 | } |
| 4173 | |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4174 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4175 | /* SSL callback used on new session creation */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4176 | int sh_ssl_sess_new_cb(SSL *ssl, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4177 | { |
| 4178 | unsigned char encsess[SHSESS_MAX_DATA_LEN]; /* encoded session */ |
| 4179 | unsigned char encid[SSL_MAX_SSL_SESSION_ID_LENGTH]; /* encoded id */ |
| 4180 | unsigned char *p; |
| 4181 | int data_len; |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4182 | unsigned int sid_length; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4183 | const unsigned char *sid_data; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4184 | |
| 4185 | /* 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] | 4186 | * so we don't store it to keep size. |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4187 | * note: SSL_SESSION_set1_id is using |
| 4188 | * a memcpy so we need to use a different pointer |
| 4189 | * than sid_data or sid_ctx_data to avoid valgrind |
| 4190 | * complaining. |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4191 | */ |
| 4192 | |
| 4193 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4194 | |
| 4195 | /* copy value in an other buffer */ |
| 4196 | memcpy(encid, sid_data, sid_length); |
| 4197 | |
| 4198 | /* pad with 0 */ |
| 4199 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) |
| 4200 | memset(encid + sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH-sid_length); |
| 4201 | |
| 4202 | /* force length to zero to avoid ASN1 encoding */ |
| 4203 | SSL_SESSION_set1_id(sess, encid, 0); |
| 4204 | |
| 4205 | /* force length to zero to avoid ASN1 encoding */ |
| 4206 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, 0); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4207 | |
| 4208 | /* check if buffer is large enough for the ASN1 encoded session */ |
| 4209 | data_len = i2d_SSL_SESSION(sess, NULL); |
| 4210 | if (data_len > SHSESS_MAX_DATA_LEN) |
| 4211 | goto err; |
| 4212 | |
| 4213 | p = encsess; |
| 4214 | |
| 4215 | /* process ASN1 session encoding before the lock */ |
| 4216 | i2d_SSL_SESSION(sess, &p); |
| 4217 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4218 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4219 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4220 | /* store to cache */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4221 | sh_ssl_sess_store(encid, encsess, data_len); |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4222 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4223 | err: |
| 4224 | /* reset original length values */ |
Emeric Brun | eb46965 | 2019-10-08 18:27:37 +0200 | [diff] [blame] | 4225 | SSL_SESSION_set1_id(sess, encid, sid_length); |
| 4226 | 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] | 4227 | |
| 4228 | return 0; /* do not increment session reference count */ |
| 4229 | } |
| 4230 | |
| 4231 | /* 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] | 4232 | 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] | 4233 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4234 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4235 | unsigned char data[SHSESS_MAX_DATA_LEN], *p; |
| 4236 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4237 | SSL_SESSION *sess; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4238 | struct shared_block *first; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4239 | |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4240 | _HA_ATOMIC_INC(&global.shctx_lookups); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4241 | |
| 4242 | /* allow the session to be freed automatically by openssl */ |
| 4243 | *do_copy = 0; |
| 4244 | |
| 4245 | /* tree key is zeros padded sessionid */ |
| 4246 | if (key_len < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4247 | memcpy(tmpkey, key, key_len); |
| 4248 | memset(tmpkey + key_len, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - key_len); |
| 4249 | key = tmpkey; |
| 4250 | } |
| 4251 | |
| 4252 | /* lock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4253 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4254 | |
| 4255 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4256 | sh_ssl_sess = sh_ssl_sess_tree_lookup(key); |
| 4257 | if (!sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4258 | /* no session found: unlock cache and exit */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4259 | shctx_unlock(ssl_shctx); |
Willy Tarreau | 4c19e99 | 2021-06-15 16:39:22 +0200 | [diff] [blame] | 4260 | _HA_ATOMIC_INC(&global.shctx_misses); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4261 | return NULL; |
| 4262 | } |
| 4263 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4264 | /* sh_ssl_sess (shared_block->data) is at the end of shared_block */ |
| 4265 | first = sh_ssl_sess_first_block(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4266 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4267 | 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] | 4268 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4269 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4270 | |
| 4271 | /* decode ASN1 session */ |
| 4272 | p = data; |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4273 | 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] | 4274 | /* Reset session id and session id contenxt */ |
| 4275 | if (sess) { |
| 4276 | SSL_SESSION_set1_id(sess, key, key_len); |
| 4277 | SSL_SESSION_set1_id_context(sess, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4278 | } |
| 4279 | |
| 4280 | return sess; |
| 4281 | } |
| 4282 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4283 | |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4284 | /* 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] | 4285 | void sh_ssl_sess_remove_cb(SSL_CTX *ctx, SSL_SESSION *sess) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4286 | { |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4287 | struct sh_ssl_sess_hdr *sh_ssl_sess; |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4288 | unsigned char tmpkey[SSL_MAX_SSL_SESSION_ID_LENGTH]; |
| 4289 | unsigned int sid_length; |
| 4290 | const unsigned char *sid_data; |
| 4291 | (void)ctx; |
| 4292 | |
| 4293 | sid_data = SSL_SESSION_get_id(sess, &sid_length); |
| 4294 | /* tree key is zeros padded sessionid */ |
| 4295 | if (sid_length < SSL_MAX_SSL_SESSION_ID_LENGTH) { |
| 4296 | memcpy(tmpkey, sid_data, sid_length); |
| 4297 | memset(tmpkey+sid_length, 0, SSL_MAX_SSL_SESSION_ID_LENGTH - sid_length); |
| 4298 | sid_data = tmpkey; |
| 4299 | } |
| 4300 | |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4301 | shctx_lock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4302 | |
| 4303 | /* lookup for session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4304 | sh_ssl_sess = sh_ssl_sess_tree_lookup(sid_data); |
| 4305 | if (sh_ssl_sess) { |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4306 | /* free session */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4307 | sh_ssl_sess_tree_delete(sh_ssl_sess); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4308 | } |
| 4309 | |
| 4310 | /* unlock cache */ |
William Lallemand | a3c77cf | 2017-10-30 23:44:40 +0100 | [diff] [blame] | 4311 | shctx_unlock(ssl_shctx); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4312 | } |
| 4313 | |
| 4314 | /* Set session cache mode to server and disable openssl internal cache. |
| 4315 | * Set shared cache callbacks on an ssl context. |
| 4316 | * Shared context MUST be firstly initialized */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4317 | void ssl_set_shctx(SSL_CTX *ctx) |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4318 | { |
| 4319 | SSL_CTX_set_session_id_context(ctx, (const unsigned char *)SHCTX_APPNAME, strlen(SHCTX_APPNAME)); |
| 4320 | |
| 4321 | if (!ssl_shctx) { |
| 4322 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_OFF); |
| 4323 | return; |
| 4324 | } |
| 4325 | |
| 4326 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_SERVER | |
| 4327 | SSL_SESS_CACHE_NO_INTERNAL | |
| 4328 | SSL_SESS_CACHE_NO_AUTO_CLEAR); |
| 4329 | |
| 4330 | /* Set callbacks */ |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4331 | SSL_CTX_sess_set_new_cb(ctx, sh_ssl_sess_new_cb); |
| 4332 | SSL_CTX_sess_set_get_cb(ctx, sh_ssl_sess_get_cb); |
| 4333 | SSL_CTX_sess_set_remove_cb(ctx, sh_ssl_sess_remove_cb); |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4334 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4335 | |
| 4336 | /* |
| 4337 | * https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format |
| 4338 | * |
| 4339 | * The format is: |
| 4340 | * * <Label> <space> <ClientRandom> <space> <Secret> |
| 4341 | * We only need to copy the secret as there is a sample fetch for the ClientRandom |
| 4342 | */ |
| 4343 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4344 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4345 | void SSL_CTX_keylog(const SSL *ssl, const char *line) |
| 4346 | { |
| 4347 | struct ssl_keylog *keylog; |
| 4348 | char *lastarg = NULL; |
| 4349 | char *dst = NULL; |
| 4350 | |
| 4351 | keylog = SSL_get_ex_data(ssl, ssl_keylog_index); |
| 4352 | if (!keylog) |
| 4353 | return; |
| 4354 | |
| 4355 | lastarg = strrchr(line, ' '); |
| 4356 | if (lastarg == NULL || ++lastarg == NULL) |
| 4357 | return; |
| 4358 | |
| 4359 | dst = pool_alloc(pool_head_ssl_keylog_str); |
| 4360 | if (!dst) |
| 4361 | return; |
| 4362 | |
| 4363 | strncpy(dst, lastarg, SSL_KEYLOG_MAX_SECRET_SIZE-1); |
| 4364 | dst[SSL_KEYLOG_MAX_SECRET_SIZE-1] = '\0'; |
| 4365 | |
| 4366 | if (strncmp(line, "CLIENT_RANDOM ", strlen("CLIENT RANDOM ")) == 0) { |
| 4367 | if (keylog->client_random) |
| 4368 | goto error; |
| 4369 | keylog->client_random = dst; |
| 4370 | |
| 4371 | } else if (strncmp(line, "CLIENT_EARLY_TRAFFIC_SECRET ", strlen("CLIENT_EARLY_TRAFFIC_SECRET ")) == 0) { |
| 4372 | if (keylog->client_early_traffic_secret) |
| 4373 | goto error; |
| 4374 | keylog->client_early_traffic_secret = dst; |
| 4375 | |
| 4376 | } else if (strncmp(line, "CLIENT_HANDSHAKE_TRAFFIC_SECRET ", strlen("CLIENT_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4377 | if(keylog->client_handshake_traffic_secret) |
| 4378 | goto error; |
| 4379 | keylog->client_handshake_traffic_secret = dst; |
| 4380 | |
| 4381 | } else if (strncmp(line, "SERVER_HANDSHAKE_TRAFFIC_SECRET ", strlen("SERVER_HANDSHAKE_TRAFFIC_SECRET ")) == 0) { |
| 4382 | if (keylog->server_handshake_traffic_secret) |
| 4383 | goto error; |
| 4384 | keylog->server_handshake_traffic_secret = dst; |
| 4385 | |
| 4386 | } else if (strncmp(line, "CLIENT_TRAFFIC_SECRET_0 ", strlen("CLIENT_TRAFFIC_SECRET_0 ")) == 0) { |
| 4387 | if (keylog->client_traffic_secret_0) |
| 4388 | goto error; |
| 4389 | keylog->client_traffic_secret_0 = dst; |
| 4390 | |
| 4391 | } else if (strncmp(line, "SERVER_TRAFFIC_SECRET_0 ", strlen("SERVER_TRAFFIC_SECRET_0 ")) == 0) { |
| 4392 | if (keylog->server_traffic_secret_0) |
| 4393 | goto error; |
| 4394 | keylog->server_traffic_secret_0 = dst; |
| 4395 | |
| 4396 | } else if (strncmp(line, "EARLY_EXPORTER_SECRET ", strlen("EARLY_EXPORTER_SECRET ")) == 0) { |
| 4397 | if (keylog->early_exporter_secret) |
| 4398 | goto error; |
| 4399 | keylog->early_exporter_secret = dst; |
| 4400 | |
| 4401 | } else if (strncmp(line, "EXPORTER_SECRET ", strlen("EXPORTER_SECRET ")) == 0) { |
| 4402 | if (keylog->exporter_secret) |
| 4403 | goto error; |
| 4404 | keylog->exporter_secret = dst; |
| 4405 | } else { |
| 4406 | goto error; |
| 4407 | } |
| 4408 | |
| 4409 | return; |
| 4410 | |
| 4411 | error: |
| 4412 | pool_free(pool_head_ssl_keylog_str, dst); |
| 4413 | |
| 4414 | return; |
| 4415 | } |
| 4416 | #endif |
William Lallemand | ed0b5ad | 2017-10-30 19:36:36 +0100 | [diff] [blame] | 4417 | |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 4418 | /* |
| 4419 | * This function applies the SSL configuration on a SSL_CTX |
| 4420 | * It returns an error code and fills the <err> buffer |
| 4421 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4422 | 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] | 4423 | { |
| 4424 | struct proxy *curproxy = bind_conf->frontend; |
| 4425 | int cfgerr = 0; |
| 4426 | int verify = SSL_VERIFY_NONE; |
Willy Tarreau | 5d4cafb | 2018-01-04 18:55:19 +0100 | [diff] [blame] | 4427 | struct ssl_bind_conf __maybe_unused *ssl_conf_cur; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4428 | const char *conf_ciphers; |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4429 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4430 | const char *conf_ciphersuites; |
| 4431 | #endif |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4432 | const char *conf_curves = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4433 | |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4434 | if (ssl_conf) { |
| 4435 | struct tls_version_filter *conf_ssl_methods = &ssl_conf->ssl_methods; |
| 4436 | int i, min, max; |
| 4437 | int flags = MC_SSL_O_ALL; |
| 4438 | |
| 4439 | /* 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] | 4440 | min = conf_ssl_methods->min ? conf_ssl_methods->min : bind_conf->ssl_conf.ssl_methods.min; |
| 4441 | 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] | 4442 | if (min) |
| 4443 | flags |= (methodVersions[min].flag - 1); |
| 4444 | if (max) |
| 4445 | flags |= ~((methodVersions[max].flag << 1) - 1); |
| 4446 | min = max = CONF_TLSV_NONE; |
| 4447 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4448 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
| 4449 | if (min) |
| 4450 | max = i; |
| 4451 | else |
| 4452 | min = max = i; |
| 4453 | } |
| 4454 | /* save real min/max */ |
| 4455 | conf_ssl_methods->min = min; |
| 4456 | conf_ssl_methods->max = max; |
| 4457 | if (!min) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4458 | memprintf(err, "%sProxy '%s': all SSL/TLS versions are disabled for bind '%s' at [%s:%d].\n", |
| 4459 | 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] | 4460 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | df701a2 | 2017-05-18 12:46:50 +0200 | [diff] [blame] | 4461 | } |
| 4462 | } |
| 4463 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4464 | 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] | 4465 | case SSL_SOCK_VERIFY_NONE: |
| 4466 | verify = SSL_VERIFY_NONE; |
| 4467 | break; |
| 4468 | case SSL_SOCK_VERIFY_OPTIONAL: |
| 4469 | verify = SSL_VERIFY_PEER; |
| 4470 | break; |
| 4471 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4472 | verify = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT; |
| 4473 | break; |
| 4474 | } |
| 4475 | SSL_CTX_set_verify(ctx, verify, ssl_sock_bind_verifycbk); |
| 4476 | if (verify & SSL_VERIFY_PEER) { |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4477 | 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] | 4478 | 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] | 4479 | 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] | 4480 | if (ca_file || ca_verify_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4481 | /* set CAfile to verify */ |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4482 | if (ca_file && !ssl_set_verify_locations_file(ctx, ca_file)) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4483 | 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] | 4484 | 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] | 4485 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4486 | } |
Emmanuel Hocdet | 842e94e | 2019-12-16 16:39:17 +0100 | [diff] [blame] | 4487 | if (ca_verify_file && !ssl_set_verify_locations_file(ctx, ca_verify_file)) { |
| 4488 | memprintf(err, "%sProxy '%s': unable to set CA-no-names file '%s' for bind '%s' at [%s:%d].\n", |
| 4489 | err && *err ? *err : "", curproxy->id, ca_verify_file, bind_conf->arg, bind_conf->file, bind_conf->line); |
| 4490 | cfgerr |= ERR_ALERT | ERR_FATAL; |
| 4491 | } |
| 4492 | 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] | 4493 | /* set CA names for client cert request, function returns void */ |
Emmanuel Hocdet | 129d328 | 2019-10-24 18:08:51 +0200 | [diff] [blame] | 4494 | 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] | 4495 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4496 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4497 | else { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4498 | memprintf(err, "%sProxy '%s': verify is enabled but no CA file specified for bind '%s' at [%s:%d].\n", |
| 4499 | 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] | 4500 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4501 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4502 | #ifdef X509_V_FLAG_CRL_CHECK |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4503 | if (crl_file) { |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4504 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
| 4505 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4506 | if (!ssl_set_cert_crl_file(store, crl_file)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4507 | memprintf(err, "%sProxy '%s': unable to configure CRL file '%s' for bind '%s' at [%s:%d].\n", |
| 4508 | 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] | 4509 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4510 | } |
Emeric Brun | 561e574 | 2012-10-02 15:20:55 +0200 | [diff] [blame] | 4511 | else { |
| 4512 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4513 | } |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4514 | } |
Emeric Brun | 051cdab | 2012-10-02 19:25:50 +0200 | [diff] [blame] | 4515 | #endif |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 4516 | ERR_clear_error(); |
Emeric Brun | d94b3fe | 2012-09-20 18:23:56 +0200 | [diff] [blame] | 4517 | } |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4518 | #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] | 4519 | if(bind_conf->keys_ref) { |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4520 | 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] | 4521 | memprintf(err, "%sProxy '%s': unable to set callback for TLS ticket validation for bind '%s' at [%s:%d].\n", |
| 4522 | 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] | 4523 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Nenad Merdanovic | 05552d4 | 2015-02-27 19:56:49 +0100 | [diff] [blame] | 4524 | } |
| 4525 | } |
| 4526 | #endif |
| 4527 | |
William Lallemand | 4f45bb9 | 2017-10-30 20:08:51 +0100 | [diff] [blame] | 4528 | ssl_set_shctx(ctx); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4529 | conf_ciphers = (ssl_conf && ssl_conf->ciphers) ? ssl_conf->ciphers : bind_conf->ssl_conf.ciphers; |
| 4530 | if (conf_ciphers && |
| 4531 | !SSL_CTX_set_cipher_list(ctx, conf_ciphers)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4532 | memprintf(err, "%sProxy '%s': unable to set SSL cipher list to '%s' for bind '%s' at [%s:%d].\n", |
| 4533 | 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] | 4534 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4535 | } |
| 4536 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4537 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4538 | conf_ciphersuites = (ssl_conf && ssl_conf->ciphersuites) ? ssl_conf->ciphersuites : bind_conf->ssl_conf.ciphersuites; |
| 4539 | if (conf_ciphersuites && |
| 4540 | !SSL_CTX_set_ciphersuites(ctx, conf_ciphersuites)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4541 | memprintf(err, "%sProxy '%s': unable to set TLS 1.3 cipher suites to '%s' for bind '%s' at [%s:%d].\n", |
| 4542 | 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] | 4543 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4544 | } |
| 4545 | #endif |
| 4546 | |
Emmanuel Hocdet | cc6c2a2 | 2017-03-03 17:04:14 +0100 | [diff] [blame] | 4547 | #ifndef OPENSSL_NO_DH |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4548 | /* If tune.ssl.default-dh-param has not been set, |
| 4549 | neither has ssl-default-dh-file and no static DH |
| 4550 | params were in the certificate file. */ |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4551 | if (global_ssl.default_dh_param == 0 && |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 4552 | global_dh == NULL && |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 4553 | (ssl_dh_ptr_index == -1 || |
| 4554 | SSL_CTX_get_ex_data(ctx, ssl_dh_ptr_index) == NULL)) { |
Willy Tarreau | 3ba77d2 | 2020-05-08 09:31:18 +0200 | [diff] [blame] | 4555 | /* default to dh-param 2048 */ |
| 4556 | global_ssl.default_dh_param = 2048; |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4557 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4558 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4559 | if (global_ssl.default_dh_param >= 1024) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4560 | if (local_dh_1024 == NULL) { |
| 4561 | local_dh_1024 = ssl_get_dh_1024(); |
| 4562 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4563 | if (global_ssl.default_dh_param >= 2048) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4564 | if (local_dh_2048 == NULL) { |
| 4565 | local_dh_2048 = ssl_get_dh_2048(); |
| 4566 | } |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 4567 | if (global_ssl.default_dh_param >= 4096) { |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4568 | if (local_dh_4096 == NULL) { |
| 4569 | local_dh_4096 = ssl_get_dh_4096(); |
| 4570 | } |
Remi Gacogne | 8de5415 | 2014-07-15 11:36:40 +0200 | [diff] [blame] | 4571 | } |
| 4572 | } |
| 4573 | } |
| 4574 | #endif /* OPENSSL_NO_DH */ |
Remi Gacogne | f46cd6e | 2014-06-12 14:58:40 +0200 | [diff] [blame] | 4575 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4576 | SSL_CTX_set_info_callback(ctx, ssl_sock_infocbk); |
Ilya Shipitsin | 7ff7747 | 2021-02-08 16:55:06 +0500 | [diff] [blame] | 4577 | #ifdef SSL_CTRL_SET_MSG_CALLBACK |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4578 | SSL_CTX_set_msg_callback(ctx, ssl_sock_msgcbk); |
Willy Tarreau | 5cbe4ef | 2014-05-08 22:45:11 +0200 | [diff] [blame] | 4579 | #endif |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 4580 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 4581 | SSL_CTX_set_keylog_callback(ctx, SSL_CTX_keylog); |
| 4582 | #endif |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 4583 | |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 4584 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4585 | ssl_conf_cur = NULL; |
| 4586 | if (ssl_conf && ssl_conf->npn_str) |
| 4587 | ssl_conf_cur = ssl_conf; |
| 4588 | else if (bind_conf->ssl_conf.npn_str) |
| 4589 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4590 | if (ssl_conf_cur) |
| 4591 | 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] | 4592 | #endif |
Dirkjan Bussink | 48f1c4e | 2014-02-13 12:29:42 +0100 | [diff] [blame] | 4593 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4594 | ssl_conf_cur = NULL; |
| 4595 | if (ssl_conf && ssl_conf->alpn_str) |
| 4596 | ssl_conf_cur = ssl_conf; |
| 4597 | else if (bind_conf->ssl_conf.alpn_str) |
| 4598 | ssl_conf_cur = &bind_conf->ssl_conf; |
| 4599 | if (ssl_conf_cur) |
| 4600 | 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] | 4601 | #endif |
Ilya Shipitsin | 0aa8c29 | 2020-11-04 00:39:07 +0500 | [diff] [blame] | 4602 | #if defined(SSL_CTX_set1_curves_list) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4603 | conf_curves = (ssl_conf && ssl_conf->curves) ? ssl_conf->curves : bind_conf->ssl_conf.curves; |
| 4604 | if (conf_curves) { |
| 4605 | if (!SSL_CTX_set1_curves_list(ctx, conf_curves)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4606 | memprintf(err, "%sProxy '%s': unable to set SSL curves list to '%s' for bind '%s' at [%s:%d].\n", |
| 4607 | 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] | 4608 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4609 | } |
Emmanuel Hocdet | a52bb15 | 2017-03-20 11:11:49 +0100 | [diff] [blame] | 4610 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4611 | } |
| 4612 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4613 | #if defined(SSL_CTX_set_tmp_ecdh) && !defined(OPENSSL_NO_ECDH) |
Emmanuel Hocdet | e7f2b73 | 2017-01-09 16:15:54 +0100 | [diff] [blame] | 4614 | if (!conf_curves) { |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4615 | int i; |
| 4616 | EC_KEY *ecdh; |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4617 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4618 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4619 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4620 | NULL); |
| 4621 | |
| 4622 | if (ecdhe == NULL) { |
Eric Salama | 3c8bde8 | 2019-11-20 11:33:40 +0100 | [diff] [blame] | 4623 | (void)SSL_CTX_set_ecdh_auto(ctx, 1); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 4624 | return cfgerr; |
| 4625 | } |
| 4626 | #else |
| 4627 | const char *ecdhe = (ssl_conf && ssl_conf->ecdhe) ? ssl_conf->ecdhe : |
| 4628 | (bind_conf->ssl_conf.ecdhe ? bind_conf->ssl_conf.ecdhe : |
| 4629 | ECDHE_DEFAULT_CURVE); |
| 4630 | #endif |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4631 | |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 4632 | i = OBJ_sn2nid(ecdhe); |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4633 | if (!i || ((ecdh = EC_KEY_new_by_curve_name(i)) == NULL)) { |
Tim Duesterhus | 9312853 | 2019-11-23 23:45:10 +0100 | [diff] [blame] | 4634 | memprintf(err, "%sProxy '%s': unable to set elliptic named curve to '%s' for bind '%s' at [%s:%d].\n", |
| 4635 | 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] | 4636 | cfgerr |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 2b58d04 | 2012-09-20 17:10:03 +0200 | [diff] [blame] | 4637 | } |
| 4638 | else { |
| 4639 | SSL_CTX_set_tmp_ecdh(ctx, ecdh); |
| 4640 | EC_KEY_free(ecdh); |
| 4641 | } |
| 4642 | } |
| 4643 | #endif |
| 4644 | |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 4645 | return cfgerr; |
| 4646 | } |
| 4647 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4648 | |
| 4649 | /* |
| 4650 | * Prepare the SSL_CTX based on the bind line configuration. |
| 4651 | * Since the CA file loading is made depending on the verify option of the bind |
| 4652 | * line, the link between the SSL_CTX and the CA file tree entry is made here. |
| 4653 | * If we want to create a link between the CA file entry and the corresponding |
| 4654 | * ckch instance (for CA file hot update), it needs to be done after |
| 4655 | * ssl_sock_prepare_ctx. |
| 4656 | * Returns 0 in case of success. |
| 4657 | */ |
| 4658 | int ssl_sock_prep_ctx_and_inst(struct bind_conf *bind_conf, struct ssl_bind_conf *ssl_conf, |
| 4659 | SSL_CTX *ctx, struct ckch_inst *ckch_inst, char **err) |
| 4660 | { |
| 4661 | int errcode = 0; |
| 4662 | |
| 4663 | errcode |= ssl_sock_prepare_ctx(bind_conf, ssl_conf, ctx, err); |
| 4664 | if (!errcode && ckch_inst) |
| 4665 | ckch_inst_add_cafile_link(ckch_inst, bind_conf, ssl_conf, NULL); |
| 4666 | |
| 4667 | return errcode; |
| 4668 | } |
| 4669 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4670 | static int ssl_sock_srv_hostcheck(const char *pattern, const char *hostname) |
| 4671 | { |
| 4672 | const char *pattern_wildcard, *pattern_left_label_end, *hostname_left_label_end; |
| 4673 | size_t prefixlen, suffixlen; |
| 4674 | |
| 4675 | /* Trivial case */ |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4676 | if (strcasecmp(pattern, hostname) == 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4677 | return 1; |
| 4678 | |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4679 | /* The rest of this logic is based on RFC 6125, section 6.4.3 |
| 4680 | * (http://tools.ietf.org/html/rfc6125#section-6.4.3) */ |
| 4681 | |
Emeric Brun | a848dae | 2013-10-08 11:27:28 +0200 | [diff] [blame] | 4682 | pattern_wildcard = NULL; |
| 4683 | pattern_left_label_end = pattern; |
| 4684 | while (*pattern_left_label_end != '.') { |
| 4685 | switch (*pattern_left_label_end) { |
| 4686 | case 0: |
| 4687 | /* End of label not found */ |
| 4688 | return 0; |
| 4689 | case '*': |
| 4690 | /* If there is more than one wildcards */ |
| 4691 | if (pattern_wildcard) |
| 4692 | return 0; |
| 4693 | pattern_wildcard = pattern_left_label_end; |
| 4694 | break; |
| 4695 | } |
| 4696 | pattern_left_label_end++; |
| 4697 | } |
| 4698 | |
| 4699 | /* If it's not trivial and there is no wildcard, it can't |
| 4700 | * match */ |
| 4701 | if (!pattern_wildcard) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4702 | return 0; |
| 4703 | |
| 4704 | /* Make sure all labels match except the leftmost */ |
| 4705 | hostname_left_label_end = strchr(hostname, '.'); |
| 4706 | if (!hostname_left_label_end |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4707 | || strcasecmp(pattern_left_label_end, hostname_left_label_end) != 0) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4708 | return 0; |
| 4709 | |
| 4710 | /* Make sure the leftmost label of the hostname is long enough |
| 4711 | * that the wildcard can match */ |
Emeric Brun | 369da85 | 2013-10-08 11:39:35 +0200 | [diff] [blame] | 4712 | if (hostname_left_label_end - hostname < (pattern_left_label_end - pattern) - 1) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4713 | return 0; |
| 4714 | |
| 4715 | /* Finally compare the string on either side of the |
| 4716 | * wildcard */ |
| 4717 | prefixlen = pattern_wildcard - pattern; |
| 4718 | suffixlen = pattern_left_label_end - (pattern_wildcard + 1); |
William Lallemand | 2d6fd0a | 2020-09-14 15:20:10 +0200 | [diff] [blame] | 4719 | if ((prefixlen && (strncasecmp(pattern, hostname, prefixlen) != 0)) |
| 4720 | || (suffixlen && (strncasecmp(pattern_wildcard + 1, hostname_left_label_end - suffixlen, suffixlen) != 0))) |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4721 | return 0; |
| 4722 | |
| 4723 | return 1; |
| 4724 | } |
| 4725 | |
| 4726 | static int ssl_sock_srv_verifycbk(int ok, X509_STORE_CTX *ctx) |
| 4727 | { |
| 4728 | SSL *ssl; |
| 4729 | struct connection *conn; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4730 | struct ssl_sock_ctx *ssl_ctx; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4731 | const char *servername; |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4732 | const char *sni; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4733 | |
| 4734 | int depth; |
| 4735 | X509 *cert; |
| 4736 | STACK_OF(GENERAL_NAME) *alt_names; |
| 4737 | int i; |
| 4738 | X509_NAME *cert_subject; |
| 4739 | char *str; |
| 4740 | |
| 4741 | if (ok == 0) |
| 4742 | return ok; |
| 4743 | |
| 4744 | 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] | 4745 | conn = SSL_get_ex_data(ssl, ssl_app_data_index); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4746 | ssl_ctx = conn->xprt_ctx; |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4747 | |
Willy Tarreau | ad92a9a | 2017-07-28 11:38:41 +0200 | [diff] [blame] | 4748 | /* We're checking if the provided hostnames match the desired one. The |
| 4749 | * desired hostname comes from the SNI we presented if any, or if not |
| 4750 | * provided then it may have been explicitly stated using a "verifyhost" |
| 4751 | * directive. If neither is set, we don't care about the name so the |
| 4752 | * verification is OK. |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4753 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 4754 | servername = SSL_get_servername(ssl_ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4755 | sni = servername; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4756 | if (!servername) { |
Willy Tarreau | 07d94e4 | 2018-09-20 10:57:52 +0200 | [diff] [blame] | 4757 | servername = __objt_server(conn->target)->ssl_ctx.verify_host; |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4758 | if (!servername) |
| 4759 | return ok; |
| 4760 | } |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4761 | |
| 4762 | /* We only need to verify the CN on the actual server cert, |
| 4763 | * not the indirect CAs */ |
| 4764 | depth = X509_STORE_CTX_get_error_depth(ctx); |
| 4765 | if (depth != 0) |
| 4766 | return ok; |
| 4767 | |
| 4768 | /* At this point, the cert is *not* OK unless we can find a |
| 4769 | * hostname match */ |
| 4770 | ok = 0; |
| 4771 | |
| 4772 | cert = X509_STORE_CTX_get_current_cert(ctx); |
| 4773 | /* It seems like this might happen if verify peer isn't set */ |
| 4774 | if (!cert) |
| 4775 | return ok; |
| 4776 | |
| 4777 | alt_names = X509_get_ext_d2i(cert, NID_subject_alt_name, NULL, NULL); |
| 4778 | if (alt_names) { |
| 4779 | for (i = 0; !ok && i < sk_GENERAL_NAME_num(alt_names); i++) { |
| 4780 | GENERAL_NAME *name = sk_GENERAL_NAME_value(alt_names, i); |
| 4781 | if (name->type == GEN_DNS) { |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4782 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4783 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.ia5) >= 0) { |
| 4784 | #else |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4785 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, name->d.dNSName) >= 0) { |
Emeric Brun | a33410c | 2013-09-17 15:47:48 +0200 | [diff] [blame] | 4786 | #endif |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4787 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4788 | OPENSSL_free(str); |
| 4789 | } |
| 4790 | } |
| 4791 | } |
Emeric Brun | 4ad50a4 | 2013-09-17 15:19:54 +0200 | [diff] [blame] | 4792 | sk_GENERAL_NAME_pop_free(alt_names, GENERAL_NAME_free); |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4793 | } |
| 4794 | |
| 4795 | cert_subject = X509_get_subject_name(cert); |
| 4796 | i = -1; |
| 4797 | while (!ok && (i = X509_NAME_get_index_by_NID(cert_subject, NID_commonName, i)) != -1) { |
| 4798 | X509_NAME_ENTRY *entry = X509_NAME_get_entry(cert_subject, i); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 4799 | ASN1_STRING *value; |
| 4800 | value = X509_NAME_ENTRY_get_data(entry); |
| 4801 | if (ASN1_STRING_to_UTF8((unsigned char **)&str, value) >= 0) { |
Evan Broder | be55431 | 2013-06-27 00:05:25 -0700 | [diff] [blame] | 4802 | ok = ssl_sock_srv_hostcheck(str, servername); |
| 4803 | OPENSSL_free(str); |
| 4804 | } |
| 4805 | } |
| 4806 | |
Willy Tarreau | 71d058c | 2017-07-26 20:09:56 +0200 | [diff] [blame] | 4807 | /* report the mismatch and indicate if SNI was used or not */ |
| 4808 | if (!ok && !conn->err_code) |
| 4809 | 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] | 4810 | return ok; |
| 4811 | } |
| 4812 | |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4813 | /* prepare ssl context from servers options. Returns an error count */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 4814 | int ssl_sock_prepare_srv_ctx(struct server *srv) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4815 | { |
| 4816 | int cfgerr = 0; |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4817 | SSL_CTX *ctx = srv->ssl_ctx.ctx; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4818 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 4819 | /* Automatic memory computations need to know we use SSL there */ |
| 4820 | global.ssl_used_backend = 1; |
| 4821 | |
| 4822 | /* Initiate SSL context for current server */ |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4823 | if (!srv->ssl_ctx.reused_sess) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 4824 | 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] | 4825 | ha_alert("out of memory.\n"); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 4826 | cfgerr++; |
| 4827 | return cfgerr; |
| 4828 | } |
| 4829 | } |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 4830 | if (srv->use_ssl == 1) |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4831 | srv->xprt = &ssl_sock; |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4832 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4833 | /* The context will be uninitialized if there wasn't any "cert" option |
| 4834 | * in the server line. */ |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4835 | if (!ctx) { |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4836 | ctx = SSL_CTX_new(SSLv23_client_method()); |
| 4837 | if (!ctx) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4838 | ha_alert("unable to allocate ssl context.\n"); |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4839 | cfgerr++; |
| 4840 | return cfgerr; |
| 4841 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4842 | |
Remi Tricot-Le Breton | d817dc7 | 2021-01-25 17:19:43 +0100 | [diff] [blame] | 4843 | srv->ssl_ctx.ctx = ctx; |
| 4844 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4845 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4846 | 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] | 4847 | |
| 4848 | return cfgerr; |
| 4849 | } |
| 4850 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4851 | /* Initialize an SSL context that will be used on the backend side. |
| 4852 | * Returns an error count. |
| 4853 | */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 4854 | 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] | 4855 | { |
| 4856 | struct proxy *curproxy = srv->proxy; |
| 4857 | int cfgerr = 0; |
| 4858 | long options = |
| 4859 | SSL_OP_ALL | /* all known workarounds for bugs */ |
| 4860 | SSL_OP_NO_SSLv2 | |
| 4861 | SSL_OP_NO_COMPRESSION; |
| 4862 | long mode = |
| 4863 | SSL_MODE_ENABLE_PARTIAL_WRITE | |
| 4864 | SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER | |
| 4865 | SSL_MODE_RELEASE_BUFFERS | |
| 4866 | SSL_MODE_SMALL_BUFFERS; |
| 4867 | int verify = SSL_VERIFY_NONE; |
| 4868 | const struct tls_version_filter *conf_ssl_methods = &srv->ssl_ctx.methods; |
| 4869 | int i, min, max, hole; |
| 4870 | int flags = MC_SSL_O_ALL; |
| 4871 | |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4872 | 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] | 4873 | ha_warning("no-sslv3/no-tlsv1x are ignored for this server. " |
| 4874 | "Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n"); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4875 | else |
| 4876 | flags = conf_ssl_methods->flags; |
| 4877 | |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4878 | /* Real min and max should be determinate with configuration and openssl's capabilities */ |
| 4879 | if (conf_ssl_methods->min) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4880 | flags |= (methodVersions[conf_ssl_methods->min].flag - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4881 | if (conf_ssl_methods->max) |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4882 | flags |= ~((methodVersions[conf_ssl_methods->max].flag << 1) - 1); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4883 | |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4884 | /* find min, max and holes */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4885 | min = max = CONF_TLSV_NONE; |
| 4886 | hole = 0; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4887 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4888 | /* version is in openssl && version not disable in configuration */ |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4889 | if (methodVersions[i].option && !(flags & methodVersions[i].flag)) { |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4890 | if (min) { |
| 4891 | if (hole) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 4892 | 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] | 4893 | "Hole find for %s. Use only 'ssl-min-ver' and 'ssl-max-ver' to fix.\n", |
| 4894 | proxy_type_str(curproxy), curproxy->id, srv->id, |
| 4895 | methodVersions[hole].name); |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4896 | hole = 0; |
| 4897 | } |
| 4898 | max = i; |
| 4899 | } |
| 4900 | else { |
| 4901 | min = max = i; |
| 4902 | } |
| 4903 | } |
| 4904 | else { |
| 4905 | if (min) |
| 4906 | hole = i; |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4907 | } |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4908 | if (!min) { |
Amaury Denoyelle | 1112430 | 2021-06-04 18:22:08 +0200 | [diff] [blame] | 4909 | 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] | 4910 | proxy_type_str(curproxy), curproxy->id, srv->id); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4911 | cfgerr += 1; |
| 4912 | } |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4913 | |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 4914 | #if (HA_OPENSSL_VERSION_NUMBER < 0x1010000fL) |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4915 | /* 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] | 4916 | precautionary measure to avoid any surprise with older openssl version. */ |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4917 | if (min == max) |
Emmanuel Hocdet | 4aa615f | 2017-05-18 12:33:19 +0200 | [diff] [blame] | 4918 | methodVersions[min].ctx_set_version(ctx, SET_CLIENT); |
Emmanuel Hocdet | abd3233 | 2017-05-05 18:06:12 +0200 | [diff] [blame] | 4919 | else |
| 4920 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 4921 | if (flags & methodVersions[i].flag) |
| 4922 | options |= methodVersions[i].option; |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4923 | #else /* openssl >= 1.1.0 */ |
Emmanuel Hocdet | b4e9ba4 | 2017-03-30 19:25:07 +0200 | [diff] [blame] | 4924 | /* 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] | 4925 | methodVersions[min].ctx_set_version(ctx, SET_MIN); |
| 4926 | methodVersions[max].ctx_set_version(ctx, SET_MAX); |
Emmanuel Hocdet | 5db33cb | 2017-03-30 19:19:37 +0200 | [diff] [blame] | 4927 | #endif |
| 4928 | |
| 4929 | if (srv->ssl_ctx.options & SRV_SSL_O_NO_TLS_TICKETS) |
| 4930 | options |= SSL_OP_NO_TICKET; |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4931 | SSL_CTX_set_options(ctx, options); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4932 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 4933 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 4934 | if (global_ssl.async) |
| 4935 | mode |= SSL_MODE_ASYNC; |
| 4936 | #endif |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4937 | SSL_CTX_set_mode(ctx, mode); |
Emmanuel Hocdet | 4de1ff1 | 2017-03-03 12:21:32 +0100 | [diff] [blame] | 4938 | |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4939 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
| 4940 | verify = SSL_VERIFY_PEER; |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4941 | switch (srv->ssl_ctx.verify) { |
| 4942 | case SSL_SOCK_VERIFY_NONE: |
| 4943 | verify = SSL_VERIFY_NONE; |
| 4944 | break; |
| 4945 | case SSL_SOCK_VERIFY_REQUIRED: |
| 4946 | verify = SSL_VERIFY_PEER; |
| 4947 | break; |
| 4948 | } |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4949 | SSL_CTX_set_verify(ctx, verify, |
Willy Tarreau | 2ab8867 | 2017-07-05 18:23:03 +0200 | [diff] [blame] | 4950 | (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] | 4951 | if (verify & SSL_VERIFY_PEER) { |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4952 | if (srv->ssl_ctx.ca_file) { |
Emmanuel Hocdet | d4f9a60 | 2019-10-24 11:32:47 +0200 | [diff] [blame] | 4953 | /* set CAfile to verify */ |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4954 | if (!ssl_set_verify_locations_file(ctx, srv->ssl_ctx.ca_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4955 | ha_alert("unable to set CA file '%s'.\n", |
| 4956 | srv->ssl_ctx.ca_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4957 | cfgerr++; |
| 4958 | } |
| 4959 | } |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4960 | else { |
| 4961 | if (global.ssl_server_verify == SSL_SERVER_VERIFY_REQUIRED) |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4962 | 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] | 4963 | else |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4964 | ha_alert("verify is enabled but no CA file specified.\n"); |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 4965 | cfgerr++; |
| 4966 | } |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4967 | #ifdef X509_V_FLAG_CRL_CHECK |
| 4968 | if (srv->ssl_ctx.crl_file) { |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4969 | X509_STORE *store = SSL_CTX_get_cert_store(ctx); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4970 | |
Emmanuel Hocdet | b270e81 | 2019-11-21 19:09:31 +0100 | [diff] [blame] | 4971 | if (!ssl_set_cert_crl_file(store, srv->ssl_ctx.crl_file)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4972 | ha_alert("unable to configure CRL file '%s'.\n", |
| 4973 | srv->ssl_ctx.crl_file); |
Emeric Brun | ef42d92 | 2012-10-11 16:11:36 +0200 | [diff] [blame] | 4974 | cfgerr++; |
| 4975 | } |
| 4976 | else { |
| 4977 | X509_STORE_set_flags(store, X509_V_FLAG_CRL_CHECK|X509_V_FLAG_CRL_CHECK_ALL); |
| 4978 | } |
| 4979 | } |
| 4980 | #endif |
| 4981 | } |
| 4982 | |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4983 | SSL_CTX_set_session_cache_mode(ctx, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE); |
| 4984 | SSL_CTX_sess_set_new_cb(ctx, ssl_sess_new_srv_cb); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4985 | if (srv->ssl_ctx.ciphers && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4986 | !SSL_CTX_set_cipher_list(ctx, srv->ssl_ctx.ciphers)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4987 | ha_alert("unable to set SSL cipher list to '%s'.\n", |
| 4988 | srv->ssl_ctx.ciphers); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 4989 | cfgerr++; |
| 4990 | } |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4991 | |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 4992 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4993 | if (srv->ssl_ctx.ciphersuites && |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 4994 | !SSL_CTX_set_ciphersuites(ctx, srv->ssl_ctx.ciphersuites)) { |
Amaury Denoyelle | e74cbc3 | 2021-05-28 10:34:01 +0200 | [diff] [blame] | 4995 | ha_alert("unable to set TLS 1.3 cipher suites to '%s'.\n", |
| 4996 | srv->ssl_ctx.ciphersuites); |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 4997 | cfgerr++; |
| 4998 | } |
| 4999 | #endif |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5000 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
| 5001 | if (srv->ssl_ctx.npn_str) |
Remi Tricot-Le Breton | 442b7f2 | 2021-01-25 17:19:41 +0100 | [diff] [blame] | 5002 | 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] | 5003 | #endif |
| 5004 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 5005 | if (srv->ssl_ctx.alpn_str) |
| 5006 | SSL_CTX_set_alpn_protos(ctx, (unsigned char *)srv->ssl_ctx.alpn_str, srv->ssl_ctx.alpn_len); |
| 5007 | #endif |
| 5008 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5009 | |
| 5010 | return cfgerr; |
| 5011 | } |
| 5012 | |
| 5013 | /* |
| 5014 | * Prepare the frontend's SSL_CTX based on the server line configuration. |
| 5015 | * Since the CA file loading is made depending on the verify option of the |
| 5016 | * server line, the link between the SSL_CTX and the CA file tree entry is |
| 5017 | * made here. |
| 5018 | * If we want to create a link between the CA file entry and the corresponding |
| 5019 | * ckch instance (for CA file hot update), it needs to be done after |
| 5020 | * ssl_sock_prepare_srv_ssl_ctx. |
| 5021 | * Returns an error count. |
| 5022 | */ |
| 5023 | int ssl_sock_prep_srv_ctx_and_inst(const struct server *srv, SSL_CTX *ctx, |
| 5024 | struct ckch_inst *ckch_inst) |
| 5025 | { |
| 5026 | int cfgerr = 0; |
| 5027 | |
| 5028 | cfgerr += ssl_sock_prepare_srv_ssl_ctx(srv, ctx); |
| 5029 | if (!cfgerr && ckch_inst) |
| 5030 | ckch_inst_add_cafile_link(ckch_inst, NULL, NULL, srv); |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 5031 | |
| 5032 | return cfgerr; |
| 5033 | } |
| 5034 | |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5035 | |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5036 | /* |
| 5037 | * Create an initial CTX used to start the SSL connections. |
| 5038 | * May be used by QUIC xprt which makes usage of SSL sessions initialized from SSL_CTXs. |
| 5039 | * Returns 0 if succeeded, or something >0 if not. |
| 5040 | */ |
| 5041 | #ifdef USE_QUIC |
| 5042 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5043 | { |
| 5044 | if (bind_conf->xprt == xprt_get(XPRT_QUIC)) |
| 5045 | return ssl_quic_initial_ctx(bind_conf); |
| 5046 | else |
| 5047 | return ssl_sock_initial_ctx(bind_conf); |
| 5048 | } |
| 5049 | #else |
| 5050 | static int ssl_initial_ctx(struct bind_conf *bind_conf) |
| 5051 | { |
| 5052 | return ssl_sock_initial_ctx(bind_conf); |
| 5053 | } |
| 5054 | #endif |
| 5055 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5056 | /* 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] | 5057 | * be NULL, in which case nothing is done. Returns the number of errors |
| 5058 | * encountered. |
| 5059 | */ |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5060 | int ssl_sock_prepare_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5061 | { |
| 5062 | struct ebmb_node *node; |
| 5063 | struct sni_ctx *sni; |
| 5064 | int err = 0; |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5065 | int errcode = 0; |
| 5066 | char *errmsg = NULL; |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5067 | |
Willy Tarreau | fce0311 | 2015-01-15 21:32:40 +0100 | [diff] [blame] | 5068 | /* Automatic memory computations need to know we use SSL there */ |
| 5069 | global.ssl_used_frontend = 1; |
| 5070 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5071 | /* Create initial_ctx used to start the ssl connection before do switchctx */ |
| 5072 | if (!bind_conf->initial_ctx) { |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5073 | err += ssl_initial_ctx(bind_conf); |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5074 | /* It should not be necessary to call this function, but it's |
| 5075 | necessary first to check and move all initialisation related |
Frédéric Lécaille | ec21652 | 2020-11-23 14:33:30 +0100 | [diff] [blame] | 5076 | to initial_ctx in ssl_initial_ctx. */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5077 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, NULL, bind_conf->initial_ctx, NULL, &errmsg); |
| 5078 | } |
| 5079 | if (bind_conf->default_ctx) { |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5080 | 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] | 5081 | } |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5082 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5083 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5084 | while (node) { |
| 5085 | sni = ebmb_entry(node, struct sni_ctx, name); |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5086 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5087 | /* only initialize the CTX on its first occurrence and |
| 5088 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5089 | errcode |= ssl_sock_prep_ctx_and_inst(bind_conf, sni->conf, sni->ctx, sni->ckch_inst, &errmsg); |
| 5090 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5091 | node = ebmb_next(node); |
| 5092 | } |
| 5093 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5094 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5095 | while (node) { |
| 5096 | sni = ebmb_entry(node, struct sni_ctx, name); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5097 | if (!sni->order && sni->ctx != bind_conf->default_ctx) { |
Emeric Brun | 0bed994 | 2014-10-30 19:25:24 +0100 | [diff] [blame] | 5098 | /* only initialize the CTX on its first occurrence and |
| 5099 | if it is not the default_ctx */ |
Remi Tricot-Le Breton | 4458b97 | 2021-02-19 17:41:55 +0100 | [diff] [blame] | 5100 | 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] | 5101 | } |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5102 | node = ebmb_next(node); |
| 5103 | } |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5104 | |
| 5105 | if (errcode & ERR_WARN) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5106 | ha_warning("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5107 | } else if (errcode & ERR_CODE) { |
Tim Duesterhus | c0e820c | 2019-11-23 23:52:30 +0100 | [diff] [blame] | 5108 | ha_alert("%s", errmsg); |
William Lallemand | 8b45391 | 2019-11-21 15:48:10 +0100 | [diff] [blame] | 5109 | err++; |
| 5110 | } |
| 5111 | |
| 5112 | free(errmsg); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5113 | return err; |
| 5114 | } |
| 5115 | |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5116 | /* Prepares all the contexts for a bind_conf and allocates the shared SSL |
| 5117 | * context if needed. Returns < 0 on error, 0 on success. The warnings and |
| 5118 | * alerts are directly emitted since the rest of the stack does it below. |
| 5119 | */ |
| 5120 | int ssl_sock_prepare_bind_conf(struct bind_conf *bind_conf) |
| 5121 | { |
| 5122 | struct proxy *px = bind_conf->frontend; |
| 5123 | int alloc_ctx; |
| 5124 | int err; |
| 5125 | |
| 5126 | if (!bind_conf->is_ssl) { |
| 5127 | if (bind_conf->default_ctx) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5128 | ha_warning("Proxy '%s': A certificate was specified but SSL was not enabled on bind '%s' at [%s:%d] (use 'ssl').\n", |
| 5129 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5130 | } |
| 5131 | return 0; |
| 5132 | } |
| 5133 | if (!bind_conf->default_ctx) { |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5134 | if (bind_conf->strict_sni && !bind_conf->generate_certs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5135 | ha_warning("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d], ssl connections will fail (use 'crt').\n", |
| 5136 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5137 | } |
| 5138 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5139 | ha_alert("Proxy '%s': no SSL certificate specified for bind '%s' at [%s:%d] (use 'crt').\n", |
| 5140 | px->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Emmanuel Hocdet | aa0d637 | 2017-08-09 11:24:25 +0200 | [diff] [blame] | 5141 | return -1; |
| 5142 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5143 | } |
William Lallemand | c61c0b3 | 2017-12-04 18:46:39 +0100 | [diff] [blame] | 5144 | if (!ssl_shctx && global.tune.sslcachesize) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5145 | alloc_ctx = shctx_init(&ssl_shctx, global.tune.sslcachesize, |
Frédéric Lécaille | b7838af | 2018-10-22 16:21:39 +0200 | [diff] [blame] | 5146 | sizeof(struct sh_ssl_sess_hdr) + SHSESS_BLOCK_MIN_SIZE, -1, |
Willy Tarreau | 9135859 | 2021-06-15 08:08:04 +0200 | [diff] [blame] | 5147 | sizeof(*sh_ssl_sess_tree), (global.nbthread > 1)); |
Frédéric Lécaille | 4c8aa11 | 2018-10-25 20:22:46 +0200 | [diff] [blame] | 5148 | if (alloc_ctx <= 0) { |
William Lallemand | c3cd35f | 2017-11-28 11:04:43 +0100 | [diff] [blame] | 5149 | if (alloc_ctx == SHCTX_E_INIT_LOCK) |
| 5150 | 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"); |
| 5151 | else |
| 5152 | ha_alert("Unable to allocate SSL session cache.\n"); |
| 5153 | return -1; |
| 5154 | } |
| 5155 | /* free block callback */ |
| 5156 | ssl_shctx->free_block = sh_ssl_sess_free_blocks; |
| 5157 | /* init the root tree within the extra space */ |
| 5158 | sh_ssl_sess_tree = (void *)ssl_shctx + sizeof(struct shared_context); |
| 5159 | *sh_ssl_sess_tree = EB_ROOT_UNIQUE; |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5160 | } |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 5161 | err = 0; |
| 5162 | /* initialize all certificate contexts */ |
| 5163 | err += ssl_sock_prepare_all_ctx(bind_conf); |
| 5164 | |
| 5165 | /* initialize CA variables if the certificates generation is enabled */ |
| 5166 | err += ssl_sock_load_ca(bind_conf); |
| 5167 | |
| 5168 | return -err; |
| 5169 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5170 | |
| 5171 | /* release ssl context allocated for servers. */ |
| 5172 | void ssl_sock_free_srv_ctx(struct server *srv) |
| 5173 | { |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5174 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 5175 | if (srv->ssl_ctx.alpn_str) |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5176 | ha_free(&srv->ssl_ctx.alpn_str); |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5177 | #endif |
Lukas Tribus | da95fd9 | 2018-11-25 13:21:27 +0100 | [diff] [blame] | 5178 | #ifdef OPENSSL_NPN_NEGOTIATED |
Olivier Houchard | c756600 | 2018-11-20 23:33:50 +0100 | [diff] [blame] | 5179 | if (srv->ssl_ctx.npn_str) |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5180 | ha_free(&srv->ssl_ctx.npn_str); |
Lukas Tribus | 7706b85 | 2018-11-26 22:57:17 +0100 | [diff] [blame] | 5181 | #endif |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5182 | if (srv->ssl_ctx.reused_sess) { |
| 5183 | int i; |
| 5184 | |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5185 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5186 | ha_free(&srv->ssl_ctx.reused_sess[i].ptr); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 5187 | ha_free(&srv->ssl_ctx.reused_sess[i].sni); |
| 5188 | } |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5189 | ha_free(&srv->ssl_ctx.reused_sess); |
Christopher Faulet | 58feb49 | 2020-10-07 13:20:23 +0200 | [diff] [blame] | 5190 | } |
| 5191 | |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5192 | if (srv->ssl_ctx.ctx) { |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5193 | SSL_CTX_free(srv->ssl_ctx.ctx); |
Willy Tarreau | e709e82 | 2021-02-26 21:06:32 +0100 | [diff] [blame] | 5194 | srv->ssl_ctx.ctx = NULL; |
| 5195 | } |
Christopher Faulet | 77fe80c | 2015-07-29 13:02:40 +0200 | [diff] [blame] | 5196 | } |
| 5197 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5198 | /* 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] | 5199 | * be NULL, in which case nothing is done. The default_ctx is nullified too. |
| 5200 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5201 | void ssl_sock_free_all_ctx(struct bind_conf *bind_conf) |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5202 | { |
| 5203 | struct ebmb_node *node, *back; |
| 5204 | struct sni_ctx *sni; |
| 5205 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5206 | node = ebmb_first(&bind_conf->sni_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5207 | while (node) { |
| 5208 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5209 | back = ebmb_next(node); |
| 5210 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5211 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5212 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5213 | free(sni); |
| 5214 | node = back; |
| 5215 | } |
| 5216 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5217 | node = ebmb_first(&bind_conf->sni_w_ctx); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5218 | while (node) { |
| 5219 | sni = ebmb_entry(node, struct sni_ctx, name); |
| 5220 | back = ebmb_next(node); |
| 5221 | ebmb_delete(node); |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5222 | SSL_CTX_free(sni->ctx); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5223 | LIST_DELETE(&sni->by_ckch_inst); |
Emeric Brun | fc0421f | 2012-09-07 17:30:07 +0200 | [diff] [blame] | 5224 | free(sni); |
| 5225 | node = back; |
| 5226 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5227 | |
Emmanuel Hocdet | f6b37c6 | 2017-03-06 15:34:44 +0100 | [diff] [blame] | 5228 | SSL_CTX_free(bind_conf->initial_ctx); |
| 5229 | bind_conf->initial_ctx = NULL; |
William Lallemand | 02e19a5 | 2020-04-08 16:11:26 +0200 | [diff] [blame] | 5230 | SSL_CTX_free(bind_conf->default_ctx); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 5231 | bind_conf->default_ctx = NULL; |
Remi Tricot-Le Breton | 40ddea8 | 2021-04-13 16:07:29 +0200 | [diff] [blame] | 5232 | bind_conf->default_inst = NULL; |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5233 | bind_conf->default_ssl_conf = NULL; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5234 | } |
William Lallemand | b240869 | 2020-06-24 09:54:29 +0200 | [diff] [blame] | 5235 | |
| 5236 | |
| 5237 | void ssl_sock_deinit() |
| 5238 | { |
| 5239 | crtlist_deinit(); /* must be free'd before the ckchs */ |
| 5240 | ckch_deinit(); |
| 5241 | } |
| 5242 | REGISTER_POST_DEINIT(ssl_sock_deinit); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5243 | |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5244 | /* Destroys all the contexts for a bind_conf. This is used during deinit(). */ |
| 5245 | void ssl_sock_destroy_bind_conf(struct bind_conf *bind_conf) |
| 5246 | { |
| 5247 | ssl_sock_free_ca(bind_conf); |
| 5248 | ssl_sock_free_all_ctx(bind_conf); |
Emmanuel Hocdet | 9826329 | 2016-12-29 18:26:15 +0100 | [diff] [blame] | 5249 | ssl_sock_free_ssl_conf(&bind_conf->ssl_conf); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5250 | free(bind_conf->ca_sign_file); |
| 5251 | free(bind_conf->ca_sign_pass); |
Willy Tarreau | 17b4aa1 | 2018-07-17 10:05:32 +0200 | [diff] [blame] | 5252 | if (bind_conf->keys_ref && !--bind_conf->keys_ref->refcount) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5253 | free(bind_conf->keys_ref->filename); |
| 5254 | free(bind_conf->keys_ref->tlskeys); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 5255 | LIST_DELETE(&bind_conf->keys_ref->list); |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5256 | free(bind_conf->keys_ref); |
| 5257 | } |
| 5258 | bind_conf->keys_ref = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5259 | bind_conf->ca_sign_pass = NULL; |
| 5260 | bind_conf->ca_sign_file = NULL; |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 5261 | } |
| 5262 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5263 | /* Load CA cert file and private key used to generate certificates */ |
| 5264 | int |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5265 | ssl_sock_load_ca(struct bind_conf *bind_conf) |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5266 | { |
Willy Tarreau | 0320934 | 2016-12-22 17:08:28 +0100 | [diff] [blame] | 5267 | struct proxy *px = bind_conf->frontend; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5268 | struct cert_key_and_chain *ckch = NULL; |
| 5269 | int ret = 0; |
| 5270 | char *err = NULL; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5271 | |
Christopher Faulet | f8bb0ce | 2017-09-15 09:52:49 +0200 | [diff] [blame] | 5272 | if (!bind_conf->generate_certs) |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5273 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5274 | |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5275 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5276 | if (global_ssl.ctx_cache) { |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 5277 | ssl_ctx_lru_tree = lru64_new(global_ssl.ctx_cache); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5278 | } |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5279 | ssl_ctx_lru_seed = (unsigned int)time(NULL); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 5280 | ssl_ctx_serial = now_ms; |
Willy Tarreau | a84c267 | 2015-10-09 12:10:13 +0200 | [diff] [blame] | 5281 | #endif |
Christopher Faulet | d2cab92 | 2015-07-28 16:03:47 +0200 | [diff] [blame] | 5282 | |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5283 | if (!bind_conf->ca_sign_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 5284 | ha_alert("Proxy '%s': cannot enable certificate generation, " |
| 5285 | "no CA certificate File configured at [%s:%d].\n", |
| 5286 | px->id, bind_conf->file, bind_conf->line); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5287 | goto failed; |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5288 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5289 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5290 | /* Allocate cert structure */ |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 5291 | ckch = calloc(1, sizeof(*ckch)); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5292 | if (!ckch) { |
| 5293 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain allocation failure\n", |
| 5294 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5295 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5296 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5297 | |
| 5298 | /* Try to parse file */ |
| 5299 | if (ssl_sock_load_files_into_ckch(bind_conf->ca_sign_file, ckch, &err)) { |
| 5300 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain loading failed: %s\n", |
| 5301 | 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] | 5302 | free(err); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5303 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5304 | } |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5305 | |
| 5306 | /* Fail if missing cert or pkey */ |
| 5307 | if ((!ckch->cert) || (!ckch->key)) { |
| 5308 | ha_alert("Proxy '%s': Failed to read CA certificate file '%s' at [%s:%d]. Chain missing certificate or private key\n", |
| 5309 | px->id, bind_conf->ca_sign_file, bind_conf->file, bind_conf->line); |
| 5310 | goto failed; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5311 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5312 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5313 | /* Final assignment to bind */ |
| 5314 | bind_conf->ca_sign_ckch = ckch; |
| 5315 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5316 | |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5317 | failed: |
| 5318 | if (ckch) { |
| 5319 | ssl_sock_free_cert_key_and_chain_contents(ckch); |
| 5320 | free(ckch); |
| 5321 | } |
| 5322 | |
Christopher Faulet | c6f02fb | 2015-10-09 10:53:31 +0200 | [diff] [blame] | 5323 | bind_conf->generate_certs = 0; |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5324 | ret++; |
| 5325 | return ret; |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5326 | } |
| 5327 | |
| 5328 | /* Release CA cert and private key used to generate certificated */ |
| 5329 | void |
| 5330 | ssl_sock_free_ca(struct bind_conf *bind_conf) |
| 5331 | { |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5332 | if (bind_conf->ca_sign_ckch) { |
| 5333 | 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] | 5334 | ha_free(&bind_conf->ca_sign_ckch); |
Shimi Gersner | 5846c49 | 2020-08-23 13:58:12 +0300 | [diff] [blame] | 5335 | } |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 5336 | } |
| 5337 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5338 | /* |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5339 | * Try to allocate the BIO and SSL session objects of <conn> connection with <bio> and |
| 5340 | * <ssl> as addresses, <bio_meth> as BIO method and <ssl_ctx> as SSL context inherited settings. |
| 5341 | * Connect the allocated BIO to the allocated SSL session. Also set <ctx> as address of custom |
| 5342 | * 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] | 5343 | * 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] | 5344 | * as parameters to this function. |
| 5345 | * Return 0 if succeeded, -1 if not. If failed, sets the ->err_code member of <conn> to |
| 5346 | * CO_ER_SSL_NO_MEM. |
| 5347 | */ |
| 5348 | int ssl_bio_and_sess_init(struct connection *conn, SSL_CTX *ssl_ctx, |
| 5349 | SSL **ssl, BIO **bio, BIO_METHOD *bio_meth, void *ctx) |
| 5350 | { |
| 5351 | int retry = 1; |
| 5352 | |
| 5353 | retry: |
| 5354 | /* Alloc a new SSL session. */ |
| 5355 | *ssl = SSL_new(ssl_ctx); |
| 5356 | if (!*ssl) { |
| 5357 | if (!retry--) |
| 5358 | goto err; |
| 5359 | |
| 5360 | pool_gc(NULL); |
| 5361 | goto retry; |
| 5362 | } |
| 5363 | |
| 5364 | *bio = BIO_new(bio_meth); |
| 5365 | if (!*bio) { |
| 5366 | SSL_free(*ssl); |
| 5367 | *ssl = NULL; |
| 5368 | if (!retry--) |
| 5369 | goto err; |
| 5370 | |
| 5371 | pool_gc(NULL); |
| 5372 | goto retry; |
| 5373 | } |
| 5374 | |
| 5375 | BIO_set_data(*bio, ctx); |
| 5376 | SSL_set_bio(*ssl, *bio, *bio); |
| 5377 | |
| 5378 | /* set connection pointer. */ |
| 5379 | if (!SSL_set_ex_data(*ssl, ssl_app_data_index, conn)) { |
| 5380 | SSL_free(*ssl); |
| 5381 | *ssl = NULL; |
| 5382 | if (!retry--) |
| 5383 | goto err; |
| 5384 | |
| 5385 | pool_gc(NULL); |
| 5386 | goto retry; |
| 5387 | } |
| 5388 | |
| 5389 | return 0; |
| 5390 | |
| 5391 | err: |
| 5392 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5393 | return -1; |
| 5394 | } |
| 5395 | |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 5396 | /* This function is called when all the XPRT have been initialized. We can |
| 5397 | * now attempt to start the SSL handshake. |
| 5398 | */ |
| 5399 | static int ssl_sock_start(struct connection *conn, void *xprt_ctx) |
| 5400 | { |
| 5401 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5402 | |
| 5403 | if (ctx->xprt->start) { |
| 5404 | int ret; |
| 5405 | |
| 5406 | ret = ctx->xprt->start(conn, ctx->xprt_ctx); |
| 5407 | if (ret < 0) |
| 5408 | return ret; |
| 5409 | } |
| 5410 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 5411 | |
| 5412 | return 0; |
| 5413 | } |
| 5414 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5415 | /* |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5416 | * This function is called if SSL * context is not yet allocated. The function |
| 5417 | * is designed to be called before any other data-layer operation and sets the |
| 5418 | * handshake flag on the connection. It is safe to call it multiple times. |
| 5419 | * It returns 0 on success and -1 in error case. |
| 5420 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5421 | static int ssl_sock_init(struct connection *conn, void **xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5422 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5423 | struct ssl_sock_ctx *ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5424 | /* already initialized */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5425 | if (*xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5426 | return 0; |
| 5427 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5428 | ctx = pool_alloc(ssl_sock_ctx_pool); |
| 5429 | if (!ctx) { |
| 5430 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5431 | return -1; |
| 5432 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5433 | ctx->wait_event.tasklet = tasklet_new(); |
| 5434 | if (!ctx->wait_event.tasklet) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5435 | conn->err_code = CO_ER_SSL_NO_MEM; |
| 5436 | pool_free(ssl_sock_ctx_pool, ctx); |
| 5437 | return -1; |
| 5438 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5439 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5440 | ctx->wait_event.tasklet->context = ctx; |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 5441 | 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] | 5442 | ctx->wait_event.events = 0; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5443 | ctx->sent_early_data = 0; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5444 | ctx->early_buf = BUF_NULL; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5445 | ctx->conn = conn; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5446 | ctx->subs = NULL; |
Emeric Brun | 5762a0d | 2019-09-06 15:36:02 +0200 | [diff] [blame] | 5447 | ctx->xprt_st = 0; |
| 5448 | ctx->xprt_ctx = NULL; |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 5449 | ctx->error_code = 0; |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 5450 | |
| 5451 | /* Only work with sockets for now, this should be adapted when we'll |
| 5452 | * add QUIC support. |
| 5453 | */ |
| 5454 | ctx->xprt = xprt_get(XPRT_RAW); |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5455 | if (ctx->xprt->init) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5456 | if (ctx->xprt->init(conn, &ctx->xprt_ctx) != 0) |
| 5457 | goto err; |
Olivier Houchard | 19afb27 | 2019-05-23 18:24:07 +0200 | [diff] [blame] | 5458 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5459 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5460 | if (global.maxsslconn && global.sslconns >= global.maxsslconn) { |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5461 | conn->err_code = CO_ER_SSL_TOO_MANY; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5462 | goto err; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5463 | } |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5464 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5465 | /* If it is in client mode initiate SSL session |
| 5466 | in connect state otherwise accept state */ |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5467 | if (objt_server(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5468 | if (ssl_bio_and_sess_init(conn, __objt_server(conn->target)->ssl_ctx.ctx, |
| 5469 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5470 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5471 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5472 | SSL_set_connect_state(ctx->ssl); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5473 | 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] | 5474 | if (__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr) { |
| 5475 | const unsigned char *ptr = __objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr; |
| 5476 | 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] | 5477 | if (sess && !SSL_set_session(ctx->ssl, sess)) { |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5478 | SSL_SESSION_free(sess); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5479 | ha_free(&__objt_server(conn->target)->ssl_ctx.reused_sess[tid].ptr); |
Olivier Houchard | e6060c5 | 2017-11-16 17:42:52 +0100 | [diff] [blame] | 5480 | } else if (sess) { |
| 5481 | SSL_SESSION_free(sess); |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5482 | } |
| 5483 | } |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5484 | 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] | 5485 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5486 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5487 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5488 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5489 | _HA_ATOMIC_INC(&global.sslconns); |
| 5490 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5491 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5492 | return 0; |
| 5493 | } |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 5494 | else if (objt_listener(conn->target)) { |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5495 | struct bind_conf *bc = __objt_listener(conn->target)->bind_conf; |
Willy Tarreau | fba03cd | 2014-11-13 13:48:58 +0100 | [diff] [blame] | 5496 | |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5497 | if (ssl_bio_and_sess_init(conn, bc->initial_ctx, |
| 5498 | &ctx->ssl, &ctx->bio, ha_meth, ctx) == -1) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5499 | goto err; |
Emeric Brun | 5547615 | 2014-11-12 17:35:37 +0100 | [diff] [blame] | 5500 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5501 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Frédéric Lécaille | 5aa9241 | 2020-11-09 15:59:23 +0100 | [diff] [blame] | 5502 | if (bc->ssl_conf.early_data) { |
Frédéric Lécaille | 3139c1b | 2020-01-24 14:56:18 +0100 | [diff] [blame] | 5503 | b_alloc(&ctx->early_buf); |
| 5504 | SSL_set_max_early_data(ctx->ssl, |
| 5505 | /* Only allow early data if we managed to allocate |
| 5506 | * a buffer. |
| 5507 | */ |
| 5508 | (!b_is_null(&ctx->early_buf)) ? |
| 5509 | global.tune.bufsize - global.tune.maxrewrite : 0); |
| 5510 | } |
| 5511 | #endif |
| 5512 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5513 | SSL_set_accept_state(ctx->ssl); |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 5514 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5515 | /* leave init state and start handshake */ |
Willy Tarreau | 0573747 | 2012-09-04 08:03:39 +0200 | [diff] [blame] | 5516 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5517 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Willy Tarreau | a84986a | 2021-02-03 11:21:38 +0100 | [diff] [blame] | 5518 | if (bc->ssl_conf.early_data) |
| 5519 | conn->flags |= CO_FL_EARLY_SSL_HS; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5520 | #endif |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 5521 | |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 5522 | _HA_ATOMIC_INC(&global.sslconns); |
| 5523 | _HA_ATOMIC_INC(&global.totalsslconns); |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5524 | *xprt_ctx = ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5525 | return 0; |
| 5526 | } |
| 5527 | /* don't know how to handle such a target */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5528 | conn->err_code = CO_ER_SSL_NO_TARGET; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5529 | err: |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 5530 | if (ctx && ctx->wait_event.tasklet) |
| 5531 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5532 | pool_free(ssl_sock_ctx_pool, ctx); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5533 | return -1; |
| 5534 | } |
| 5535 | |
| 5536 | |
| 5537 | /* This is the callback which is used when an SSL handshake is pending. It |
| 5538 | * updates the FD status if it wants some polling before being called again. |
| 5539 | * It returns 0 if it fails in a fatal way or needs to poll to go further, |
| 5540 | * otherwise it returns non-zero and removes itself from the connection's |
| 5541 | * flags (the bit is provided in <flag> by the caller). |
| 5542 | */ |
Olivier Houchard | 000694c | 2019-05-23 14:45:12 +0200 | [diff] [blame] | 5543 | static int ssl_sock_handshake(struct connection *conn, unsigned int flag) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5544 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5545 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5546 | int ret; |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5547 | struct ssl_counters *counters = NULL; |
| 5548 | struct ssl_counters *counters_px = NULL; |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5549 | struct listener *li; |
| 5550 | struct server *srv; |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5551 | socklen_t lskerr; |
| 5552 | int skerr; |
| 5553 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5554 | |
Willy Tarreau | 3c72872 | 2014-01-23 13:50:42 +0100 | [diff] [blame] | 5555 | if (!conn_ctrl_ready(conn)) |
Willy Tarreau | f79c817 | 2013-10-21 16:30:56 +0200 | [diff] [blame] | 5556 | return 0; |
| 5557 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5558 | /* get counters */ |
| 5559 | switch (obj_type(conn->target)) { |
| 5560 | case OBJ_TYPE_LISTENER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5561 | li = __objt_listener(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5562 | counters = EXTRA_COUNTERS_GET(li->extra_counters, &ssl_stats_module); |
| 5563 | counters_px = EXTRA_COUNTERS_GET(li->bind_conf->frontend->extra_counters_fe, |
| 5564 | &ssl_stats_module); |
| 5565 | break; |
| 5566 | |
| 5567 | case OBJ_TYPE_SERVER: |
Amaury Denoyelle | 2bf5d41 | 2021-07-26 09:59:06 +0200 | [diff] [blame] | 5568 | srv = __objt_server(conn->target); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5569 | counters = EXTRA_COUNTERS_GET(srv->extra_counters, &ssl_stats_module); |
| 5570 | counters_px = EXTRA_COUNTERS_GET(srv->proxy->extra_counters_be, |
| 5571 | &ssl_stats_module); |
| 5572 | break; |
| 5573 | |
| 5574 | default: |
| 5575 | break; |
| 5576 | } |
| 5577 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 5578 | if (!conn->xprt_ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5579 | goto out_error; |
| 5580 | |
Willy Tarreau | 0630038 | 2021-02-02 15:42:25 +0100 | [diff] [blame] | 5581 | /* don't start calculating a handshake on a dead connection */ |
| 5582 | if (conn->flags & (CO_FL_ERROR | CO_FL_SOCK_RD_SH | CO_FL_SOCK_WR_SH)) |
| 5583 | goto out_error; |
| 5584 | |
| 5585 | /* FIXME/WT: for now we don't have a clear way to inspect the connection |
| 5586 | * status from the lower layers, so let's check the FD directly. Ideally |
| 5587 | * the xprt layers should provide some status indicating their knowledge |
| 5588 | * of shutdowns or error. |
| 5589 | */ |
| 5590 | skerr = 0; |
| 5591 | lskerr = sizeof(skerr); |
| 5592 | if ((getsockopt(conn->handle.fd, SOL_SOCKET, SO_ERROR, &skerr, &lskerr) < 0) || |
| 5593 | skerr != 0) |
| 5594 | goto out_error; |
| 5595 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5596 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5597 | /* |
| 5598 | * Check if we have early data. If we do, we have to read them |
| 5599 | * before SSL_do_handshake() is called, And there's no way to |
| 5600 | * detect early data, except to try to read them |
| 5601 | */ |
| 5602 | if (conn->flags & CO_FL_EARLY_SSL_HS) { |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5603 | size_t read_data = 0; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5604 | |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 5605 | while (1) { |
| 5606 | ret = SSL_read_early_data(ctx->ssl, |
| 5607 | b_tail(&ctx->early_buf), b_room(&ctx->early_buf), |
| 5608 | &read_data); |
| 5609 | if (ret == SSL_READ_EARLY_DATA_ERROR) |
| 5610 | goto check_error; |
| 5611 | if (read_data > 0) { |
| 5612 | conn->flags |= CO_FL_EARLY_DATA; |
| 5613 | b_add(&ctx->early_buf, read_data); |
| 5614 | } |
| 5615 | if (ret == SSL_READ_EARLY_DATA_FINISH) { |
| 5616 | conn->flags &= ~CO_FL_EARLY_SSL_HS; |
| 5617 | if (!b_data(&ctx->early_buf)) |
| 5618 | b_free(&ctx->early_buf); |
| 5619 | break; |
| 5620 | } |
| 5621 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5622 | } |
| 5623 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5624 | /* If we use SSL_do_handshake to process a reneg initiated by |
| 5625 | * the remote peer, it sometimes returns SSL_ERROR_SSL. |
| 5626 | * Usually SSL_write and SSL_read are used and process implicitly |
| 5627 | * the reneg handshake. |
| 5628 | * Here we use SSL_peek as a workaround for reneg. |
| 5629 | */ |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 5630 | 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] | 5631 | char c; |
| 5632 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5633 | ret = SSL_peek(ctx->ssl, &c, 1); |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5634 | if (ret <= 0) { |
| 5635 | /* handshake may have not been completed, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5636 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5637 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5638 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5639 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5640 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5641 | 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] | 5642 | return 0; |
| 5643 | } |
| 5644 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5645 | /* handshake may have been completed but we have |
| 5646 | * no more data to read. |
| 5647 | */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5648 | if (!SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5649 | ret = 1; |
| 5650 | goto reneg_ok; |
| 5651 | } |
| 5652 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5653 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5654 | 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] | 5655 | return 0; |
| 5656 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5657 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5658 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5659 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5660 | return 0; |
| 5661 | } |
| 5662 | #endif |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5663 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5664 | /* if errno is null, then connection was successfully established */ |
| 5665 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5666 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5667 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5668 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5669 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5670 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5671 | #else |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5672 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5673 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5674 | /* 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] | 5675 | OSSL_HANDSHAKE_STATE state = SSL_get_state((SSL *)ctx->ssl); |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5676 | empty_handshake = state == TLS_ST_BEFORE; |
| 5677 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5678 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5679 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5680 | #endif |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5681 | if (empty_handshake) { |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5682 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5683 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5684 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5685 | else |
| 5686 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5687 | } |
| 5688 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5689 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5690 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5691 | else |
| 5692 | conn->err_code = CO_ER_SSL_ABORT; |
| 5693 | } |
| 5694 | } |
| 5695 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5696 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5697 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5698 | else |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5699 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5700 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5701 | #endif /* BoringSSL or LibreSSL */ |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5702 | } |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5703 | goto out_error; |
| 5704 | } |
| 5705 | else { |
| 5706 | /* Fail on all other handshake errors */ |
| 5707 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5708 | * buffer, causing an RST to be emitted upon close() on |
| 5709 | * TCP sockets. We first try to drain possibly pending |
| 5710 | * data to avoid this as much as possible. |
| 5711 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5712 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5713 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5714 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5715 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5716 | goto out_error; |
| 5717 | } |
| 5718 | } |
| 5719 | /* read some data: consider handshake completed */ |
| 5720 | goto reneg_ok; |
| 5721 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5722 | ret = SSL_do_handshake(ctx->ssl); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 5723 | check_error: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5724 | if (ret != 1) { |
| 5725 | /* handshake did not complete, let's find why */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5726 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5727 | |
Remi Tricot-Le Breton | 1fe0fad | 2021-09-29 18:56:52 +0200 | [diff] [blame] | 5728 | if (!ctx->error_code) |
| 5729 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 7c6898e | 2021-07-29 09:45:51 +0200 | [diff] [blame] | 5730 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5731 | if (ret == SSL_ERROR_WANT_WRITE) { |
| 5732 | /* SSL handshake needs to write, L4 connection may not be ready */ |
Olivier Houchard | 03abf2d | 2019-05-28 10:12:02 +0200 | [diff] [blame] | 5733 | if (!(ctx->wait_event.events & SUB_RETRY_SEND)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5734 | 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] | 5735 | return 0; |
| 5736 | } |
| 5737 | else if (ret == SSL_ERROR_WANT_READ) { |
| 5738 | /* SSL handshake needs to read, L4 connection is ready */ |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5739 | if (!(ctx->wait_event.events & SUB_RETRY_RECV)) |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5740 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 5741 | SUB_RETRY_RECV, &ctx->wait_event); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5742 | return 0; |
| 5743 | } |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5744 | #ifdef SSL_MODE_ASYNC |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5745 | else if (ret == SSL_ERROR_WANT_ASYNC) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5746 | ssl_async_process_fds(ctx); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 5747 | return 0; |
| 5748 | } |
| 5749 | #endif |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5750 | else if (ret == SSL_ERROR_SYSCALL) { |
| 5751 | /* if errno is null, then connection was successfully established */ |
| 5752 | if (!errno && conn->flags & CO_FL_WAIT_L4_CONN) |
| 5753 | conn->flags &= ~CO_FL_WAIT_L4_CONN; |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5754 | if (!conn->err_code) { |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5755 | #if defined(OPENSSL_IS_BORINGSSL) || defined(LIBRESSL_VERSION_NUMBER) |
| 5756 | /* do not handle empty handshakes in BoringSSL or LibreSSL */ |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5757 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
| 5758 | #else |
| 5759 | int empty_handshake; |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 5760 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x1010000fL) |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5761 | /* 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] | 5762 | OSSL_HANDSHAKE_STATE state = SSL_get_state(ctx->ssl); |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5763 | empty_handshake = state == TLS_ST_BEFORE; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5764 | #else |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5765 | /* access packet_length directly in OpenSSL <= 1.0.2; SSL_state() is broken */ |
| 5766 | empty_handshake = !ctx->ssl->packet_length; |
Dirkjan Bussink | 1866d6d | 2016-08-29 13:26:37 +0200 | [diff] [blame] | 5767 | #endif |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5768 | if (empty_handshake) { |
| 5769 | if (!errno) { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5770 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5771 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5772 | else |
| 5773 | conn->err_code = CO_ER_SSL_EMPTY; |
| 5774 | } |
| 5775 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5776 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5777 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5778 | else |
| 5779 | conn->err_code = CO_ER_SSL_ABORT; |
| 5780 | } |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5781 | } |
| 5782 | else { |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5783 | if (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5784 | conn->err_code = CO_ER_SSL_HANDSHAKE_HB; |
| 5785 | else |
Emmanuel Hocdet | fdec789 | 2017-01-13 17:48:18 +0100 | [diff] [blame] | 5786 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5787 | } |
Lukas Tribus | 4979916 | 2019-07-08 14:29:15 +0200 | [diff] [blame] | 5788 | #endif /* BoringSSL or LibreSSL */ |
Emeric Brun | 29f037d | 2014-04-25 19:05:36 +0200 | [diff] [blame] | 5789 | } |
Willy Tarreau | 8923019 | 2012-09-28 20:22:13 +0200 | [diff] [blame] | 5790 | goto out_error; |
| 5791 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5792 | else { |
| 5793 | /* Fail on all other handshake errors */ |
Willy Tarreau | 566dc55 | 2012-10-19 20:52:18 +0200 | [diff] [blame] | 5794 | /* Note: OpenSSL may leave unread bytes in the socket's |
| 5795 | * buffer, causing an RST to be emitted upon close() on |
| 5796 | * TCP sockets. We first try to drain possibly pending |
| 5797 | * data to avoid this as much as possible. |
| 5798 | */ |
Willy Tarreau | 2ded48d | 2020-12-11 16:20:34 +0100 | [diff] [blame] | 5799 | conn_ctrl_drain(conn); |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5800 | if (!conn->err_code) |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 5801 | conn->err_code = (ctx->xprt_st & SSL_SOCK_RECV_HEARTBEAT) ? |
Willy Tarreau | f51c698 | 2014-04-25 20:02:39 +0200 | [diff] [blame] | 5802 | CO_ER_SSL_KILLED_HB : CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5803 | goto out_error; |
| 5804 | } |
| 5805 | } |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 5806 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5807 | else { |
| 5808 | /* |
| 5809 | * If the server refused the early data, we have to send a |
| 5810 | * 425 to the client, as we no longer have the data to sent |
| 5811 | * them again. |
| 5812 | */ |
| 5813 | if ((conn->flags & CO_FL_EARLY_DATA) && (objt_server(conn->target))) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5814 | if (SSL_get_early_data_status(ctx->ssl) == SSL_EARLY_DATA_REJECTED) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 5815 | conn->err_code = CO_ER_SSL_EARLY_FAILED; |
| 5816 | goto out_error; |
| 5817 | } |
| 5818 | } |
| 5819 | } |
| 5820 | #endif |
| 5821 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5822 | |
Emeric Brun | 674b743 | 2012-11-08 19:21:55 +0100 | [diff] [blame] | 5823 | reneg_ok: |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5824 | |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 5825 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5826 | /* ASYNC engine API doesn't support moving read/write |
| 5827 | * buffers. So we disable ASYNC mode right after |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 5828 | * the handshake to avoid buffer overflow. |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5829 | */ |
| 5830 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5831 | SSL_clear_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 5832 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5833 | /* Handshake succeeded */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 5834 | if (!SSL_session_reused(ctx->ssl)) { |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5835 | if (objt_server(conn->target)) { |
| 5836 | update_freq_ctr(&global.ssl_be_keys_per_sec, 1); |
| 5837 | if (global.ssl_be_keys_per_sec.curr_ctr > global.ssl_be_keys_max) |
| 5838 | 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] | 5839 | } |
Willy Tarreau | 0c9c272 | 2014-05-28 12:28:58 +0200 | [diff] [blame] | 5840 | else { |
| 5841 | update_freq_ctr(&global.ssl_fe_keys_per_sec, 1); |
| 5842 | if (global.ssl_fe_keys_per_sec.curr_ctr > global.ssl_fe_keys_max) |
| 5843 | global.ssl_fe_keys_max = global.ssl_fe_keys_per_sec.curr_ctr; |
| 5844 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5845 | |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5846 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame^] | 5847 | HA_ATOMIC_INC(&counters->sess); |
| 5848 | HA_ATOMIC_INC(&counters_px->sess); |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5849 | } |
Amaury Denoyelle | d0447a7 | 2020-11-03 17:10:02 +0100 | [diff] [blame] | 5850 | } |
Willy Tarreau | 4299528 | 2020-11-06 13:19:18 +0100 | [diff] [blame] | 5851 | else if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame^] | 5852 | HA_ATOMIC_INC(&counters->reused_sess); |
| 5853 | HA_ATOMIC_INC(&counters_px->reused_sess); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5854 | } |
| 5855 | |
| 5856 | /* The connection is now established at both layers, it's time to leave */ |
| 5857 | conn->flags &= ~(flag | CO_FL_WAIT_L4_CONN | CO_FL_WAIT_L6_CONN); |
| 5858 | return 1; |
| 5859 | |
| 5860 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5861 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 5862 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 5863 | ERR_clear_error(); |
| 5864 | |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5865 | /* free resumed session if exists */ |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5866 | if (objt_server(conn->target)) { |
| 5867 | struct server *s = __objt_server(conn->target); |
| 5868 | /* RWLOCK: only rdlock the SSL cache even when writing in it because there is |
| 5869 | * one cache per thread, it only prevents to flush it from the CLI in |
| 5870 | * another thread */ |
| 5871 | |
| 5872 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 5873 | if (s->ssl_ctx.reused_sess[tid].ptr) |
| 5874 | ha_free(&s->ssl_ctx.reused_sess[tid].ptr); |
William Lallemand | 3ce6eed | 2021-02-08 10:43:44 +0100 | [diff] [blame] | 5875 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Emeric Brun | 9fa8973 | 2012-10-04 17:09:56 +0200 | [diff] [blame] | 5876 | } |
| 5877 | |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5878 | if (counters) { |
Willy Tarreau | c5e7cf9 | 2021-11-22 17:46:13 +0100 | [diff] [blame^] | 5879 | HA_ATOMIC_INC(&counters->failed_handshake); |
| 5880 | HA_ATOMIC_INC(&counters_px->failed_handshake); |
Amaury Denoyelle | 034c162 | 2020-11-13 16:05:00 +0100 | [diff] [blame] | 5881 | } |
| 5882 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5883 | /* Fail on all other handshake errors */ |
| 5884 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 20879a0 | 2012-12-03 16:32:10 +0100 | [diff] [blame] | 5885 | if (!conn->err_code) |
| 5886 | conn->err_code = CO_ER_SSL_HANDSHAKE; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 5887 | return 0; |
| 5888 | } |
| 5889 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5890 | /* Called from the upper layer, to subscribe <es> to events <event_type>. The |
| 5891 | * event subscriber <es> is not allowed to change from a previous call as long |
| 5892 | * as at least one event is still subscribed. The <event_type> must only be a |
| 5893 | * combination of SUB_RETRY_RECV and SUB_RETRY_SEND. It always returns 0, |
| 5894 | * unless the transport layer was already released. |
| 5895 | */ |
| 5896 | 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] | 5897 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5898 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5899 | |
Olivier Houchard | 0ff2865 | 2019-06-24 18:57:39 +0200 | [diff] [blame] | 5900 | if (!ctx) |
| 5901 | return -1; |
| 5902 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5903 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5904 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5905 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5906 | ctx->subs = es; |
| 5907 | es->events |= event_type; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5908 | |
| 5909 | /* we may have to subscribe to lower layers for new events */ |
| 5910 | event_type &= ~ctx->wait_event.events; |
| 5911 | if (event_type && !(conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5912 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5913 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5914 | } |
| 5915 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5916 | /* Called from the upper layer, to unsubscribe <es> from events <event_type>. |
| 5917 | * The <es> pointer is not allowed to differ from the one passed to the |
| 5918 | * subscribe() call. It always returns zero. |
| 5919 | */ |
| 5920 | 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] | 5921 | { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5922 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 5923 | |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5924 | BUG_ON(event_type & ~(SUB_RETRY_SEND|SUB_RETRY_RECV)); |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5925 | BUG_ON(ctx->subs && ctx->subs != es); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5926 | |
Willy Tarreau | ee1a6fc | 2020-01-17 07:52:13 +0100 | [diff] [blame] | 5927 | es->events &= ~event_type; |
| 5928 | if (!es->events) |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 5929 | ctx->subs = NULL; |
| 5930 | |
| 5931 | /* If we subscribed, and we're not doing the handshake, |
| 5932 | * then we subscribed because the upper layer asked for it, |
| 5933 | * as the upper layer is no longer interested, we can |
| 5934 | * unsubscribe too. |
| 5935 | */ |
| 5936 | event_type &= ctx->wait_event.events; |
| 5937 | if (event_type && !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) |
| 5938 | conn_unsubscribe(conn, ctx->xprt_ctx, event_type, &ctx->wait_event); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 5939 | |
| 5940 | return 0; |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 5941 | } |
| 5942 | |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 5943 | /* The connection has been taken over, so destroy the old tasklet and create |
| 5944 | * a new one. The original thread ID must be passed into orig_tid |
| 5945 | * It should be called with the takeover lock for the old thread held. |
| 5946 | * Returns 0 on success, and -1 on failure |
| 5947 | */ |
| 5948 | static int ssl_takeover(struct connection *conn, void *xprt_ctx, int orig_tid) |
| 5949 | { |
| 5950 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5951 | struct tasklet *tl = tasklet_new(); |
| 5952 | |
| 5953 | if (!tl) |
| 5954 | return -1; |
| 5955 | |
| 5956 | ctx->wait_event.tasklet->context = NULL; |
| 5957 | tasklet_wakeup_on(ctx->wait_event.tasklet, orig_tid); |
| 5958 | ctx->wait_event.tasklet = tl; |
| 5959 | ctx->wait_event.tasklet->process = ssl_sock_io_cb; |
| 5960 | ctx->wait_event.tasklet->context = ctx; |
| 5961 | return 0; |
| 5962 | } |
| 5963 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 5964 | /* notify the next xprt that the connection is about to become idle and that it |
| 5965 | * may be stolen at any time after the function returns and that any tasklet in |
| 5966 | * the chain must be careful before dereferencing its context. |
| 5967 | */ |
| 5968 | static void ssl_set_idle(struct connection *conn, void *xprt_ctx) |
| 5969 | { |
| 5970 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5971 | |
| 5972 | if (!ctx || !ctx->wait_event.tasklet) |
| 5973 | return; |
| 5974 | |
| 5975 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 5976 | if (ctx->xprt) |
| 5977 | xprt_set_idle(conn, ctx->xprt, ctx->xprt_ctx); |
| 5978 | } |
| 5979 | |
| 5980 | /* notify the next xprt that the connection is not idle anymore and that it may |
| 5981 | * not be stolen before the next xprt_set_idle(). |
| 5982 | */ |
| 5983 | static void ssl_set_used(struct connection *conn, void *xprt_ctx) |
| 5984 | { |
| 5985 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 5986 | |
| 5987 | if (!ctx || !ctx->wait_event.tasklet) |
| 5988 | return; |
| 5989 | |
| 5990 | HA_ATOMIC_OR(&ctx->wait_event.tasklet->state, TASK_F_USR1); |
| 5991 | if (ctx->xprt) |
| 5992 | xprt_set_used(conn, ctx->xprt, ctx->xprt_ctx); |
| 5993 | } |
| 5994 | |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 5995 | /* Use the provided XPRT as an underlying XPRT, and provide the old one. |
| 5996 | * Returns 0 on success, and non-zero on failure. |
| 5997 | */ |
| 5998 | 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) |
| 5999 | { |
| 6000 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6001 | |
| 6002 | if (oldxprt_ops != NULL) |
| 6003 | *oldxprt_ops = ctx->xprt; |
| 6004 | if (oldxprt_ctx != NULL) |
| 6005 | *oldxprt_ctx = ctx->xprt_ctx; |
| 6006 | ctx->xprt = toadd_ops; |
| 6007 | ctx->xprt_ctx = toadd_ctx; |
| 6008 | return 0; |
| 6009 | } |
| 6010 | |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 6011 | /* Remove the specified xprt. If if it our underlying XPRT, remove it and |
| 6012 | * return 0, otherwise just call the remove_xprt method from the underlying |
| 6013 | * XPRT. |
| 6014 | */ |
| 6015 | static int ssl_remove_xprt(struct connection *conn, void *xprt_ctx, void *toremove_ctx, const struct xprt_ops *newops, void *newctx) |
| 6016 | { |
| 6017 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6018 | |
| 6019 | if (ctx->xprt_ctx == toremove_ctx) { |
| 6020 | ctx->xprt_ctx = newctx; |
| 6021 | ctx->xprt = newops; |
| 6022 | return 0; |
| 6023 | } |
| 6024 | return (ctx->xprt->remove_xprt(conn, ctx->xprt_ctx, toremove_ctx, newops, newctx)); |
| 6025 | } |
| 6026 | |
Willy Tarreau | 144f84a | 2021-03-02 16:09:26 +0100 | [diff] [blame] | 6027 | 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] | 6028 | { |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6029 | struct tasklet *tl = (struct tasklet *)t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6030 | struct ssl_sock_ctx *ctx = context; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6031 | struct connection *conn; |
| 6032 | int conn_in_list; |
| 6033 | int ret = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6034 | |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6035 | if (state & TASK_F_USR1) { |
| 6036 | /* the tasklet was idling on an idle connection, it might have |
| 6037 | * been stolen, let's be careful! |
| 6038 | */ |
| 6039 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6040 | if (tl->context == NULL) { |
| 6041 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
| 6042 | tasklet_free(tl); |
| 6043 | return NULL; |
| 6044 | } |
| 6045 | conn = ctx->conn; |
| 6046 | conn_in_list = conn->flags & CO_FL_LIST_MASK; |
| 6047 | if (conn_in_list) |
| 6048 | conn_delete_from_tree(&conn->hash_node->node); |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6049 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6050 | } else { |
| 6051 | conn = ctx->conn; |
| 6052 | conn_in_list = 0; |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6053 | } |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 6054 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6055 | /* First if we're doing an handshake, try that */ |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6056 | if (ctx->conn->flags & CO_FL_SSL_WAIT_HS) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6057 | ssl_sock_handshake(ctx->conn, CO_FL_SSL_WAIT_HS); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6058 | if (!(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
| 6059 | /* handshake completed, leave the bulk queue */ |
Willy Tarreau | 4c48edb | 2021-03-09 17:58:02 +0100 | [diff] [blame] | 6060 | _HA_ATOMIC_AND(&tl->state, ~TASK_HEAVY); |
Willy Tarreau | 9205ab3 | 2021-02-25 15:31:00 +0100 | [diff] [blame] | 6061 | } |
| 6062 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6063 | /* If we had an error, or the handshake is done and I/O is available, |
| 6064 | * let the upper layer know. |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6065 | * If no mux was set up yet, then call conn_create_mux() |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6066 | * we can't be sure conn_fd_handler() will be called again. |
| 6067 | */ |
| 6068 | if ((ctx->conn->flags & CO_FL_ERROR) || |
| 6069 | !(ctx->conn->flags & CO_FL_SSL_WAIT_HS)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6070 | int woke = 0; |
| 6071 | |
| 6072 | /* On error, wake any waiter */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6073 | if (ctx->subs) { |
| 6074 | tasklet_wakeup(ctx->subs->tasklet); |
| 6075 | ctx->subs->events = 0; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6076 | woke = 1; |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6077 | ctx->subs = NULL; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6078 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6079 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6080 | /* If we're the first xprt for the connection, let the |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6081 | * upper layers know. If we have no mux, create it, |
| 6082 | * and once we have a mux, call its wake method if we didn't |
| 6083 | * woke a tasklet already. |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6084 | */ |
| 6085 | if (ctx->conn->xprt_ctx == ctx) { |
Olivier Houchard | 477902b | 2020-01-22 18:08:48 +0100 | [diff] [blame] | 6086 | if (!ctx->conn->mux) |
| 6087 | ret = conn_create_mux(ctx->conn); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6088 | if (ret >= 0 && !woke && ctx->conn->mux && ctx->conn->mux->wake) |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6089 | ret = ctx->conn->mux->wake(ctx->conn); |
| 6090 | goto leave; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6091 | } |
| 6092 | } |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6093 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6094 | /* If we have early data and somebody wants to receive, let them */ |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6095 | else if (b_data(&ctx->early_buf) && ctx->subs && |
| 6096 | ctx->subs->events & SUB_RETRY_RECV) { |
| 6097 | tasklet_wakeup(ctx->subs->tasklet); |
| 6098 | ctx->subs->events &= ~SUB_RETRY_RECV; |
| 6099 | if (!ctx->subs->events) |
| 6100 | ctx->subs = NULL; |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6101 | } |
| 6102 | #endif |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6103 | leave: |
| 6104 | if (!ret && conn_in_list) { |
| 6105 | struct server *srv = objt_server(conn->target); |
| 6106 | |
Amaury Denoyelle | 5c7086f | 2021-01-11 09:21:52 +0100 | [diff] [blame] | 6107 | HA_SPIN_LOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6108 | if (conn_in_list == CO_FL_SAFE_LIST) |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 6109 | 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] | 6110 | else |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 6111 | 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] | 6112 | HA_SPIN_UNLOCK(IDLE_CONNS_LOCK, &idle_conns[tid].idle_conns_lock); |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 6113 | } |
Willy Tarreau | 7416314 | 2021-03-13 11:30:19 +0100 | [diff] [blame] | 6114 | return t; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6115 | } |
| 6116 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6117 | /* 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] | 6118 | * into buffer <buf>. Only one call to recv() is performed, unless the |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6119 | * buffer wraps, in which case a second call may be performed. The connection's |
| 6120 | * flags are updated with whatever special event is detected (error, read0, |
| 6121 | * empty). The caller is responsible for taking care of those events and |
| 6122 | * avoiding the call if inappropriate. The function does not call the |
| 6123 | * connection's polling update function, so the caller is responsible for this. |
| 6124 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6125 | 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] | 6126 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6127 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | bfc4d77 | 2018-07-18 11:22:03 +0200 | [diff] [blame] | 6128 | ssize_t ret; |
| 6129 | size_t try, done = 0; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6130 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6131 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6132 | goto out_error; |
| 6133 | |
Ilya Shipitsin | 761d64c | 2021-01-07 11:59:58 +0500 | [diff] [blame] | 6134 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6135 | if (b_data(&ctx->early_buf)) { |
| 6136 | try = b_contig_space(buf); |
| 6137 | if (try > b_data(&ctx->early_buf)) |
| 6138 | try = b_data(&ctx->early_buf); |
| 6139 | memcpy(b_tail(buf), b_head(&ctx->early_buf), try); |
| 6140 | b_add(buf, try); |
| 6141 | b_del(&ctx->early_buf, try); |
| 6142 | if (b_data(&ctx->early_buf) == 0) |
| 6143 | b_free(&ctx->early_buf); |
| 6144 | return try; |
| 6145 | } |
| 6146 | #endif |
| 6147 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6148 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6149 | /* a handshake was requested */ |
| 6150 | return 0; |
| 6151 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6152 | /* read the largest possible block. For this, we perform only one call |
| 6153 | * to recv() unless the buffer wraps and we exactly fill the first hunk, |
| 6154 | * in which case we accept to do it once again. A new attempt is made on |
| 6155 | * EINTR too. |
| 6156 | */ |
Willy Tarreau | 00b0fb9 | 2014-01-17 11:09:40 +0100 | [diff] [blame] | 6157 | while (count > 0) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6158 | |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6159 | try = b_contig_space(buf); |
| 6160 | if (!try) |
| 6161 | break; |
| 6162 | |
Willy Tarreau | abf08d9 | 2014-01-14 11:31:27 +0100 | [diff] [blame] | 6163 | if (try > count) |
| 6164 | try = count; |
Willy Tarreau | 591d445 | 2018-06-15 17:21:00 +0200 | [diff] [blame] | 6165 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6166 | ret = SSL_read(ctx->ssl, b_tail(buf), try); |
Emmanuel Hocdet | f967c31 | 2019-08-05 18:04:16 +0200 | [diff] [blame] | 6167 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6168 | if (conn->flags & CO_FL_ERROR) { |
| 6169 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6170 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6171 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6172 | if (ret > 0) { |
Olivier Houchard | acd1403 | 2018-06-28 18:17:23 +0200 | [diff] [blame] | 6173 | b_add(buf, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6174 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6175 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6176 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6177 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6178 | ret = SSL_get_error(ctx->ssl, ret); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6179 | if (ret == SSL_ERROR_WANT_WRITE) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6180 | /* handshake is running, and it needs to enable write */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6181 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6182 | 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] | 6183 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6184 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6185 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6186 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6187 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6188 | break; |
| 6189 | } |
| 6190 | else if (ret == SSL_ERROR_WANT_READ) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6191 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6192 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6193 | SUB_RETRY_RECV, |
| 6194 | &ctx->wait_event); |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6195 | /* handshake is running, and it may need to re-enable read */ |
| 6196 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6197 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6198 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6199 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6200 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6201 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6202 | break; |
| 6203 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6204 | break; |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6205 | } else if (ret == SSL_ERROR_ZERO_RETURN) |
| 6206 | goto read0; |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6207 | else if (ret == SSL_ERROR_SSL) { |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6208 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 6209 | if (!ctx->error_code) |
| 6210 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6211 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6212 | } |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6213 | /* For SSL_ERROR_SYSCALL, make sure to clear the error |
| 6214 | * stack before shutting down the connection for |
| 6215 | * reading. */ |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6216 | if (ret == SSL_ERROR_SYSCALL && (!errno || errno == EAGAIN)) |
| 6217 | goto clear_ssl_error; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6218 | /* otherwise it's a real error */ |
| 6219 | goto out_error; |
| 6220 | } |
| 6221 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6222 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6223 | return done; |
| 6224 | |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6225 | clear_ssl_error: |
| 6226 | /* Clear openssl global errors stack */ |
| 6227 | ssl_sock_dump_errors(conn); |
| 6228 | ERR_clear_error(); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6229 | read0: |
| 6230 | conn_sock_read0(conn); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6231 | goto leave; |
Christopher Faulet | 4ac77a9 | 2018-02-19 14:25:15 +0100 | [diff] [blame] | 6232 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6233 | out_error: |
Olivier Houchard | 7e2e505 | 2018-02-13 15:17:23 +0100 | [diff] [blame] | 6234 | conn->flags |= CO_FL_ERROR; |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6235 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6236 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6237 | ERR_clear_error(); |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6238 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6239 | } |
| 6240 | |
| 6241 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6242 | /* Send up to <count> pending bytes from buffer <buf> to connection <conn>'s |
| 6243 | * socket. <flags> may contain some CO_SFL_* flags to hint the system about |
| 6244 | * 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] | 6245 | * Only one call to send() is performed, unless the buffer wraps, in which case |
| 6246 | * a second call may be performed. The connection's flags are updated with |
| 6247 | * whatever special event is detected (error, empty). The caller is responsible |
| 6248 | * for taking care of those events and avoiding the call if inappropriate. The |
| 6249 | * 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] | 6250 | * is responsible for this. The buffer's output is not adjusted, it's up to the |
| 6251 | * caller to take care of this. It's up to the caller to update the buffer's |
| 6252 | * contents based on the return value. |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6253 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6254 | 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] | 6255 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6256 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6257 | ssize_t ret; |
| 6258 | size_t try, done; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6259 | |
| 6260 | done = 0; |
| 6261 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6262 | if (!ctx) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6263 | goto out_error; |
| 6264 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6265 | 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] | 6266 | /* a handshake was requested */ |
| 6267 | return 0; |
| 6268 | |
| 6269 | /* send the largest possible block. For this we perform only one call |
| 6270 | * to send() unless the buffer wraps and we exactly fill the first hunk, |
| 6271 | * in which case we accept to do it once again. |
| 6272 | */ |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6273 | while (count) { |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6274 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6275 | size_t written_data; |
| 6276 | #endif |
| 6277 | |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6278 | try = b_contig_data(buf, done); |
| 6279 | if (try > count) |
| 6280 | try = count; |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6281 | |
Willy Tarreau | 7bed945 | 2014-02-02 02:00:24 +0100 | [diff] [blame] | 6282 | if (!(flags & CO_SFL_STREAMER) && |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6283 | !(ctx->xprt_st & SSL_SOCK_SEND_UNLIMITED) && |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 6284 | global_ssl.max_record && try > global_ssl.max_record) { |
| 6285 | try = global_ssl.max_record; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6286 | } |
| 6287 | else { |
| 6288 | /* we need to keep the information about the fact that |
| 6289 | * we're not limiting the upcoming send(), because if it |
| 6290 | * fails, we'll have to retry with at least as many data. |
| 6291 | */ |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6292 | ctx->xprt_st |= SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6293 | } |
Willy Tarreau | bfd5946 | 2013-02-21 07:46:09 +0100 | [diff] [blame] | 6294 | |
Ilya Shipitsin | b9b84a4 | 2020-10-24 23:42:30 +0500 | [diff] [blame] | 6295 | #ifdef SSL_READ_EARLY_DATA_SUCCESS |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6296 | if (!SSL_is_init_finished(ctx->ssl) && conn_is_back(conn)) { |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6297 | unsigned int max_early; |
| 6298 | |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6299 | if (objt_listener(conn->target)) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6300 | max_early = SSL_get_max_early_data(ctx->ssl); |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6301 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6302 | if (SSL_get0_session(ctx->ssl)) |
| 6303 | 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] | 6304 | else |
| 6305 | max_early = 0; |
| 6306 | } |
| 6307 | |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6308 | if (try + ctx->sent_early_data > max_early) { |
| 6309 | try -= (try + ctx->sent_early_data) - max_early; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6310 | if (try <= 0) { |
Olivier Houchard | 010941f | 2019-05-03 20:56:19 +0200 | [diff] [blame] | 6311 | conn->flags |= CO_FL_SSL_WAIT_HS | CO_FL_WAIT_L6_CONN; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6312 | tasklet_wakeup(ctx->wait_event.tasklet); |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6313 | break; |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6314 | } |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6315 | } |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6316 | 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] | 6317 | if (ret == 1) { |
| 6318 | ret = written_data; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6319 | ctx->sent_early_data += ret; |
Olivier Houchard | 965e84e | 2019-06-15 20:59:30 +0200 | [diff] [blame] | 6320 | if (objt_server(conn->target)) { |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6321 | 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] | 6322 | /* Initiate the handshake, now */ |
| 6323 | tasklet_wakeup(ctx->wait_event.tasklet); |
| 6324 | } |
Olivier Houchard | 522eea7 | 2017-11-03 16:27:47 +0100 | [diff] [blame] | 6325 | |
Olivier Houchard | c2aae74 | 2017-09-22 18:26:28 +0200 | [diff] [blame] | 6326 | } |
| 6327 | |
| 6328 | } else |
| 6329 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6330 | ret = SSL_write(ctx->ssl, b_peek(buf, done), try); |
Willy Tarreau | 518cedd | 2014-02-17 15:43:01 +0100 | [diff] [blame] | 6331 | |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6332 | if (conn->flags & CO_FL_ERROR) { |
| 6333 | /* CO_FL_ERROR may be set by ssl_sock_infocbk */ |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6334 | goto out_error; |
Emeric Brun | e1f38db | 2012-09-03 20:36:47 +0200 | [diff] [blame] | 6335 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6336 | if (ret > 0) { |
Willy Tarreau | c192b0a | 2020-01-23 09:11:58 +0100 | [diff] [blame] | 6337 | /* A send succeeded, so we can consider ourself connected */ |
| 6338 | conn->flags &= ~CO_FL_WAIT_L4L6; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6339 | ctx->xprt_st &= ~SSL_SOCK_SEND_UNLIMITED; |
Willy Tarreau | 787db9a | 2018-06-14 18:31:46 +0200 | [diff] [blame] | 6340 | count -= ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6341 | done += ret; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6342 | } |
| 6343 | else { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6344 | ret = SSL_get_error(ctx->ssl, ret); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6345 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6346 | if (ret == SSL_ERROR_WANT_WRITE) { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6347 | if (SSL_renegotiate_pending(ctx->ssl)) { |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6348 | /* handshake is running, and it may need to re-enable write */ |
| 6349 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6350 | 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] | 6351 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6352 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6353 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6354 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6355 | #endif |
Emeric Brun | 282a76a | 2012-11-08 18:02:56 +0100 | [diff] [blame] | 6356 | break; |
| 6357 | } |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6358 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6359 | break; |
| 6360 | } |
| 6361 | else if (ret == SSL_ERROR_WANT_READ) { |
Emeric Brun | 8af8dd1 | 2012-11-08 17:56:20 +0100 | [diff] [blame] | 6362 | /* handshake is running, and it needs to enable read */ |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6363 | conn->flags |= CO_FL_SSL_WAIT_HS; |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6364 | ctx->xprt->subscribe(conn, ctx->xprt_ctx, |
| 6365 | SUB_RETRY_RECV, |
| 6366 | &ctx->wait_event); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6367 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6368 | /* Async mode can be re-enabled, because we're leaving data state.*/ |
| 6369 | if (global_ssl.async) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6370 | SSL_set_mode(ctx->ssl, SSL_MODE_ASYNC); |
Emeric Brun | b5e42a8 | 2017-06-06 12:35:14 +0000 | [diff] [blame] | 6371 | #endif |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6372 | break; |
| 6373 | } |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6374 | else if (ret == SSL_ERROR_SSL || ret == SSL_ERROR_SYSCALL) { |
Remi Tricot-Le Breton | 9543d5a | 2021-09-29 18:56:53 +0200 | [diff] [blame] | 6375 | struct ssl_sock_ctx *ctx = conn->xprt_ctx; |
| 6376 | if (!ctx->error_code) |
| 6377 | ctx->error_code = ERR_peek_error(); |
Remi Tricot-Le Breton | 61944f7 | 2021-09-29 18:56:51 +0200 | [diff] [blame] | 6378 | conn->err_code = CO_ERR_SSL_FATAL; |
| 6379 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6380 | goto out_error; |
| 6381 | } |
| 6382 | } |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6383 | leave: |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6384 | return done; |
| 6385 | |
| 6386 | out_error: |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6387 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6388 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6389 | ERR_clear_error(); |
| 6390 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6391 | conn->flags |= CO_FL_ERROR; |
Willy Tarreau | 31d4dbe | 2017-10-25 09:32:15 +0200 | [diff] [blame] | 6392 | goto leave; |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6393 | } |
| 6394 | |
Willy Tarreau | 832e242 | 2021-05-13 10:11:03 +0200 | [diff] [blame] | 6395 | void ssl_sock_close(struct connection *conn, void *xprt_ctx) { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6396 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6397 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6398 | |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6399 | |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6400 | if (ctx) { |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6401 | if (ctx->wait_event.events != 0) |
| 6402 | ctx->xprt->unsubscribe(ctx->conn, ctx->xprt_ctx, |
| 6403 | ctx->wait_event.events, |
| 6404 | &ctx->wait_event); |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6405 | if (ctx->subs) { |
| 6406 | ctx->subs->events = 0; |
| 6407 | tasklet_wakeup(ctx->subs->tasklet); |
Olivier Houchard | ea8dd94 | 2019-05-20 14:02:16 +0200 | [diff] [blame] | 6408 | } |
Willy Tarreau | 113d52b | 2020-01-10 09:20:26 +0100 | [diff] [blame] | 6409 | |
Olivier Houchard | 692c1d0 | 2019-05-23 18:41:47 +0200 | [diff] [blame] | 6410 | if (ctx->xprt->close) |
| 6411 | ctx->xprt->close(conn, ctx->xprt_ctx); |
Ilya Shipitsin | bdec3ba | 2020-11-14 01:56:34 +0500 | [diff] [blame] | 6412 | #ifdef SSL_MODE_ASYNC |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6413 | if (global_ssl.async) { |
| 6414 | OSSL_ASYNC_FD all_fd[32], afd; |
| 6415 | size_t num_all_fds = 0; |
| 6416 | int i; |
| 6417 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6418 | SSL_get_all_async_fds(ctx->ssl, NULL, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6419 | if (num_all_fds > 32) { |
| 6420 | send_log(NULL, LOG_EMERG, "haproxy: openssl returns too many async fds. It seems a bug. Process may crash\n"); |
| 6421 | return; |
| 6422 | } |
| 6423 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6424 | SSL_get_all_async_fds(ctx->ssl, all_fd, &num_all_fds); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6425 | |
| 6426 | /* If an async job is pending, we must try to |
| 6427 | to catch the end using polling before calling |
| 6428 | SSL_free */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6429 | if (num_all_fds && SSL_waiting_for_async(ctx->ssl)) { |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6430 | for (i=0 ; i < num_all_fds ; i++) { |
| 6431 | /* switch on an handler designed to |
| 6432 | * handle the SSL_free |
| 6433 | */ |
| 6434 | afd = all_fd[i]; |
| 6435 | fdtab[afd].iocb = ssl_async_fd_free; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6436 | fdtab[afd].owner = ctx->ssl; |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6437 | fd_want_recv(afd); |
Emeric Brun | ce9e01c | 2017-05-31 10:02:53 +0000 | [diff] [blame] | 6438 | /* To ensure that the fd cache won't be used |
| 6439 | * and we'll catch a real RD event. |
| 6440 | */ |
| 6441 | fd_cant_recv(afd); |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6442 | } |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6443 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6444 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 6445 | _HA_ATOMIC_INC(&jobs); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6446 | return; |
| 6447 | } |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6448 | /* Else we can remove the fds from the fdtab |
| 6449 | * and call SSL_free. |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6450 | * note: we do a fd_stop_both and not a delete |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6451 | * because the fd is owned by the engine. |
| 6452 | * the engine is responsible to close |
| 6453 | */ |
| 6454 | for (i=0 ; i < num_all_fds ; i++) |
Willy Tarreau | 6767245 | 2020-08-26 11:44:17 +0200 | [diff] [blame] | 6455 | fd_stop_both(all_fd[i]); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6456 | } |
| 6457 | #endif |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6458 | SSL_free(ctx->ssl); |
Olivier Houchard | 54907bb | 2019-12-19 15:02:39 +0100 | [diff] [blame] | 6459 | b_free(&ctx->early_buf); |
Willy Tarreau | 3c39a7d | 2019-06-14 14:42:29 +0200 | [diff] [blame] | 6460 | tasklet_free(ctx->wait_event.tasklet); |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6461 | pool_free(ssl_sock_ctx_pool, ctx); |
Willy Tarreau | 82531f6 | 2021-10-06 12:15:18 +0200 | [diff] [blame] | 6462 | _HA_ATOMIC_DEC(&global.sslconns); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6463 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6464 | } |
| 6465 | |
| 6466 | /* This function tries to perform a clean shutdown on an SSL connection, and in |
| 6467 | * any case, flags the connection as reusable if no handshake was in progress. |
| 6468 | */ |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6469 | 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] | 6470 | { |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6471 | struct ssl_sock_ctx *ctx = xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6472 | |
Willy Tarreau | 911db9b | 2020-01-23 16:27:54 +0100 | [diff] [blame] | 6473 | if (conn->flags & (CO_FL_WAIT_XPRT | CO_FL_SSL_WAIT_HS)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6474 | return; |
Emmanuel Hocdet | 405ff31 | 2017-01-08 14:07:39 +0100 | [diff] [blame] | 6475 | if (!clean) |
| 6476 | /* don't sent notify on SSL_shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6477 | SSL_set_quiet_shutdown(ctx->ssl, 1); |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6478 | /* no handshake was in progress, try a clean ssl shutdown */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6479 | if (SSL_shutdown(ctx->ssl) <= 0) { |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6480 | /* Clear openssl global errors stack */ |
Thierry FOURNIER / OZON.IO | 8b068c2 | 2016-10-10 11:59:50 +0200 | [diff] [blame] | 6481 | ssl_sock_dump_errors(conn); |
Emeric Brun | 644cde0 | 2012-12-14 11:21:13 +0100 | [diff] [blame] | 6482 | ERR_clear_error(); |
| 6483 | } |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 6484 | } |
| 6485 | |
Emmanuel Hocdet | 96b7834 | 2017-10-31 15:46:07 +0100 | [diff] [blame] | 6486 | |
Ilya Shipitsin | 77e3b4a | 2020-03-10 12:06:11 +0500 | [diff] [blame] | 6487 | /* used for ppv2 pkey algo (can be used for logging) */ |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6488 | int ssl_sock_get_pkey_algo(struct connection *conn, struct buffer *out) |
| 6489 | { |
| 6490 | struct ssl_sock_ctx *ctx; |
| 6491 | X509 *crt; |
| 6492 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6493 | if (!conn_is_ssl(conn)) |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 6494 | return 0; |
| 6495 | |
| 6496 | ctx = conn->xprt_ctx; |
| 6497 | |
| 6498 | crt = SSL_get_certificate(ctx->ssl); |
| 6499 | if (!crt) |
| 6500 | return 0; |
| 6501 | |
| 6502 | return cert_get_pkey_algo(crt, out); |
| 6503 | } |
| 6504 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6505 | /* used for ppv2 cert signature (can be used for logging) */ |
| 6506 | const char *ssl_sock_get_cert_sig(struct connection *conn) |
| 6507 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6508 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6509 | |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6510 | __OPENSSL_110_CONST__ ASN1_OBJECT *algorithm; |
| 6511 | X509 *crt; |
| 6512 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6513 | if (!conn_is_ssl(conn)) |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6514 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6515 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6516 | crt = SSL_get_certificate(ctx->ssl); |
Emmanuel Hocdet | 283e004 | 2017-11-02 14:05:23 +0100 | [diff] [blame] | 6517 | if (!crt) |
| 6518 | return NULL; |
| 6519 | X509_ALGOR_get0(&algorithm, NULL, NULL, X509_get0_tbs_sigalg(crt)); |
| 6520 | return OBJ_nid2sn(OBJ_obj2nid(algorithm)); |
| 6521 | } |
| 6522 | |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6523 | /* used for ppv2 authority */ |
| 6524 | const char *ssl_sock_get_sni(struct connection *conn) |
| 6525 | { |
| 6526 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6527 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6528 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6529 | if (!conn_is_ssl(conn)) |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6530 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6531 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6532 | return SSL_get_servername(ctx->ssl, TLSEXT_NAMETYPE_host_name); |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6533 | #else |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6534 | return NULL; |
Emmanuel Hocdet | 253c3b7 | 2018-02-01 18:29:59 +0100 | [diff] [blame] | 6535 | #endif |
| 6536 | } |
| 6537 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6538 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6539 | const char *ssl_sock_get_cipher_name(struct connection *conn) |
| 6540 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6541 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6542 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6543 | if (!conn_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6544 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6545 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6546 | return SSL_get_cipher_name(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6547 | } |
| 6548 | |
Emmanuel Hocdet | 01da571 | 2017-10-13 16:59:49 +0200 | [diff] [blame] | 6549 | /* used for logging/ppv2, may be changed for a sample fetch later */ |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6550 | const char *ssl_sock_get_proto_version(struct connection *conn) |
| 6551 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6552 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6553 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6554 | if (!conn_is_ssl(conn)) |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6555 | return NULL; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6556 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6557 | return SSL_get_version(ctx->ssl); |
Willy Tarreau | ffc3fcd | 2012-10-12 20:17:54 +0200 | [diff] [blame] | 6558 | } |
| 6559 | |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6560 | void ssl_sock_set_alpn(struct connection *conn, const unsigned char *alpn, int len) |
| 6561 | { |
| 6562 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6563 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6564 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6565 | if (!conn_is_ssl(conn)) |
Olivier Houchard | e488ea8 | 2019-06-28 14:10:33 +0200 | [diff] [blame] | 6566 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6567 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6568 | SSL_set_alpn_protos(ctx->ssl, alpn, len); |
Olivier Houchard | ab28a32 | 2018-12-21 19:45:40 +0100 | [diff] [blame] | 6569 | #endif |
| 6570 | } |
| 6571 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6572 | /* Sets advertised SNI for outgoing connections. Please set <hostname> to NULL |
| 6573 | * to disable SNI. |
| 6574 | */ |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6575 | void ssl_sock_set_servername(struct connection *conn, const char *hostname) |
| 6576 | { |
| 6577 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6578 | struct ssl_sock_ctx *ctx; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6579 | struct server *s; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6580 | char *prev_name; |
| 6581 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6582 | if (!conn_is_ssl(conn)) |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6583 | return; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6584 | ctx = conn->xprt_ctx; |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6585 | s = __objt_server(conn->target); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6586 | |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6587 | /* 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] | 6588 | * new connection will present a new SNI. compare with the SNI |
| 6589 | * previously stored in the reused_sess */ |
| 6590 | /* the RWLOCK is used to ensure that we are not trying to flush the |
| 6591 | * cache from the CLI */ |
| 6592 | |
| 6593 | HA_RWLOCK_RDLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
| 6594 | prev_name = s->ssl_ctx.reused_sess[tid].sni; |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6595 | if ((!prev_name && hostname) || |
| 6596 | (prev_name && (!hostname || strcmp(hostname, prev_name) != 0))) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6597 | SSL_set_session(ctx->ssl, NULL); |
William Lallemand | e18d4e8 | 2021-11-17 02:59:21 +0100 | [diff] [blame] | 6598 | HA_RWLOCK_RDUNLOCK(SSL_SERVER_LOCK, &s->ssl_ctx.lock); |
Willy Tarreau | 119a408 | 2016-12-22 21:58:38 +0100 | [diff] [blame] | 6599 | |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6600 | SSL_set_tlsext_host_name(ctx->ssl, hostname); |
Willy Tarreau | 6307641 | 2015-07-10 11:33:32 +0200 | [diff] [blame] | 6601 | #endif |
| 6602 | } |
| 6603 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6604 | /* Extract peer certificate's common name into the chunk dest |
| 6605 | * Returns |
| 6606 | * the len of the extracted common name |
| 6607 | * or 0 if no CN found in DN |
| 6608 | * or -1 on error case (i.e. no peer certificate) |
| 6609 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6610 | int ssl_sock_get_remote_common_name(struct connection *conn, |
| 6611 | struct buffer *dest) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6612 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6613 | struct ssl_sock_ctx *ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6614 | X509 *crt = NULL; |
| 6615 | X509_NAME *name; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6616 | const char find_cn[] = "CN"; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6617 | const struct buffer find_cn_chunk = { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 6618 | .area = (char *)&find_cn, |
| 6619 | .data = sizeof(find_cn)-1 |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6620 | }; |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6621 | int result = -1; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6622 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6623 | if (!conn_is_ssl(conn)) |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6624 | goto out; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6625 | ctx = conn->xprt_ctx; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6626 | |
| 6627 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6628 | crt = SSL_get_peer_certificate(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6629 | if (!crt) |
| 6630 | goto out; |
| 6631 | |
| 6632 | name = X509_get_subject_name(crt); |
| 6633 | if (!name) |
| 6634 | goto out; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6635 | |
Emeric Brun | 0abf836 | 2014-06-24 18:26:41 +0200 | [diff] [blame] | 6636 | result = ssl_sock_get_dn_entry(name, &find_cn_chunk, 1, dest); |
| 6637 | out: |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6638 | if (crt) |
| 6639 | X509_free(crt); |
| 6640 | |
| 6641 | return result; |
| 6642 | } |
| 6643 | |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6644 | /* returns 1 if client passed a certificate for this session, 0 if not */ |
| 6645 | int ssl_sock_get_cert_used_sess(struct connection *conn) |
| 6646 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6647 | struct ssl_sock_ctx *ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6648 | X509 *crt = NULL; |
| 6649 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6650 | if (!conn_is_ssl(conn)) |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6651 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6652 | ctx = conn->xprt_ctx; |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6653 | |
| 6654 | /* SSL_get_peer_certificate, it increase X509 * ref count */ |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6655 | crt = SSL_get_peer_certificate(ctx->ssl); |
Dave McCowan | 328fb58 | 2014-07-30 10:39:13 -0400 | [diff] [blame] | 6656 | if (!crt) |
| 6657 | return 0; |
| 6658 | |
| 6659 | X509_free(crt); |
| 6660 | return 1; |
| 6661 | } |
| 6662 | |
| 6663 | /* returns 1 if client passed a certificate for this connection, 0 if not */ |
| 6664 | int ssl_sock_get_cert_used_conn(struct connection *conn) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6665 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6666 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6667 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6668 | if (!conn_is_ssl(conn)) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6669 | return 0; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6670 | ctx = conn->xprt_ctx; |
Olivier Houchard | 7b5fd1e | 2019-02-28 18:10:45 +0100 | [diff] [blame] | 6671 | return SSL_SOCK_ST_FL_VERIFY_DONE & ctx->xprt_st ? 1 : 0; |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6672 | } |
| 6673 | |
| 6674 | /* returns result from SSL verify */ |
| 6675 | unsigned int ssl_sock_get_verify_result(struct connection *conn) |
| 6676 | { |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6677 | struct ssl_sock_ctx *ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6678 | |
Willy Tarreau | 1057bee | 2021-10-06 11:38:44 +0200 | [diff] [blame] | 6679 | if (!conn_is_ssl(conn)) |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6680 | return (unsigned int)X509_V_ERR_APPLICATION_VERIFICATION; |
Christopher Faulet | 8200414 | 2019-09-10 10:12:03 +0200 | [diff] [blame] | 6681 | ctx = conn->xprt_ctx; |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6682 | return (unsigned int)SSL_get_verify_result(ctx->ssl); |
David S | afb7683 | 2014-05-08 23:42:08 -0400 | [diff] [blame] | 6683 | } |
| 6684 | |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6685 | /* Returns the application layer protocol name in <str> and <len> when known. |
| 6686 | * Zero is returned if the protocol name was not found, otherwise non-zero is |
| 6687 | * returned. The string is allocated in the SSL context and doesn't have to be |
| 6688 | * freed by the caller. NPN is also checked if available since older versions |
| 6689 | * of openssl (1.0.1) which are more common in field only support this one. |
| 6690 | */ |
Amaury Denoyelle | 71e588c | 2021-11-12 11:23:29 +0100 | [diff] [blame] | 6691 | 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] | 6692 | { |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6693 | #if defined(TLSEXT_TYPE_application_layer_protocol_negotiation) || \ |
| 6694 | defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6695 | struct ssl_sock_ctx *ctx = xprt_ctx; |
| 6696 | if (!ctx) |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6697 | return 0; |
| 6698 | |
| 6699 | *str = NULL; |
| 6700 | |
| 6701 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6702 | SSL_get0_alpn_selected(ctx->ssl, (const unsigned char **)str, (unsigned *)len); |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6703 | if (*str) |
| 6704 | return 1; |
| 6705 | #endif |
Bernard Spil | 13c53f8 | 2018-02-15 13:34:58 +0100 | [diff] [blame] | 6706 | #if defined(OPENSSL_NPN_NEGOTIATED) && !defined(OPENSSL_NO_NEXTPROTONEG) |
Olivier Houchard | 66ab498 | 2019-02-26 18:37:15 +0100 | [diff] [blame] | 6707 | 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] | 6708 | if (*str) |
| 6709 | return 1; |
| 6710 | #endif |
Olivier Houchard | e179d0e | 2019-03-21 18:27:17 +0100 | [diff] [blame] | 6711 | #endif |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 6712 | return 0; |
| 6713 | } |
| 6714 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6715 | /* "issuers-chain-path" load chain certificate in global */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6716 | 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] | 6717 | { |
| 6718 | X509 *ca; |
| 6719 | X509_NAME *name = NULL; |
| 6720 | ASN1_OCTET_STRING *skid = NULL; |
| 6721 | STACK_OF(X509) *chain = NULL; |
| 6722 | struct issuer_chain *issuer; |
| 6723 | struct eb64_node *node; |
| 6724 | char *path; |
| 6725 | u64 key; |
| 6726 | int ret = 0; |
| 6727 | |
| 6728 | while ((ca = PEM_read_bio_X509(in, NULL, NULL, NULL))) { |
| 6729 | if (chain == NULL) { |
| 6730 | chain = sk_X509_new_null(); |
| 6731 | skid = X509_get_ext_d2i(ca, NID_subject_key_identifier, NULL, NULL); |
| 6732 | name = X509_get_subject_name(ca); |
| 6733 | } |
| 6734 | if (!sk_X509_push(chain, ca)) { |
| 6735 | X509_free(ca); |
| 6736 | goto end; |
| 6737 | } |
| 6738 | } |
| 6739 | if (!chain) { |
| 6740 | memprintf(err, "unable to load issuers-chain %s : pem certificate not found.\n", fp); |
| 6741 | goto end; |
| 6742 | } |
| 6743 | if (!skid) { |
| 6744 | memprintf(err, "unable to load issuers-chain %s : SubjectKeyIdentifier not found.\n", fp); |
| 6745 | goto end; |
| 6746 | } |
| 6747 | if (!name) { |
| 6748 | memprintf(err, "unable to load issuers-chain %s : SubjectName not found.\n", fp); |
| 6749 | goto end; |
| 6750 | } |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6751 | key = XXH3(ASN1_STRING_get0_data(skid), ASN1_STRING_length(skid), 0); |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6752 | 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] | 6753 | issuer = container_of(node, typeof(*issuer), node); |
| 6754 | if (!X509_NAME_cmp(name, X509_get_subject_name(sk_X509_value(issuer->chain, 0)))) { |
| 6755 | memprintf(err, "duplicate issuers-chain %s: %s already in store\n", fp, issuer->path); |
| 6756 | goto end; |
| 6757 | } |
| 6758 | } |
| 6759 | issuer = calloc(1, sizeof *issuer); |
| 6760 | path = strdup(fp); |
| 6761 | if (!issuer || !path) { |
| 6762 | free(issuer); |
| 6763 | free(path); |
| 6764 | goto end; |
| 6765 | } |
| 6766 | issuer->node.key = key; |
| 6767 | issuer->path = path; |
| 6768 | issuer->chain = chain; |
| 6769 | chain = NULL; |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6770 | eb64_insert(&cert_issuer_tree, &issuer->node); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6771 | ret = 1; |
| 6772 | end: |
| 6773 | if (skid) |
| 6774 | ASN1_OCTET_STRING_free(skid); |
| 6775 | if (chain) |
| 6776 | sk_X509_pop_free(chain, X509_free); |
| 6777 | return ret; |
| 6778 | } |
| 6779 | |
William Lallemand | da8584c | 2020-05-14 10:14:37 +0200 | [diff] [blame] | 6780 | struct issuer_chain* ssl_get0_issuer_chain(X509 *cert) |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6781 | { |
| 6782 | AUTHORITY_KEYID *akid; |
| 6783 | struct issuer_chain *issuer = NULL; |
| 6784 | |
| 6785 | akid = X509_get_ext_d2i(cert, NID_authority_key_identifier, NULL, NULL); |
William Lallemand | f69cd68 | 2020-11-19 16:24:13 +0100 | [diff] [blame] | 6786 | if (akid && akid->keyid) { |
Emmanuel Hocdet | 75a7aa1 | 2020-02-18 15:19:24 +0100 | [diff] [blame] | 6787 | struct eb64_node *node; |
| 6788 | u64 hk; |
Dragan Dosen | 967e7e7 | 2020-12-22 13:22:34 +0100 | [diff] [blame] | 6789 | 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] | 6790 | for (node = eb64_lookup(&cert_issuer_tree, hk); node; node = eb64_next(node)) { |
| 6791 | struct issuer_chain *ti = container_of(node, typeof(*issuer), node); |
| 6792 | if (X509_check_issued(sk_X509_value(ti->chain, 0), cert) == X509_V_OK) { |
| 6793 | issuer = ti; |
| 6794 | break; |
| 6795 | } |
| 6796 | } |
| 6797 | AUTHORITY_KEYID_free(akid); |
| 6798 | } |
| 6799 | return issuer; |
| 6800 | } |
| 6801 | |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 6802 | void ssl_free_global_issuers(void) |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6803 | { |
| 6804 | struct eb64_node *node, *back; |
| 6805 | struct issuer_chain *issuer; |
| 6806 | |
William Lallemand | e0f3fd5 | 2020-02-25 14:53:06 +0100 | [diff] [blame] | 6807 | node = eb64_first(&cert_issuer_tree); |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 6808 | while (node) { |
| 6809 | issuer = container_of(node, typeof(*issuer), node); |
| 6810 | back = eb64_next(node); |
| 6811 | eb64_delete(node); |
| 6812 | free(issuer->path); |
| 6813 | sk_X509_pop_free(issuer->chain, X509_free); |
| 6814 | free(issuer); |
| 6815 | node = back; |
| 6816 | } |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6817 | } |
| 6818 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 6819 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6820 | static int ssl_check_async_engine_count(void) { |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 6821 | int err_code = ERR_NONE; |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 6822 | |
Emeric Brun | 3854e01 | 2017-05-17 20:42:48 +0200 | [diff] [blame] | 6823 | if (global_ssl.async && (openssl_engines_initialized > 32)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 6824 | 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] | 6825 | err_code = ERR_ABORT; |
| 6826 | } |
| 6827 | return err_code; |
Willy Tarreau | 8c3b0fd | 2016-12-21 22:44:46 +0100 | [diff] [blame] | 6828 | } |
Willy Tarreau | 9ceda38 | 2016-12-21 23:13:03 +0100 | [diff] [blame] | 6829 | #endif |
| 6830 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6831 | /* "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] | 6832 | * 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] | 6833 | */ |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 6834 | 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] | 6835 | { |
| 6836 | const struct ssl_sock_ctx *sctx = ctx; |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6837 | int ret = 0; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6838 | |
| 6839 | if (!sctx) |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6840 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6841 | |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6842 | if (sctx->conn != conn) { |
| 6843 | chunk_appendf(&trash, " xctx.conn=%p(BOGUS)", sctx->conn); |
| 6844 | ret = 1; |
| 6845 | } |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6846 | chunk_appendf(&trash, " xctx.st=%d", sctx->xprt_st); |
| 6847 | |
| 6848 | if (sctx->xprt) { |
| 6849 | chunk_appendf(&trash, " .xprt=%s", sctx->xprt->name); |
| 6850 | if (sctx->xprt_ctx) |
| 6851 | chunk_appendf(&trash, " .xctx=%p", sctx->xprt_ctx); |
| 6852 | } |
| 6853 | |
| 6854 | chunk_appendf(&trash, " .wait.ev=%d", sctx->wait_event.events); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6855 | |
| 6856 | /* as soon as a shutdown is reported the lower layer unregisters its |
| 6857 | * subscriber, so the situations below are transient and rare enough to |
| 6858 | * be reported as suspicious. In any case they shouldn't last. |
| 6859 | */ |
| 6860 | if ((sctx->wait_event.events & 1) && (conn->flags & (CO_FL_SOCK_RD_SH|CO_FL_ERROR))) |
| 6861 | ret = 1; |
| 6862 | if ((sctx->wait_event.events & 2) && (conn->flags & (CO_FL_SOCK_WR_SH|CO_FL_ERROR))) |
| 6863 | ret = 1; |
| 6864 | |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6865 | chunk_appendf(&trash, " .subs=%p", sctx->subs); |
| 6866 | if (sctx->subs) { |
| 6867 | 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] | 6868 | if (sctx->subs->tasklet->calls >= 1000000) |
| 6869 | ret = 1; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6870 | chunk_appendf(&trash, " tl.calls=%d tl.ctx=%p tl.fct=", |
| 6871 | sctx->subs->tasklet->calls, |
| 6872 | sctx->subs->tasklet->context); |
| 6873 | resolve_sym_name(&trash, NULL, sctx->subs->tasklet->process); |
| 6874 | chunk_appendf(&trash, ")"); |
| 6875 | } |
| 6876 | chunk_appendf(&trash, " .sent_early=%d", sctx->sent_early_data); |
| 6877 | chunk_appendf(&trash, " .early_in=%d", (int)sctx->early_buf.data); |
Willy Tarreau | 4bd5d63 | 2021-01-21 08:53:50 +0100 | [diff] [blame] | 6878 | return ret; |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 6879 | } |
| 6880 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6881 | #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] | 6882 | /* 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] | 6883 | * each reference. The variable <ref> must point to the current node's list |
| 6884 | * 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] | 6885 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6886 | static inline |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6887 | 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] | 6888 | { |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6889 | /* Get next list entry. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6890 | ref = ref->n; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6891 | |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6892 | /* If the entry is the last of the list, return NULL. */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6893 | if (ref == end) |
Tim Duesterhus | 2c7bb33 | 2021-01-03 01:29:55 +0100 | [diff] [blame] | 6894 | return NULL; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6895 | |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6896 | return LIST_ELEM(ref, struct tls_keys_ref *, list); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6897 | } |
| 6898 | |
| 6899 | static inline |
| 6900 | struct tls_keys_ref *tlskeys_ref_lookup_ref(const char *reference) |
| 6901 | { |
| 6902 | int id; |
| 6903 | char *error; |
| 6904 | |
| 6905 | /* If the reference starts by a '#', this is numeric id. */ |
| 6906 | if (reference[0] == '#') { |
| 6907 | /* Try to convert the numeric id. If the conversion fails, the lookup fails. */ |
| 6908 | id = strtol(reference + 1, &error, 10); |
| 6909 | if (*error != '\0') |
| 6910 | return NULL; |
| 6911 | |
| 6912 | /* Perform the unique id lookup. */ |
| 6913 | return tlskeys_ref_lookupid(id); |
| 6914 | } |
| 6915 | |
| 6916 | /* Perform the string lookup. */ |
| 6917 | return tlskeys_ref_lookup(reference); |
| 6918 | } |
| 6919 | #endif |
| 6920 | |
| 6921 | |
| 6922 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 6923 | |
| 6924 | static int cli_io_handler_tlskeys_files(struct appctx *appctx); |
| 6925 | |
| 6926 | static inline int cli_io_handler_tlskeys_entries(struct appctx *appctx) { |
| 6927 | return cli_io_handler_tlskeys_files(appctx); |
| 6928 | } |
| 6929 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6930 | /* dumps all tls keys. Relies on cli.i0 (non-null = only list file names), cli.i1 |
| 6931 | * (next index to be dumped), and cli.p0 (next key reference). |
| 6932 | */ |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6933 | static int cli_io_handler_tlskeys_files(struct appctx *appctx) { |
| 6934 | |
| 6935 | struct stream_interface *si = appctx->owner; |
| 6936 | |
| 6937 | switch (appctx->st2) { |
| 6938 | case STAT_ST_INIT: |
| 6939 | /* Display the column headers. If the message cannot be sent, |
Joseph Herlant | 017b3da | 2018-11-15 09:07:59 -0800 | [diff] [blame] | 6940 | * quit the function with returning 0. The function is called |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6941 | * later and restart at the state "STAT_ST_INIT". |
| 6942 | */ |
| 6943 | chunk_reset(&trash); |
| 6944 | |
| 6945 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) |
| 6946 | chunk_appendf(&trash, "# id secret\n"); |
| 6947 | else |
| 6948 | chunk_appendf(&trash, "# id (file)\n"); |
| 6949 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 6950 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 6951 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6952 | return 0; |
| 6953 | } |
| 6954 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6955 | /* Now, we start the browsing of the references lists. |
| 6956 | * Note that the following call to LIST_ELEM return bad pointer. The only |
| 6957 | * available field of this pointer is <list>. It is used with the function |
| 6958 | * tlskeys_list_get_next() for retruning the first available entry |
| 6959 | */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 6960 | if (appctx->ctx.cli.p0 == NULL) |
| 6961 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&tlskeys_reference, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6962 | |
| 6963 | appctx->st2 = STAT_ST_LIST; |
| 6964 | /* fall through */ |
| 6965 | |
| 6966 | case STAT_ST_LIST: |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6967 | while (appctx->ctx.cli.p0) { |
| 6968 | struct tls_keys_ref *ref = appctx->ctx.cli.p0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6969 | |
| 6970 | chunk_reset(&trash); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6971 | 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] | 6972 | chunk_appendf(&trash, "# "); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6973 | |
| 6974 | if (appctx->ctx.cli.i1 == 0) |
| 6975 | chunk_appendf(&trash, "%d (%s)\n", ref->unique_id, ref->filename); |
| 6976 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6977 | if (appctx->io_handler == cli_io_handler_tlskeys_entries) { |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 6978 | int head; |
| 6979 | |
| 6980 | HA_RWLOCK_RDLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
| 6981 | head = ref->tls_ticket_enc_index; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 6982 | while (appctx->ctx.cli.i1 < TLS_TICKETS_NO) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 6983 | struct buffer *t2 = get_trash_chunk(); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 6984 | |
| 6985 | chunk_reset(t2); |
| 6986 | /* 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] | 6987 | if (ref->key_size_bits == 128) { |
| 6988 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 6989 | sizeof(struct tls_sess_key_128), |
| 6990 | t2->area, t2->size); |
| 6991 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 6992 | t2->area); |
| 6993 | } |
| 6994 | else if (ref->key_size_bits == 256) { |
| 6995 | t2->data = a2base64((char *)(ref->tlskeys + (head + 2 + appctx->ctx.cli.i1) % TLS_TICKETS_NO), |
| 6996 | sizeof(struct tls_sess_key_256), |
| 6997 | t2->area, t2->size); |
| 6998 | chunk_appendf(&trash, "%d.%d %s\n", ref->unique_id, appctx->ctx.cli.i1, |
| 6999 | t2->area); |
| 7000 | } |
| 7001 | else { |
| 7002 | /* This case should never happen */ |
| 7003 | chunk_appendf(&trash, "%d.%d <unknown>\n", ref->unique_id, appctx->ctx.cli.i1); |
| 7004 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7005 | |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 7006 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7007 | /* let's try again later from this stream. We add ourselves into |
| 7008 | * this stream's users so that it can remove us upon termination. |
| 7009 | */ |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7010 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7011 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7012 | return 0; |
| 7013 | } |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7014 | appctx->ctx.cli.i1++; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7015 | } |
Christopher Faulet | 16f45c8 | 2018-02-16 11:23:49 +0100 | [diff] [blame] | 7016 | HA_RWLOCK_RDUNLOCK(TLSKEYS_REF_LOCK, &ref->lock); |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7017 | appctx->ctx.cli.i1 = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7018 | } |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 7019 | if (ci_putchk(si_ic(si), &trash) == -1) { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7020 | /* let's try again later from this stream. We add ourselves into |
| 7021 | * this stream's users so that it can remove us upon termination. |
| 7022 | */ |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 7023 | si_rx_room_blk(si); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7024 | return 0; |
| 7025 | } |
| 7026 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7027 | 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] | 7028 | break; |
| 7029 | |
| 7030 | /* get next list entry and check the end of the list */ |
Willy Tarreau | b6fc524 | 2021-01-05 10:44:30 +0100 | [diff] [blame] | 7031 | appctx->ctx.cli.p0 = tlskeys_list_get_next(&ref->list, &tlskeys_reference); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7032 | } |
| 7033 | |
| 7034 | appctx->st2 = STAT_ST_FIN; |
| 7035 | /* fall through */ |
| 7036 | |
| 7037 | default: |
| 7038 | appctx->st2 = STAT_ST_FIN; |
| 7039 | return 1; |
| 7040 | } |
| 7041 | return 0; |
| 7042 | } |
| 7043 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7044 | /* 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] | 7045 | 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] | 7046 | { |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7047 | /* no parameter, shows only file list */ |
| 7048 | if (!*args[2]) { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7049 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7050 | appctx->io_handler = cli_io_handler_tlskeys_files; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 7051 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7052 | } |
| 7053 | |
| 7054 | if (args[2][0] == '*') { |
| 7055 | /* list every TLS ticket keys */ |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7056 | appctx->ctx.cli.i0 = 1; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7057 | } else { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7058 | appctx->ctx.cli.p0 = tlskeys_ref_lookup_ref(args[2]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7059 | if (!appctx->ctx.cli.p0) |
| 7060 | 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] | 7061 | } |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7062 | appctx->io_handler = cli_io_handler_tlskeys_entries; |
Willy Tarreau | 3067bfa | 2016-12-05 14:50:15 +0100 | [diff] [blame] | 7063 | return 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7064 | } |
| 7065 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7066 | 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] | 7067 | { |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7068 | struct tls_keys_ref *ref; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7069 | int ret; |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7070 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7071 | /* 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] | 7072 | if (!*args[3] || !*args[4]) |
| 7073 | 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] | 7074 | |
Willy Tarreau | f5f26e8 | 2016-12-16 18:47:27 +0100 | [diff] [blame] | 7075 | ref = tlskeys_ref_lookup_ref(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7076 | if (!ref) |
| 7077 | 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] | 7078 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7079 | ret = base64dec(args[4], strlen(args[4]), trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7080 | if (ret < 0) |
| 7081 | 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] | 7082 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7083 | trash.data = ret; |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7084 | if (ssl_sock_update_tlskey_ref(ref, &trash) < 0) |
| 7085 | 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] | 7086 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7087 | return cli_msg(appctx, LOG_INFO, "TLS ticket key updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7088 | } |
William Lallemand | d4f946c | 2019-12-05 10:26:40 +0100 | [diff] [blame] | 7089 | #endif |
William Lallemand | 419e634 | 2020-04-08 12:05:39 +0200 | [diff] [blame] | 7090 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 7091 | 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] | 7092 | { |
| 7093 | #if (defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) |
| 7094 | char *err = NULL; |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7095 | int i, j, ret; |
Aurélien Nephtali | 1e0867c | 2018-04-18 14:04:58 +0200 | [diff] [blame] | 7096 | |
| 7097 | if (!payload) |
| 7098 | payload = args[3]; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7099 | |
| 7100 | /* Expect one parameter: the new response in base64 encoding */ |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7101 | if (!*payload) |
| 7102 | 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] | 7103 | |
| 7104 | /* remove \r and \n from the payload */ |
| 7105 | for (i = 0, j = 0; payload[i]; i++) { |
| 7106 | if (payload[i] == '\r' || payload[i] == '\n') |
| 7107 | continue; |
| 7108 | payload[j++] = payload[i]; |
| 7109 | } |
| 7110 | payload[j] = 0; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7111 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7112 | ret = base64dec(payload, j, trash.area, trash.size); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7113 | if (ret < 0) |
| 7114 | 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] | 7115 | |
Willy Tarreau | 1c913e4 | 2018-08-22 05:26:57 +0200 | [diff] [blame] | 7116 | trash.data = ret; |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7117 | if (ssl_sock_update_ocsp_response(&trash, &err)) { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7118 | if (err) |
| 7119 | return cli_dynerr(appctx, memprintf(&err, "%s.\n", err)); |
| 7120 | else |
| 7121 | return cli_err(appctx, "Failed to update OCSP response.\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7122 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7123 | |
| 7124 | return cli_msg(appctx, LOG_INFO, "OCSP Response updated!\n"); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7125 | #else |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 7126 | 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] | 7127 | #endif |
| 7128 | |
Elliot Otchet | 71f8297 | 2020-01-15 08:12:14 -0500 | [diff] [blame] | 7129 | } |
| 7130 | |
Remi Tricot-Le Breton | d92fd11 | 2021-06-10 13:51:13 +0200 | [diff] [blame] | 7131 | |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7132 | #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] | 7133 | static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx); |
| 7134 | #endif |
| 7135 | |
| 7136 | /* parsing function for 'show ssl ocsp-response [id]' */ |
| 7137 | static int cli_parse_show_ocspresponse(char **args, char *payload, struct appctx *appctx, void *private) |
| 7138 | { |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7139 | #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] | 7140 | if (*args[3]) { |
| 7141 | struct certificate_ocsp *ocsp = NULL; |
| 7142 | char *key = NULL; |
| 7143 | int key_length = 0; |
| 7144 | |
| 7145 | if (strlen(args[3]) > OCSP_MAX_CERTID_ASN1_LENGTH*2) { |
| 7146 | return cli_err(appctx, "'show ssl ocsp-response' received a too big key.\n"); |
| 7147 | } |
| 7148 | |
| 7149 | if (parse_binary(args[3], &key, &key_length, NULL)) { |
| 7150 | |
| 7151 | char full_key[OCSP_MAX_CERTID_ASN1_LENGTH] = {}; |
| 7152 | memcpy(full_key, key, key_length); |
| 7153 | |
| 7154 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, full_key, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 7155 | } |
| 7156 | if (key) |
| 7157 | ha_free(&key); |
| 7158 | |
| 7159 | if (!ocsp) { |
| 7160 | return cli_err(appctx, "Certificate ID does not match any certificate.\n"); |
| 7161 | } |
| 7162 | |
| 7163 | appctx->ctx.cli.p0 = ocsp; |
| 7164 | appctx->io_handler = cli_io_handler_show_ocspresponse_detail; |
| 7165 | } |
| 7166 | |
| 7167 | return 0; |
| 7168 | |
| 7169 | #else |
| 7170 | return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"); |
| 7171 | #endif |
| 7172 | } |
| 7173 | |
| 7174 | |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7175 | #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] | 7176 | /* |
| 7177 | * This function dumps the details of an OCSP_CERTID. It is based on |
| 7178 | * ocsp_certid_print in OpenSSL. |
| 7179 | */ |
| 7180 | static inline int ocsp_certid_print(BIO *bp, OCSP_CERTID *certid, int indent) |
| 7181 | { |
| 7182 | ASN1_OCTET_STRING *piNameHash = NULL; |
| 7183 | ASN1_OCTET_STRING *piKeyHash = NULL; |
| 7184 | ASN1_INTEGER *pSerial = NULL; |
| 7185 | |
| 7186 | if (OCSP_id_get0_info(&piNameHash, NULL, &piKeyHash, &pSerial, certid)) { |
| 7187 | |
| 7188 | BIO_printf(bp, "%*sCertificate ID:\n", indent, ""); |
| 7189 | indent += 2; |
| 7190 | BIO_printf(bp, "\n%*sIssuer Name Hash: ", indent, ""); |
| 7191 | i2a_ASN1_STRING(bp, piNameHash, 0); |
| 7192 | BIO_printf(bp, "\n%*sIssuer Key Hash: ", indent, ""); |
| 7193 | i2a_ASN1_STRING(bp, piKeyHash, 0); |
| 7194 | BIO_printf(bp, "\n%*sSerial Number: ", indent, ""); |
| 7195 | i2a_ASN1_INTEGER(bp, pSerial); |
| 7196 | BIO_printf(bp, "\n"); |
| 7197 | } |
| 7198 | return 1; |
| 7199 | } |
| 7200 | #endif |
| 7201 | |
| 7202 | /* |
| 7203 | * IO handler of "show ssl ocsp-response". The command taking a specific ID |
| 7204 | * is managed in cli_io_handler_show_ocspresponse_detail. |
| 7205 | */ |
| 7206 | static int cli_io_handler_show_ocspresponse(struct appctx *appctx) |
| 7207 | { |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7208 | #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] | 7209 | struct buffer *trash = alloc_trash_chunk(); |
| 7210 | struct buffer *tmp = NULL; |
| 7211 | struct ebmb_node *node; |
| 7212 | struct stream_interface *si = appctx->owner; |
| 7213 | struct certificate_ocsp *ocsp = NULL; |
| 7214 | BIO *bio = NULL; |
| 7215 | int write = -1; |
| 7216 | |
| 7217 | if (trash == NULL) |
| 7218 | return 1; |
| 7219 | |
| 7220 | tmp = alloc_trash_chunk(); |
| 7221 | if (!tmp) |
| 7222 | goto end; |
| 7223 | |
| 7224 | if ((bio = BIO_new(BIO_s_mem())) == NULL) |
| 7225 | goto end; |
| 7226 | |
| 7227 | if (!appctx->ctx.cli.p0) { |
| 7228 | chunk_appendf(trash, "# Certificate IDs\n"); |
| 7229 | node = ebmb_first(&cert_ocsp_tree); |
| 7230 | } else { |
| 7231 | node = &((struct certificate_ocsp *)appctx->ctx.cli.p0)->key; |
| 7232 | } |
| 7233 | |
| 7234 | while (node) { |
| 7235 | OCSP_CERTID *certid = NULL; |
| 7236 | const unsigned char *p = NULL; |
| 7237 | int i; |
| 7238 | |
| 7239 | ocsp = ebmb_entry(node, struct certificate_ocsp, key); |
| 7240 | |
| 7241 | /* Dump the key in hexadecimal */ |
| 7242 | chunk_appendf(trash, "Certificate ID key : "); |
| 7243 | for (i = 0; i < ocsp->key_length; ++i) { |
| 7244 | chunk_appendf(trash, "%02x", ocsp->key_data[i]); |
| 7245 | } |
| 7246 | chunk_appendf(trash, "\n"); |
| 7247 | |
| 7248 | p = ocsp->key_data; |
| 7249 | |
| 7250 | /* Decode the certificate ID (serialized into the key). */ |
| 7251 | d2i_OCSP_CERTID(&certid, &p, ocsp->key_length); |
| 7252 | |
| 7253 | /* Dump the CERTID info */ |
| 7254 | ocsp_certid_print(bio, certid, 1); |
| 7255 | write = BIO_read(bio, tmp->area, tmp->size-1); |
| 7256 | tmp->area[write] = '\0'; |
| 7257 | |
| 7258 | chunk_appendf(trash, "%s\n", tmp->area); |
| 7259 | |
| 7260 | node = ebmb_next(node); |
| 7261 | if (ci_putchk(si_ic(si), trash) == -1) { |
| 7262 | si_rx_room_blk(si); |
| 7263 | goto yield; |
| 7264 | } |
| 7265 | } |
| 7266 | |
| 7267 | end: |
| 7268 | appctx->ctx.cli.p0 = NULL; |
| 7269 | if (trash) |
| 7270 | free_trash_chunk(trash); |
| 7271 | if (tmp) |
| 7272 | free_trash_chunk(tmp); |
| 7273 | if (bio) |
| 7274 | BIO_free(bio); |
| 7275 | return 1; |
| 7276 | |
| 7277 | yield: |
| 7278 | |
| 7279 | if (trash) |
| 7280 | free_trash_chunk(trash); |
| 7281 | if (tmp) |
| 7282 | free_trash_chunk(tmp); |
| 7283 | if (bio) |
| 7284 | BIO_free(bio); |
| 7285 | appctx->ctx.cli.p0 = ocsp; |
| 7286 | return 0; |
| 7287 | #else |
| 7288 | return cli_err(appctx, "HAProxy was compiled against a version of OpenSSL that doesn't support OCSP stapling.\n"); |
| 7289 | #endif |
| 7290 | } |
| 7291 | |
| 7292 | |
Remi Tricot-Le Breton | 3faf0cb | 2021-06-10 18:10:32 +0200 | [diff] [blame] | 7293 | #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] | 7294 | /* |
| 7295 | * Dump the details about an OCSP response in DER format stored in |
| 7296 | * <ocsp_response> into buffer <out>. |
| 7297 | * Returns 0 in case of success. |
| 7298 | */ |
| 7299 | int ssl_ocsp_response_print(struct buffer *ocsp_response, struct buffer *out) |
| 7300 | { |
| 7301 | BIO *bio = NULL; |
| 7302 | int write = -1; |
| 7303 | OCSP_RESPONSE *resp; |
| 7304 | const unsigned char *p; |
| 7305 | |
| 7306 | if (!ocsp_response) |
| 7307 | return -1; |
| 7308 | |
| 7309 | if ((bio = BIO_new(BIO_s_mem())) == NULL) |
| 7310 | return -1; |
| 7311 | |
| 7312 | p = (const unsigned char*)ocsp_response->area; |
| 7313 | |
| 7314 | resp = d2i_OCSP_RESPONSE(NULL, &p, ocsp_response->data); |
| 7315 | if (!resp) { |
| 7316 | chunk_appendf(out, "Unable to parse OCSP response"); |
| 7317 | return -1; |
| 7318 | } |
| 7319 | |
| 7320 | if (OCSP_RESPONSE_print(bio, resp, 0) != 0) { |
| 7321 | write = BIO_read(bio, out->area, out->size - 1); |
| 7322 | out->area[write] = '\0'; |
| 7323 | out->data = write; |
| 7324 | } |
| 7325 | |
| 7326 | if (bio) |
| 7327 | BIO_free(bio); |
| 7328 | |
| 7329 | return 0; |
| 7330 | } |
| 7331 | |
| 7332 | /* |
| 7333 | * Dump the details of the OCSP response of ID <ocsp_certid> into buffer <out>. |
| 7334 | * Returns 0 in case of success. |
| 7335 | */ |
| 7336 | int ssl_get_ocspresponse_detail(unsigned char *ocsp_certid, struct buffer *out) |
| 7337 | { |
| 7338 | struct certificate_ocsp *ocsp; |
| 7339 | |
| 7340 | ocsp = (struct certificate_ocsp *)ebmb_lookup(&cert_ocsp_tree, ocsp_certid, OCSP_MAX_CERTID_ASN1_LENGTH); |
| 7341 | if (!ocsp) |
| 7342 | return -1; |
| 7343 | |
| 7344 | return ssl_ocsp_response_print(&ocsp->response, out); |
| 7345 | } |
| 7346 | |
| 7347 | |
| 7348 | /* IO handler of details "show ssl ocsp-response <id>". */ |
| 7349 | static int cli_io_handler_show_ocspresponse_detail(struct appctx *appctx) |
| 7350 | { |
| 7351 | struct buffer *trash = alloc_trash_chunk(); |
| 7352 | struct certificate_ocsp *ocsp = NULL; |
| 7353 | struct stream_interface *si = appctx->owner; |
| 7354 | |
| 7355 | ocsp = appctx->ctx.cli.p0; |
| 7356 | |
| 7357 | if (trash == NULL) |
| 7358 | return 1; |
| 7359 | |
| 7360 | ssl_ocsp_response_print(&ocsp->response, trash); |
| 7361 | |
| 7362 | if (ci_putchk(si_ic(si), trash) == -1) { |
| 7363 | si_rx_room_blk(si); |
| 7364 | goto yield; |
| 7365 | } |
| 7366 | appctx->ctx.cli.p0 = NULL; |
| 7367 | if (trash) |
| 7368 | free_trash_chunk(trash); |
| 7369 | return 1; |
| 7370 | |
| 7371 | yield: |
| 7372 | if (trash) |
| 7373 | free_trash_chunk(trash); |
| 7374 | |
| 7375 | return 0; |
| 7376 | } |
| 7377 | #endif |
| 7378 | |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7379 | /* register cli keywords */ |
| 7380 | static struct cli_kw_list cli_kws = {{ },{ |
| 7381 | #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] | 7382 | { { "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 }, |
| 7383 | { { "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] | 7384 | #endif |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 7385 | { { "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] | 7386 | |
| 7387 | { { "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] | 7388 | { { NULL }, NULL, NULL, NULL } |
| 7389 | }}; |
| 7390 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7391 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 32af203 | 2016-10-29 18:09:35 +0200 | [diff] [blame] | 7392 | |
Willy Tarreau | f7bc57c | 2012-10-03 00:19:48 +0200 | [diff] [blame] | 7393 | /* transport-layer operations for SSL sockets */ |
William Lallemand | dad3105 | 2020-05-14 17:47:32 +0200 | [diff] [blame] | 7394 | struct xprt_ops ssl_sock = { |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7395 | .snd_buf = ssl_sock_from_buf, |
| 7396 | .rcv_buf = ssl_sock_to_buf, |
Olivier Houchard | df35784 | 2019-03-21 16:30:07 +0100 | [diff] [blame] | 7397 | .subscribe = ssl_subscribe, |
| 7398 | .unsubscribe = ssl_unsubscribe, |
Olivier Houchard | 5149b59 | 2019-05-23 17:47:36 +0200 | [diff] [blame] | 7399 | .remove_xprt = ssl_remove_xprt, |
Olivier Houchard | 2e05548 | 2019-05-27 19:50:12 +0200 | [diff] [blame] | 7400 | .add_xprt = ssl_add_xprt, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7401 | .rcv_pipe = NULL, |
| 7402 | .snd_pipe = NULL, |
| 7403 | .shutr = NULL, |
| 7404 | .shutw = ssl_sock_shutw, |
| 7405 | .close = ssl_sock_close, |
| 7406 | .init = ssl_sock_init, |
Olivier Houchard | bc5ce92 | 2021-03-05 23:47:00 +0100 | [diff] [blame] | 7407 | .start = ssl_sock_start, |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 7408 | .prepare_bind_conf = ssl_sock_prepare_bind_conf, |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 7409 | .destroy_bind_conf = ssl_sock_destroy_bind_conf, |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 7410 | .prepare_srv = ssl_sock_prepare_srv_ctx, |
| 7411 | .destroy_srv = ssl_sock_free_srv_ctx, |
Willy Tarreau | 8743f7e | 2016-12-04 18:44:29 +0100 | [diff] [blame] | 7412 | .get_alpn = ssl_sock_get_alpn, |
Olivier Houchard | a74bb7e | 2020-07-03 14:01:21 +0200 | [diff] [blame] | 7413 | .takeover = ssl_takeover, |
Willy Tarreau | 4149168 | 2021-03-02 17:29:56 +0100 | [diff] [blame] | 7414 | .set_idle = ssl_set_idle, |
| 7415 | .set_used = ssl_set_used, |
Willy Tarreau | 8e0bb0a | 2016-11-24 16:58:12 +0100 | [diff] [blame] | 7416 | .name = "SSL", |
Willy Tarreau | de5675a | 2021-01-20 14:41:29 +0100 | [diff] [blame] | 7417 | .show_fd = ssl_sock_show_fd, |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7418 | }; |
| 7419 | |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7420 | enum act_return ssl_action_wait_for_hs(struct act_rule *rule, struct proxy *px, |
| 7421 | struct session *sess, struct stream *s, int flags) |
| 7422 | { |
| 7423 | struct connection *conn; |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7424 | struct conn_stream *cs; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7425 | |
| 7426 | conn = objt_conn(sess->origin); |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7427 | cs = objt_cs(s->si[0].end); |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7428 | |
Olivier Houchard | 6fa63d9 | 2017-11-27 18:41:32 +0100 | [diff] [blame] | 7429 | if (conn && cs) { |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7430 | 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] | 7431 | cs->flags |= CS_FL_WAIT_FOR_HS; |
Olivier Houchard | ccaa7de | 2017-10-02 11:51:03 +0200 | [diff] [blame] | 7432 | s->req.flags |= CF_READ_NULL; |
| 7433 | return ACT_RET_YIELD; |
| 7434 | } |
| 7435 | } |
| 7436 | return (ACT_RET_CONT); |
| 7437 | } |
| 7438 | |
| 7439 | 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) |
| 7440 | { |
| 7441 | rule->action_ptr = ssl_action_wait_for_hs; |
| 7442 | |
| 7443 | return ACT_RET_PRS_OK; |
| 7444 | } |
| 7445 | |
| 7446 | static struct action_kw_list http_req_actions = {ILH, { |
| 7447 | { "wait-for-handshake", ssl_parse_wait_for_hs }, |
| 7448 | { /* END */ } |
| 7449 | }}; |
| 7450 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 7451 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 7452 | |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7453 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7454 | |
| 7455 | static void ssl_sock_sctl_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7456 | { |
| 7457 | if (ptr) { |
| 7458 | chunk_destroy(ptr); |
| 7459 | free(ptr); |
| 7460 | } |
| 7461 | } |
| 7462 | |
| 7463 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7464 | |
| 7465 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7466 | static void ssl_sock_ocsp_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7467 | { |
| 7468 | struct ocsp_cbk_arg *ocsp_arg; |
| 7469 | |
| 7470 | if (ptr) { |
| 7471 | ocsp_arg = ptr; |
| 7472 | |
| 7473 | if (ocsp_arg->is_single) { |
| 7474 | ssl_sock_free_ocsp(ocsp_arg->s_ocsp); |
| 7475 | ocsp_arg->s_ocsp = NULL; |
| 7476 | } else { |
| 7477 | int i; |
| 7478 | |
| 7479 | for (i = 0; i < SSL_SOCK_NUM_KEYTYPES; i++) { |
| 7480 | ssl_sock_free_ocsp(ocsp_arg->m_ocsp[i]); |
| 7481 | ocsp_arg->m_ocsp[i] = NULL; |
| 7482 | } |
| 7483 | } |
| 7484 | free(ocsp_arg); |
| 7485 | } |
| 7486 | } |
| 7487 | #endif |
| 7488 | |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7489 | static void ssl_sock_capture_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7490 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 7491 | pool_free(pool_head_ssl_capture, ptr); |
Emmanuel Hocdet | aaee750 | 2017-03-07 18:34:58 +0100 | [diff] [blame] | 7492 | } |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7493 | |
William Lallemand | 722180a | 2021-06-09 16:46:12 +0200 | [diff] [blame] | 7494 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7495 | static void ssl_sock_keylog_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7496 | { |
| 7497 | struct ssl_keylog *keylog; |
| 7498 | |
| 7499 | if (!ptr) |
| 7500 | return; |
| 7501 | |
| 7502 | keylog = ptr; |
| 7503 | |
| 7504 | pool_free(pool_head_ssl_keylog_str, keylog->client_random); |
| 7505 | pool_free(pool_head_ssl_keylog_str, keylog->client_early_traffic_secret); |
| 7506 | pool_free(pool_head_ssl_keylog_str, keylog->client_handshake_traffic_secret); |
| 7507 | pool_free(pool_head_ssl_keylog_str, keylog->server_handshake_traffic_secret); |
| 7508 | pool_free(pool_head_ssl_keylog_str, keylog->client_traffic_secret_0); |
| 7509 | pool_free(pool_head_ssl_keylog_str, keylog->server_traffic_secret_0); |
| 7510 | pool_free(pool_head_ssl_keylog_str, keylog->exporter_secret); |
| 7511 | pool_free(pool_head_ssl_keylog_str, keylog->early_exporter_secret); |
| 7512 | |
| 7513 | pool_free(pool_head_ssl_keylog, ptr); |
| 7514 | } |
| 7515 | #endif |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7516 | |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7517 | static void ssl_sock_clt_crt_free_func(void *parent, void *ptr, CRYPTO_EX_DATA *ad, int idx, long argl, void *argp) |
| 7518 | { |
| 7519 | if (!ptr) |
| 7520 | return; |
| 7521 | |
| 7522 | X509_free((X509*)ptr); |
| 7523 | } |
| 7524 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7525 | __attribute__((constructor)) |
Willy Tarreau | 92faadf | 2012-10-10 23:04:25 +0200 | [diff] [blame] | 7526 | static void __ssl_sock_init(void) |
| 7527 | { |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7528 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7529 | STACK_OF(SSL_COMP)* cm; |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7530 | int n; |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7531 | #endif |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7532 | |
Willy Tarreau | ef93460 | 2016-12-22 23:12:01 +0100 | [diff] [blame] | 7533 | if (global_ssl.listen_default_ciphers) |
| 7534 | global_ssl.listen_default_ciphers = strdup(global_ssl.listen_default_ciphers); |
| 7535 | if (global_ssl.connect_default_ciphers) |
| 7536 | global_ssl.connect_default_ciphers = strdup(global_ssl.connect_default_ciphers); |
Ilya Shipitsin | f34ed0b | 2020-11-21 14:37:34 +0500 | [diff] [blame] | 7537 | #ifdef HAVE_SSL_CTX_SET_CIPHERSUITES |
Dirkjan Bussink | 415150f | 2018-09-14 11:14:21 +0200 | [diff] [blame] | 7538 | if (global_ssl.listen_default_ciphersuites) |
| 7539 | global_ssl.listen_default_ciphersuites = strdup(global_ssl.listen_default_ciphersuites); |
| 7540 | if (global_ssl.connect_default_ciphersuites) |
| 7541 | global_ssl.connect_default_ciphersuites = strdup(global_ssl.connect_default_ciphersuites); |
| 7542 | #endif |
Willy Tarreau | 610f04b | 2014-02-13 11:36:41 +0100 | [diff] [blame] | 7543 | |
Willy Tarreau | 13e1410 | 2016-12-22 20:25:26 +0100 | [diff] [blame] | 7544 | xprt_register(XPRT_SSL, &ssl_sock); |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7545 | #if HA_OPENSSL_VERSION_NUMBER < 0x10100000L |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7546 | SSL_library_init(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7547 | #endif |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7548 | #if (!defined(OPENSSL_NO_COMP) && !defined(SSL_OP_NO_COMPRESSION)) |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7549 | cm = SSL_COMP_get_compression_methods(); |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7550 | n = sk_SSL_COMP_num(cm); |
| 7551 | while (n--) { |
| 7552 | (void) sk_SSL_COMP_pop(cm); |
| 7553 | } |
Ilya Shipitsin | 0590f44 | 2019-05-25 19:30:50 +0500 | [diff] [blame] | 7554 | #endif |
Ilya Shipitsin | e242f3d | 2019-05-25 03:38:14 +0500 | [diff] [blame] | 7555 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7556 | #if defined(USE_THREAD) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7557 | ssl_locking_init(); |
| 7558 | #endif |
Ilya Shipitsin | f00cdb1 | 2021-02-06 18:59:22 +0500 | [diff] [blame] | 7559 | #ifdef HAVE_SSL_CTX_ADD_SERVER_CUSTOM_EXT |
Janusz Dziemidowicz | 2c701b5 | 2015-03-07 23:03:59 +0100 | [diff] [blame] | 7560 | sctl_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_sctl_free_func); |
| 7561 | #endif |
William Lallemand | 76b4a12 | 2020-08-04 17:41:39 +0200 | [diff] [blame] | 7562 | |
| 7563 | #if ((defined SSL_CTRL_SET_TLSEXT_STATUS_REQ_CB && !defined OPENSSL_NO_OCSP) && !defined OPENSSL_IS_BORINGSSL) |
| 7564 | ocsp_ex_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_ocsp_free_func); |
| 7565 | #endif |
| 7566 | |
Thierry FOURNIER | 28962c9 | 2018-06-17 21:37:05 +0200 | [diff] [blame] | 7567 | 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] | 7568 | 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] | 7569 | #ifdef HAVE_SSL_KEYLOG |
William Lallemand | 7d42ef5 | 2020-07-06 11:41:30 +0200 | [diff] [blame] | 7570 | ssl_keylog_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_keylog_free_func); |
| 7571 | #endif |
Remi Tricot-Le Breton | 74f6ab6 | 2021-08-19 18:06:30 +0200 | [diff] [blame] | 7572 | ssl_client_crt_ref_index = SSL_get_ex_new_index(0, NULL, NULL, NULL, ssl_sock_clt_crt_free_func); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7573 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7574 | ENGINE_load_builtin_engines(); |
Grant Zhang | fa6c7ee | 2017-01-14 01:42:15 +0000 | [diff] [blame] | 7575 | hap_register_post_check(ssl_check_async_engine_count); |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7576 | #endif |
Willy Tarreau | d1c5750 | 2016-12-22 22:46:15 +0100 | [diff] [blame] | 7577 | #if (defined SSL_CTRL_SET_TLSEXT_TICKET_KEY_CB && TLS_TICKETS_NO > 0) |
| 7578 | hap_register_post_check(tlskeys_finalize_config); |
| 7579 | #endif |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7580 | |
| 7581 | global.ssl_session_max_cost = SSL_SESSION_MAX_COST; |
| 7582 | global.ssl_handshake_max_cost = SSL_HANDSHAKE_MAX_COST; |
| 7583 | |
Emmanuel Hocdet | 70df7bf | 2019-01-04 11:08:20 +0100 | [diff] [blame] | 7584 | hap_register_post_deinit(ssl_free_global_issuers); |
| 7585 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7586 | #ifndef OPENSSL_NO_DH |
| 7587 | ssl_dh_ptr_index = SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL); |
| 7588 | hap_register_post_deinit(ssl_free_dh); |
| 7589 | #endif |
| 7590 | #ifndef OPENSSL_NO_ENGINE |
| 7591 | hap_register_post_deinit(ssl_free_engines); |
| 7592 | #endif |
| 7593 | /* Load SSL string for the verbose & debug mode. */ |
| 7594 | ERR_load_SSL_strings(); |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7595 | ha_meth = BIO_meth_new(0x666, "ha methods"); |
| 7596 | BIO_meth_set_write(ha_meth, ha_ssl_write); |
| 7597 | BIO_meth_set_read(ha_meth, ha_ssl_read); |
| 7598 | BIO_meth_set_ctrl(ha_meth, ha_ssl_ctrl); |
| 7599 | BIO_meth_set_create(ha_meth, ha_ssl_new); |
| 7600 | BIO_meth_set_destroy(ha_meth, ha_ssl_free); |
| 7601 | BIO_meth_set_puts(ha_meth, ha_ssl_puts); |
| 7602 | BIO_meth_set_gets(ha_meth, ha_ssl_gets); |
William Lallemand | 150bfa8 | 2019-09-19 17:12:49 +0200 | [diff] [blame] | 7603 | |
| 7604 | HA_SPIN_INIT(&ckch_lock); |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7605 | |
Dragan Dosen | 9ac9809 | 2020-05-11 15:51:45 +0200 | [diff] [blame] | 7606 | /* Try to register dedicated SSL/TLS protocol message callbacks for |
| 7607 | * heartbleed attack (CVE-2014-0160) and clienthello. |
| 7608 | */ |
| 7609 | hap_register_post_check(ssl_sock_register_msg_callbacks); |
| 7610 | |
Dragan Dosen | 1e7ed04 | 2020-05-08 18:30:00 +0200 | [diff] [blame] | 7611 | /* Try to free all callbacks that were registered by using |
| 7612 | * ssl_sock_register_msg_callback(). |
| 7613 | */ |
| 7614 | hap_register_post_deinit(ssl_sock_unregister_msg_callbacks); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7615 | } |
Willy Tarreau | d92aa5c | 2015-01-15 21:34:39 +0100 | [diff] [blame] | 7616 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7617 | /* Compute and register the version string */ |
| 7618 | static void ssl_register_build_options() |
| 7619 | { |
| 7620 | char *ptr = NULL; |
| 7621 | int i; |
| 7622 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7623 | memprintf(&ptr, "Built with OpenSSL version : " |
| 7624 | #ifdef OPENSSL_IS_BORINGSSL |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7625 | "BoringSSL"); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7626 | #else /* OPENSSL_IS_BORINGSSL */ |
| 7627 | OPENSSL_VERSION_TEXT |
| 7628 | "\nRunning on OpenSSL version : %s%s", |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7629 | OpenSSL_version(OPENSSL_VERSION), |
Willy Tarreau | 1d158ab | 2019-05-09 13:41:45 +0200 | [diff] [blame] | 7630 | ((OPENSSL_VERSION_NUMBER ^ OpenSSL_version_num()) >> 8) ? " (VERSIONS DIFFER!)" : ""); |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7631 | #endif |
| 7632 | memprintf(&ptr, "%s\nOpenSSL library supports TLS extensions : " |
Willy Tarreau | 9a1ab08 | 2019-05-09 13:26:41 +0200 | [diff] [blame] | 7633 | #if HA_OPENSSL_VERSION_NUMBER < 0x00907000L |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7634 | "no (library version too old)" |
| 7635 | #elif defined(OPENSSL_NO_TLSEXT) |
| 7636 | "no (disabled via OPENSSL_NO_TLSEXT)" |
| 7637 | #else |
| 7638 | "yes" |
| 7639 | #endif |
| 7640 | "", ptr); |
| 7641 | |
| 7642 | memprintf(&ptr, "%s\nOpenSSL library supports SNI : " |
| 7643 | #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME |
| 7644 | "yes" |
| 7645 | #else |
| 7646 | #ifdef OPENSSL_NO_TLSEXT |
| 7647 | "no (because of OPENSSL_NO_TLSEXT)" |
| 7648 | #else |
| 7649 | "no (version might be too old, 0.9.8f min needed)" |
| 7650 | #endif |
| 7651 | #endif |
| 7652 | "", ptr); |
| 7653 | |
Emmanuel Hocdet | f80bc24 | 2017-07-12 14:25:38 +0200 | [diff] [blame] | 7654 | memprintf(&ptr, "%s\nOpenSSL library supports :", ptr); |
| 7655 | for (i = CONF_TLSV_MIN; i <= CONF_TLSV_MAX; i++) |
| 7656 | if (methodVersions[i].option) |
| 7657 | memprintf(&ptr, "%s %s", ptr, methodVersions[i].name); |
Emmanuel Hocdet | 50e25e1 | 2017-03-24 15:20:03 +0100 | [diff] [blame] | 7658 | |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7659 | hap_register_build_opts(ptr, 1); |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7660 | } |
Willy Tarreau | c2c0b61 | 2016-12-21 19:23:20 +0100 | [diff] [blame] | 7661 | |
Willy Tarreau | 8071338 | 2018-11-26 10:19:54 +0100 | [diff] [blame] | 7662 | INITCALL0(STG_REGISTER, ssl_register_build_options); |
Remi Gacogne | 4f902b8 | 2015-05-28 16:23:00 +0200 | [diff] [blame] | 7663 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7664 | |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7665 | #ifndef OPENSSL_NO_ENGINE |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7666 | void ssl_free_engines(void) { |
| 7667 | struct ssl_engine_list *wl, *wlb; |
| 7668 | /* free up engine list */ |
| 7669 | list_for_each_entry_safe(wl, wlb, &openssl_engines, list) { |
| 7670 | ENGINE_finish(wl->e); |
| 7671 | ENGINE_free(wl->e); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 7672 | LIST_DELETE(&wl->list); |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7673 | free(wl); |
| 7674 | } |
| 7675 | } |
Emmanuel Hocdet | 9ac143b | 2017-05-29 14:36:20 +0200 | [diff] [blame] | 7676 | #endif |
Christopher Faulet | 31af49d | 2015-06-09 17:29:50 +0200 | [diff] [blame] | 7677 | |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7678 | #ifndef OPENSSL_NO_DH |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7679 | void ssl_free_dh(void) { |
| 7680 | if (local_dh_1024) { |
| 7681 | DH_free(local_dh_1024); |
| 7682 | local_dh_1024 = NULL; |
| 7683 | } |
| 7684 | if (local_dh_2048) { |
| 7685 | DH_free(local_dh_2048); |
| 7686 | local_dh_2048 = NULL; |
| 7687 | } |
| 7688 | if (local_dh_4096) { |
| 7689 | DH_free(local_dh_4096); |
| 7690 | local_dh_4096 = NULL; |
| 7691 | } |
Remi Gacogne | 47783ef | 2015-05-29 15:53:22 +0200 | [diff] [blame] | 7692 | if (global_dh) { |
| 7693 | DH_free(global_dh); |
| 7694 | global_dh = NULL; |
| 7695 | } |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 7696 | } |
| 7697 | #endif |
| 7698 | |
| 7699 | __attribute__((destructor)) |
| 7700 | static void __ssl_sock_deinit(void) |
| 7701 | { |
| 7702 | #if (defined SSL_CTRL_SET_TLSEXT_HOSTNAME && !defined SSL_NO_GENERATE_CERTIFICATES) |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7703 | if (ssl_ctx_lru_tree) { |
| 7704 | lru64_destroy(ssl_ctx_lru_tree); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 7705 | HA_RWLOCK_DESTROY(&ssl_ctx_lru_rwlock); |
Emeric Brun | 821bb9b | 2017-06-15 16:37:39 +0200 | [diff] [blame] | 7706 | } |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7707 | #endif |
| 7708 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7709 | #if (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7710 | ERR_remove_state(0); |
| 7711 | ERR_free_strings(); |
| 7712 | |
| 7713 | EVP_cleanup(); |
Rosen Penev | 6818595 | 2018-12-14 08:47:02 -0800 | [diff] [blame] | 7714 | #endif |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7715 | |
Willy Tarreau | 5db847a | 2019-05-09 14:13:35 +0200 | [diff] [blame] | 7716 | #if (HA_OPENSSL_VERSION_NUMBER >= 0x00907000L) && (HA_OPENSSL_VERSION_NUMBER < 0x10100000L) |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7717 | CRYPTO_cleanup_all_ex_data(); |
| 7718 | #endif |
Olivier Houchard | a8955d5 | 2019-04-07 22:00:38 +0200 | [diff] [blame] | 7719 | BIO_meth_free(ha_meth); |
Remi Gacogne | d3a23c3 | 2015-05-28 16:39:47 +0200 | [diff] [blame] | 7720 | } |
| 7721 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 7722 | |
Emeric Brun | 4659195 | 2012-05-18 15:47:34 +0200 | [diff] [blame] | 7723 | /* |
| 7724 | * Local variables: |
| 7725 | * c-indent-level: 8 |
| 7726 | * c-basic-offset: 8 |
| 7727 | * End: |
| 7728 | */ |